< 1412121841 167898 :S1!~sheldon@p4FF93B4B.dip0.t-ipconnect.de QUIT :Quit: S1 < 1412121997 461473 :scounder!~scounder@unaffiliated/scounder QUIT :Ping timeout: 260 seconds < 1412122173 245823 :conehead!~conehead@unaffiliated/conehead QUIT :Quit: Computer has gone to sleep < 1412122981 933633 :AndoDaan_!~Daanando@188.188.84.92 JOIN :#esoteric < 1412122990 514841 :scounder!~scounder@2a01:7a0:10:151:236:17:48:1 JOIN :#esoteric < 1412123035 447487 :AndoDaan!~Daanando@188.189.77.106 QUIT :Ping timeout: 276 seconds < 1412123079 630777 :mitch|chromebook!~asdf5@172.245.212.80 QUIT :Quit: Lost terminal < 1412123627 371481 :callforjudgement!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1412123665 882299 :conehead!~conehead@unaffiliated/conehead JOIN :#esoteric < 1412123738 361163 :callforjudgement!~ais523@unaffiliated/ais523 QUIT :Client Quit < 1412123849 878797 :ais523!~ais523@unaffiliated/ais523 QUIT :Ping timeout: 258 seconds < 1412123935 922627 :GeekDude!~GeekDude@unaffiliated/g33kdude NICK :GeoDude < 1412124641 983739 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1412125512 142608 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de QUIT :Quit: Terminated < 1412125973 949081 :AndoDaan_!~Daanando@188.188.84.92 QUIT :Ping timeout: 272 seconds < 1412125982 530039 :AndoDaan!~Daanando@188.188.70.33 JOIN :#esoteric < 1412126040 577235 :conehead!~conehead@unaffiliated/conehead QUIT :Quit: Computer has gone to sleep < 1412127219 344937 :J_Arcane!~j_arcane@dsl-trebrasgw2-50de97-172.dhcp.inet.fi QUIT :Read error: Connection reset by peer < 1412127257 357811 :J_Arcane!~j_arcane@dsl-trebrasgw2-50de97-172.dhcp.inet.fi JOIN :#esoteric < 1412127263 452422 :nisstyre!yourstruly@oftn/member/Nisstyre QUIT :Quit: WeeChat 1.0 < 1412127798 361872 :aloril!~aloril@dsl-tkubrasgw2-50defd-78.dhcp.inet.fi QUIT :Ping timeout: 272 seconds < 1412127858 419624 :aloril!~aloril@dsl-tkubrasgw2-50defd-78.dhcp.inet.fi JOIN :#esoteric < 1412129131 965600 :bb010g!uid21050@gateway/web/irccloud.com/x-kscwqdswzoisbsai JOIN :#esoteric < 1412129608 589342 :boily!~boily@96.127.201.149 QUIT :Quit: ARISTOCRATIC CHICKEN < 1412129739 474976 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1412130250 348746 :nisstyre!yourstruly@2400:8900::f03c:91ff:fe69:7f3d JOIN :#esoteric < 1412130357 135704 :nisstyre!yourstruly@2400:8900::f03c:91ff:fe69:7f3d QUIT :Changing host < 1412130357 357292 :nisstyre!yourstruly@oftn/member/Nisstyre JOIN :#esoteric < 1412131308 527014 :weissschloss!~viskestel@li607-220.members.linode.com QUIT :Max SendQ exceeded < 1412131452 636342 :weissschloss!~viskestel@li607-220.members.linode.com JOIN :#esoteric < 1412133539 449506 :Sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1412134455 145004 :GeoDude!~GeekDude@unaffiliated/g33kdude QUIT :Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com) < 1412134913 60859 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :i only just realized C lets you allocate arrays on the stack with runtime lengths < 1412135077 990496 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :VLA? < 1412135115 783414 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :yeah i guess that's it < 1412135202 513381 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :i was wondering about alloca and realized it would be like a variable declaration, and i tried it and heyyyyy < 1412135412 479318 :AndoDaan!~Daanando@188.188.70.33 QUIT :Ping timeout: 245 seconds < 1412135456 191431 :AndoDaan!~Daanando@188.189.84.246 JOIN :#esoteric < 1412135619 497733 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :https://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html forward parameter declarations. very exciting. < 1412135816 817367 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[10000000]; a[sizeof a-1] = 1; return 0; } < 1412135817 603074 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1412135823 867138 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[1000000000]; a[sizeof a-1] = 1; return 0; } < 1412135824 688876 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1412135854 459201 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[1e12]; a[sizeof a-1] = 1; return 0; } < 1412135855 40883 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/tmp/a.c: In function ‘main’: \ /tmp/a.c:1:19: error: size of array ‘a’ has non-integer type < 1412135862 635532 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[(size_t)1e12]; a[sizeof a-1] = 1; return 0; } < 1412135863 248360 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/tmp/a.c: In function ‘main’: \ /tmp/a.c:1:22: error: ‘size_t’ undeclared (first use in this function) \ /tmp/a.c:1:22: note: each undeclared identifier is reported only once for each function it appears in \ /tmp/a.c:1:29: error: expected ‘]’ before numeric constant \ /tmp/a.c:1:36: error: ‘a’ undeclared (first use in this funct < 1412135874 178723 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[(long)1e12]; a[sizeof a-1] = 1; return 0; } < 1412135875 77976 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1412135892 165075 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :c.c < 1412135912 458236 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[(long)1e12]; a[sizeof a-1] = rand(); return a[sizeof a-1]; } < 1412135913 208240 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1412135919 560664 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :heh. < 1412135922 508279 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[(long)1e7]; a[sizeof a-1] = rand(); return a[sizeof a-1]; } < 1412135923 306074 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Segmentation fault < 1412135929 998598 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`cc int main() { char a[(long)1e6]; a[sizeof a-1] = rand(); return a[sizeof a-1]; } < 1412135930 850064 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1412135936 447654 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`ulimit -s < 1412135936 968275 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: ulimit: not found < 1412135943 532855 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`bash -c "ulimit -s" < 1412135944 10496 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: - : invalid option \ Usage: bash [GNU long option] [option] ... \ bash [GNU long option] [option] script-file ... \ GNU long options: \ --debug \ --debugger \ --dump-po-strings \ --dump-strings \ --help \ --init-file \ --login \ --noediting \ --noprofile \ --norc \ --posix \ --protected \ --rcfile \ --restricted \ --verbose \ < 1412135949 45362 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :`run bash -c "ulimit -s" < 1412135949 626141 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :8192 < 1412136154 887988 :shikhin!~shikhin@unaffiliated/shikhin QUIT :Ping timeout: 258 seconds < 1412136260 430822 :shikhin!~shikhin@unaffiliated/shikhin JOIN :#esoteric < 1412136519 376277 :shikhin!~shikhin@unaffiliated/shikhin QUIT :Ping timeout: 246 seconds < 1412137279 402144 :conehead!~conehead@unaffiliated/conehead JOIN :#esoteric < 1412138356 78388 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`cat bin/cc < 1412138356 548239 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​#!/bin/sh \ echo "$@" > /tmp/a.c && gcc /tmp/a.c -o /tmp/a.out && /tmp/a.out < 1412139992 718748 :MoALTz_!~no@user-5-173-18-247.play-internet.pl JOIN :#esoteric < 1412140162 552336 :MoALTz!~no@user-5-173-18-247.play-internet.pl QUIT :Ping timeout: 245 seconds < 1412143998 530571 :impomatic_!~digital_w@87.113.116.210 QUIT :Quit: impomatic_ < 1412144333 467064 :tromp_!~tromp@ool-4570a006.dyn.optonline.net JOIN :#esoteric < 1412144462 512611 :tromp__!~tromp@ool-4570a006.dyn.optonline.net QUIT :Ping timeout: 245 seconds < 1412144880 538290 :MoALTz_!~no@user-5-173-18-247.play-internet.pl QUIT :Quit: Leaving < 1412144907 419488 :tromp__!~tromp@ool-4570a006.dyn.optonline.net JOIN :#esoteric < 1412145041 380108 :tromp_!~tromp@ool-4570a006.dyn.optonline.net QUIT :Ping timeout: 260 seconds < 1412145060 176122 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`! sh echo hi < 1412145060 766653 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :hi < 1412145128 400425 :tromp_!~tromp@ool-4570a006.dyn.optonline.net JOIN :#esoteric < 1412145171 826130 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :I just beat icacls < 1412145198 86381 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :NTFS would be pretty on-topic here < 1412145237 404020 :tromp__!~tromp@ool-4570a006.dyn.optonline.net QUIT :Ping timeout: 260 seconds < 1412146871 944249 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: There is a m[p^ < 1412146904 903045 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3}{?i}MP#s < 1412146905 585718 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {4 3 2} < 1412146913 728941 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :MP is defined as m[p^ < 1412146932 503528 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1412146936 103860 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it's m[^p? < 1412146967 870630 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :true story < 1412146995 510847 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412147107 249708 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :@messages-loud < 1412147107 466724 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :oerjan said 8h 21m ago: I'm just reading your haskell golfing tips and i'd just like to point out that c/=5||odd x can be shortened to 1>0 hth < 1412147141 602263 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also i made a couple attempts on the two latest problems < 1412147221 67295 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(i guess i also tried PATH but just found a solution of the same lengths as everyone else, it's probably pretty unique) < 1412147320 448908 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: Oh. I see teebee got 22B < 1412147341 324585 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :teebee is recently golfing *a lot* < 1412147413 418781 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I noticed. I don't have any obvious below-25 ideas. < 1412147686 99265 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Possibly what I have is a local minimum, and needs something quite different to get smaller.) < 1412147863 484677 :impomatic_!~digital_w@87.113.116.210 JOIN :#esoteric < 1412148167 837796 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net QUIT :Read error: Connection reset by peer < 1412148188 894251 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net JOIN :#esoteric < 1412148266 598650 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :A hypothetical deepzip2'ing subtraction and a m[p^ shorthand would get me to 21, but neither of those two things exist, and I can't think of a way to use m[^p aka MP without including any extra instructions. < 1412148302 192905 :S1!~sheldon@pD9FCABA1.dip0.t-ipconnect.de JOIN :#esoteric < 1412148327 355766 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Oh, ?- exists. < 1412148412 606487 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Aw, now it times out. (It was right on the border there already, to be fair.) < 1412148456 272770 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Well, maybe a working 25 and a too-slow 23 will have to be enough, I should be doing other stuff. < 1412148741 345988 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Or perhaps I just need a better cumulative-sum idiom, I can't seem to write that short.) < 1412149799 649712 :AndoDaan_!~Daanando@188.188.67.24 JOIN :#esoteric < 1412149900 314085 :AndoDaan!~Daanando@188.189.84.246 QUIT :Ping timeout: 250 seconds < 1412150126 323945 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there's ?- yes < 1412150158 544996 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :have you tried submitting the too-slow one multiple times? < 1412150171 917598 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :execution times fluctuates depending on server-load and stuff < 1412150178 609077 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I tried twice, I think it's just too slow. < 1412150184 438443 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ok < 1412150254 603509 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :if MP produces the wrong order < 1412150262 443234 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :maybe you can change the order of the list you're mapping over < 1412150280 329512 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but if that requires a <- (reverse list) etc. you might as well just write m[p^ < 1412150293 340967 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yeah, I couldn't figure out to do it without a <-. < 1412150441 720816 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412150455 619475 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :teebee's execution times suggests that there must be a really efficient way of doing it < 1412150469 923440 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*time < 1412150488 811556 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: Do you use c!? < 1412150490 484915 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :My 27-character one had the same execution time. < 1412150511 40502 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :There's C! and !C for that matter < 1412150514 421066 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That one used !C but there was a lot of space wasted with PP'y stuff. < 1412150525 584618 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh ok < 1412150555 610949 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :This new one is really stupid, which probably explains the execution time. < 1412150618 280915 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm? < 1412150621 319001 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :what "new one"? < 1412150631 626080 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The 25- and 23-length ones. < 1412150634 740352 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1412150685 713570 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fizzie: did you get the message someone sent you to change the wiki captcha? < 1412150698 867918 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it seems to me that spammers are still managing to register < 1412150736 815154 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :oerjan: Right, I should probably do something about it. < 1412150756 719411 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :oerjan: No spam articles, though, just user accounts? Or do those not show up in recent changes? < 1412150871 183749 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :just accounts, i think ais523 managed to improve the filter for the articles < 1412150942 701234 :AndoDaan_!~Daanando@188.188.67.24 QUIT :Ping timeout: 245 seconds < 1412150955 667098 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm. 33B for A045718 < 1412150960 275409 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that's pretty bad of me I guess < 1412151048 348437 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :last time they got any actual spam through seems to be sep 25 < 1412151122 352121 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :mroman_: I have a 9-character "X terms from A006519" core, let's call it ZZZ, but I don't know of any good tricks for the partial sums, so I just wrapped the whole thing inside ,500ro{ZZZ++}m[p^ which makes it 14+9=23 and also too slow. (The fast 28-length one used a manual PP+.JPp inside a !C block to make a counter to replace the range, and simply .+'d to the previous sum, but that took many ... < 1412151128 344180 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :... characters. And same for a similar thing that mapped over a range and accumulated with pP.+Pp and swapped in the end.) < 1412151247 14979 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :well < 1412151267 446770 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :you could use 500{ZZZ++}GOp^ < 1412151276 734745 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :which would be 2 bytes shorter < 1412151283 853304 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it's probably not faster :) < 1412151293 694232 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 10{?i}GO < 1412151294 174791 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3 4 5 6 7 8 9 10 11} < 1412151336 116512 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :fizzie: is that the anarchy golf thing? < 1412151367 935746 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :rom[ is GO < 1412151452 953289 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}5co < 1412151453 397595 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 2 3 4 5} {6}} < 1412151459 512523 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}5CO < 1412151460 43082 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 2 3 4 5} {2 3 4 5 6}} < 1412151476 526771 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}su < 1412151477 92981 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1} {2} {3} {4} {5} {6} {1 2} {2 3} {3 4} {4 5} {5 6} {1 2 3} {2 3 4} {3 4 5} { < 1412151497 262119 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :mroman_: The documentation says GO does 1\/R@ but I guess that's r@ in reality? < 1412151538 9730 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :yup < 1412151571 658988 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*updated doc* < 1412151590 65276 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}R@ < 1412151590 499145 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{} {1} {2} {1 2} {3} {1 3} {2 3} {1 2 3} {4} {1 4} {2 4} {1 2 4} {3 4} {1 3 4} < 1412151592 731572 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Well, it's 21 characters but too slow. :) < 1412151612 904810 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412151644 937608 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :At least I managed to improve my barely-working 25 to a 23 with that GO trick. < 1412151672 972006 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :{1 2 3 4 5 6}=>{1 {1 2} {1 2 3 4} ...} is what you'd need < 1412151676 459536 :AndoDaan!~Daanando@188.189.78.179 JOIN :#esoteric < 1412151678 510921 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but I don't know of any way to do that < 1412151682 826154 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :and it probably will be slow :) < 1412151695 873623 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(because the resulting list will be huge I guess) < 1412151709 507832 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :can't you hm. < 1412151723 199237 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :It really sounds like using C! or !C < 1412151738 786703 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 1{?i?+}10C!#s < 1412151739 193357 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {ERROR: Burlesque: (.+) Invalid arguments! ERROR: Burlesque: (.+) Invalid argume < 1412151746 941294 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 1 1{?i?+}10C!#s < 1412151747 454391 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {287 177 109 67 41 25 15 9 5 3 1 1} < 1412151778 706484 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 1 2{?+}10C!#s < 1412151779 138839 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {233 144 89 55 34 21 13 8 5 3 2 1} < 1412151790 130340 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412151794 652882 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 1 2{CL++}10C!#s < 1412151795 148517 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1536 768 384 192 96 48 24 12 6 3 2 1} < 1412151839 930568 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 1 1{CL++}10C!#s < 1412151840 371204 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1024 512 256 128 64 32 16 8 4 2 1 1} < 1412151867 233 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: But that would indeed require PP stuff for the counter :( < 1412151903 105799 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1412151922 982866 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :or would it < 1412151929 390505 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :can't you map with take? < 1412151954 768773 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}{[-}5!C#s < 1412151955 165001 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 2 3 4 5 6} {2 3 4 5 6} {3 4 5 6} {4 5 6} {5 6} {6}} < 1412151960 701564 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}{[~}5!C#s < 1412151961 115513 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 2 3 4 5 6} 6 6 6 6 6} < 1412151964 208603 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :damn < 1412151967 788736 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :what's init? < 1412151983 824739 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}{~]}5!C#s < 1412151984 244597 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 2 3 4 5 6} {1 2 3 4 5} {1 2 3 4} {1 2 3} {1 2} {1}} < 1412151993 572866 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}{~]}5!CCL < 1412151994 43727 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 2 3 4 5 6} {1 2 3 4 5} {1 2 3 4} {1 2 3} {1 2} {1}} < 1412151997 705896 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}{~]}5C!CL < 1412151998 329771 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1} {1 2} {1 2 3} {1 2 3 4} {1 2 3 4 5} {1 2 3 4 5 6}} < 1412152008 978028 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: like that? < 1412152012 577745 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4 5 6}{~]}5C!CL)++ < 1412152013 67061 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 3 6 10 15 21} < 1412152060 94718 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :so... < 1412152065 360903 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :just generate the list with the 500 items < 1412152079 399531 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :and do {~]}C!CL)++ < 1412152103 328516 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Mang14]]4 10 02http://esolangs.org/w/index.php?diff=40566&oldid=40564 5* 03Oerjan 5* (+170) 10some proofreading < 1412152158 418719 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 10ro{~]}9C!CL)++ < 1412152158 917176 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 3 6 10 15 21 28 36 45 55} < 1412152163 937051 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 100ro{~]}99C!CL)++ < 1412152164 403193 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : Ain't nobody got time fo' dat! < 1412152182 218635 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it might be too slow still :( < 1412152263 336550 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :",500" plus 9 characters for the list + "{~]}500C!CL)++" is also longer than my current-best. < 1412152382 465640 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :doesn't burlesque have scanl < 1412152395 236694 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :500ro{~]}499C!CL)++ runs in 0.4s on anagol though < 1412152475 18577 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oerjan: I don't think so, no < 1412152494 970523 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> scanl1 (/) [64,4,2,4] < 1412152497 97030 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [64.0,16.0,8.0,2.0] < 1412152519 385628 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 64q?/c!q?/c!q?/c!#s < 1412152519 834702 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {ERROR: Burlesque: (./) Invalid arguments! ERROR: Burlesque: (./) Invalid argume < 1412152528 350853 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :> scanl1 (+) [1,2,1,4,1,2,1,8] < 1412152529 896749 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [1,3,4,8,9,11,12,20] < 1412152533 564467 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That would certainly help. < 1412152540 866841 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 64{4?/}c!{2?/}c!#s < 1412152541 356381 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {8 16 64} < 1412152541 626329 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :mroman_: can burlesque do fixpoints? (i guess not) < 1412152561 382372 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oerjan: finding fixpoints? < 1412152562 275214 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fizzie: well it's what i used in my length 55 haskell version < 1412152572 210910 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there's a while loop :) < 1412152590 557368 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 10{2.*}{100.<}w! < 1412152591 72340 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 160 < 1412152604 316010 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 2{2?^}{100.<}w! < 1412152604 707841 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 256 < 1412152612 865574 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :wait < 1412152634 356864 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 2{2.*}{100.<}w! < 1412152634 781213 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 128 < 1412152726 58828 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :mroman_: you can write scanl (+) x xs as fix (zipWith (+) xs . (x:)) or thereabouts < 1412152745 290215 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> fix (zipWith (+) [1..] . (0:)) < 1412152746 825131 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [1,3,6,10,15,21,28,36,45,55,66,78,91,105,120,136,153,171,190,210,231,253,276... < 1412152768 691218 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 10ro{~]}9C!CL)++ < 1412152769 224884 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 3 6 10 15 21 28 36 45 55} < 1412152790 280604 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it doesn't have a fix builtin < 1412152799 101206 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :although < 1412152841 643621 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 10roJ{?+0[+}10C! < 1412152842 167767 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {144 288 432 576 720 864 1008 1152 1296 1440 0 0 0 0 0} < 1412152850 472999 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 10roJ{?+0[+}10C!#s < 1412152850 959374 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{144 288 432 576 720 864 1008 1152 1296 1440 0 0 0 0 0} {89 178 267 356 445 534 < 1412152858 396936 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5roJ{?+0[+}2C!#s < 1412152858 816791 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{3 6 9 12 15 0} {2 4 6 8 10 0} {1 2 3 4 5} {1 2 3 4 5}} < 1412152867 672691 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5roJ{?+0+]}2C!#s < 1412152868 120513 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{0 1 4 7 10 13} {0 2 4 6 8 10} {1 2 3 4 5} {1 2 3 4 5}} < 1412152892 147473 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5ro{1R@?+0+]}2C!#s < 1412152892 582061 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{0 1 4 7 10 13 16} {0 2 4 6 8 10} {1 2 3 4 5}} < 1412152898 638426 :drdanmaku!uid17782@gateway/web/irccloud.com/x-tiajlmyjhfvotacq QUIT :Quit: Connection closed for inactivity < 1412152908 522939 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5ro{0+]1R@?+]}2C!#s < 1412152908 981781 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: (line 1, column 20): < 1412152912 377222 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5ro{0+]1R@?+}2C!#s < 1412152912 868888 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 3 6 9 12 15 18} {1 3 5 7 9 11} {1 2 3 4 5}} < 1412152945 612916 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3}0+] < 1412152946 123577 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {0 1 2 3} < 1412152962 816795 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5ro{0+]1R@?+}3C!#s < 1412152963 343409 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 3 6 10 14 18 22 26} {1 3 6 9 12 15 18} {1 3 5 7 9 11} {1 2 3 4 5}} < 1412153017 721007 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5ro{0+]1R@?+}5C!#s < 1412153018 122389 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 3 6 10 15 21 27 33 39 45} {1 3 6 10 15 20 25 30 35} {1 3 6 10 14 18 22 26} { < 1412153030 961998 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5ro{0+]1R@?+}50C!#s < 1412153031 436306 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 3 6 10 15 21 28 36 45 55 66 78 91 105 120 136 153 171 190 210 231 253 276 30 < 1412153062 147701 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 1ro{0+]1R@?+}50C!#s < 1412153062 621439 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 3 6 10 15 21 28 36 45 55 66 78 91 105 120 136 153 171 190 210 231 253 276 30 < 1412153088 646990 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq q1{{0+]1R@?+}c!}{L[20.<}w! < 1412153089 168820 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 3 6 10 15 21 28 36 45 55 66 78 91 105 120 136 153 171 190 210} < 1412153105 161101 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there you go < 1412153112 380155 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq q1{{0+]1R@?+}c!}{}w!10.+ < 1412153112 935784 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Burlesque: (.+) Invalid arguments! < 1412153119 693393 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq q1{{0+]1R@?+}c!}{1}w!10.+ < 1412153120 217978 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : Ain't nobody got time fo' dat! < 1412153123 930706 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq q1{{0+]1R@?+}c!}{1}w!20.+ < 1412153124 462955 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : Ain't nobody got time fo' dat! < 1412153129 748328 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it's not lazy anymore though < 1412153155 644472 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq q1{{0+]1R@?+}c!}{L[200000000.<}w!10.+ < 1412153156 152074 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : Ain't nobody got time fo' dat! < 1412153162 898442 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq q1{{0+]1R@?+}c!}{L[25.<}w! < 1412153163 281917 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 3 6 10 15 21 28 36 45 55 66 78 91 105 120 136 153 171 190 210 231 253 276 300 < 1412153217 416856 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :this would make for a good new command < 1412153220 169586 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ContinueUntil < 1412153227 811962 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :{L[25.<} < 1412153245 509575 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412153249 321928 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :more like < 1412153302 173 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :also < 1412153314 460019 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but not sure how to implement that < 1412153347 524746 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :other than using init + continuation plus map < 1412153350 51281 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it will be slow < 1412153523 654307 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: ideally you would do {?+}C! < 1412153533 213573 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :for partial sum stuff < 1412153735 688513 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That's pretty much what my "fast" thing does, except for needing the index for . (I did try something zi-based, but that went nowhere.) < 1412153830 566861 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :oerjan: 55 is quite impressive, it took me 83 characters with all the boilerplate of going from [1,2,3,4] to a main function that can print 1 2 3 4. Though maybe there are well-established tricks there. < 1412154218 526911 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1412154309 772608 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :fizzie: that boilerplate is well-established, it's main=mapM print < 1412154352 551448 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(mentioned on mroman_'s tip page) < 1412154400 229039 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm actually just the mapM part < 1412154480 808092 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :73, then. :) < 1412154587 213456 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i am somewhat proud of the way i got the infinite [1,2,1,4,...] list though < 1412154639 12672 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(defined as l in 19 characters) < 1412154649 839218 :bb010g!uid21050@gateway/web/irccloud.com/x-kscwqdswzoisbsai QUIT :Quit: Connection closed for inactivity < 1412154662 531262 :boily!~alexandre@96.127.201.149 QUIT :Ping timeout: 245 seconds < 1412154745 806849 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :22 characters here to do that, even without counting an "import Data.Bits"; I think I'm overly fond of the way I did it in my Forth thing. < 1412154829 928787 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :actually 22 characters is what it was in my first version < 1412154862 645587 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :no imports of course < 1412154886 154229 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Probably someone with a late-alphabet nick is going to make a 30-character Forth version; I've looked at some examples of those, and have no idea why they even work. There's stuff like "[begin] ..." with no loop-termination in sight, and at least the way I run gforth locally balks on that. < 1412154917 239568 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what are we talking about? < 1412154976 461350 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :elliott_: http://golf.shinh.org/p.rb?A006520 < 1412154988 26293 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :some are doing it in burlesque, i did it in haskell < 1412155016 60558 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oh i guess fizzie also did forth < 1412155031 386494 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yes, with better success. Possibly because no-one else has tried yet. < 1412155062 564461 :AndoDaan!~Daanando@188.189.78.179 QUIT :Ping timeout: 245 seconds < 1412155093 804546 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :And I guess my C solution is only one character off. < 1412155110 445160 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :> length "import Data.Bits" < 1412155112 476210 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 16 < 1412155124 206326 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Don't forget the newline. (I guess those count?) < 1412155132 665634 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :looks like that's costing you a lot < 1412155149 20403 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Yes, but bits! < 1412155152 191021 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i'm assuming they do, except a final one maybe < 1412155165 772414 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(i submitted mine as a one-liner though) < 1412155179 717652 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Have to get busy to catch a plane now. < 1412155246 28407 :AndoDaan!~Daanando@188.189.70.190 JOIN :#esoteric < 1412155362 300590 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03KarinValentine 5* 10New user account < 1412155387 791785 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wow, OEIS dates back to 1964? < 1412155392 265168 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :YOU DIDN'T FIX THE CAPTCHA FIRST < 1412155418 710084 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I guess only in the sense that britannica.com dates back to 1768 < 1412155430 668843 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :heh < 1412155651 254198 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Windows 10" you're kidding me < 1412155699 857433 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it is telling that searching that name produces http://www.infoworld.com/article/2613504/microsoft-windows/microsoft-windows-microsoft-skips-too-good-windows-9-jumps-to-windows-10.html near the top < 1412155710 307617 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(april 1 2013) < 1412155777 15614 :AndoDaan!~Daanando@188.189.70.190 QUIT :Ping timeout: 248 seconds < 1412155805 552152 :AndoDaan!~Daanando@188.189.94.210 JOIN :#esoteric < 1412155820 594191 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :the first rule of commercial version number schemes is that you have to change them frequently < 1412155830 929321 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I didn't even consider mapM print as something special < 1412155836 902892 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :because it appears so natural to do that < 1412155848 692631 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: okay but they already had windows 7 which wasn't the seventh version with any reasonable counting < 1412155899 713117 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :well, it's not as bad as xbox one < 1412155999 151770 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au PRIVMSG #esoteric :has anyone made a 'because windows 7 8 9' joke yet < 1412156006 296295 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fuck < 1412156083 91897 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :windows 10 now supporting cannibalism < 1412157135 654979 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Somebody should standardize LON < 1412157139 122971 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :as an alternative to JSON < 1412157180 18486 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Lisp Oriented Notation < 1412157199 550075 :S1!~sheldon@pD9FCABA1.dip0.t-ipconnect.de PRIVMSG #esoteric :do it < 1412157245 825989 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :{'foo' : {'age': 19, 'name' : 'Hans' } } vs (foo((age 19)(name "Hans"))) < 1412157267 307901 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412157276 418848 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(foo (age 19) (name "Hans")) actually < 1412157603 556567 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :what about lists < 1412157697 5396 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :'(1 2 3 4) of course < 1412157711 233953 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(itemz '(1 2 3)) < 1412159145 853312 :S1!~sheldon@pD9FCABA1.dip0.t-ipconnect.de NICK :S0 < 1412159243 16649 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net QUIT :Ping timeout: 240 seconds < 1412159318 214991 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's called s-expressions < 1412159331 309159 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there are standards < 1412159333 840567 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :oerjan: I'll do it in the evening from the hotel, maybe. < 1412159425 527158 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Or tomorrow evening at the latest. < 1412159535 782280 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :OKAY < 1412159963 36532 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1412160398 804979 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1412161127 669278 :Jafet!~jafet@unaffiliated/jafet PRIVMSG #esoteric :http://rpg.stackexchange.com/questions/48632/can-a-night-elf-swim-naked-in-a-volcano < 1412161340 613429 :boily!~boily@96.127.201.149 PRIVMSG #esoteric :it's at least proven to be feasible according to 3.5E. < 1412161500 912779 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03JasperZwujylt 5* 10New user account < 1412161815 793869 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: leaving < 1412162369 742216 :S0!~sheldon@pD9FCABA1.dip0.t-ipconnect.de NICK :S1 < 1412162474 39263 :boily!~boily@96.127.201.149 QUIT :Quit: SEQUENTIAL CHICKEN < 1412162608 305004 :^v!~notnot^v@c-71-238-153-166.hsd1.mi.comcast.net JOIN :#esoteric < 1412163397 655404 :blu3cryp70!~8blu3cryp@49.15.20.42 JOIN :#esoteric < 1412163487 57118 :blu3cryp70!~8blu3cryp@49.15.20.42 PRIVMSG #esoteric :hey there < 1412163818 10349 :GeekDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1412163878 906805 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :JasoerZwujylt sound so non-spammy,it's incredible < 1412164583 737974 :blu3cryp70!~8blu3cryp@49.15.20.42 PART #esoteric :"any thing you need you can find in the market" < 1412166981 805573 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Remote host closed the connection < 1412167011 438109 :not^v!~notnot^v@207.74.209.246 JOIN :#esoteric < 1412167035 335661 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1412167294 316749 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Ping timeout: 250 seconds < 1412167342 706131 :FreeFull!~freefull@defocus/sausage-lover QUIT :Ping timeout: 245 seconds < 1412167685 24013 :AndoDaan_!~Daanando@188.189.82.156 JOIN :#esoteric < 1412167712 503818 :AndoDaan!~Daanando@188.189.94.210 QUIT :Ping timeout: 245 seconds < 1412168178 582814 :Patashu!Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 272 seconds < 1412168243 587965 :FreeFull!~freefull@wk-30-130.guest.rdg.ac.uk JOIN :#esoteric < 1412168247 177433 :FreeFull!~freefull@wk-30-130.guest.rdg.ac.uk QUIT :Changing host < 1412168247 355311 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1412170055 58787 :not^v!~notnot^v@207.74.209.246 QUIT :Quit: http://i.imgur.com/Akc6r.gif < 1412170661 443365 :Sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 260 seconds < 1412171552 631324 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :why the fuck is my ajax responseText empty < 1412171557 161183 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I mean < 1412171563 467389 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :the browser does make the request on my webserver < 1412171570 884224 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it refuses to read the response < 1412171586 566733 :bb010g!uid21050@gateway/web/irccloud.com/x-jtsfflxshpswkcnu JOIN :#esoteric < 1412171820 402799 :augur!~augur@ip-64-134-240-197.public.wayport.net JOIN :#esoteric < 1412172431 20771 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :also my apache2 doesn't want to send my CORS header < 1412172432 114609 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :wth < 1412173261 26105 :AndoDaan_!~Daanando@188.189.82.156 QUIT :Ping timeout: 260 seconds < 1412173261 748122 :GeekDude!~GeekDude@unaffiliated/g33kdude PRIVMSG #esoteric :if you ever want a fun problem, try piping sound from espeak to the browser directly. ie, php passthru instead of write to a file then serving the file < 1412173275 141906 :GeekDude!~GeekDude@unaffiliated/g33kdude PRIVMSG #esoteric :I say "fun", but what I mean is that it just doesn't work :/ < 1412173290 413700 :GeekDude!~GeekDude@unaffiliated/g33kdude PRIVMSG #esoteric :it kind of works, but it's really really broken < 1412173297 631453 :GeekDude!~GeekDude@unaffiliated/g33kdude PRIVMSG #esoteric :and inconsistent between browsers < 1412173481 879937 :mihow!~mihow@108.30.58.169 JOIN :#esoteric < 1412173668 475675 :clog!~nef@bespin.org QUIT :Ping timeout: 246 seconds < 1412173773 116002 :GeekDude!~GeekDude@unaffiliated/g33kdude PRIVMSG #esoteric :uhh < 1412174307 664820 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :http://codepad.org/XVIdgaT9 < 1412174310 322175 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :what the fuck is this < 1412174341 234708 :S1!~sheldon@pD9FCABA1.dip0.t-ipconnect.de PRIVMSG #esoteric :xD < 1412174353 9291 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :by that logic a 5 char password is super secure < 1412174361 19209 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh no < 1412174362 802107 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :6 chars < 1412174364 570621 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> 25 < 1412174366 266187 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 25 < 1412174393 190457 :mihow!~mihow@108.30.58.169 QUIT :Quit: mihow < 1412174433 638794 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412174439 62396 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> 26**25 < 1412174440 606300 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 2.367738300079676e35 < 1412174449 385719 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> 26**25 / (96**5) < 1412174450 867827 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 2.903872434101571e25 < 1412174464 373889 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> 26**25 / (96**10) < 1412174465 905162 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : 3.561405039252532e15 < 1412174478 162801 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :well < 1412174493 366186 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I don't get extra points for NULL bytes in my password? < 1412174499 815988 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :this sucks. < 1412174517 192679 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :or spaces < 1412174520 945315 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I like spaces in my passwords < 1412174536 159821 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :sometimes my password is a whitespace program . < 1412174549 936202 :Sprocklem!~sprocklem@199.167.25.114 JOIN :#esoteric < 1412174576 177699 :Sprocklem!~sprocklem@199.167.25.114 NICK :Guest50299 < 1412174642 726520 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`? password < 1412174643 400398 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :password is XQELEKCTHZVBDBQR < 1412174693 66085 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :`? XQELEKCTHZVBDBQR < 1412174693 743285 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :XQELEKCTHZVBDBQR Who told you this? < 1412174752 291810 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03RochellWootten 5* 10New user account < 1412174900 370643 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :hi mroman_ < 1412175350 514130 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hi quintopia < 1412175359 435642 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :mroman_: is HELP TC? < 1412175446 796671 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :You mean the pre-processor thingy from AnotherTest? < 1412175532 543710 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(http://esolangs.org/wiki/HELP_%28Preprocessor%29 that is) < 1412175608 694575 :clog!~nef@bespin.org JOIN :#esoteric < 1412176959 99794 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://www.chrisstucchio.com/blog/2014/computers_are_made_of_metal.html this article is upsetting < 1412176970 428815 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"scala's implementation is bad therefore fp is slow" < 1412177036 266820 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I guess I shouldn't link articles just because they're irritating just to spread my suffering. < 1412177036 926934 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :psh, several parts of computers aren't metal < 1412177722 360859 :AndoDaan!~Daanando@188.189.77.170 JOIN :#esoteric < 1412177763 932274 :augur!~augur@ip-64-134-240-197.public.wayport.net QUIT :Remote host closed the connection < 1412177783 10618 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :eh < 1412177786 328763 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :who needs speed anyway < 1412177809 830685 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :If people cared about speed applications would be much faster than they wore 1998 on Windows 98 < 1412177818 219519 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*where < 1412177849 770058 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Starting eclipse really convinces me that stuff has gotten faster with faster CPUs . < 1412177957 179509 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I guess it's the same deal as faster trains < 1412177965 148256 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :faster trains doesn't cut down on commuting times < 1412177980 327913 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it just makes people commute to places more far away < 1412178038 678855 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(Although lot's of stuff is really fast today) < 1412178041 4902 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*lots < 1412178107 873298 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :Just watched a talk on fortran. They went 3 years past the deadline to make the most efficient fortran compiler they could. < 1412178115 71545 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :3 < 1412178135 699395 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :so.. < 1412178139 155303 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it can't be done faster? < 1412178153 894369 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :not in 1967. < 1412178160 436659 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah. < 1412178412 106069 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :I got an email on burlesqu progressed. c!... what's that all about. < 1412178461 369554 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s}10C! < 1412178461 915919 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 {1 {1 {1 {1 {1 2 3 4 5 6 7 8 9 10}} {1} {1 2 3 4 5 6 7 8 9 10}} {1 {1} {1 2 3 < 1412178512 932915 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s}\n10C! < 1412178513 341513 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : That line gave me an error < 1412178517 199043 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s}\m10C! < 1412178517 689255 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 10 < 1412178524 29753 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s}\m < 1412178524 563631 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1} 1 {1 2} 1 2 {1 3} 1 3 {1 2 4} 1 2 4 {1 5} 1 5 {1 2 3 6} 1 2 3 6 {1 7} 1 7 { < 1412178577 746913 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s}\m{**}u[ < 1412178578 331911 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {ERROR: Burlesque: ([~) Invalid arguments! **} < 1412178595 695374 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s\/} < 1412178596 175586 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {fc #s \/} < 1412178601 355511 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 10ro{fc#s\/}\m < 1412178601 907308 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 {1} 1 2 {1 2} 1 3 {1 3} 1 2 4 {1 2 4} 1 5 {1 5} 1 2 3 6 {1 2 3 6} 1 7 {1 7} 1 < 1412178703 770521 :drdanmaku!uid17782@gateway/web/irccloud.com/x-slmxmvjcpoojvqpx JOIN :#esoteric < 1412179300 332829 :mihow!~mihow@108.30.58.169 JOIN :#esoteric < 1412179705 937690 :Guest50299!~sprocklem@199.167.25.114 QUIT :Ping timeout: 272 seconds < 1412180036 325040 :J_Arcane2!~j_arcane@dsl-trebrasgw2-50de97-172.dhcp.inet.fi JOIN :#esoteric < 1412180071 321706 :mihow_!~mihow@108.30.58.169 JOIN :#esoteric < 1412180238 755019 :heroux__!sandroco@50708355.static.ziggozakelijk.nl JOIN :#esoteric < 1412180252 324376 :digitalc1ld!~redacted@192.73.232.206 JOIN :#esoteric < 1412180264 758400 :J_Arcane!~j_arcane@dsl-trebrasgw2-50de97-172.dhcp.inet.fi QUIT :Ping timeout: 244 seconds < 1412180265 371493 :blsqbot!~blsqbot@fmnssun.ibone.ch QUIT :Ping timeout: 244 seconds < 1412180267 692591 :FireFly!~firefly@oftn/member/FireFly QUIT :Ping timeout: 244 seconds < 1412180269 513447 :mihow!~mihow@108.30.58.169 QUIT :Ping timeout: 244 seconds < 1412180271 101391 :heroux_!sandroco@50708355.static.ziggozakelijk.nl QUIT :Ping timeout: 244 seconds < 1412180271 751872 :digitalcold!~redacted@192.73.232.206 QUIT :Ping timeout: 244 seconds < 1412180275 820299 :mihow_!~mihow@108.30.58.169 NICK :mihow < 1412180277 394938 :tromp__!~tromp@ool-4570a006.dyn.optonline.net JOIN :#esoteric < 1412180377 443760 :tromp_!~tromp@ool-4570a006.dyn.optonline.net QUIT :Ping timeout: 260 seconds < 1412180412 177601 :FireFly!~firefly@oftn/member/FireFly JOIN :#esoteric < 1412180945 379339 :augur!~augur@129-2-129-32.wireless.umd.edu JOIN :#esoteric < 1412182522 962104 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de QUIT :Quit: Terminated < 1412182555 705065 :mihow!~mihow@108.30.58.169 QUIT :Quit: mihow < 1412182572 443201 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de JOIN :#esoteric < 1412182663 313985 :MoALTz!~no@user-164-127-127-186.play-internet.pl JOIN :#esoteric < 1412183113 485172 :mihow!~mihow@108.30.58.169 JOIN :#esoteric < 1412183480 728850 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :!blsq 30ro{fcL[2cm}m[ < 1412183537 605653 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :place feels so empty with out bslq bot < 1412183847 44265 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :it is empty < 1412183959 392807 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :"ECHO" < 1412183966 852928 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :"eCHo" < 1412183972 613389 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :echo < 1412183987 390264 :AndoDaan!~Daanando@188.189.77.170 PRIVMSG #esoteric :christ I'm bored,. < 1412184222 44100 :AndoDaan_!~Daanando@188.189.70.11 JOIN :#esoteric < 1412184376 328393 :AndoDaan!~Daanando@188.189.77.170 QUIT :Ping timeout: 260 seconds < 1412184715 761563 :mihow!~mihow@108.30.58.169 QUIT :Quit: mihow < 1412185055 874151 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :( 'AndoDaan_ < 1412185056 354823 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :12'AndoDaan_ : 12Type < 1412185316 720422 :augur!~augur@129-2-129-32.wireless.umd.edu QUIT :Remote host closed the connection < 1412185849 955284 :bb010g!uid21050@gateway/web/irccloud.com/x-jtsfflxshpswkcnu QUIT :Quit: Connection closed for inactivity < 1412185952 987451 :Sprocklem!~sprocklem@199.167.25.114 JOIN :#esoteric < 1412185971 156810 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :( 'q < 1412185971 656038 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :12'q : 12Type < 1412185977 249084 :Sprocklem!~sprocklem@199.167.25.114 NICK :Guest94701 < 1412185987 760362 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :a symbol type or something? < 1412187139 934969 :ais523!~ais523@cpc6-king9-2-0-cust765.perr.cable.virginm.net JOIN :#esoteric < 1412187146 983025 :ais523!~ais523@cpc6-king9-2-0-cust765.perr.cable.virginm.net QUIT :Changing host < 1412187147 161443 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1412187437 508071 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Ping timeout: 245 seconds < 1412187501 201309 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :elliott_: Yes. < 1412187509 619838 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :( Symbol_ "Yes" < 1412187510 630246 :idris-bot!~ircslave@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :'04Yes12 : Type12 < 1412187519 156983 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :Huh. < 1412187529 383267 :mihow!~mihow@108.30.58.169 JOIN :#esoteric < 1412187555 87440 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :That certainly used to work, I wonder what broke the coloring there. < 1412187557 260157 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :does it have any values? < 1412187607 832233 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :No, it’s empty. < 1412187641 959148 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :It’s meant for labels apparently. < 1412187667 897327 :Melvar!~melvar@dslb-178-006-014-114.178.006.pools.vodafone-ip.de PRIVMSG #esoteric :Possibly only certain kinds, since you can’t decide their equality within the language. < 1412188572 852207 :mihow!~mihow@108.30.58.169 QUIT :Quit: mihow < 1412188744 767547 :upgrayeddd!sid2969@gateway/web/irccloud.com/x-gwvzomrjbwmdrilh QUIT :Ping timeout: 260 seconds < 1412188764 445100 :mihow!~mihow@108.30.58.169 JOIN :#esoteric < 1412189089 480668 :augur!~augur@129-2-129-33.wireless.umd.edu JOIN :#esoteric < 1412189256 537809 :AndoDaan!~Daanando@188.188.76.227 JOIN :#esoteric < 1412189273 31967 :bb010g!uid21050@gateway/web/irccloud.com/x-aivrchtqszafpwgn JOIN :#esoteric < 1412189352 580150 :upgrayeddd!sid2969@gateway/web/irccloud.com/x-ssbvkjznjpkpgdqy JOIN :#esoteric < 1412189417 87037 :AndoDaan_!~Daanando@188.189.70.11 QUIT :Ping timeout: 260 seconds < 1412189813 506187 :drdanmaku!uid17782@gateway/web/irccloud.com/x-slmxmvjcpoojvqpx QUIT :Ping timeout: 260 seconds < 1412189867 84939 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hu < 1412189872 186724 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq_uptime < 1412189876 326832 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :damn < 1412189919 990085 :blsqbot!~blsqbot@fmnssun.ibone.ch JOIN :#esoteric < 1412189927 192108 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there. < 1412189932 749420 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq "I'm back baby"Q < 1412189932 927302 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : I'm back baby < 1412189935 461780 :drdanmaku!uid17782@gateway/web/irccloud.com/x-dipthcgrfskcmxvk JOIN :#esoteric < 1412189951 165016 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :AndoDaan: you're bored? < 1412189995 108208 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Then there's always a challenge < 1412190003 895442 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :what's the "pm" command good for? < 1412190008 114306 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :^- that's the challenge < 1412190025 634418 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 5 6 7pm < 1412190025 813368 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : -8 < 1412190037 398679 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but not the trivial cases with integers < 1412190039 779437 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that's oring < 1412190042 7702 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*boring < 1412190048 459227 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :the ultimative edge case for it < 1412190220 843521 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :also try being bored in a psychiatric clinic while sleep deprived < 1412190223 506672 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that's the real bored < 1412190323 20378 :Guest94701!~sprocklem@199.167.25.114 QUIT :Ping timeout: 240 seconds < 1412190330 408028 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :been there, done that < 1412190344 505580 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :really? < 1412190355 662178 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes < 1412190358 73642 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: Could you add a time stamp to the scores? < 1412190361 620387 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :really < 1412190374 927714 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :so I know when it was last updated < 1412190378 367843 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :elliott_: what for? < 1412190397 803925 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(well, "psychiatric clinic" may give excessively straitjacket type connotations, but it was a mental health facility) < 1412190418 795792 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :mroman_: "being fucked up" < 1412190424 362844 :incomprehensibly!sid3405@gateway/web/irccloud.com/x-hpmrugvggeoyczda QUIT :Ping timeout: 260 seconds < 1412190425 343910 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :k. < 1412190450 698023 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :((it didn't help)) < 1412190459 360690 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ironically it just worsens the symptonms < 1412190469 868766 :incomprehensibly!sid3405@gateway/web/irccloud.com/x-cpjjaymihlvsruwl JOIN :#esoteric < 1412190471 434444 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*symptomps < 1412190480 828260 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :or whatever is the correct spelling for that < 1412190481 6223 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :well, I'm not going to universalise my experience. < 1412190484 359474 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :symptoms < 1412190682 311047 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :it's a hard word < 1412190691 697781 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*4>(-)*5)*4>([(-)*6[-]])*-1 < 1412190692 876285 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -31.43, score 3.50, rank 47/47 < 1412190703 273601 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*4>(-)*5)*4>([(-)*6[+]])*-1 < 1412190703 980881 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -31.95, score 3.41, rank 47/47 (--) < 1412190707 824683 :AnotherTest!~turingcom@94-224-16-225.access.telenet.be JOIN :#esoteric < 1412190722 111633 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*4>(-)*5)*4>(>[(-)*6[-]])*-1 < 1412190722 892452 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -24.90, score 6.17, rank 47/47 (--) < 1412190726 828327 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*4>(-)*5)*4>(>[(-)*6[+]])*-1 < 1412190727 915060 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -25.12, score 6.11, rank 47/47 (--) < 1412190740 365181 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*4>(-)*5)*4([(-)*6[-]]>)*-1 < 1412190741 880622 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -17.00, score 7.58, rank 47/47 (--) < 1412190746 149053 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*4>(-)*5)*4([(-)*9[-]]>)*-1 < 1412190748 22933 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -17.74, score 7.16, rank 47/47 (--) < 1412190765 603263 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*2>(-)*2)*4([(-)*6[-]]>)*-1 < 1412190767 215771 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -14.83, score 8.20, rank 47/47 (--) < 1412190786 310340 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Bike: it's english ;) < 1412190798 103926 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*20>(-)*20)*4([(-)*6[-]]>)*-1 < 1412190799 281471 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -17.02, score 8.33, rank 47/47 (--) < 1412190807 77280 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox ((+)*10>(-)*10)*4([(-)*6[-]]>)*-1 < 1412190808 301992 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -17.14, score 7.83, rank 47/47 (--) < 1412190810 682941 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412190815 786728 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it's getting harder to get on the hill < 1412190821 986868 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :«from συν- (sun-, “together”) + πίπτω (píptō, “I fall”)», that's fairly metal < 1412190863 520898 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(++++<-----<)*4(>)*8([(-)*6[-]]>)*-1 < 1412190864 867163 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -18.00, score 6.84, rank 47/47 (--) < 1412190869 545672 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :truly harder < 1412190872 710914 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(++++<-----<)*4(>)*8([(-)*6[-].]>)*-1 < 1412190873 991009 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -18.02, score 7.11, rank 47/47 (--) < 1412190878 916222 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(++++<-----<)*4(>)*9([(-)*6[-].]>)*-1 < 1412190879 859284 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -22.10, score 6.88, rank 47/47 (--) < 1412190896 548817 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++++++<-----<)*4(>)*8([(-)*6[-].]>)*-1 < 1412190896 896288 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -20.86, score 7.01, rank 47/47 (--) < 1412190907 442166 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++++++<-------<)*4(>)*8([(-)*6[-].]>)*-1 < 1412190908 91168 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -19.98, score 7.37, rank 47/47 (--) < 1412190917 461805 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++++++<-------<)*4(>-)*8([(-)*6[-].]>)*-1 < 1412190918 46727 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -19.57, score 7.49, rank 47/47 (--) < 1412190924 857194 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++++++<-------<)*4(>(-)*10)*8([(-)*6[-].]>)*-1 < 1412190926 111776 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -17.57, score 7.76, rank 47/47 (--) < 1412190930 483408 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++++++<-------<)*4(>(-)*100)*8([(-)*6[-].]>)*-1 < 1412190931 104505 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -21.00, score 7.35, rank 47/47 (--) < 1412190938 129067 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++++++<-------<)*4(>(-)*50)*8([(-)*6[-].]>)*-1 < 1412190938 983371 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -19.45, score 7.55, rank 47/47 (--) < 1412190948 521293 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>)*9(+++<---<)*4(>(-)*50)*8([(-)*6[-].]>)*-1 < 1412190949 127657 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -20.71, score 7.46, rank 47/47 (--) < 1412190954 765820 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>--)*9(+++<---<)*4(>(-)*50)*8([(-)*6[-].]>)*-1 < 1412190955 900483 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -20.29, score 7.55, rank 47/47 (--) < 1412190981 94780 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>-)*9(+++<----<)*4(>(-)*50)*8([(-)*6[-].]>)*-1 < 1412190982 312512 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -19.21, score 7.99, rank 47/47 (--) < 1412190987 318641 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust fox (>-)*9(+++++<----<)*4(>(-)*50)*8([(-)*6[-].]>)*-1 < 1412190988 50260 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.fox: points -19.62, score 7.78, rank 47/47 (--) < 1412190991 374639 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :nah < 1412190994 594965 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that ain't working < 1412191041 578584 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>-)*9(>[(+)*9[-].])*-1 < 1412191042 676473 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -9.57, score 13.01, rank 45/47 < 1412191047 552901 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh well < 1412191056 866837 :AndoDaan_!~Daanando@188.188.77.127 JOIN :#esoteric < 1412191072 829446 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :shit < 1412191080 58857 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :now cupnoodles went to rank 4 < 1412191090 924292 :Sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1412191116 523273 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>-)*9(>[(+)*9[-].]+)*-1 < 1412191117 158967 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -6.02, score 15.56, rank 41/47 (+4) < 1412191123 503141 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>-)*9(>[(+)*9[-].](+)*5)*-1 < 1412191124 215530 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -10.26, score 12.97, rank 45/47 (-4) < 1412191127 556569 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>-)*9(>[(+)*9[-].](+)*2)*-1 < 1412191128 44041 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -7.57, score 14.68, rank 44/47 (+1) < 1412191131 610723 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>-)*9(>[(+)*9[-].](+)*1)*-1 < 1412191132 444500 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -6.02, score 15.56, rank 41/47 (+3) < 1412191137 534792 :AndoDaan!~Daanando@188.188.76.227 QUIT :Ping timeout: 245 seconds < 1412191147 181812 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].](+)*1)*-1 < 1412191147 764833 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.81, score 16.56, rank 34/47 (+7) < 1412191170 250601 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>+[(+)*9[-].](+)*1)*-1 < 1412191170 928821 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -16.57, score 9.30, rank 47/47 (-13) < 1412191193 84170 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*-1 < 1412191193 664985 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.88, score 16.58, rank 34/47 (+13) < 1412191195 905761 :Gregor!dlopen@libdl.so PRIVMSG #esoteric :Is that "rush it" or "r u shit"? < 1412191207 191533 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(-)*9[+].]-)*-1 < 1412191207 594899 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.50, score 16.52, rank 36/47 (-2) < 1412191213 572762 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]--)*-1 < 1412191214 27124 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -7.12, score 14.87, rank 44/47 (-8) < 1412191218 215272 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*-1 < 1412191218 632343 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.88, score 16.58, rank 34/47 (+10) < 1412191228 940693 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Gregor: rush it < 1412191248 520512 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*4 < 1412191248 842317 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -21.83, score 7.07, rank 47/47 (-13) < 1412191253 504499 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*5 < 1412191253 861358 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -18.86, score 8.44, rank 47/47 (--) < 1412191256 344438 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*6 < 1412191256 727239 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -16.33, score 9.64, rank 47/47 (--) < 1412191259 588982 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*7 < 1412191260 238825 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -13.48, score 11.14, rank 47/47 (--) < 1412191262 548565 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*8 < 1412191262 781785 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -10.67, score 12.77, rank 46/47 (+1) < 1412191265 93276 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*9 < 1412191265 509156 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -7.93, score 14.50, rank 44/47 (+2) < 1412191268 619954 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*10 < 1412191269 115836 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.88, score 16.58, rank 34/47 (+10) < 1412191274 256873 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412191275 321882 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ic < 1412191281 358369 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*9 < 1412191281 734007 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -7.93, score 14.50, rank 44/47 (-10) < 1412191304 116647 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*9(<--)*18(>)*18([-]>)*-1 < 1412191304 565471 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -7.29, score 14.98, rank 43/47 (+1) < 1412191312 683593 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*10 < 1412191313 64529 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.88, score 16.58, rank 34/47 (+9) < 1412191328 615580 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit +(>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*10 < 1412191328 958921 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -5.40, score 16.41, rank 39/47 (-5) < 1412191333 94553 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bfjoust rushit (>->+)*4>-(>[(+)*9[-].]+>[(+)*9[-].]-)*10 < 1412191334 391789 :zemhill!bfjoust@eos.zem.fi PRIVMSG #esoteric :mroman_.rushit: points -4.88, score 16.58, rank 34/47 (+5) < 1412191335 985363 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq ru < 1412191336 162988 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Unknown command: (ru)! < 1412191339 975370 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq areyoushit < 1412191340 153128 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Unknown command: (ou)! < 1412191349 531292 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq ey < 1412191349 708980 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Unknown command: (ey)! < 1412191356 878860 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412191360 377543 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq "areyoushit"ps < 1412191360 555778 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {ar ey ou sh it} < 1412191368 602932 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq ar < 1412191368 780680 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Unknown command: (ar)! < 1412191375 119043 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq arey < 1412191375 296745 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Unknown command: (ey)! < 1412191376 822809 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq areyou < 1412191377 577 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Unknown command: (ou)! < 1412191378 2775 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric ::05] really < 1412191378 376859 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :[21:06] so I know when it was last updated < 1412191378 554583 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :[21:06] elliott_: what for? < 1412191378 554724 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :[21:06] (well, "psychiatric clinic" may give excessively straitjacket type connotations, but it was a mental health facility) < 1412191378 554811 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :[21:06] mroman_: "being fucked up" < 1412191378 888101 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :[21:06] * incomprehensibly has quit IRC (Ping timeout: 260 seconds) < 1412191390 207465 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :copy paste butter fingers < 1412191398 194978 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm? < 1412191406 144868 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :are you posting my medical history to esoleaks < 1412191418 235036 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :yes, god yes. < 1412191419 914229 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I still don't know why I added pm to Burlesque < 1412191420 823053 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::D < 1412191424 443438 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :so finally happy to have it out. < 1412191435 737503 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :hard grammer is. < 1412191459 119950 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1412191462 11650 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :teebee beat me again < 1412191462 891022 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::( < 1412191484 904395 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :What's currently the best way to detect primes? < 1412191493 378721 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :teebee must write code like a robot. < 1412191513 928750 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{fCL[2==}f[ < 1412191514 106644 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {4 6 9 10 14 15} < 1412191530 627288 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :something like that < 1412191532 220781 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{fcL[2==}f[ < 1412191532 398657 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3 5 7 11 13 17 19} < 1412191549 392187 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :I really was nearly there. < 1412191553 678909 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fcL[2== is the only way for "isprime" I know of < 1412191569 408055 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :been going at the last AG problem for an hour or so. < 1412191594 260454 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :alright. < 1412191597 599316 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17fc < 1412191597 777184 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 17} < 1412191611 301300 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17Jfc < 1412191611 479061 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 17} < 1412191616 399994 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17Jfc~[ < 1412191616 577840 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Burlesque: (~[) Invalid arguments! < 1412191635 381641 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17Jfcj~[ < 1412191635 559437 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 1 < 1412191642 580963 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :Jfcj~[ < 1412191646 503545 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fc2L[== < 1412191656 527414 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ok. Jfcj~[ is one byte shorter < 1412191660 559431 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 16Jfcj~[ < 1412191660 737239 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 1 < 1412191664 742681 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :damn < 1412191667 819413 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 16fc < 1412191667 997500 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 4 8 16} < 1412191671 491895 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 16fC < 1412191671 669864 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 2 2 2} < 1412191676 43809 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1412191678 495863 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1412191680 27388 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric ::D < 1412191682 48194 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17fc < 1412191682 225840 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 17} < 1412191690 688882 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :1 isn't a prime but ok < 1412191703 20446 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!bsq 17fC1~[ < 1412191707 321821 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17fC1~[ < 1412191707 524259 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 0 < 1412191716 624638 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17fC < 1412191716 802316 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {17} < 1412191722 447913 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah < 1412191726 648554 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 16fC < 1412191726 826340 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 2 2 2} < 1412191729 170611 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17fC < 1412191729 348424 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {17} < 1412191743 254754 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17JfC~[ < 1412191743 432729 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : ERROR: Burlesque: (~[) Invalid arguments! < 1412191746 383904 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 17JfCj~[ < 1412191746 561675 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 1 < 1412191750 243355 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 16JfCj~[ < 1412191750 421210 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : 0 < 1412191755 348732 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :JfCj~[ < 1412191763 727446 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fCL[1== < 1412191794 851101 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[ < 1412191795 70791 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 101 103 < 1412191840 878480 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[?i < 1412191841 56590 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {3 4 6 8 12 14 18 20 24 30 32 38 42 44 48 54 60 62 68 72 74 80 84 90 98 102 104 < 1412191866 994460 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[?i < 1412191867 172072 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {3 4 6 8 12 14 18 20 24 30 32 38 42 44 48 54 60 62 68 72 74 80 84 90 98 102 104 < 1412191872 258764 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[?iJ2?- < 1412191872 436432 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 4 6 10 12 16 18 22 28 30 36 40 42 46 52 58 60 66 70 72 78 82 88 96 100 102 < 1412191880 860318 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[?iJ2?-UN < 1412191881 37853 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {3 4 6 8 12 14 18 20 24 30 32 38 42 44 48 54 60 62 68 72 74 80 84 90 98 102 104 < 1412191885 579305 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[?iJ2?-UN<> < 1412191885 756961 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {200 198 196 194 192 190 182 180 178 174 172 168 166 164 162 158 156 152 150 148 < 1412191888 140732 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 200ro{JfCj~[}f[?iJ2?-UN>< < 1412191888 318359 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 3 4 6 8 10 12 14 16 18 20 22 24 28 30 32 36 38 40 42 44 46 48 52 54 58 60 6 < 1412191899 881265 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 256ro{JfCj~[}f[?iJ2?-UN>< < 1412191900 59327 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 3 4 6 8 10 12 14 16 18 20 22 24 28 30 32 36 38 40 42 44 46 48 52 54 58 60 6 < 1412191903 825027 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03GeniaSpringfiel 5* 10New user account < 1412191913 290840 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :nU? < 1412191917 457167 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :uN i mean < 1412191933 84500 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :no < 1412191937 790844 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :UN is Union < 1412191942 201902 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :it's vertical for the problem < 1412191955 310066 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :See, I'm very foolish < 1412191965 121302 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that's 28B < 1412191967 648657 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :teebee got 22B < 1412191968 143625 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :so < 1412191975 743156 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there's room for lots of improvements < 1412192008 709992 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412192012 718841 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{}f[ < 1412192012 896550 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} < 1412192017 682142 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{JfC}f[ < 1412192017 859978 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} < 1412192020 840173 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :still 9 better than the top < 1412192023 854068 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{JfC~[}f[ < 1412192024 57578 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} < 1412192029 362624 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :11 better < 1412192037 695439 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{JfC~[}m[ < 1412192037 873506 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {ERROR: Burlesque: (~[) Invalid arguments! {} 1 ERROR: Burlesque: (~[) Invalid a < 1412192042 546896 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{JfCj~[}m[ < 1412192042 724703 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {0 1 1 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0} < 1412192045 252033 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{JfCj~[}f[ < 1412192045 429972 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3 5 7 11 13 17 19} < 1412192063 758095 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :tried that method for a while < 1412192080 543516 :AndoDaan_!~Daanando@188.188.77.127 PRIVMSG #esoteric :the regex look for 0 1 0 < 1412192102 142692 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{fCL[}f[ < 1412192102 362924 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} < 1412192115 567820 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{fCL[?d}f[ < 1412192115 745558 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 4 6 8 9 10 12 14 15 16 18 20} < 1412192118 18933 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :aha! < 1412192129 914702 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{fCL[n!}f[ < 1412192130 92599 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1} < 1412192146 822777 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{fCL[?d}f[ < 1412192147 457 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 4 6 8 9 10 12 14 15 16 18 20} < 1412192154 22873 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that's the list of non-primes < 1412192158 101490 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(is there a challenge for that :D?) < 1412192165 603638 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :so < 1412193257 866113 :Sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 272 seconds < 1412193277 368213 :shikhin!~shikhin@unaffiliated/shikhin JOIN :#esoteric < 1412194097 483136 :erdic!erdic@unaffiliated/motley QUIT :Ping timeout: 260 seconds < 1412194114 715537 :erdic!erdic@unaffiliated/motley JOIN :#esoteric < 1412194343 124530 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ok < 1412194343 766876 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :so < 1412194354 136592 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro20ro{fCL[?d}f[\\ < 1412194354 314202 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3 5 7 11 13 17 19} < 1412194358 266639 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :are the primes < 1412194361 264639 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but that's too long < 1412194374 65066 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 40ro{fCL[?d}f[ < 1412194374 243323 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 4 6 8 9 10 12 14 15 16 18 20 21 22 24 25 26 27 28 30 32 33 34 35 36 38 39 40} < 1412194392 277084 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it's union prime+1, prime- < 1412194396 456949 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*prime+1,prime-1 < 1412194412 733651 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :hm < 1412194443 32207 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :AndoDaan_: you tried regex for A045718? < 1412194454 636826 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh!!! < 1412194455 850928 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :wait < 1412194464 103741 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :can't you hmu < 1412194465 744446 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :*hum < 1412194470 833195 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ah no < 1412194474 196907 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :that command does not exist < 1412194478 378945 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I wanted a command that does < 1412194489 375073 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :{1 2 3 4}{0 1 1 0} and it will return {2 3} < 1412194553 837497 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :oh < 1412194554 896652 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :easy < 1412194569 324644 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20ro{JfCj~[}m[ < 1412194569 502646 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {0 1 1 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0} < 1412194574 186465 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20roJ{JfCj~[}m[ < 1412194574 364058 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {0 1 1 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0} < 1412194577 297325 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20roJ{JfCj~[}m[?* < 1412194577 475102 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {0 2 3 0 5 0 7 0 0 0 11 0 13 0 0 0 17 0 19 0} < 1412194583 877030 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fu < 1412194588 492752 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20roJ{JfCj~[}m[n!?* < 1412194588 670675 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0} < 1412194594 374875 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20roJ{JfCj~[}m[)n!?* < 1412194594 552556 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 0 0 4 0 6 0 8 9 10 0 12 0 14 15 16 0 18 0 20} < 1412194619 205115 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq 20roJ{JfCj~[}m[)n!?*{}f[ < 1412194619 383015 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 4 6 8 9 10 12 14 15 16 18 20} < 1412194679 236740 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :^- This is actualy what people complaining about golfing languages don't understand < 1412194688 761912 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :mroman_: ? < 1412194700 790625 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :they complain that they always win < 1412194716 60140 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, that's unsurprising, really < 1412194717 434263 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I guess they think it's trivial to produce a short solution in it < 1412194727 581431 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :It's not < 1412194730 878727 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :It's still hard < 1412194733 523888 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :It's still golfing < 1412194737 12999 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you had Haskell where all the standard library functions were Huffman-coded < 1412194745 592218 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ais523: Of course < 1412194752 258981 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it'd do almost as well as the golfing languages, except for I/O < 1412194758 745299 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :maybe even a sucky burlesque golf solution is better than a haskell solution < 1412194776 146398 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the {1 2 3 4}{0 1 1 0} thing is easy enough to do in most functional languages < 1412194781 462959 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zip, filter, map < 1412194782 618316 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :but it's still hard to write good burlesque solutions < 1412194788 856836 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but it's going to be quite long written out < 1412194796 419334 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :presumably burlesque is doing the same thing, just with fewer characters < 1412194810 909991 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :@djinn [a] -> [b] -> [(a,b)] < 1412194811 463404 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Error: Undefined type [] < 1412194817 662965 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4}{0 1 1 0}z[ < 1412194817 840603 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{1 0} {2 1} {3 1} {4 0}} < 1412194827 462687 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm, how much Haskell have I forgotten in the last several years? < 1412194829 408902 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4}{0 1 1 0}z[{1!!}f[ < 1412194829 586611 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {{2 1} {3 1}} < 1412194832 400864 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4}{0 1 1 0}z[{1!!}f[u[ < 1412194832 578827 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 1} < 1412194838 790465 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4}{0 1 1 0}z[{1!!}f[)-] < 1412194838 968085 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3} < 1412194841 37764 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric ::t map < 1412194841 927754 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :(a -> b) -> [a] -> [b] < 1412194855 907878 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :@hoogle [a] -> [b] -> [(a,b)] < 1412194857 851190 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :you can do it with z[{1!!}f[)-] I guess < 1412194858 98614 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Prelude zip :: [a] -> [b] -> [(a, b)] < 1412194858 664555 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Data.List zip :: [a] -> [b] -> [(a, b)] < 1412194858 664757 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric :Data.ByteString.Builder.Prim (>*<) :: Monoidal f => f a -> f b -> f (a, b) < 1412194862 652962 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :right, it is called zip < 1412194866 28599 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :because you have to unzip after the filter < 1412194875 751060 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> zip [1,2,3,4] [0,1,1,0] < 1412194877 301329 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [(1,0),(2,1),(3,1),(4,0)] < 1412194892 543286 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> filter (\(a,b) -> b == 1) $ zip [1,2,3,4] [0,1,1,0] < 1412194893 967891 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [(2,1),(3,1)] < 1412194899 868142 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :> map fst . filter (\(a,b) -> b == 1) $ zip [1,2,3,4] [0,1,1,0] < 1412194901 464939 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [2,3] < 1412194920 939745 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :mroman_: right, that's what I was writing < 1412194923 448281 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :just you were faster < 1412194927 854045 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :ais523: I just meant that people saying that it's trivial to golf in $golflanguage are morons < 1412194936 814529 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :right < 1412194939 458721 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :it depends on the challenge < 1412194945 240892 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :sure < 1412194958 19661 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :"remove multiple occurences of characters" < 1412194959 919299 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :> filter (>0) $ zipWith (*) [1,2,3,4] [0,1,1,0] -- for nonzero data < 1412194961 329477 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : [2,3] < 1412194967 394176 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq "hellloo!"gn\[Q < 1412194967 571975 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : helo! < 1412194971 302750 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :there you go ;) < 1412194975 215502 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :^- that's trivial, yes < 1412194995 464991 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: you mean for nonzero data and Num a=> < 1412194997 781152 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(Hello from Germany.) < 1412195010 174729 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 2 3 4}{0 1 1 0}?*{}f[ < 1412195010 352406 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {2 3} < 1412195029 983067 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :(you can use {}f[ here because the value is also the predicate itself) < 1412195045 316056 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 0 2 0 3}{}f[ < 1412195045 493676 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 2 3} < 1412195058 888889 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {1 0 2 0 3}{J<-==}f[ < 1412195059 66640 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {1 0 2 0 3} < 1412195074 142718 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :!blsq {12 11 13 55 656 19}{J<-==}f[ < 1412195074 320476 :blsqbot!~blsqbot@fmnssun.ibone.ch PRIVMSG #esoteric : {11 55 656} < 1412195095 706750 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :well... gotta go now < 1412195138 530785 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :fizzie: You should try A045718 in Burlesque too ;) < 1412195153 4271 :mroman_!~roman2@fmnssun.ibone.ch PRIVMSG #esoteric :I seem to be stuck at both A045718 and A006520 :( < 1412195174 420428 :AnotherTest!~turingcom@94-224-16-225.access.telenet.be QUIT :Remote host closed the connection < 1412195185 720793 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Maybe when I get back from here. < 1412195824 689874 :GeekDude!~GeekDude@unaffiliated/g33kdude QUIT :Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com) < 1412195844 941615 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ooh, OEIS golf actually seems like a really clever idea < 1412195852 353864 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :there are tons of sequences there, and most follow patterns < 1412195871 41036 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :although, say, a list of the known busy beavers is probably quite hard to generate the "intended" way in a reasonable time < 1412195879 841987 :AndoDaan_!~Daanando@188.188.77.127 QUIT :Ping timeout: 272 seconds < 1412196035 6271 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :@oeis 6 21 107 < 1412196036 89779 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Busy Beaver problem: a(n) = maximal number of steps that an n-state Turing m... < 1412196039 937291 :augur!~augur@129-2-129-33.wireless.umd.edu QUIT :Remote host closed the connection < 1412196056 310426 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the next element of the sequence is unknown, but at least 47176870 < 1412197264 20503 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1412197374 692387 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I think BB(3) was calculated? < 1412197411 728109 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's the 21 < 1412197442 235137 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :er, add a couple to that then < 1412197455 723640 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :okay, no, 107 was the one worked out I guess < 1412197472 283276 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :er, hmm < 1412197476 606636 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@oeis 0, 1, 4, 6 < 1412197485 939466 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@oeis 0 1 4 6 < 1412197489 373108 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Zero together with the nonprime numbers A018252.[0,1,4,6,8,9,10,12,14,15,16,... < 1412197495 345566 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Zero together with the nonprime numbers A018252.[0,1,4,6,8,9,10,12,14,15,16,... < 1412197760 40751 :mihow!~mihow@108.30.58.169 QUIT :Quit: mihow < 1412197775 338399 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :-_- < 1412197825 377250 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03PhillipSowden 5* 10New user account < 1412197831 639791 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm, there is something that is obviously a bot reading nethack4.org, but claiming to be Firefox < 1412197863 758073 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I can tell it's a bot because it loaded robots.txt, then the other pages in quick succession < 1412197882 383334 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wait, no, not Firefox < 1412197883 884016 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's iE < 1412197885 388532 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*IE < 1412197891 256640 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Maybe it's a script? < 1412197901 504373 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :those tend to claim to be wget or curl < 1412197907 774504 :AndoDaan!~Daanando@188.189.90.201 JOIN :#esoteric < 1412197929 319838 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Maybe it's a poorly written script by someone who's just heard of JavaScript and iframes? < 1412197939 501628 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that checks robots.txt? < 1412197948 164975 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :...good point. < 1412197953 282117 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07KickMe14]]4 N10 02http://esolangs.org/w/index.php?oldid=40567 5* 03173.240.241.83 5* (+942) 10Created page with "'''KickMe''' is an [[object-oriented]] language which inverts traditional notions of member accessibility and data encapsulation. == Member accessibility == The following se..." < 1412197984 228246 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :there are also a surprising number of browsers that don't request any URL at all, and get a 400 < 1412198004 497204 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and at least one who only requested the favicon, nothing else < 1412198039 451110 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i like < 1412198274 9076 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :@oeis 0,1,4,6,13 < 1412198277 170533 :lambdabot!~lambdabot@silicon.int-e.eu PRIVMSG #esoteric : Busy Beaver sequence, or Rado's sigma function: maximal number of 1's that a... < 1412198284 743788 :Bike!~Glossina@stepheast-v394-wired-gw.net.wsu.edu PRIVMSG #esoteric :lol no examples huh < 1412198632 995003 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 240 seconds < 1412199049 891028 :bb010g!uid21050@gateway/web/irccloud.com/x-aivrchtqszafpwgn QUIT :Quit: Connection closed for inactivity < 1412199777 695627 :ais523!~ais523@unaffiliated/ais523 QUIT : < 1412200822 802460 :shikhout!~shikhin@59.177.196.123 JOIN :#esoteric < 1412200849 308871 :shikhout!~shikhin@59.177.196.123 NICK :Guest45401 < 1412200973 596683 :FreeFull!~freefull@defocus/sausage-lover QUIT :Ping timeout: 272 seconds < 1412200994 376073 :shikhin!~shikhin@unaffiliated/shikhin QUIT :Ping timeout: 244 seconds < 1412201174 255112 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :Why am I looking at Tcl again? < 1412201250 345544 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 250 seconds < 1412201353 513116 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1412201395 648670 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Read error: Connection reset by peer < 1412201414 935129 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1412201423 393311 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com QUIT :Remote host closed the connection < 1412201453 288751 :augur!~augur@216-164-48-148.c3-0.slvr-ubr1.lnh-slvr.md.cable.rcn.com JOIN :#esoteric < 1412202370 371666 :sebbu!~sebbu@ADijon-152-1-40-185.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1412202403 145251 :S1!~sheldon@pD9FCABA1.dip0.t-ipconnect.de QUIT :Quit: S1 < 1412202411 384784 :sebbu!~sebbu@ADijon-152-1-40-185.w83-194.abo.wanadoo.fr QUIT :Changing host < 1412202411 562299 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1412203978 419730 :Sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1412204789 886517 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :https://www.reddit.com/r/ProgrammerHumor/comments/2i10fh/ms_developer_on_explaining_why_its_windows_10/ there's real code like that. < 1412204850 718170 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :Oh, there is a comment saying it's not likely, I think < 1412205266 237620 :drdanmaku!uid17782@gateway/web/irccloud.com/x-dipthcgrfskcmxvk PRIVMSG #esoteric :Sgeo: well, that search does return code like that < 1412205293 328930 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :drdanmaku: but there's a comment suggesting that 32-bit code would be told that it's Windows 98 anyway < 1412205357 349146 :drdanmaku!uid17782@gateway/web/irccloud.com/x-dipthcgrfskcmxvk PRIVMSG #esoteric :i guess, maybe i'm just holding out hope that the microsoft marketing drones aren't just completely insane :( < 1412205364 519240 :Bicyclidine!~Glossina@wl-nat106.it.wsu.edu JOIN :#esoteric < 1412205369 279175 :Bicyclidine!~Glossina@wl-nat106.it.wsu.edu QUIT :Client Quit < 1412205386 788890 :Bicyclidine!~Glossina@wl-nat106.it.wsu.edu JOIN :#esoteric < 1412205627 357794 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :If Microsoft cared about compatibility with legacy products so much, why would there exist domains where IE 11 will send a UA string that does not claim to be IE, yet render as though it's IE9? < 1412205742 923407 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :The rendering algorithm choice is decided by the contents, which is *after* the UA is sent. < 1412205832 930344 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :pikhq: it can be overridden by Microsoft's compatibility list < 1412205847 392198 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :And in this case was < 1412205858 722272 :Sgeo!~quassel@ool-44c2aebc.dyn.optonline.net PRIVMSG #esoteric :That same compatibility list can also change the UA that gets sent < 1412206108 975103 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1412206263 646930 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I like https://www.reddit.com/r/ProgrammerHumor/comments/2i10fh/ms_developer_on_explaining_why_its_windows_10/ckxx4yv, which will break as soon as Windows 905 gets released < 1412206340 206284 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Or when Microsoft releases "Windows Me 2", for the year 3000. < 1412206349 293775 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :windows meh < 1412206361 573976 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can't wait for windowses 94, 96, 97 and 99 < 1412206372 758560 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :windows 97.9 recurring < 1412206406 854927 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1412206626 730862 :AndoDaan!~Daanando@188.189.90.201 QUIT :Ping timeout: 258 seconds < 1412206748 667979 :AndoDaan!~Daanando@188.189.90.126 JOIN :#esoteric < 1412207179 664022 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :ACTION believes the next version should use the internal version number < 1412207187 521553 :pikhq!~pikhq@deagol.pikhq.com PRIVMSG #esoteric :Windows 6.3 ahoy! < 1412207267 947664 :GeekDude!~GeekDude@unaffiliated/g33kdude JOIN :#esoteric < 1412207585 658286 :AndoDaan!~Daanando@188.189.90.126 QUIT :Ping timeout: 272 seconds < 1412207675 802664 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :windows 15.04 < 1412207704 345979 :boily!~alexandre@96.127.201.149 QUIT :Quit: SWITCHING FOR ANOTHER CHICKEN < 1412207824 428318 :boily!~boily@96.127.201.149 JOIN :#esoteric < 1412207973 690401 :AndoDaan!~Daanando@188.189.72.193 JOIN :#esoteric