< 1243209742 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :hm and both are unique representations? < 1243209808 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Every representation has exactly one corresponding number. Every number has exactly one corresponding canonical representation. < 1243209819 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :ic < 1243209836 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Where "canonical representation" is a representation in which 0, 1 and 2 are represented as themselves, and "number" means "non-negative integer". < 1243209866 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :i am sort of guessing that the nested lists are just representations of numbers other than 0,1,2 < 1243209871 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Anyway, 1,000,002 is [0,0,2,[1,0],[1,0],[1,0],[1,2,1],[1,1,[1,0]]]. < 1243209922 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :they don't seem to have much in common... let me try a bit < 1243209934 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Given this, you should be able to figure out how the representation works. < 1243210025 0 :MizardX!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1243210028 0 :MizardX!i=MizardX@unaffiliated/mizardx JOIN :#esoteric < 1243210062 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :For some values of "should". < 1243210491 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :ACTION gets an idea < 1243210899 0 :Gracenotes!n=person@wikipedia/Gracenotes JOIN :#esoteric < 1243211135 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :Main> Repr 1000002 < 1243211135 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :[0,0,2,[1,0],[1,0],[1,0],[1,2,1],[1,1,[1,0]]] :: Repr < 1243211189 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :Main> Repr 123456789 < 1243211189 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :[1,0,[0,1],1,[1,2],1,1,[0,2,[0,1]],[1,2,1]] :: Repr < 1243212098 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :So, what's your idea? < 1243212130 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :I'm doing all these by hand, and I'd rather check your idea than your representation. :-P < 1243212154 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :I guess i've left out part of the "canonical representation" thing. The other part is that all lists be as short as possible. < 1243212300 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :yeah i figured < 1243212328 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :anyway, modulus with the list of primes, take until no smaller number gives the same list < 1243212390 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :equivalently, until the product of the primes so far > the number < 1243212454 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :ACTION handily already has primes = ... in his haskell scratch file < 1243212668 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :ACTION nods < 1243213887 0 :olsner!unknown@unknown.invalid QUIT :"Leaving" < 1243214170 0 :Taejo!unknown@unknown.invalid QUIT :"Leaving" < 1243215901 0 :psygnisfive!n=psygnisf@pool-162-83-166-220.ny5030.east.verizon.net JOIN :#esoteric < 1243216553 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :Main> toInteger [0,0,2,[1,0],[1,0],[1,0],[1,2,1],[1,1,[1,0]]] < 1243216553 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :1000002 :: Integer < 1243216558 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :ACTION cackles evilly < 1243216574 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :kerlo: ^ < 1243216658 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :i don't get it < 1243216672 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :hideous type class abuse < 1243216680 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :That does sound hideous. < 1243216693 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Is toInteger entirely of your own invention, not a class function? < 1243216695 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :to make numerals give lists < 1243216704 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :no, toInteger is a class function < 1243216716 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Of Integral? < 1243216718 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :yes < 1243216756 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :So [something] is an instance of Num... < 1243216770 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :and Real, Enum, and Integral < 1243216772 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :And it looks like something = [something]. < 1243216784 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :yeah < 1243216794 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :That's possible? type Something = [Something]? < 1243216798 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :no < 1243216813 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :it's just the typed representation that is equal < 1243216816 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :You can't even use synonyms in instance declarations, can you. < 1243216827 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :So what is something, here? < 1243216830 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :not in pure Haskell 98 anyway < 1243216863 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :kerlo: because i only use standard typeclasses, defaulting makes sure that the bottom level becomes Integer automatically < 1243216880 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :so that is [[[Integer]]] up there < 1243216884 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Cruel. < 1243216904 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :So you must have something like instance Num a => Num [a]. < 1243216922 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :and also Real, Enum, and Integral < 1243216932 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :only fromInteger and toInteger are actually defined < 1243217031 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :fromInteger n = [n',n'] where n' = fromInteger n, so it doesn't really work beyond 5 i think < 1243217087 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :i could "fix" that easily though < 1243217106 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :and toInteger = unrepr . map toInteger < 1243217117 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :where unrepr is the function doing the actual work < 1243218157 0 :Corun_!unknown@unknown.invalid NICK :Corun < 1243218388 0 :kerlo!unknown@unknown.invalid PRIVMSG #esoteric :Why can't you use whatever you used in Show Repr for fromInteger? < 1243218442 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :because that recursed on the parts, but i could extract the relevant bit < 1243218765 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :now it works < 1243219008 0 :Corun!unknown@unknown.invalid QUIT :"Leaving..." < 1243221258 0 :psygnisfive!unknown@unknown.invalid QUIT :Read error: 113 (No route to host) < 1243221418 0 :psygnisfive!n=psygnisf@pool-162-83-166-220.ny5030.east.verizon.net JOIN :#esoteric < 1243222359 0 :sebbu!n=sebbu@ADijon-152-1-59-147.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1243223236 0 :sebbu2!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1243224435 0 :oerjan!unknown@unknown.invalid QUIT :"leaving" < 1243227525 0 :Patashu!n=Patashu@c122-106-162-185.carlnfd1.nsw.optusnet.com.au JOIN :#esoteric < 1243229907 0 :bsmntbombdood!unknown@unknown.invalid QUIT :Read error: 113 (No route to host) < 1243230152 0 :bsmntbombdood!n=gavin@97-118-112-123.hlrn.qwest.net JOIN :#esoteric < 1243232520 0 :pikhq!unknown@unknown.invalid PRIVMSG #esoteric :Do you know where your towel is? < 1243232546 0 :Patashu!unknown@unknown.invalid PRIVMSG #esoteric :it's in my bathroom < 1243232737 0 :pikhq!unknown@unknown.invalid PRIVMSG #esoteric :Patashu: Wrong answer. < 1243232749 0 :pikhq!unknown@unknown.invalid PRIVMSG #esoteric :Be a hoopy frood. < 1243234714 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :i have a towel < 1243234836 0 :Gracenotes!unknown@unknown.invalid PRIVMSG #esoteric :NO EXCEPTIONS! < 1243235081 0 :psygnisfive!unknown@unknown.invalid QUIT :"Leaving..." < 1243237716 0 :coppro!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1243238399 0 :clog!unknown@unknown.invalid QUIT :ended < 1243238400 0 :clog!unknown@unknown.invalid JOIN :#esoteric < 1243240126 0 :asiekierka!i=asiekier@078088180066.elblag.vectranet.pl JOIN :#esoteric < 1243240128 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :hi < 1243240138 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :what's red...dit? < 1243240160 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :^style < 1243240160 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :Available: agora alice c64 darwin discworld europarl ff7 fisher ic irc* jargon lovecraft nethack pa speeches ss wp youtube < 1243240165 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :^style youtube < 1243240165 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :Selected style: youtube (Some YouTube comments) < 1243240168 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :fungot: Are you a jerk? < 1243240169 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :asiekierka: i think the lizzard one was on thr rright approach to land...someone decided to roll up all my pennies tonight because as everyone seems to be the right ball park however, this was at and all. < 1243240184 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :fungot: What pennies? < 1243240184 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :asiekierka: the poor people....did any1 survive? < 1243240192 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :fungot: Yeah, but that's not the point. < 1243240193 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :asiekierka: omg! he sounds like woman xd and ew to the ground.he lost site of the air bus... spicy!! wtf? < 1243240204 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :fungot: What? Women? < 1243240205 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :asiekierka: i believe they disrespected bob dylan and a longer runway. i'd like to hear him sing something rock-ish but i loved max payne 3 ( true that jaybedwetter, smoznijism and lamewaring are still down) the whole incident by removing the flight the autopilot master control would probably grow ten fold. < 1243240211 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :fungot: *sigh* < 1243240264 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :fungot sounds like it should be the name of an esolang < 1243240264 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :bsmntbombdood: krazybrit- liscenced? most pilots learn to spell and that was sikk crash, fucking please! < 1243240281 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :that was far too fast to be typed < 1243240605 0 :lereah_!n=lereah@nanpc319.in2p3.fr JOIN :#esoteric < 1243240824 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :fizzie: < 1243240828 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :fungot: < 1243240828 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :bsmntbombdood: check out the notes bang on, let alone stomp anything. < 1243240832 0 :bsmntbombdood!unknown@unknown.invalid PRIVMSG #esoteric :... < 1243241563 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I made the youtube style < 1243241570 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :by pasting a LOT of YouTube comments < 1243241571 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric ::) < 1243241573 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :^style < 1243241573 0 :fungot!unknown@unknown.invalid PRIVMSG #esoteric :Available: agora alice c64 darwin discworld europarl ff7 fisher ic irc jargon lovecraft nethack pa speeches ss wp youtube* < 1243241577 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Select your own :) < 1243241584 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :in which you want to chat < 1243243796 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I plan to make a few mods to my C64 < 1243243841 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Mod 1: S-Video/Audio outs (2 cables) < 1243244430 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :and probably that's all < 1243244432 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :so not a few mods < 1243244434 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :but a single mod < 1243244441 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :to GREATLY improve the quality of the video < 1243244459 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :(Comparing RF to S-Video is like comparing Composite to HDMI. They can't be compared.) < 1243247287 0 :tombom!i=tombom@wikipedia/Tombomp JOIN :#esoteric < 1243250808 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :augh, no, i can't < 1243251163 0 :Slereah!unknown@unknown.invalid QUIT :Read error: 60 (Operation timed out) < 1243251363 0 :Slereah!n=butt@ANantes-259-1-65-32.w92-135.abo.wanadoo.fr JOIN :#esoteric < 1243252457 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :LOL < 1243252467 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I asked WolframAlpha: say "Hello!" < 1243252476 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :and it replied: Computation timed out. < 1243252537 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :enter any computer architecture: the same < 1243252584 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I at least hope "enter any integer" works... no it does NOT! < 1243252608 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :oh < 1243252616 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :i see < 1243253012 0 :jix!n=jix@dyndsl-095-033-119-017.ewe-ip-backbone.de JOIN :#esoteric < 1243258030 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :CrazyTalk+Clay=WIN < 1243259012 0 :MizardX!unknown@unknown.invalid QUIT :"Proclamation of invalidity!" < 1243259200 0 :asiekierka!unknown@unknown.invalid QUIT : < 1243260021 0 :impomatic!n=John@nat65.mia.three.co.uk JOIN :#esoteric < 1243260158 0 :MizardX!n=MizardX@unaffiliated/mizardx JOIN :#esoteric < 1243261051 0 :Gracenotes!unknown@unknown.invalid QUIT :Connection timed out < 1243261783 0 :Corun!n=Corun@94-194-31-231.zone8.bethere.co.uk JOIN :#esoteric < 1243262141 0 :BeholdMyGlory!n=behold@d83-183-181-73.cust.tele2.se JOIN :#esoteric < 1243264320 0 :lereah_!unknown@unknown.invalid QUIT :"Leaving" < 1243265042 0 :FireFly!n=FireFly@1-1-3-36a.tul.sth.bostream.se JOIN :#esoteric < 1243265204 0 :Patashu!unknown@unknown.invalid QUIT :"Patashu/SteampunkX - MSN = Patashu@hotmail.com , AIM = Patashu0 , YIM = Patashu2 , Googletalk = Patashu0@gmail.com ." < 1243265604 0 :Slereah_!n=butt@92.139.147.127 JOIN :#esoteric < 1243266236 0 :Slereah!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1243266404 0 :MizardX!unknown@unknown.invalid QUIT :Read error: 60 (Operation timed out) < 1243267029 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1243267993 0 :Corun!unknown@unknown.invalid NICK :Corun|away < 1243268819 0 :Corun|away!unknown@unknown.invalid NICK :Corun < 1243268874 0 :pikhq!n=pikhq@75-106-100-192.cust.wildblue.net JOIN :#esoteric < 1243269213 0 :Slereah_!unknown@unknown.invalid PRIVMSG #esoteric :http://www.underfoule.net/lhc/res/54.html < 1243269213 0 :Slereah_!unknown@unknown.invalid PRIVMSG #esoteric ::3 < 1243269890 0 :tombom_!i=tombom@wikipedia/Tombomp JOIN :#esoteric < 1243270649 0 :asiekierka!i=asiekier@078088180066.elblag.vectranet.pl JOIN :#esoteric < 1243270716 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Hi < 1243270728 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Someone emulated a Commodore 65 on a Commodore 64 < 1243270907 0 :tombom!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1243271152 0 :tombom_!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1243271316 0 :oerjan!n=oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1243272163 0 :ais523!n=ais523@92-236-187-64.cable.ubr08.king.blueyonder.co.uk JOIN :#esoteric < 1243272258 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :hi ais523! < 1243272265 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :hi < 1243272517 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Is there any microcomputer architecture to emulate on the C64? < 1243272526 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I wonder if an old Atari would be fun to do... < 1243272534 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :...because in Poland C64s and Ataris were competing < 1243272548 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1243273265 0 :oerjan!unknown@unknown.invalid QUIT :"leaving" < 1243273949 0 :Corun!unknown@unknown.invalid NICK :Corun|away < 1243274240 0 :zzo38!n=zzo38@h24-207-48-53.dlt.dccnet.com JOIN :#esoteric < 1243274259 0 :zzo38!unknown@unknown.invalid PRIVMSG #esoteric :My Cygwin doesn't have gcc do you know why? < 1243274315 0 :zzo38!unknown@unknown.invalid PART #esoteric :? < 1243275044 0 :Corun|away!unknown@unknown.invalid NICK :Corun < 1243275600 0 :Taejo!n=max@196-210-182-109-wrbs-esr-2.dynamic.isadsl.co.za JOIN :#esoteric < 1243275658 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :!bfjoust taejo_simplexity (>->+)*5[[-]>-] < 1243275660 0 :EgoBot!unknown@unknown.invalid PRIVMSG #esoteric :Score for taejo_simplexity: -3 (maximum 11) < 1243275741 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :hmm... has the hill been fixed yet/ < 1243275745 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :or is it still upside-down? < 1243275780 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :dunno < 1243275794 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :submit something and we'll see who gets knocked out < 1243275816 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :!bfjoust ais523_attack1 [>[-]+] < 1243275818 0 :EgoBot!unknown@unknown.invalid PRIVMSG #esoteric :Score for ais523_attack1: -4 (maximum 11) < 1243275847 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :ais523: still upside down < 1243275848 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :still upside-down < 1243275855 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :your good program has been pushed off the top < 1243275857 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :and suicide's still there < 1243275871 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :who runs the hill? < 1243275876 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :GregorR does < 1243275891 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :I wrote the interpreter, the rest of the code was a copy of his < 1243275895 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :and he's modified it a bit since < 1243275903 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :I want to write my own, but it's exam time < 1243275908 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :but he accidentally got the hill the wrong way up < 1243275915 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :and I have a BF Joust interp that you can base the hill on < 1243275943 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :I wouldn't mind writing my own < 1243276021 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I GOT !@#$% RICKROLLED < 1243276024 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :ON A !@#$% C64 < 1243276029 0 :Slereah_!unknown@unknown.invalid PRIVMSG #esoteric :heh < 1243276043 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :at least the cover is nice < 1243276044 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric ::) < 1243276046 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :SID rox! < 1243276058 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :He didn't even change it after April Fools! < 1243276166 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :!bfjoust taejo_simplexity_2 (>-->++)*5[[-]>-] < 1243276168 0 :EgoBot!unknown@unknown.invalid PRIVMSG #esoteric :Score for taejo_simplexity_2: -3 (maximum 11) < 1243276170 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric ::( < 1243276196 0 :Taejo!unknown@unknown.invalid PRIVMSG #esoteric :asiekierka: hill is upside down < 1243276329 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I plan to add 2 mods to my C64 tomorrow: S-Video and noise reduction < 1243276340 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :um, nah < 1243276343 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :no noise reduction < 1243276424 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :watching "I Love Ascii 6" (the C64 demo) < 1243276445 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :it did (accidentally?) show the polish flag for a while < 1243276456 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :but the demo rocks < 1243276464 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :shows how much you can do with ASCII < 1243276468 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :or charsets < 1243276808 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Also, I want to do a 8086 emulator :) < 1243276973 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :well, there IS a 8085 emulator < 1243277069 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Nah, I want to just do some emulator < 1243277134 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :do an OISC emulater < 1243277147 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :hmm < 1243277148 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :good idea < 1243277177 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I think I will have memory from $1000 to $D000 to use < 1243277194 0 :jix_!n=jix@dyndsl-095-033-125-097.ewe-ip-backbone.de JOIN :#esoteric < 1243277226 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :which is 48KB < 1243277228 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Quite a lot, eh? < 1243277247 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :This allows for 24000 words < 1243277254 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :no, even 24576 words < 1243277273 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Therefore 8192 commands < 1243277327 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :Isn't that a LOT? < 1243277340 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I could get a bit more but that'd lag it as hell < 1243277355 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :I think, if I could hide the I/O variables, I could get to $E000 < 1243277376 0 :asiekierka!unknown@unknown.invalid PRIVMSG #esoteric :which will get 2048 more words = 682 more commands < 1243277689 0 :pikhq!n=pikhq@75-106-100-192.cust.wildblue.net JOIN :#esoteric < 1243277813 0 :AnMaster!unknown@unknown.invalid PRIVMSG #esoteric : oh <-- maybe it was overloaded... < 1243277942 0 :jix!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1243278004 0 :impomatic!unknown@unknown.invalid PART #esoteric :? < 1243278720 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 54 (Connection reset by peer) < 1243278872 0 :pikhq!n=pikhq@75-106-100-192.cust.wildblue.net JOIN :#esoteric < 1243279961 0 :olsner!n=salparot@h-60-96.A163.priv.bahnhof.se JOIN :#esoteric < 1243280986 0 :kar8nga!n=kar8nga@f-70.vc-graz.ac.at JOIN :#esoteric < 1243282476 0 :asiekierka!unknown@unknown.invalid QUIT :Read error: 60 (Operation timed out) < 1243282690 0 :MizardX!n=MizardX@unaffiliated/mizardx JOIN :#esoteric < 1243283708 0 :KingOfKarlsruhe!n=nice@HSI-KBW-091-089-027-168.hsi2.kabelbw.de JOIN :#esoteric < 1243285494 0 :kar8nga!unknown@unknown.invalid QUIT :Remote closed the connection < 1243287344 0 :Corun!unknown@unknown.invalid NICK :Corun|away < 1243287428 0 :Corun|away!unknown@unknown.invalid NICK :Corun < 1243288580 0 :KingOfKarlsruhe!unknown@unknown.invalid PRIVMSG #esoteric :yeah, my first C-program is finished, a snusp interpreter < 1243288900 0 :Sgeo!n=Sgeo@ool-18bf68ca.dyn.optonline.net JOIN :#esoteric < 1243289123 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 54 (Connection reset by peer) < 1243289373 0 :pikhq!n=pikhq@75.106.100.192 JOIN :#esoteric < 1243289711 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1243291390 0 :pikhq!n=pikhq@75-106-100-192.cust.wildblue.net JOIN :#esoteric < 1243292014 0 :jix_!unknown@unknown.invalid QUIT :"night" < 1243292919 0 :oerjan!n=oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1243292940 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1243292982 0 :FireFly!unknown@unknown.invalid QUIT :"Later" < 1243292998 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :ais523: i noticed a possible error in the eodermdrome spec < 1243293009 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :ah, whay is it? < 1243293019 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :*what < 1243293047 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :you can have two open nodes that have edges between them in the internal state graph but not the match graph < 1243293053 0 :BeholdMyGlory!unknown@unknown.invalid QUIT :Remote closed the connection < 1243293062 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :and by the description, those edges are removed < 1243293103 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :hmm... I don't think they're meant to be in that situation < 1243293110 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :it's a wiki, do you want to fix it? < 1243293119 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :i'll try < 1243293424 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :changing < 1243293424 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :Deletes all nodes from the internal state graph that correspond to closed nodes in the match subgraph, and all arcs connecting to them < 1243293428 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :Deletes all arcs in the internal state graph between two nodes that both correspond to open nodes in the match subgraph < 1243293433 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :into < 1243293438 0 :KingOfKarlsruhe!unknown@unknown.invalid QUIT :Remote closed the connection < 1243293440 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :# Deletes all arcs in the internal state graph corresponding to arcs in the match subgraph < 1243293444 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :# Deletes all nodes from the internal state graph that correspond to closed nodes in the match subgraph < 1243293671 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :oh wait now there is another problem < 1243293683 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :what if that edge _does_ exist in the replacement subgraph < 1243293737 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :ais523: ^ < 1243293762 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :hmm... I don't know < 1243293779 0 :ais523!unknown@unknown.invalid PRIVMSG #esoteric :given that redundant edges can't otherwise exist in Eodermdrome, I imagine that the two edges consolidate < 1243293817 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :hm ok < 1243293831 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :i guess that's the implicit conclusion < 1243293843 0 :pikhq!n=pikhq@75-106-100-192.cust.wildblue.net JOIN :#esoteric < 1243293957 0 :oerjan!unknown@unknown.invalid PRIVMSG #esoteric :and then the wiki died again < 1243294689 0 :Sgeo!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1243294985 0 :ais523!unknown@unknown.invalid QUIT :Remote closed the connection < 1243295031 0 :Taejo!unknown@unknown.invalid QUIT :"Leaving" < 1243295114 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 54 (Connection reset by peer) < 1243295187 0 :olsner!unknown@unknown.invalid QUIT :"Leaving" < 1243295341 0 :pikhq!n=pikhq@75-106-100-192.cust.wildblue.net JOIN :#esoteric < 1243295691 0 :pikhq!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer)