< 1396828824 643796 :ter2!~tertu@143.44.70.199 QUIT :Read error: Connection reset by peer < 1396828828 887655 :tertu3!~tertu@143.44.70.199 JOIN :#esoteric < 1396829408 82788 :`^_^v!~nycs@rrcs-24-39-141-128.nyc.biz.rr.com QUIT :Read error: Operation timed out < 1396829507 92992 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :"Hoon is real, but whether Hoon is for real is debatable." < 1396830728 769454 :nooodl!~nooodl@91.177.101.239 QUIT :Ping timeout: 240 seconds < 1396830823 361284 :maurer_!~maurer@MIMUNG.ECE.CMU.EDU NICK :maurer < 1396831078 425088 :Koen_!~Koen@vbo91-6-78-245-243-132.fbx.proxad.net QUIT :Quit: The struct held his beloved integer in his strong, protecting arms, his eyes like sapphire orbs staring into her own. "W-will you... Will you union me?" < 1396831118 753377 :john_metcalf!~john_metc@31.185.135.87 QUIT :Read error: Connection reset by peer < 1396831119 785172 :itsy!~john_metc@31.185.135.87 QUIT :Read error: Connection reset by peer < 1396831344 52782 :john_metcalf!~john_metc@31.185.135.87 QUIT :Read error: Connection reset by peer < 1396834286 524218 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07ObjectArt14]]4 10 02http://esolangs.org/w/index.php?diff=39227&oldid=39036 5* 03Ypnypn 5* (+167) 10/* Other numbers */ < 1396835366 208969 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :What is that and why you put too much ^C codes on it? < 1396835487 884623 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :it's wiki updates, of course. < 1396835580 547984 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :when was that added < 1396835615 484221 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :and ^C is the price you pay for not having colors in your client. you chose your road, now you pay the piper < 1396835730 74331 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :this morning < 1396835983 390966 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :I do have colors on my computer < 1396836013 356414 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :And it still has too much regardless of that or not. < 1396836123 853277 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :nah it's fine. the colors look nice. < 1396836134 411425 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :less than `relcome has < 1396836178 134508 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Yes, at least is less than `relcome has. < 1396836354 274760 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :I found a example code to make up a custom aggregate function in PostgreSQL. It looks like terrible to me! The syntax I implemented is clearly better (at least to me, it is). The PostgreSQL code is: CREATE FUNCTION append_id(TEXT, INTEGER) RETURNS TEXT AS ' SELECT CASE WHEN $2 = 0 THEN $1 ELSE $1 || '' '' || CAST($2 AS TEXT) END;' LANGUAGE 'sql' WITH (ISCACHABLE, ISSTRICT); CREATE AGGREGATE id_list ( SFUNC = append_id, BASETYPE = INTEGER, S < 1396836359 306620 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Would you call it terrible? < 1396836488 197481 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :yes. but then all sql languages are terrible < 1396836589 454796 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :I think SQLite is better. It doesn't have any CREATE FUNCTION built-in but I added one. < 1396836696 245695 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Is this way better? CREATE FUNCTION ID_LIST(X) ACCUMULATING(R = NULL SET TO COALESCE(R || ' ' || X,X)) AS COALESCE(R,''); < 1396836740 474833 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :(You don't need it anyways, since SQLite has a "group_concat" function built-in which does this, but it is to demonstrate the example.) < 1396836781 524942 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :quintopia: Why do you think SQL is terrible? < 1396836859 218411 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :zzo38: it doesn't feel like programming. if you want to have a point-free query scheme for manipulating data, why not use a dataflow/concatenative language? < 1396836876 940529 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :SQL isn't point-free... < 1396836882 705214 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :not really anyway < 1396836901 428863 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :not anymore. but that only makes it worse. < 1396836919 390965 :SpaceWizard!~Apollo@cpe-76-178-249-81.maine.res.rr.com QUIT :Read error: Operation timed out < 1396836920 624997 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :quintopia: SQL looks fine to do such thing, to me. At least SQLite is; procedural SQL and that stuff tends to be more terrible. < 1396837074 303241 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :i also think bash looks ugly. perhaps that is influencing my judgment... < 1396837126 55636 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Maybe < 1396837448 45845 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :It seems my syntax may not be suitable for some kinds of aggregate functions though; for that it may be useful to define an alternate syntax, which puts all input records in one temporary table which is accessed by the expression after "AS". For example, it might help if you want to calculate the median of a data set. < 1396837588 565966 :Frooxius!~Frooxius@cust-101.ktknet.cz JOIN :#esoteric < 1396837850 855272 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :<3 foobar2000's gapless playback < 1396837967 555675 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :"I don't like most of the music on Magnatune.com..... but you might" < 1396837988 485531 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you know even iTunes has done gapless playback for years now, right? < 1396838002 685598 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :I never used iTunes < 1396838015 557285 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 PRIVMSG #esoteric :Heck, Winamp did it way back in the day. < 1396838043 638309 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :I've used WinAmp... maybe I haven't used it with albums that need gapless playback (Ridin' the Faders and one particular Enya album) < 1396838084 235279 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 PRIVMSG #esoteric :Admittedly, all gapless playback fails horribly if done with not-well-encoded MP3 files. < 1396838105 485299 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :Incidentally, Magnatune butchered Ridin' the Faders when it started inserting ads < 1396838107 386428 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric ::( < 1396838146 875632 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 PRIVMSG #esoteric :(MP3 files will have a bit of silence in them for padding) < 1396838219 695464 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :i hear winamp really whupps the llama's ass < 1396838512 757002 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :oerjan must have been asleep... < 1396838558 330096 :HackEgo!~HackEgo@162.248.166.242 QUIT :Ping timeout: 240 seconds < 1396838568 967071 :HackEgo!~HackEgo@162.248.166.242 JOIN :#esoteric < 1396839009 995397 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Cyclic tag system14]]4 10 02http://esolangs.org/w/index.php?diff=39228&oldid=39187 5* 03Quintopia 5* (+1808) 10Undo revision 39187 by [[Special:Contributions/Oerjan|Oerjan]] ([[User talk:Oerjan|talk]]) (were you asleep when you did this?) < 1396839195 296277 :jconn!~va@1-130.ipswich.cc.colocall.com JOIN :#esoteric < 1396839265 486992 :HackEgo!~HackEgo@162.248.166.242 QUIT :Ping timeout: 252 seconds < 1396839551 517413 :tertu3!~tertu@143.44.70.199 QUIT :Ping timeout: 252 seconds < 1396839840 236297 :tertu!~tertu@143.44.70.199 JOIN :#esoteric < 1396840625 266430 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Did you read my latest Dungeons&Dragons recording that I typed yesterday? < 1396841331 705896 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :Ugh, whenever I buy cup noodles, I go through a cycle of thinking that the 7-eleven clerk might think I'm poor, then feeling guilty about the previous thought < 1396841367 755753 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :just buy them in industrial quantities from the manufacturer < 1396841392 926929 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 PRIVMSG #esoteric :Sgeo: It is highly unlikely the clerk even particularly cares. < 1396841409 681904 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 PRIVMSG #esoteric :Also, cup noodles are an indicator of either poverty *or laziness*. < 1396841416 581179 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :I would think the clerk wouldn't (and shouldn't) care. < 1396841428 5768 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :Also, I usually end up asking if I can use their hot water < 1396841454 735473 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 PRIVMSG #esoteric :But yeah. You are generally a very uninteresting part of their day. < 1396841635 455944 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :Ok. I have had an awesome song on my computer since 2005, carried with me through a variety of systems, and I haven't heard it until now < 1396841638 536606 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :At all, that I remember < 1396841643 336834 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :I might not have remembered < 1396841644 637228 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Even if they do think of such thing, probably they don't care, and it wouldn't affect you, anyways. < 1396841827 472034 :nisstyre!~yourstrul@oftn/member/Nisstyre JOIN :#esoteric < 1396842646 51946 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net QUIT :Quit: SoniEx2 < 1396842669 111475 :Sorella!~queen@oftn/member/Sorella QUIT :Quit: It is tiem! < 1396842968 309945 :tertu!~tertu@143.44.70.199 QUIT :Ping timeout: 240 seconds < 1396842980 227615 :tertu!~tertu@143.44.70.199 JOIN :#esoteric < 1396843168 287091 :tromp!~tromp@ool-4570a22a.dyn.optonline.net JOIN :#esoteric < 1396843947 186800 :tertu!~tertu@143.44.70.199 QUIT :Ping timeout: 255 seconds < 1396843986 104417 :tertu!~tertu@143.44.70.199 JOIN :#esoteric < 1396844136 735937 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :I need a better way to indicate which pieces of music are my favorites < 1396844149 396744 :tromp!~tromp@ool-4570a22a.dyn.optonline.net QUIT :Ping timeout: 252 seconds < 1396844165 216622 :tromp!~tromp@ool-4570a22a.dyn.optonline.net JOIN :#esoteric < 1396844171 401050 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :In the past, I've used KDE ... marker things (or maybe GNOME marker things), Windows shortcuts, and literally copy/pasting the file so that I get "Copy of ..." < 1396844181 686568 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :Only the last one survived to this day < 1396844196 535563 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :executable bits hth < 1396844272 676385 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :I would question whether that would actually have survived to the present, but apparently I have last modified dates that have survived from 2005 < 1396844739 303696 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :http://archive.wired.com/robots.txt huh. < 1396844987 335775 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Move (or delete) the music you don't like. < 1396846199 747190 :Vorpal!~Vorpal@unaffiliated/vorpal QUIT :Quit: ZNC - http://znc.sourceforge.net < 1396846689 586141 :tertu!~tertu@143.44.70.199 QUIT :Ping timeout: 252 seconds < 1396846707 140252 :tertu!~tertu@143.44.70.199 JOIN :#esoteric < 1396846835 8440 :tertu!~tertu@143.44.70.199 QUIT :Disconnected by services < 1396846835 712719 :ter2!~tertu@143.44.70.199 JOIN :#esoteric < 1396846888 291689 :nisstyre!~yourstrul@oftn/member/Nisstyre QUIT :Quit: bai < 1396846950 256367 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :zzo38: The too many ^C codes are part of stock MediaWiki; they're from the IRCColourfulRCFeedFormatter of http://www.mediawiki.org/wiki/Manual:$wgRCFeeds and there's no IRCColourlessRCFeedFormatter available. (Though I could have stripped the color codes off myself, I guess.) < 1396848357 287047 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Why didn't you just modify it? < 1396848579 371954 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 QUIT :Ping timeout: 245 seconds < 1396848710 428890 :pikhq!~pikhq@2602:100:18b2:fbfb:a60:6eff:fece:493 JOIN :#esoteric < 1396849536 157277 :ter2!~tertu@143.44.70.199 QUIT :Ping timeout: 255 seconds < 1396850664 788504 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net JOIN :#esoteric < 1396851151 67237 :zzo38!~zzo38@24-207-51-179.eastlink.ca QUIT :Ping timeout: 255 seconds < 1396851238 326658 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I saw no particular reason to, for the channel of `relcome and all. < 1396851470 157030 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Curious; the latest few recent changes have not been announced. < 1396851477 46474 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Didn't think it was *that* brittle. < 1396851579 766734 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Broken down it has, indeed. Strange. Even though the bridge bit is still running. < 1396851671 778590 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh, there's no HackEgo connected. < 1396851701 796823 :HackEgo!~HackEgo@162.248.166.242 JOIN :#esoteric < 1396851711 242166 :zzo38!~zzo38@24-207-51-179.eastlink.ca JOIN :#esoteric < 1396851747 440427 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I don't know what has broken the post-reconnection rejoin of HackEgo; I haven't touched that part. (And it rejoined after that one ping timeout up there, at 02:43 UTC, but not after the 02:55 UTC one.) < 1396851755 327465 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] testing, testing, 1, 2, 3 < 1396851763 646603 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :At least that part had not broken down. < 1396852713 830527 :not^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net JOIN :#esoteric < 1396852768 216693 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :inlining a lambda into its caller is a kind of constant propagation < 1396852796 803985 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :also, compression is learning < 1396852931 748362 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net QUIT :Ping timeout: 252 seconds < 1396853029 616647 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :http://mushroomobserver.org/162974?q=1ttKN found & photographed by douglass_ in our backyard < 1396853241 527221 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :difficult not to read as mushroom mob server < 1396853285 638415 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :lazy is strict, right? < 1396853296 746908 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i saw that mushroom today < 1396853299 256657 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net PRIVMSG #esoteric :It just lies to the strictness analyzer? < 1396853391 987274 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :shachaf: you could vote on what kind it is < 1396855386 19500 :douglass_!~iridium@home-on-the-dome.mit.edu PRIVMSG #esoteric :technically the one you saw is not pictured though i might add a picture < 1396855396 63651 :douglass_!~iridium@home-on-the-dome.mit.edu PRIVMSG #esoteric :it didn't turn out quite as well < 1396855434 987136 :douglass_!~iridium@home-on-the-dome.mit.edu PRIVMSG #esoteric :http://www.mushroomexpert.com/major_groups.html here's a key you can use < 1396855631 907144 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :http://www.mushroomexpert.com/abnormal.html < 1396855635 710324 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :a three-headed morel! < 1396856342 452693 :douglass_!~iridium@home-on-the-dome.mit.edu PRIVMSG #esoteric :I found an Agaricus with another perfectly formed cap growing right out of the top < 1396856346 637644 :douglass_!~iridium@home-on-the-dome.mit.edu PRIVMSG #esoteric :didn't get a picture though < 1396856366 775508 :douglass_!~iridium@home-on-the-dome.mit.edu PRIVMSG #esoteric :(this was on Mt. Sutro a bit before I found the Chicken of the Woods that I cloned.) < 1396856390 84731 :MindlessDrone!~MindlessD@unaffiliated/mindlessdrone JOIN :#esoteric < 1396856484 618765 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :Bike: huh indeed < 1396856838 398932 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu QUIT :Ping timeout: 240 seconds < 1396856938 526880 :not^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net QUIT :Quit: http://i.imgur.com/DrFFzea.png < 1396857024 227760 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu JOIN :#esoteric < 1396857043 856915 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :whenever i shut down my computer the display totally goes to shit, it almost looks like snow < 1396857049 357120 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :wonder if it's the weird proprietary drivers somehow < 1396857119 786449 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :it's uploading nam-shubs thru yr. optic nerve < 1396857144 468352 :lexande!arapp@terpsichore.ugcs.caltech.edu PRIVMSG #esoteric :#badbios < 1396857290 16685 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :oh shit < 1396858011 47411 :Slereah!~jackal@117.168.90.79.rev.sfr.net JOIN :#esoteric < 1396858078 446896 :Slereah_!~jackal@117.168.90.79.rev.sfr.net QUIT :Ping timeout: 240 seconds < 1396859371 116513 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1396860122 387769 :conehead!~conehead@unaffiliated/conehead QUIT :Quit: Computer has gone to sleep < 1396860330 305251 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :http://sprunge.us/dELU (paraphrasing from Finnish) well, that's a big change indeed. < 1396860710 546529 :ion!ion@heh.fi PRIVMSG #esoteric ::-) < 1396860817 864550 :john_metcalf!~john_metc@31.185.135.87 QUIT :Ping timeout: 252 seconds < 1396860825 16534 :impomatic!~digital_w@31.185.135.87 QUIT :Ping timeout: 252 seconds < 1396861056 146697 :nooodl!~nooodl@91.177.101.239 JOIN :#esoteric < 1396861114 20487 :Patashu[Zzz]!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1396861114 211033 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Disconnected by services < 1396861411 177342 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1396861449 229076 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Quit: Leaving... < 1396861460 59635 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`echo hi < 1396861460 764305 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :hi < 1396861479 348920 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`echo ho < 1396861479 933909 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :ho < 1396861485 929494 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's off to work we go. < 1396861492 869 :vravn!~vravn@syn.rook.sx QUIT :Ping timeout: 255 seconds < 1396861492 277578 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i'm not getting to the codu logs < 1396861511 598294 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :WFM < 1396861528 539478 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Stalker mode, at least.) < 1396861533 720581 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm... < 1396861591 25805 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :what is the name of that effect where things start working as soon as you get someone to look at it < 1396861611 316195 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(fine for me, as long as it gets me to the logs) < 1396861723 920902 :vravn!~vravn@syn.rook.sx JOIN :#esoteric < 1396861843 912741 :olsner!~salparot@c83-252-203-32.bredband.comhem.se JOIN :#esoteric < 1396862037 139007 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Cyclic tag system14]]4 M10 02http://esolangs.org/w/index.php?diff=39231&oldid=39229 5* 03Oerjan 5* (+1) 10/* Example */ A paranoid test < 1396862081 522862 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think it's called "the demo effect", at least in Finnish and hereabouts. < 1396862101 447470 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :quintopia: my only explanation is that i somehow had two edit windows open, one only for the section and one for the whole article, and somehow pasted from vim into the wrong one < 1396862142 374286 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :fizzie, the demo effect sounds like the other way round to me < 1396862151 750312 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :ie, things stop working when you try to show them off < 1396862217 176017 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :quintopia: that, and somehow missing my routine of checking my edits afterwards. maybe i _was_ asleep. < 1396862271 968150 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :it's annoying when that effect happens to bugs I'm supposed to fix < 1396862436 699526 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Taneb: I think it's (at least occasionally) applied both ways, here; as in, also for bugs that stop "working" (start working) when you try to show them off. < 1396862458 288598 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :I guess that makes sense < 1396862841 920113 :Slereah!~jackal@117.168.90.79.rev.sfr.net QUIT :Ping timeout: 255 seconds < 1396863035 167332 :tromp!~tromp@ool-4570a22a.dyn.optonline.net QUIT :Ping timeout: 246 seconds < 1396864069 667542 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :GG has an 4th wall breaking almost title-drop today :) < 1396864117 107561 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : http://archive.wired.com/robots.txt huh. <-- i had to test one of those, didn't i :( < 1396864463 436200 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :argh. http://esolangs.org/wiki/Universal_Machine and http://esolangs.org/wiki/UM-32 are duplicates. I didn't search carefully enough. < 1396864484 316415 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :how should I clean these up? should I merge the former into the latter? < 1396864516 235535 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :yeah i think UM-32 is a better name < 1396864533 890663 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :but where's that name from? is it mentioned somewhere in the task description? < 1396864543 255230 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :ah indeed < 1396864552 256180 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :http://boundvariable.org/um-spec.txt says "Object: UM-32 "Universal Machine"" < 1396864670 583205 :MindlessDrone!~MindlessD@unaffiliated/mindlessdrone QUIT :Quit: MindlessDrone < 1396865033 602928 :bigbugkik!~bigbugkik@91.213.220.94 QUIT :Remote host closed the connection < 1396865271 25714 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07UM-3214]]4 10 02http://esolangs.org/w/index.php?diff=39232&oldid=25362 5* 03B jonas 5* (+1066) 10 < 1396865428 355607 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Universal Machine14]]4 10 02http://esolangs.org/w/index.php?diff=39233&oldid=39226 5* 03B jonas 5* (+107) 10 < 1396865448 945343 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Universal Machine14]]4 10 02http://esolangs.org/w/index.php?diff=39234&oldid=39191 5* 03B jonas 5* (-1201) 10Redirected page to [[UM-32]] < 1396865478 245528 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Language list14]]4 10 02http://esolangs.org/w/index.php?diff=39235&oldid=39209 5* 03B jonas 5* (-24) 10 < 1396865568 8625 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i can see this getting annoying with those people who edit articles in tiny steps < 1396865584 586334 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It'll probably break down far before that. < 1396865592 466759 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :hmm, is this the first instance of a bot with a useful function for this channel? < 1396865607 437630 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :fungot: Did you hear that?! < 1396865607 977394 :fungot!fis@eos.zem.fi PRIVMSG #esoteric :fizzie: mr papayannakis, is going to deal with it seriously with socio-economic accompaniment measures which, if implemented, will offer a referendum to the national data protection authorities, according to whether the us measures, which are normally very small and the large export capacity of many developing countries. < 1396865675 144870 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1396865693 895943 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :hoily < 1396865743 375445 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :olsner: you so mean < 1396865791 749565 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :`welcome.es is useful isn't it < 1396865792 375051 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: welcome.es: not found < 1396865809 826135 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`bienvenido < 1396865810 646136 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​¡Bienvenido al centro internacional para el diseño y despliegue de lenguajes de programación esotéricos! Por desgracia, la mayoría de nosotros no hablamos español. Para obtener más información, echa un vistazo a nuestro wiki: http://esolangs.org/. (Para el otro tipo de esoterismo, prueba #esoteric en irc.dal.net.) < 1396865825 548764 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :helooodl! < 1396865853 311783 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :today is «journée d'élections»! < 1396865948 880898 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Today, the university main building had Finnish flags in the set of five flagpoles beside the main entrance, as opposed to the silly colorful university flags they usually do. < 1396865953 639907 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :So it's probably some sort of a day. < 1396866010 715929 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :fizzie: clearly celebrating canadian journée d'élections < 1396866018 842313 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Though I don't think I saw flags out there generally, so maybe it's something more specific. < 1396866049 65683 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07User:Nooodl/test14]]4 N10 02http://esolangs.org/w/index.php?oldid=39236 5* 03Nooodl 5* (+2) 10Created page with "hi" < 1396866072 108282 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :maybe User: namespace edits shouldn't be reported < 1396866093 356460 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :"International Bird Migration Day in Costa Rica" it's probably not that < 1396866106 914764 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :they'd not use finnish flags then < 1396866120 235346 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The feed functionality didn't really have any options. Other than to hide bot edits, but I guess we don't have any wikibots? < 1396866149 830142 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :fungot: are you a wikibot? < 1396866150 475018 :fungot!fis@eos.zem.fi PRIVMSG #esoteric :boily: madam president, please allow me to make one observation and three recommendations. as i have already referred to some of you have referred to, which may be suffered by women on account of support from the structural reform process laid down in the wait-and-see policy and the activities of the paramilitaries' involvement in the support of all current internal investigations involving allegations of fraud and irregulariti < 1396866154 596717 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Could add a d in the sed, I guess. < 1396866167 406476 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :oerjan: that's the day they can air the flags without worrying because the birds will be away ;) < 1396866206 340318 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fizzie: well during major spam runs we sometimes turn on the bot flag to make them disappear. but that only works in afterthought. < 1396866207 75642 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :it's a congress bot now. < 1396866220 111386 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*disappear from recent changes < 1396866279 711913 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Speaking of which, is Freefall now going to turn into a month of heated debate? < 1396866293 115339 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :good question < 1396866308 414610 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :no, i think it'll be at least 3 months hth < 1396866370 196021 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i guess it might be alternating with sam and florence < 1396866393 133418 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :so make that a year of on-off debate. < 1396866440 125023 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Ah, first we have to rehash all of Asimov's logic tricks. < 1396866462 856922 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Oh well, let's wait and see. < 1396866498 488688 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Maybe Dr. Bowman gets a chance to make an appearance and save the day. That could be fun. < 1396866554 426234 :SpaceWizard!~Apollo@cpe-76-178-249-81.maine.res.rr.com JOIN :#esoteric < 1396866579 16773 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Deadfish14]]4 10 02http://esolangs.org/w/index.php?diff=39237&oldid=38919 5* 03Nooodl 5* (-59486) 10/* Implementations */ move to separate article < 1396866621 158562 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I guess it's even borderline possible that the wiki notices might get more people work on it? < 1396866658 944900 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Deadfish implementations14]]4 N10 02http://esolangs.org/w/index.php?oldid=39238 5* 03Nooodl 5* (+59587) 10Created page with "Implementations of the '''[[Deadfish]]''' language. Some of these implementations may not be considered fully compliant, sometimes because an implementor has implemented the ..." < 1396866758 37442 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :nooodl: eek < 1396866766 995023 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :you are ruining years of tradition here < 1396866818 515473 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :is the tradition to stretch out the deadfish page to ridiculous lengths!! < 1396866825 112654 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also the number of implementations is the most impressive part of the deadfish page < 1396866828 644776 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :yes! < 1396866854 821402 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :"The language defined by the Revised Revised Revised Revised Revised Report on the Algorithmic Language Scheme" < 1396866866 273759 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :what if they revise it again, will you add another entry? < 1396866882 105819 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :they already did. and are doing it again. < 1396866925 509495 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :but the implementation is in R5RS < 1396866962 120671 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(whether there are any changes that would break it in later ones, i don't know) < 1396867014 984827 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :R⁷RS is getting to be pretty close to finished, these days. < 1396867131 204809 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`unidecode ⁷ < 1396867131 874865 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+2077 SUPERSCRIPT SEVEN] < 1396867284 634422 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Shouldn't've been fancy, I see. < 1396867387 127787 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :I see dead superscript sevens... < 1396867819 101975 :password2!~password@197.78.159.110 JOIN :#esoteric < 1396868520 514780 :boily!~boily@96.127.201.149 QUIT :Quit: CITIZEN CHICKEN < 1396868655 208076 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :speaking of deadfish: i ~omg optimized~ the hello world, and also generalized it < 1396868691 104408 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :http://sprunge.us/EJAQ like so < 1396871848 327675 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1396871919 170984 :Patashu[Zzz]!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 255 seconds < 1396871996 847138 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Client Quit < 1396872540 118746 :yorick!~yorick@oftn/member/yorick JOIN :#esoteric < 1396872950 936113 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1396873430 644166 :augur!~augur@129-2-129-33.wireless.umd.edu JOIN :#esoteric < 1396873815 473774 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nooodl: we might as well delete the deadfish article if it isn't filled with implementations < 1396874318 828260 :Sorella!~queen@oftn/member/Sorella JOIN :#esoteric < 1396874481 668585 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :elliott: should i put 'em back? < 1396874498 755849 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :well, arguable. I mean, it is deadfish < 1396874976 834019 :Sgeo!~quassel@ool-44c2df0c.dyn.optonline.net QUIT :Read error: Connection reset by peer < 1396875035 304663 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :. o O ( clearly there should be two pages, one with, and one without the implementations, in addition to the separate page of implementations, just to satisfy all tastes. ) < 1396875409 728657 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Also one empty page with neither the implementations, nor the language. < 1396875789 348112 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :and one stub with all the [citation needed] annotations. < 1396876368 769865 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: leaving < 1396876647 341242 :S1!8d1fe87a@gateway/web/cgi-irc/kiwiirc.com/ip.141.31.232.122 JOIN :#esoteric < 1396876848 832099 :SpaceWizard!~Apollo@cpe-76-178-249-81.maine.res.rr.com QUIT :Read error: Operation timed out < 1396877261 605080 :`^_^v!~nycs@rrcs-24-39-141-128.nyc.biz.rr.com JOIN :#esoteric < 1396877836 321275 :Sellyme!~Sellyme@199.127.227.147 QUIT :Excess Flood < 1396877866 793753 :Sellyme!~Sellyme@irc.sellyme.com JOIN :#esoteric < 1396877867 231292 :Sellyme!~Sellyme@irc.sellyme.com QUIT :Excess Flood < 1396877927 994900 :Sellyme!~Sellyme@199.127.227.147 JOIN :#esoteric < 1396878750 839175 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us JOIN :#esoteric < 1396880122 26288 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 255 seconds < 1396880633 46712 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us QUIT :Read error: Operation timed out < 1396880687 513625 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us JOIN :#esoteric < 1396880920 958153 :zzo38!~zzo38@24-207-51-179.eastlink.ca QUIT :Remote host closed the connection < 1396881130 578393 :lambdabot!~lambdabot@silicon.int-e.eu QUIT :Remote host closed the connection < 1396881391 445322 :lambdabot!~lambdabot@silicon.int-e.eu JOIN :#esoteric < 1396881409 994665 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@faq < 1396881415 448330 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :The answer is: Yes! Haskell can do that. < 1396881504 37171 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Oh I meant to change that. < 1396881526 271651 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :change why? < 1396881533 598272 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@where faq < 1396881533 819892 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :http://www.haskell.org/haskellwiki/FAQ < 1396881577 14587 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :That seems to be a slightly more useful reply. < 1396881599 301767 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Less cheeky. < 1396881633 722565 :Sellyme!~Sellyme@199.127.227.147 NICK :BenignAardvark < 1396881646 489581 :BenignAardvark!~Sellyme@199.127.227.147 NICK :Sellyme < 1396881793 890080 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :int-e: enjoy all the whining you get in #haskell for it :) < 1396881841 963535 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :elliott: when was the last time you saw @faw being used on #haskell? My backlog isn't long enough ... < 1396881848 34634 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@faq even < 1396881848 234306 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :The answer is: Yes! Haskell can do that. < 1396881858 719895 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :lambdabot: oh shuddup. < 1396881888 297769 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :int-e: I don't know, I left. but people made lots of sad faces at me just for saying I'd make @faq do that, when it was being used unhelpfully like once a day. < 1396881894 470539 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :even in -ops :p < 1396881918 235470 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :maybe the problem has gotten better. < 1396881936 233183 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :I'm inclined to silently change it and wait for the complaints. < 1396881950 337860 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :But it can wait for the ghc 7.8 update. < 1396881981 99157 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :run on GHC HEAD! it'll be more exciting < 1396882035 244422 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :thanks, no. < 1396882049 334699 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :up to a month ago half of the dependencies didn't even build < 1396882073 637839 :john_metcalf!~john_metc@31.185.135.87 QUIT :Ping timeout: 240 seconds < 1396882074 374603 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :(I was surprised to find last weekend that they do build now) < 1396882431 437886 :S1!8d1fe87a@gateway/web/cgi-irc/kiwiirc.com/ip.141.31.232.122 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1396882686 307371 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric ::-) < 1396882938 165920 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :http://article.gmane.org/gmane.comp.mozilla.devel.platform/7648 hell yeah < 1396883020 270627 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :and all I needed for getting lambdabot to compile was a role annotation in a hs-boot file: https://github.com/int-e/lambdabot/commit/dc7ee36480a3e2b4e1b25d0022de72b764029bf7 < 1396883175 593577 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Hmm. Should I feel bad about abusing this channel for talking about lambdabot? < 1396883196 797526 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :have you noticed how little we talk about esolangs? < 1396883219 664319 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Of course. < 1396883298 411995 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :I have written much code for lambdabot. Unfortunately the reference implementation changes often. < 1396883328 360502 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :couldn't you just have @faq say both < 1396883346 677748 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :@dice d20 < 1396883346 881634 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :int-e: 11 < 1396883348 677858 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :no. < 1396883381 734395 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :@faq couldn't you just have @faq say both < 1396883381 939999 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :The answer is: Yes! Haskell can do that. < 1396883437 851752 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :i doubt that question is asked frequently < 1396883491 267279 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :What are you, a frequentist? < 1396883493 334743 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :If I wanted random answers I'd change @faq into an 8ball clone. < 1396883599 564080 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :if you want an 8-ball, /msg perlbot 8ball your question here < 1396883622 760437 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us QUIT :Quit: Leaving < 1396883641 836061 :SpaceWizard!~Apollo@169.244.180.190 JOIN :#esoteric < 1396883660 718900 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Despite Pugs I still believe that using Perl is against the spirit of Haskell. < 1396883685 285278 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :If you want an 8-ball, wait a random period of time and ask #haskell whether you can retrieve the IO from an IO String < 1396883711 498525 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Jafet: That sounds like a viable approach. < 1396883733 390416 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Jafet: Assuming you meant to retrieve the String. < 1396883750 964320 :zzo38!~zzo38@24-207-51-179.eastlink.ca JOIN :#esoteric < 1396883752 984406 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :@quote IO.from < 1396883753 182678 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :No quotes match. You untyped fool! < 1396883780 713916 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :@quote monochrom IO.String < 1396883781 390976 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :monochrom says: How do I extract the IO out of IO String? < 1396883809 291683 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :Oh. Typical monochrom there. < 1396883835 157104 :MindlessDrone!~MindlessD@unaffiliated/mindlessdrone JOIN :#esoteric < 1396885008 520483 :SpaceWizard!~Apollo@169.244.180.190 QUIT :Read error: Operation timed out < 1396885108 345076 :SpaceWizard!~Apollo@169.244.180.190 JOIN :#esoteric < 1396885202 241565 :tromp!~tromp@69.112.160.118 JOIN :#esoteric < 1396885300 767211 :tromp!~tromp@69.112.160.118 QUIT :Read error: Connection reset by peer < 1396885343 781108 :tromp!~tromp@ool-4570a076.dyn.optonline.net JOIN :#esoteric < 1396885407 883026 :nucular!~MOO@unaffiliated/nucular JOIN :#esoteric < 1396885596 371949 :tromp!~tromp@ool-4570a076.dyn.optonline.net QUIT :Ping timeout: 252 seconds < 1396888201 961914 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Do you play a computer game "Sub-EBCDIC ZZT Village Part II"? < 1396888214 436995 :SpaceWizard!~Apollo@169.244.180.190 QUIT :Ping timeout: 252 seconds < 1396888475 729527 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us JOIN :#esoteric < 1396889074 774270 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net JOIN :#esoteric < 1396889664 553941 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`olist (948) < 1396889665 310392 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :olist (948): shachaf oerjan Sgeo FireFly boily nortti < 1396890009 838212 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Remember: Quidquid latine dictum sit, altum viditur. < 1396890090 762566 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net PRIVMSG #esoteric :\o/ the barely wiki page is wrong, also the brainfuck conversions are now wrong < 1396890105 463836 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net PRIVMSG #esoteric :Y u no test. < 1396890163 514875 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :Then you should fix it please. < 1396890179 396354 :S1!~chatzilla@p4FF93BC5.dip0.t-ipconnect.de JOIN :#esoteric < 1396890188 939153 :S1!~chatzilla@p4FF93BC5.dip0.t-ipconnect.de PART :#esoteric < 1396890838 341094 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:MarioLANG14]]4 10 02http://esolangs.org/w/index.php?diff=39239&oldid=37562 5* 03T.J.S.1 5* (+119) 10correction about 99bottles program < 1396891278 284048 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us QUIT :Ping timeout: 255 seconds < 1396892363 28013 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us JOIN :#esoteric < 1396893328 719623 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :idea i had: can you perform any calculations using the functions and constants in python's "math" module < 1396893357 728144 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :looks like A+B is pow(hypot(sqrt(A),sqrt(B)),trunc(gamma(pi))) < 1396893633 780330 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :reasonable < 1396893647 585467 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :A*B is log(pow(exp(A),B)) and A+B is log(exp(A)*exp(B)) is log(log(pow(exp(exp(A)),exp(B)))) but that hits floating-point range errors pretty soon. < 1396893655 813919 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It can compute 1+2 but not 5+7. < 1396893765 578683 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :2+3 is still okay, too, and only involves 2.851123567946167e+64 as an intermediate number. < 1396893886 647122 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :does "math" allow you to specify a base for log? i know mpmath does. if so, you can use 1.0000000000001 as a base and add large numbers too < 1396894442 642302 :chaiomanot!~chaiomano@72-161-15-177.dyn.centurytel.net PART #esoteric :"Leaving" < 1396894484 372971 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It does, yes. < 1396894493 688396 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(That is a true.) < 1396894633 149448 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :log_a(b) = log(b)/log(a) (where _ indicates a subscript) < 1396894681 192 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :int-e: / is not in the module < 1396894717 630426 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Though since you can give base as an argument, maybe that's a way to do A/B. < 1396894720 356350 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :>>> log(log(pow(pow(1.0000000000001,pow(1.0000000000001,17)),pow(1.0000000000001,13)),1.0000000000001),1.0000000000001) < 1396894723 602183 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :0.0 < 1396894724 875671 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Has some round-off problems, though. < 1396894728 12972 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :>>> log(log(pow(pow(1.001,pow(1.001,17)),pow(1.001,13)),1.001),1.001) < 1396894728 217543 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :30.00000000004227 < 1396894732 262390 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That's quite close. < 1396894734 768466 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :tan(atan2(A,B)) works sometimes! < 1396894759 48667 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :quintopia: I missed the significance of the quotes. < 1396894772 360639 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :ACTION goes back to reading webcomics. < 1396894857 99137 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :fizzie: a power of -1 seems to be the obvious way to do A/B. i would expect less error. < 1396894991 442005 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :also the "gimmick" is you have to construct your constants from functions and math.e and math.pi!! < 1396895166 884060 :Melvar!~melvar@dslb-088-077-168-087.pools.arcor-ip.net PRIVMSG #esoteric :@run π < 1396895167 934112 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Not in scope: `π' < 1396895484 987717 :SpaceWizard!~Apollo@WatchGuard.ellsworth-hs.ellsworth.k12.me.us QUIT :Ping timeout: 255 seconds < 1396895735 363854 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :nooodl: well, that pretty much bars you from doing large numbers. < 1396895879 188411 :password2!~password@197.78.159.110 QUIT :Ping timeout: 246 seconds < 1396896128 710078 :zzo38!~zzo38@24-207-51-179.eastlink.ca QUIT :Remote host closed the connection < 1396896244 402318 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :>>> b = tanh(e); log(log(pow(pow(b,pow(b,17)),pow(b,13)),b),b) < 1396896244 609309 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :30.000000000000284 < 1396896247 949602 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That's not too shabby. < 1396896260 320027 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Though summing via hypot is much more sane, I'm not arguing against that. < 1396896269 545464 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(tanh is a nice way to get numbers close to one.) < 1396896335 839760 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :hmm didn't think of that < 1396896479 427470 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I assume you'd count fsum((A,B)) cheating? < 1396896532 128153 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :yeah (imo forming tuples isn't in the module) < 1396896551 216906 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :fsum(frexp(1)) though < 1396896821 41976 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :i've been thinking about having an esolang that gives you complex built-ins and forces you to build simple things through creative use of them < 1396897108 655313 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there was that language on the wiki recently < 1396897326 377189 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :http://esolangs.org/wiki/SELECT. hm! < 1396897562 48633 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07SELECT.14]]4 M10 02http://esolangs.org/w/index.php?diff=39240&oldid=38622 5* 03Quintopia 5* (-1) 10/* Etymology */ grammar and spelling < 1396897713 554605 :nucular!~MOO@unaffiliated/nucular QUIT :Quit: Excess Food < 1396897867 475586 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :mmm food < 1396897875 250217 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :time to get ready for work < 1396897997 404874 :MindlessDrone!~MindlessD@unaffiliated/mindlessdrone QUIT :Quit: MindlessDrone < 1396898145 856198 :conehead!~conehead@unaffiliated/conehead JOIN :#esoteric < 1396898254 259330 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 245 seconds < 1396900104 740673 :nooodl!~nooodl@91.177.101.239 PRIVMSG #esoteric :what's that red M. minor edit? < 1396900168 871593 :Mortape123!a81acd71@gateway/web/freenode/ip.168.26.205.113 JOIN :#esoteric < 1396900216 545401 :Mortape123!a81acd71@gateway/web/freenode/ip.168.26.205.113 QUIT :Client Quit < 1396900229 740693 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yes. < 1396900248 305232 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Nice to have it bright red like that, so that you don't miss any of those minor edits. < 1396900354 533483 :sebbu!~sebbu@ADijon-152-1-55-33.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1396900393 204834 :sebbu!~sebbu@ADijon-152-1-55-33.w83-194.abo.wanadoo.fr QUIT :Changing host < 1396900393 446753 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1396900554 220104 :SpaceWizard!~Apollo@cpe-76-178-249-81.maine.res.rr.com JOIN :#esoteric < 1396901039 613490 :ion!ion@heh.fi PRIVMSG #esoteric :verily < 1396901131 756915 :elliott_!~elliott@unaffiliated/elliott JOIN :#esoteric < 1396901377 866331 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :`coins < 1396901379 388576 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :nandcoin schecoin mailaxcoin biltcoin shinycoin checoin knglycoin biecoin percoin ~coin birdhmentalkcoin ooetiocoin gultermanaxatificularycogschcoin firecoin bulocoin rel-petcoin gottcoin henetidadcoin leszecoin congcoin < 1396901395 212342 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :kind of want HackEgo to join ##crypto just for that < 1396901417 640188 :fizzie!fis@unaffiliated/fizzie QUIT :*.net *.split < 1396901418 347077 :elliott!~elliott@unaffiliated/elliott QUIT :*.net *.split < 1396901443 361284 :fizzie!fis@unaffiliated/fizzie JOIN :#esoteric < 1396901648 683158 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :maybe you could arrange for `coins to temporarily join ##crypto, dump that, then leave < 1396901720 981849 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :(but I suspect the connections to IRC are managed outside the sandbox in a way that makes that messy) < 1396901766 607074 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :i hope so < 1396901782 781550 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :olsner: You are a correct. < 1396901786 615674 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Make a bot that tunnels coinage to the other channel < 1396901863 962764 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :My hard drive is almost full so I am going to get a new one < 1396901869 959629 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :That is much larger < 1396901919 963681 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :it's a trap, the new disk will also run out of space < 1396901947 470593 :FireFly!~firefly@oftn/member/FireFly PRIVMSG #esoteric :http://en.wikipedia.org/wiki/Spaghetti_code#Related_terms I feel that the images here really help illustrating the concept < 1396901953 295808 :zzo38!~zzo38@24-207-51-179.eastlink.ca JOIN :#esoteric < 1396901963 266305 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Taneb: I did that, and now the hard disk in this desktop is so large, the disk for backups is having space problems. < 1396901990 511468 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Indeed. And it will take you longer to move off larger disks. It's like gravity. < 1396901990 821299 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :fizzie, I solve that problem by not caring about anything enough to back it up < 1396902040 542279 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Any recommendations for hard-drive? < 1396902054 110730 :Bike!~Glossina@gannon-wless-gw.resnet.wsu.edu PRIVMSG #esoteric :recommend a good one < 1396902074 137540 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :FireFly: hmm, most of those read like "good" code according to that article < 1396902108 754200 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :if lasagna code is "well-defined and separable layers", what's the term for code that is just layers everywhere? < 1396902165 630367 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :FWIW, I bought a pair of "Seagate Barracuda ST3000DM001 3TB" disks for this desktop, because I've heard bad things about probably every (mainstream) brand, and it's all a crapshoot anyway. < 1396902187 629758 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :There's supermarket microwave oven lasagna code, which is when your layers leak into each other and there is an odd smell in the background. < 1396902188 69380 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :fizzie, I've heard they have problems with reliability < 1396902189 887820 :FireFly!~firefly@oftn/member/FireFly PRIVMSG #esoteric :The last paragraph of the lasagna code section mentions how it could also be an anti-pattern if overdone < 1396902199 694351 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Taneb: I've heard that said of everything, though. < 1396902209 992061 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :fizzie: there are two mainstream brands, so you may have indeed heard about all of them < 1396902256 892031 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Jafet: There used to be more, though. < 1396902319 738479 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :There are the "green" disks, where most of the bad things you hear are actually true. Then there are the "black" ones which most people use. < 1396902345 907210 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :WD also has enough other colours to start a gay pride parade but most of them are just product binning. < 1396902375 51770 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think Seagate dropped the "green" nomenclature. < 1396902446 994766 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1396902463 516307 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Looking at the Seagate section of the local shop, there's just other arbitrary terms ("Constellation", "Enterprise Capasity Series", "NAS", ...) now. < 1396902486 463415 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Also the middle one was spelled "Enterprice" here. Trying to hint at something, perhaps. < 1396902512 539900 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Or maybe it's the c from "capacity". < 1396902518 624446 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :Perhaps you get to choose. < 1396902540 746094 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :hinting that the shop owner doesn't spell well? < 1396902569 635875 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :olsner: It's the biggest e-retailer in all of Finland, I think. < 1396902598 598664 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :http://en.wikipedia.org/wiki/Verkkokauppa.com Notable enough for Wikipedia, yet can't spell. < 1396902722 402368 :olsner!~salparot@c83-252-203-32.bredband.comhem.se PRIVMSG #esoteric :well, seagate spells it normally afaict < 1396902730 855749 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :They seem to, yes. < 1396902739 762601 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The product links also have it right there in the URL. < 1396902785 360870 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :WD has 3TB drives in "Green", "Purple", "Red", "Se" and "Black", and I'm wondering what kind of color "Se" is. < 1396902799 214919 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh, it's short for Server. < 1396902824 189085 :hexagon!nyuszika7h@pdpc/supporter/active/nyuszika7h QUIT :Read error: Connection reset by peer < 1396902862 9172 :kmc!~keegan@ec2-50-17-127-187.compute-1.amazonaws.com PRIVMSG #esoteric :experts recommend buying a whole rainbow of drives < 1396903000 842508 :FireFly!~firefly@oftn/member/FireFly PRIVMSG #esoteric :Oh, not a selenium hard drive < 1396903030 848999 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :"WD Green Power -malleissa yhdistyy tehokkuus, luotettavuus ja ennen kaikkea virransäästö." "WD Purple-malleissa yhdistyy tehokkuus ja ennenkaikkea luotettavuus." "WD Red-malleissa yhdistyy tehokkuus, luotettavuus ja ennen kaikkea virransäästö." "WD Se-malleissa yhdistyy tehokkuus ja ennenkaikkea luotettavuus." "WD:n uudistuneessa Black -kovalevysarjassa yhdistyy huippuluokan ... < 1396903036 336103 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :... suorituskyky ja luotettavuus." Well, it's good that they're well differentiated, at least. < 1396903085 741875 :int-e!~noone@static.88-198-179-137.clients.your-server.de PRIVMSG #esoteric :oh, Selenium comes in several colors. Neat. < 1396903135 26210 :Guest652!nyuszika7h@pdpc/supporter/active/nyuszika7h JOIN :#esoteric < 1396903155 112841 :Guest652!nyuszika7h@pdpc/supporter/active/nyuszika7h NICK :hexagon < 1396903823 241642 :nisstyre!~yourstrul@oftn/member/Nisstyre JOIN :#esoteric < 1396904545 732923 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1396904610 667973 :zzo38!~zzo38@24-207-51-179.eastlink.ca PRIVMSG #esoteric :If you need more than one drive you can get each one different color, to tell apart. < 1396905180 615332 :Sellyme!~Sellyme@199.127.227.147 QUIT :Excess Flood < 1396905197 920521 :Sellyme!~Sellyme@irc.sellyme.com JOIN :#esoteric < 1396905909 528140 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 252 seconds < 1396906775 422851 :nisstyre!~yourstrul@oftn/member/Nisstyre QUIT :Quit: WeeChat 0.4.3 < 1396907292 132150 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1396907776 246995 :idris-ircslave!~ircslave@dslb-088-077-168-087.pools.arcor-ip.net QUIT :Quit: Terminated < 1396907793 889852 :idris-ircslave!~ircslave@dslb-088-077-168-087.pools.arcor-ip.net JOIN :#esoteric < 1396908688 585339 :boily!~boily@96.127.201.149 QUIT :Quit: Poulet! < 1396910472 911991 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07User:Rdebath14]]4 10 02http://esolangs.org/w/index.php?diff=39241&oldid=39221 5* 03Rdebath 5* (+557) 10/* Performance Matrix */ < 1396910523 86436 :rodgort!~rodgort@li125-242.members.linode.com QUIT :Quit: ERC Version 5.3 (IRC client for Emacs) < 1396910577 385176 :augur!~augur@129-2-129-33.wireless.umd.edu QUIT :Remote host closed the connection < 1396910879 172974 :rodgort!~rodgort@li125-242.members.linode.com JOIN :#esoteric < 1396912803 940185 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1396912862 340794 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Read error: Connection reset by peer < 1396912885 17456 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1396913633 165999 :yorick!~yorick@oftn/member/yorick QUIT :Remote host closed the connection < 1396913635 359610 :nisstyre!~yourstrul@oftn/member/Nisstyre JOIN :#esoteric < 1396914522 48777 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03Quojil 5* 10New user account