< 1552349000 204235 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :OKAY < 1552349552 92064 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 245 seconds < 1552349831 748019 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1552350259 540527 :ProofTechnique!sid79547@gateway/web/irccloud.com/x-uxucyhmbsiwggoqq PRIVMSG #esoteric :fizzie: Consider another viewpoint: if all IO is broken, your code is guaranteed to be pure < 1552350262 625219 :ProofTechnique!sid79547@gateway/web/irccloud.com/x-uxucyhmbsiwggoqq PRIVMSG #esoteric :hth < 1552350333 531221 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :tdh but only my feelings. < 1552350599 163786 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1552350601 729845 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :whoa < 1552350611 64177 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :has everyone been making clever help/hurt hth puns for years < 1552350614 252218 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :that i never got < 1552350615 955954 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :tdh < 1552350682 226047 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :No, I meant "help" there. < 1552350700 465451 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It was an unintenpun. < 1552350852 84174 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 245 seconds < 1552351768 686790 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Nite > 1552352274 812859 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03EnilKoder 5* 10New user account < 1552353478 253031 :david_werecat!~a1@198-48-234-231.cpe.pppoe.ca QUIT :Quit: Leaving < 1552353641 81394 :FreeFull!~freefull@defocus/sausage-lover QUIT :Remote host closed the connection < 1552353909 96338 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1552354017 536745 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1552355050 314997 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :@tell zzo38 To answer a question I missed, x86 has always had a fast byte swap for 16-bit values (via `xchg al, ah` and so on), and from 80486 onwards gained a BSWAP instruction to swap the endianness of 32-bit and (on x86-64) 64-bit values. < 1552355050 396905 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1552355158 86175 :pikhq!~pikhq@c-73-181-126-9.hsd1.co.comcast.net PRIVMSG #esoteric :And GCC will convert a more naive bit shifting sequence into just using bswap. < 1552355226 565419 :pikhq!~pikhq@c-73-181-126-9.hsd1.co.comcast.net PRIVMSG #esoteric :Like, uint32_t x = (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3]; becomes a nice and simple fetch and bswap. < 1552355241 569220 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com QUIT :Quit: Qutting < 1552355253 112144 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :oh neat < 1552355311 725678 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`` echo 'unsigned f(unsigned n) { return n >> 24 | (n & 0xff0000) >> 8 | (n & 0xff00) << 8 | n << 24; }' | gcc -x c - -o - -S -O3 | grep -v \\. | tr '\t' ' ' # just checking < 1552355312 875242 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :f: \ movl %edi, %eax \ bswap %eax \ ret < 1552355347 102939 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :nice command line < 1552355348 472442 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :A+ < 1552355422 986634 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I stole the grep -v idiom from ais523's prior art. Although `fgrep -v .` would've been simpler. < 1552355437 84123 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` gcc -x c - -o - -S -O3 <<<'unsigned f(unsigned n) { return n >> 24 | (n & 0xff0000) >> 8 | (n & 0xff00) << 8 | n << 24; }' | fgrep -v . | expand < 1552355438 140379 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :f: \ movl %edi, %eax \ bswap %eax \ ret < 1552355447 819008 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :UUOE removed :-) < 1552355461 770346 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also I wanted to test to see how it looked after running through expand < 1552355515 446159 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the tr output is probably better < 1552355525 911323 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :better still would be a "condense all whitespace to a single space", though < 1552355537 191505 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but I'm not sure there's a standard command for that < 1552355559 877611 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` gcc -x c - -o - -S -O3 <<<'unsigned f(unsigned n) { return n >> 24 | (n & 0xff0000) >> 8 | (n & 0xff00) << 8 | n << 24; }' | fgrep -v . | fmt -999 < 1552355560 911566 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :f: \ movl %edi, %eax bswap %eax ret < 1552355574 52880 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm < 1552355704 380995 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :If you condense *all* whitespace to single space, it may be hard to separate opcodes and arguments. And if you leave newlines untouched, the \s will look misaligned because there will be (coalesced) whitespace right after a newline, but not before. < 1552355803 302074 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :what about condensing all whitespace to a single whitespace character, \n the whitespace contained vertical whitespace, space if it was entirely horizontal? < 1552355813 906700 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :* \n if < 1552355823 804701 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :That sounds reasonable, but probably not a standard utility. < 1552355828 146555 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm, this is beginning to sound like a PPCG challenge now < 1552355854 59134 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`! retina abc < 1552355854 799787 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin/!: line 4: /hackenv/ibin/retina: No such file or directory < 1552355867 639487 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :bleh, why can't HackEso do its originial job of interpreting esolangs? :-D < 1552355889 767711 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that said, IIRC the official Retina interpreter is written in C#, so getting it running on HackEso is likely to be difficult < 1552355942 201649 :ais523!~ais523@unaffiliated/ais523 QUIT :Quit: sorry for my connection < 1552355954 272551 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1552355986 370411 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` gcc -x c - -o - -S -O3 <<<'unsigned f(unsigned n) { return n >> 24 | (n & 0xff0000) >> 8 | (n & 0xff00) << 8 | n << 24; }' | fgrep -v . | cat -v < 1552355987 363485 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :f: \ movl %edi, %eax \ bswap %eax \ ret < 1552356006 81940 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :now I'm confused, what happened to the tabs? < 1552356023 987057 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`` printf '\t' | cat -v | od -t x1z < 1552356024 839294 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :0000000 09 >.< \ 0000001 < 1552356034 732207 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :apparently cat -v doesn't make them visible, despite what it's documented to do? < 1552356034 874428 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`` gcc -x c - -o - -S -O3 <<<'unsigned f(unsigned n) { return n >> 24 | (n 0xff0000) >> 8 | (n & 0xff00) << 8 | n << 24; }' | fgrep -v . | perl -0 -pe 's|(\s+)|$1=~/\n/?"\n":" "|ge' < 1552356035 868731 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​: In function ‘f’: \ :1:47: error: expected ‘)’ before numeric constant < 1552356052 364248 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Hm, it worked for me in a terminal. < 1552356055 846626 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you somehow missed an & sign < 1552356059 787508 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in the middle of the C code < 1552356064 581532 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :...oh. < 1552356070 686107 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`` gcc -x c - -o - -S -O3 <<<'unsigned f(unsigned n) { return n >> 24 | (n & 0xff0000) >> 8 | (n & 0xff00) << 8 | n << 24; }' | fgrep -v . | perl -0 -pe 's|(\s+)|$1=~/\n/?"\n":" "|ge' < 1552356071 667323 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :f: \ movl %edi, %eax \ bswap %eax \ ret < 1552356073 514663 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's pretty bizarre as typos go < 1552356085 631084 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's where the line was wrapped, I copy-pasted it as two chunks. < 1552356291 788577 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :And I'm sure the Perl part has a lot of fluff, but the ()/$1 bit could've been just $&. < 1552356392 135712 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`` ls ibin | wc -l < 1552356393 19589 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :46 < 1552356395 77837 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I vaguely remember nested regexes not working in old Perl versions, but that's likely been fixed by now < 1552356396 807722 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It does have a bunch of them. < 1552356405 929487 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yes, from something like ten years ago < 1552356415 447699 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also, don't most of them not work? < 1552356428 26184 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`! kipple 65>o<66 < 1552356428 65651 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Some probably don't, some just haven't been tried. < 1552356428 880303 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :BA < 1552356433 599359 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :OK, that one works < 1552356459 710364 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :"sh" and "c" are hardly esoteric. Or "bf_txtgen" an interpreter, for that matter. < 1552356466 559376 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I remember that EgoBot's Underload interpreter wasn't built in, rather it was written in brainfuck < 1552356467 166333 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :(I'm guessing bf_txtgen is unlikely to work too.) < 1552356474 874953 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :`! bf_txtgen Hello, world! < 1552356475 775813 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​/hackenv/ibin/bf_txtgen: line 6: java: command not found < 1552356485 349231 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :OK, that's a fairly major problem :-D < 1552356502 477337 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :can't run a Java program without a JVM < 1552356507 910344 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :maybe we could write one in Befunge or something < 1552356520 268299 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :compile it with GCJ! < 1552356529 81094 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :There's no GHC either, so `! haskell won't run. But lambdabot makes it pretty unnecessary. < 1552356535 349581 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :can GCJ compile Java bytecode? < 1552356576 88654 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I think it ought to. < 1552356642 76971 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The source code seems to be there next to the .class files in interps/bf_txtgen/ anyway. < 1552356994 468112 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :you can decompile .class to .java < 1552356997 235168 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :so it ought to be able to < 1552357000 887678 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :there are probably corner cases, though < 1552357019 916237 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ACTION remembers as a wee lad decompiling the Yahoo! Poker applet to successfully figure out how to cheat < 1552357045 892860 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I had a Perl script that would proxy the game communications and tell me which cards everyone had < 1552357055 207284 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :as well as which cards would be dealt in the future < 1552357060 549806 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :too bad it wasn't real money < 1552357076 532945 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1552357088 999468 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :this was possible because they didn't send the cards from the server, only a RNG seed, and the data stream had some weak (XOR-level) encryption < 1552357227 91528 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I remember watching someone try to play Go on Yahoo! < 1552357241 293949 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it had a rule that if the players didn't agree on the score after two passes, they were forced to play on and weren't allowed to pass < 1552357272 602496 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so you could win by passing repeatedly, forcing the opponent to play stones on every square of the board, and eventually lose on time < 1552357284 700398 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(because it wouldn't let them pass nor play a move at that point) < 1552357288 565907 :Cale!~cale@2607:fea8:995f:fb71:c4b3:df17:f65b:3fa3 PRIVMSG #esoteric :I know a 6 dan player who learned all the way up to 2d or something by playing Go on Yahoo, he actually had no idea that it was a game that people played anywhere else. < 1552357359 524534 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 252 seconds < 1552357425 266694 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :haha < 1552357518 724376 :Cale!~cale@2607:fea8:995f:fb71:c4b3:df17:f65b:3fa3 PRIVMSG #esoteric :He thought it was just like, invented by Yahoo! or something < 1552357520 655374 :Cale!~cale@2607:fea8:995f:fb71:c4b3:df17:f65b:3fa3 PRIVMSG #esoteric :hahaha < 1552357537 155555 :Cale!~cale@2607:fea8:995f:fb71:c4b3:df17:f65b:3fa3 PRIVMSG #esoteric :until they shut down > 1552358226 773921 PRIVMSG #esoteric :14[[07Increment14]]4 10 02https://esolangs.org/w/index.php?diff=60458&oldid=60077 5* 03Camto 5* (+267) 10Added partial implementation. < 1552361147 65676 :FreeFull!~freefull@defocus/sausage-lover QUIT : < 1552361477 565950 :xkapastel!uid17782@gateway/web/irccloud.com/x-qxniwmowszbuqomk JOIN :#esoteric < 1552361551 895435 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ais523: how can it be that the players don't agree on the score < 1552361558 687679 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :what does that mean < 1552361574 930685 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :kmc: the game asked the players what the score was, if they disagreed, it forced play on < 1552361582 713646 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :under Japanese rules the players have to agree which stones are alive or dead < 1552361592 205836 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(most computer play nowadays uses a scoring variation where it doesn't matter) < 1552363588 905103 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1552363882 707916 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 272 seconds < 1552369555 411253 :xkapastel!uid17782@gateway/web/irccloud.com/x-qxniwmowszbuqomk QUIT :Quit: Connection closed for inactivity < 1552369753 622063 :S_Gautam!uid286066@gateway/web/irccloud.com/x-mdtlozjojbeisjzp JOIN :#esoteric < 1552370088 222393 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1552370352 71661 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 245 seconds < 1552370414 975208 :sebbu2!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1552370563 93962 :ais523!~ais523@unaffiliated/ais523 QUIT :Quit: quit < 1552370646 895235 :lifthrasiir_!~lifthrasi@ec2-52-79-98-81.ap-northeast-2.compute.amazonaws.com JOIN :#esoteric < 1552370700 898243 :oren!~oren@ec2-18-212-11-99.compute-1.amazonaws.com JOIN :#esoteric < 1552370701 971365 :ineiros!ineiros@kapsi.fi JOIN :#esoteric < 1552370840 995554 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Read error: Connection reset by peer < 1552370841 256068 :fractal!~fractal@unaffiliated/scounder QUIT :Ping timeout: 246 seconds < 1552370841 295550 :lifthrasiir!~lifthrasi@ec2-52-79-98-81.ap-northeast-2.compute.amazonaws.com QUIT :Remote host closed the connection < 1552370841 471398 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com QUIT :Ping timeout: 246 seconds < 1552370841 571342 :ineiros_!ineiros@kapsi.fi QUIT :Ping timeout: 246 seconds < 1552371872 709788 :fractal!~fractal@unaffiliated/scounder JOIN :#esoteric < 1552372366 714861 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Read error: Connection reset by peer < 1552372883 232550 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric < 1552376561 247744 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1552376742 244223 :arseniiv!~arseniiv@136.169.207.200 JOIN :#esoteric < 1552376824 220500 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 246 seconds < 1552377190 964709 :tromp!~tromp@217.103.3.94 JOIN :#esoteric < 1552378322 682880 :sebbu2!~sebbu@unaffiliated/sebbu NICK :sebbu < 1552378875 529305 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be JOIN :#esoteric < 1552379139 509365 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be QUIT :Ping timeout: 252 seconds < 1552379296 280867 :AnotherTest!~turingcom@ptr-82l26zcehbybvusuxld.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1552382687 272425 :AnotherTest!~turingcom@ptr-82l26zcehbybvusuxld.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 240 seconds < 1552383602 274508 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1552383847 286472 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 240 seconds < 1552384491 220153 :AnotherTest!~turingcom@d51a4b8e1.access.telenet.be JOIN :#esoteric < 1552384930 219543 :AnotherTest!~turingcom@d51a4b8e1.access.telenet.be QUIT :Ping timeout: 246 seconds < 1552385308 191880 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1552385670 136673 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 252 seconds < 1552386017 379081 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be JOIN :#esoteric < 1552386378 387392 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be QUIT :Ping timeout: 250 seconds < 1552386417 510027 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1552387316 702743 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 JOIN :#esoteric < 1552390090 586807 :S_Gautam!uid286066@gateway/web/irccloud.com/x-mdtlozjojbeisjzp QUIT :Quit: Connection closed for inactivity < 1552393074 461920 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1552393180 869399 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 272 seconds < 1552393222 624201 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1552395066 418544 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com JOIN :#esoteric < 1552399218 846631 :newbie37!~Essadon@81-225-32-185-no249.tbcn.telia.com JOIN :#esoteric < 1552399418 572615 :Roger9_!rdococ@cheapiesystems.com JOIN :#esoteric < 1552399464 316478 :int-e_!~noone@int-e.eu JOIN :#esoteric < 1552399468 409955 :atehwa_!atehwa@aulis.sange.fi JOIN :#esoteric < 1552399779 112461 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com QUIT :*.net *.split < 1552399779 261500 :atehwa!atehwa@aulis.sange.fi QUIT :*.net *.split < 1552399779 261554 :rdococ!rdococ@cheapiesystems.com QUIT :*.net *.split < 1552399779 471175 :int-e!~noone@int-e.eu QUIT :*.net *.split < 1552399779 741623 :HackEso!~h@techne.zem.fi QUIT :*.net *.split < 1552399835 741433 :HackEso!~h@techne.zem.fi JOIN :#esoteric < 1552399979 965485 :fractal!~fractal@unaffiliated/scounder QUIT :Ping timeout: 246 seconds < 1552401058 316535 :fractal!~fractal@unaffiliated/scounder JOIN :#esoteric < 1552401915 282493 :xkapastel!uid17782@gateway/web/irccloud.com/x-lpzjeoqrkvnvzcdl JOIN :#esoteric < 1552402041 526533 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 252 seconds < 1552403661 324732 :newbie37!~Essadon@81-225-32-185-no249.tbcn.telia.com QUIT :Quit: Qutting < 1552403679 628903 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com JOIN :#esoteric < 1552403901 735991 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1552403941 10392 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :what would an automaton look like that could generate a list of all possible combinations of n pairs of parentheses? < 1552403953 151604 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :i.e I hand you the number 2, you give me back (()) and ()() < 1552403993 946680 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :intuition about matching tells me that you can write an acceptor for dyck words of that sort using a PDA. < 1552404000 764212 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :but I've never thought about generating. < 1552404051 182261 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :I assume you'd need separate automata depending on the number of pairs you wanted to generate. < 1552404242 234931 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :imode: up the answer for that in TAOCP chapter 7.2.1.6 < 1552404275 706888 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :is the solution actually an automaton or some pseudocode. < 1552404543 412407 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :okay... that wasn't what I was looking for, but thanks for the pointer. > 1552404814 259980 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=60459&oldid=60358 5* 03EnilKoder 5* (+638) 10/* Introductions */ > 1552404824 12524 PRIVMSG #esoteric :14[[07EnilKode14]]4 N10 02https://esolangs.org/w/index.php?oldid=60460 5* 03EnilKoder 5* (+5068) 10Created page with "==enilKode== enilKode is the first programming language created by enilKoder, which is where he got his username for Esolang. The name enilKode comes from his username on [htt..." > 1552405349 949977 PRIVMSG #esoteric :14[[07Mao14]]4 N10 02https://esolangs.org/w/index.php?oldid=60461 5* 03EnilKoder 5* (+550) 10No information for this programming language is available; learn about robots.txt > 1552405551 456238 PRIVMSG #esoteric :14[[07TroJavaScript14]]4 N10 02https://esolangs.org/w/index.php?oldid=60462 5* 03EnilKoder 5* (+216) 10This is just JavaScript, right? That's not what I wanted my program to do! > 1552405625 751967 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Caotic 5* 10New user account > 1552406680 214565 PRIVMSG #esoteric :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=60463&oldid=60237 5* 03EnilKoder 5* (+95) 10/* General languages */ < 1552407402 560778 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1552408066 749428 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 255 seconds < 1552409482 993317 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1552409687 134252 :xkapastel!uid17782@gateway/web/irccloud.com/x-lpzjeoqrkvnvzcdl QUIT :Quit: Connection closed for inactivity < 1552410190 762851 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric > 1552410662 68130 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=60464&oldid=60459 5* 03Caotic 5* (+198) 10 > 1552410696 139395 PRIVMSG #esoteric :14[[07User:Caotic14]]4 N10 02https://esolangs.org/w/index.php?oldid=60465 5* 03Caotic 5* (+118) 10Created page with "Hello! I like how esolang can be a unique tool for learning minimal calculus, so I am here to help more the community." > 1552410718 4340 PRIVMSG #esoteric :14[[07Grr14]]4 N10 02https://esolangs.org/w/index.php?oldid=60466 5* 03Caotic 5* (+3723) 10Created page with "Grr is a pure textual programming language that composes rules and functions inspired in macro and high-order programming. Exist two ways of define rules in Grr, first using a..." > 1552410829 132393 PRIVMSG #esoteric :14[[07Grr14]]4 10 02https://esolangs.org/w/index.php?diff=60467&oldid=60466 5* 03Caotic 5* (+108) 10 > 1552410927 377536 PRIVMSG #esoteric :14[[07Grr14]]4 10 02https://esolangs.org/w/index.php?diff=60468&oldid=60467 5* 03Caotic 5* (+0) 10 > 1552411106 111741 PRIVMSG #esoteric :14[[07ASCII14]]4 N10 02https://esolangs.org/w/index.php?oldid=60469 5* 03Camto 5* (+124) 10Page creation. < 1552411113 161337 :pikhq!~pikhq@c-73-181-126-9.hsd1.co.comcast.net QUIT :Ping timeout: 252 seconds < 1552411121 934763 :pikhq!~pikhq@c-73-181-126-9.hsd1.co.comcast.net JOIN :#esoteric > 1552411242 862427 PRIVMSG #esoteric :14[[07Bootstrap14]]4 N10 02https://esolangs.org/w/index.php?oldid=60470 5* 03Camto 5* (+234) 10Page creation. > 1552411420 307211 PRIVMSG #esoteric :14[[07Call stack14]]4 10 02https://esolangs.org/w/index.php?diff=60471&oldid=51804 5* 03Camto 5* (-31) 10Broken link. > 1552411495 738863 PRIVMSG #esoteric :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=60472&oldid=60442 5* 03Caotic 5* (+10) 10 < 1552411504 267908 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be JOIN :#esoteric > 1552411558 671957 PRIVMSG #esoteric :14[[079014]]4 10 02https://esolangs.org/w/index.php?diff=60473&oldid=44763 5* 03Camto 5* (-6) 10Broken link. > 1552411609 750046 PRIVMSG #esoteric :14[[07The Inevitable14]]4 10 02https://esolangs.org/w/index.php?diff=60474&oldid=46316 5* 03Camto 5* (+19) 10Broken link. > 1552411874 67982 PRIVMSG #esoteric :14[[07Grr14]]4 10 02https://esolangs.org/w/index.php?diff=60475&oldid=60468 5* 03Caotic 5* (+6) 10 > 1552411914 893996 PRIVMSG #esoteric :14[[07Grr14]]4 10 02https://esolangs.org/w/index.php?diff=60476&oldid=60475 5* 03Caotic 5* (+0) 10 < 1552412339 468093 :int-e_!~noone@int-e.eu NICK :int-e < 1552412607 274872 :nfd!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net QUIT :Ping timeout: 240 seconds < 1552412625 687389 :LKoen!~LKoen@2a01cb0407597a0085f21ef7944f920e.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1552412663 942470 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 246 seconds < 1552414529 163132 :LKoen!~LKoen@2a01cb0407597a0085f21ef7944f920e.ipv6.abo.wanadoo.fr QUIT :Remote host closed the connection < 1552414554 203082 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1552415348 96262 :adu!~arobbins@pool-70-110-26-251.washdc.fios.verizon.net JOIN :#esoteric > 1552416430 93824 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Asty 5* 10New user account < 1552416477 556064 :xkapastel!uid17782@gateway/web/irccloud.com/x-yjnopjmvqutdifug JOIN :#esoteric > 1552416571 539048 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Sentry 5* 10New user account < 1552416727 69654 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 245 seconds > 1552417005 715966 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 M10 02https://esolangs.org/w/index.php?diff=60477&oldid=60464 5* 03Sentry 5* (+176) 10add my introduction > 1552417022 773203 PRIVMSG #esoteric :14[[07Ly14]]4 10 02https://esolangs.org/w/index.php?diff=60478&oldid=58552 5* 03Sentry 5* (+96) 10Add new interpreter to list < 1552417640 566058 :LKoen!~LKoen@2a01cb0407597a006c85e2af64192b74.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1552418212 538903 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1552418340 493871 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu JOIN :#esoteric < 1552418353 747734 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 255 seconds < 1552418440 725903 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1552418623 534456 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1552418849 520296 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 252 seconds < 1552419190 728230 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 255 seconds < 1552420856 978504 :Phantom_Hoover!~phantomho@cpc108439-cowc8-2-0-cust785.14-2.cable.virginm.net JOIN :#esoteric < 1552420865 163544 :Phantom_Hoover!~phantomho@cpc108439-cowc8-2-0-cust785.14-2.cable.virginm.net QUIT :Changing host < 1552420865 163588 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1552421749 240623 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1552421845 647273 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1552422354 849588 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@tell ais523 apparently cat -v doesn't make them visible, despite what it's documented to do? <-- the man page here says it excludes tabs, you need -T for that. < 1552422354 943920 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1552422387 574817 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :@tell ais523 or just -t < 1552422387 659232 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :Consider it noted. < 1552422396 599529 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :is that why it's considered harmful < 1552422407 785173 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :what is < 1552422437 911094 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :. o O ( i didn't mention goto anywhere... ) < 1552422441 186929 :nfd9001!~nfd9001@2600:380:8046:700a:3c:ee1:5436:dd14 JOIN :#esoteric < 1552422496 192914 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :or cat -A < 1552422501 931544 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oerjan: do you occasionally comment on yafgc? < 1552422632 82911 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :int-e: yes < 1552422676 693016 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :yesterday i couldn't get comments to load, though. < 1552422712 424643 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :iirc it was an occasional problem some days before too < 1552422749 466408 :imode!~imode@unaffiliated/imode QUIT :Quit: WeeChat 2.4 < 1552422766 250814 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :or rather, comments for the last page, the previous loaded fine. < 1552422784 62577 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(but i loaded that first and then went to read something else, so...) < 1552422828 959217 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :so i still have the tabs open. < 1552423027 852121 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :int-e: do you? not by that nick, at least. < 1552423054 34208 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION guesses you're not Guesticus. < 1552423113 929805 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i would _not_ bet on Guesticus not being A, though. < 1552423378 488503 :mniip!mniip@freenode/staff/mniip QUIT :Ping timeout: 600 seconds < 1552423448 1022 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oerjan: no I don't. I just read a few and stumbled over a certain nick. < 1552423503 792821 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(sorry if that's disappointing) < 1552423950 462415 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :awwwwwwwwwwwwwwwwwnot really < 1552424321 702801 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :"VAROITUS: Tamä tuote sisältää ja sitä poltettaessa siltä erityy kemikaaleja, joiden on Kalifornian osavaltiossa todettu aiheuttavan syöpää ja sikiön epämuodostumia tai muita lisääntymiskykyyn littyviä vaurioita." — a camp stove fuel canister I own < 1552424424 4679 :LKoen!~LKoen@2a01cb0407597a006c85e2af64192b74.ipv6.abo.wanadoo.fr QUIT :Remote host closed the connection < 1552424444 524535 :LKoen!~LKoen@2a01cb0407597a006c85e2af64192b74.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1552425873 722839 :tswett[m]!tswettmatr@gateway/shell/matrix.org/x-hnidskzaoyonzvtb JOIN :#esoteric < 1552425887 224154 :xkapastel!uid17782@gateway/web/irccloud.com/x-yjnopjmvqutdifug QUIT :Quit: Connection closed for inactivity < 1552425934 671974 :tswett[m]!tswettmatr@gateway/shell/matrix.org/x-hnidskzaoyonzvtb PRIVMSG #esoteric :Whoa, I've got a fancy [m] at the end of my nick! I think. < 1552425948 58111 :tswett[m]!tswettmatr@gateway/shell/matrix.org/x-hnidskzaoyonzvtb PRIVMSG #esoteric :I figure I probably do. That seems pretty likely. < 1552426009 542290 :int-e!~noone@int-e.eu PRIVMSG #esoteric :the [m]atrix has got you < 1552426029 937659 :int-e!~noone@int-e.eu PRIVMSG #esoteric :tswett[m]: if that was a question, yes, you do < 1552426080 488147 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :tswett: you can use a bot to find what your nick is. eg. try /msg perlbot &n < 1552426169 758496 :mniip!mniip@freenode/staff/mniip JOIN :#esoteric < 1552426176 653656 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :or to find if you have a [m] at the end of your nick, < 1552426185 744717 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :/msg perlbot compose `eval `arg d&n'=~/[\[{][mM][\]}]$/ ? "yes" : "no"' < 1552426195 914525 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :though that doesn't try to determine if it's a fancy one or not < 1552426232 485450 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :hmm wait < 1552426235 61681 :int-e!~noone@int-e.eu PRIVMSG #esoteric :they could also check the channel logs < 1552426237 111148 :int-e!~noone@int-e.eu PRIVMSG #esoteric :ACTION shrugs < 1552426242 351656 :int-e!~noone@int-e.eu PRIVMSG #esoteric :but where's the fun in that? > 1552426269 249044 PRIVMSG #esoteric :14[[07ALLSCII14]]4 10 02https://esolangs.org/w/index.php?diff=60479&oldid=60412 5* 03Cortex 5* (-122) 10Removed ~ and @, we already have those instructions < 1552426301 835235 :int-e!~noone@int-e.eu PRIVMSG #esoteric :But more importantly, the real quote is just "the matrix has you". < 1552426375 11156 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :there's also /msg perlbot 8ball do I have a fancy [m] at the end of my nick? < 1552426378 118333 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :but it's less reliable < 1552426624 995572 :int-e!~noone@int-e.eu PRIVMSG #esoteric :fungot: hi! < 1552426625 236654 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :int-e: so of course it's ambiguous if you don't, it will handle an empty array the same way < 1552426645 771327 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :aaaaaaaaaaaaaaa < 1552426666 807189 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :don't even remind me of matlab's truthyness rule, my hon. and learned friend fungot < 1552426667 92911 :fungot!~fungot@2a01:4b00:82bb:1341::2 PRIVMSG #esoteric :b_jonas: nooooo, don't ask why), microsoft products have assimilated quite well, thanks. i don't < 1552426758 290090 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(if you're looking for a bot that will parrot your nick...) < 1552426788 180974 :nfd9001!~nfd9001@2600:380:8046:700a:3c:ee1:5436:dd14 QUIT :Ping timeout: 252 seconds < 1552426792 711013 :int-e!~noone@int-e.eu PRIVMSG #esoteric :@metar lowi < 1552426794 318744 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :LOWI 122120Z 28010KT 9999 FEW090 BKN120 02/M03 Q1015 NOSIG < 1552427090 315536 :int-e!~noone@int-e.eu PRIVMSG #esoteric :'" < 1552427095 478561 :int-e!~noone@int-e.eu PRIVMSG #esoteric :`" < 1552427096 473174 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :417) It's ok guys. I am doing what I can to keep my psyche and ego surviving. All the while the threat of ww3 looms, the mortality of family and friends(loved ones?) and sooner or llater my own mortality. \ 1217) ...my university's Scandinavian Society is having a trip to IKEA < 1552427149 823081 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Fear and Loathing at IKEA < 1552427973 673511 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :oh man < 1552427977 978674 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :i miss itidus < 1552427983 583827 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :what a nutter < 1552427993 895518 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :i hope he's doing well < 1552427998 470214 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1552427998 708550 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :still making his instant coffee < 1552428032 858109 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I am feeling pretty shit today :( < 1552428038 843675 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :day started good and got bad < 1552428042 700699 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :that's kind of the opposite of usual < 1552428085 876369 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I don't think I'm ever going to get over the things that upset me :( < 1552428091 283604 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I'm not going to last much longer if I don't :( < 1552428111 766868 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :is this, like, your general dissatisfaction with the rest of the human race or something else < 1552428120 322883 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :no < 1552428152 358557 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :is it... bay area property disputes or something < 1552428155 410117 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :the stuff with rust-lang and all my trauma from living with gender dysphoria < 1552428222 620302 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :sorry, this probably isn't the place to talk about it < 1552428228 901773 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :the mention of nutters made me bring it up :P < 1552428235 242775 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :what's wrong with rust-lang other than the sjw shitheads setting themselves up as moral arbiters < 1552428240 435611 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :that < 1552428245 651973 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :more or less < 1552428259 541066 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and the general niceness policing < 1552428282 593714 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :hypocrisy < 1552428283 754025 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1552428303 540357 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :the first CoC dispute I got into was not SJW related, it was the fact that they failed to get rid of a particular abrasive community member for at least 3 years < 1552428306 982476 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :because "he writes good code" < 1552428314 948344 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :they all acknowledge he was a problem < 1552428321 495880 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it's the exact opposite of what the CoC was supposed to mean < 1552428324 575989 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :they were hypocrites from day one < 1552428333 404786 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it really hurts that I used to believe them and believe in all that crap < 1552428341 889461 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and now it's taken over open source and I don't feel safe anywhee < 1552428344 452863 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :anywhere* < 1552428357 600084 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :to me that's like... ok at least i can understand it as a pragmatic compromise < 1552428391 202051 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah but the whole community just pats each other on the back over how ~friendly and welcoming~ they are < 1552428395 812104 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :while ignoring everyone who disagrees < 1552428396 930885 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :yes < 1552428434 534172 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :the sjw shit disturbs me on a deeper level because ashley williams or whoever she was does not actually say 'kill all men' out of a deep personality dysfunction < 1552428455 539538 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :she says it because there's a whole fucking culture now that covers for and endorses that sort of behaviour < 1552428463 598013 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 252 seconds < 1552428470 549004 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I partly agree with that < 1552428483 684199 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I think people say awful things to get applause on Twitter without thinking about how it might affect others < 1552428486 29712 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :it just seems like manifestations of a cult that glorifies abuse and suffering < 1552428493 179014 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :definitely < 1552428499 829564 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :but also, I would not at all be surprised if she has some gender related trauma in her past < 1552428509 332138 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :a lot of people do < 1552428513 588008 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and people tend to pay their trauma forward < 1552428516 614540 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I do it too :( < 1552428642 629010 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :mm < 1552428677 419521 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I'm doing therapy and lots of other things but i'm not sure it will help fast enough :( < 1552428765 589652 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it's really exhausting waking up every goddamn day and being upset about the same thing < 1552428787 376895 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Phantom_Hoover: I'm sorry again for supporting those people long ago :( < 1552428793 452607 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I got disillusioned pretty quick < 1552428799 342019 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :my interpretation of a lot of events has changed < 1552428906 222780 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I think Ashley also gets special treatment because she's fucking Steve Klabnik < 1552428918 222712 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :this may explain why she gets to be in charge to begin with, seeing as she appears to have no useful skills < 1552428941 198377 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :ahahahahahaha < 1552428978 13132 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I do think the npm sjw's have chilled out though, whether it's because they realized they hurt people or just that it's bad for their careers, i don't know < 1552428996 527579 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :did you read jon ronson's book on public shaming < 1552429010 467560 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :i would hope that being the subject of investigations from all of npm, linux, and rust may have given her pause < 1552429022 670350 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :it has a chapter on donglegate < 1552429091 793352 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :i did not read it < 1552429109 168499 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I do feel bad for encouraging public shaming against her < 1552429110 834652 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :it's really interesting because the two dudes who lost their jobs for making dumb dick jokes behind an inquisitor were really humble and apologetic about the whole thing, and they'd also got decent jobs right afterwards < 1552429115 172131 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :i feel like something of a hypocrite < 1552429125 104271 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :on the other hand, live by the sword die by the sword < 1552429131 960156 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :plus I complained through the Proper Channels first < 1552429136 390567 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and was dismissed < 1552429174 630820 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :the inquisitor herself also lost her job and when interviewed was completely unrepentant, all 'i was martyred for standing up for women. this is what they do. my life is ruined. my every day is suffering. i still don't have a job. i blame the trauma' < 1552429194 491954 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1552429200 556492 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :they cry misogyny whenever challenged < 1552429206 144058 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :and, like, i actually have principles and i don't think anyone deserves to lose their job because of an internet hate mob < 1552429216 554222 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I don't even want ashley to lose her job, I would like an apology though < 1552429219 559354 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :but it's far too late for that < 1552429219 599011 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :but i think i smirked a bit after that chapter < 1552429222 838549 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :after the way I've acted < 1552429224 83888 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1552429231 655296 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I think her clique also lost a lot of status after the ayo.js debacle, which was beyond embarrassing < 1552429241 906580 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :people have seen that they are a drain on the project < 1552429252 978800 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and I think that's why she's bouncing around to different communities < 1552429265 410765 :moei!~moei@softbank221078042071.bbtec.net JOIN :#esoteric < 1552429278 129203 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I just need to figure out what my unfinished business is, so I can move on and forget all of this < 1552429294 420571 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :well i think the 4channy dipshits who afaik actually do love slinging death and rape threats and doxx at any woman they can pick out make it easy to honestly think it's Them Vs The Misogynists < 1552429419 236057 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :yeah i mean this stuff bothers me but it seems to weigh on you a lot more < 1552429481 845575 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1552429491 547334 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I think it bothers me more than anyone else I know :( < 1552429498 439010 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :although there are a few people who are close < 1552429514 23489 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and they happen to be non-cisgender AMABs as well < 1552429528 281770 :copumpkin!~copumpkin@haskell/developer/copumpkin QUIT :Ping timeout: 245 seconds < 1552429534 26072 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover PRIVMSG #esoteric :....All Mods Are Bastards? < 1552429612 382387 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :lol < 1552429615 835727 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :assigned male at birth < 1552429618 155104 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :but I like yours too < 1552429745 834865 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I'd feel a lot better if I could work on some other OSS thing or something else in life that is productive < 1552429756 78209 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I'm kind of drifting right now < 1552429791 87748 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :most things in my life are great, I'm not really depressed, I get upset about specific things though < 1552429800 211120 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and I feel like I'm not contributing much to society < 1552429800 354361 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :I've been thinking all my open source stuff is pointless because nobody cares about it < 1552429811 170811 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I worked on things people actually do care about < 1552429815 857840 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and now I don't see that happening ever again :( < 1552429829 354649 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :how come? < 1552429860 335660 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :rain1: combination of bad feelings about the code of conduct stuff and general burnout < 1552429865 383342 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :maybe I can at least start blogging again < 1552429903 890276 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :yeah it's frustrating how coc's shelter abusive people < 1552429947 206535 :LKoen!~LKoen@2a01cb0407597a006c85e2af64192b74.ipv6.abo.wanadoo.fr QUIT :Remote host closed the connection < 1552429979 856249 :LKoen!~LKoen@2a01cb0407597a006c85e2af64192b74.ipv6.abo.wanadoo.fr JOIN :#esoteric < 1552430012 124905 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :i wish i could just stop thinking about it < 1552430040 350869 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :is there a specific one ? something happened recently? < 1552430044 162440 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :no < 1552430055 988756 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yes specific, no not recently < 1552430064 108201 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :ah < 1552430091 348945 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I was talking about it just now and I don't feel like going over it again because, as noted, I should think about it less < 1552430155 388158 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :i'm just feeling really down today < 1552430160 657453 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and talking about it often helps < 1552431063 8930 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I just really don't know how to make progress :( < 1552431130 218463 :arseniiv!~arseniiv@136.169.207.200 QUIT :Ping timeout: 246 seconds < 1552431135 294257 :LKoen!~LKoen@2a01cb0407597a006c85e2af64192b74.ipv6.abo.wanadoo.fr QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1552431239 590491 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :sadly, telling your nick is one of those tricks that I believe we can't teach to hackeso < 1552431243 364304 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :unless that's changed recently < 1552431549 616579 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :hackeso's software could easily stuff some of the IRC state to the environment or something, but no, it doesn't bother < 1552431564 526698 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :it definitely knows about IRC state because it puts it to the hg commit message < 1552431570 470473 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :well, some of it < 1552431602 499819 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But you can make `list < 1552431644 775274 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :yeah < 1552431690 166467 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :of course, I can't complain. I don't want to run one of these bots either. < 1552431703 541509 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :b_jonas: fizzie is considering adding the feature. < 1552431816 218597 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :so you want like `echo $NICK to work? < 1552431901 645738 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :kmc: something like that, though probably with some better names, so there's a shared prefix for all the IRC-related context < 1552431916 546618 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I was in fact going to use $NICK. < 1552431924 949622 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's not like this is serious business. < 1552431963 267650 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Previously, when we had logs access, there was the workaround of looking at the last few lines for the trigger. But that's not available in the current setup, and anyway it was racy. < 1552431973 929336 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`learn #esoteric is serious business. < 1552432120 847096 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The umlbox init has a way of setting environment variables, though the Python script part never puts that in the config file. So it needs a tiny umlbox patch to add a --env flag or something, and then another hackbot patch to use that to set the nick (and maybe some other state). < 1552432137 314275 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :fizzie: a common prefix would make all the hackeso-related environment variables more discoverable by users < 1552432162 724698 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :since they could do, like, ``` echo "${!HACKESO_*}" to find them < 1552432187 553704 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :what kind of shell wizardry is that < 1552432202 815893 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :too advanced for me < 1552432226 274731 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :env|grep < 1552432244 341465 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :kmc: meh, `perl -efor (keys%ENV) { /^HACKESO_/ and print } # if you prefer < 1552432258 263243 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i do not prefer < 1552432260 741600 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :um, that needs separators < 1552432269 718553 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :so like `perl -efor (keys%ENV) { /^HACKESO_/ and print "$_ " } < 1552432280 911889 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo "${!BASH*}" < 1552432281 592176 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :BASH BASHOPTS BASHPID BASH_ALIASES BASH_ARGC BASH_ARGV BASH_CMDS BASH_COMMAND BASH_EXECUTION_STRING BASH_LINENO BASH_SOURCE BASH_SUBSHELL BASH_VERSINFO BASH_VERSION < 1552432297 790495 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo "${!L[ACO]*}" < 1552432298 479956 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432306 387776 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I miss knowing weird perl things < 1552432314 792023 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` echo "${!L[ACO]*}" < 1552432315 498036 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432317 559004 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :what? < 1552432325 942181 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` locale < 1552432327 431051 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :LANG=C \ LANGUAGE= \ LC_CTYPE="C" \ LC_NUMERIC="C" \ LC_TIME="C" \ LC_COLLATE="C" \ LC_MONETARY="C" \ LC_MESSAGES="C" \ LC_PAPER="C" \ LC_NAME="C" \ LC_ADDRESS="C" \ LC_TELEPHONE="C" \ LC_MEASUREMENT="C" \ LC_IDENTIFICATION="C" \ LC_ALL= < 1552432330 831323 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :hmm < 1552432341 720599 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :I thought we still had some locale-related stuff set < 1552432343 394011 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` locale < 1552432344 97965 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :LANG=en_NZ.UTF-8 \ LANGUAGE= \ LC_CTYPE="en_NZ.UTF-8" \ LC_NUMERIC="en_NZ.UTF-8" \ LC_TIME="en_NZ.UTF-8" \ LC_COLLATE="en_NZ.UTF-8" \ LC_MONETARY="en_NZ.UTF-8" \ LC_MESSAGES="en_NZ.UTF-8" \ LC_PAPER="en_NZ.UTF-8" \ LC_NAME="en_NZ.UTF-8" \ LC_ADDRESS="en_NZ.UTF-8" \ LC_TELEPHONE="en_NZ.UTF-8" \ LC_MEASUREMENT="en_NZ.UTF-8" \ LC_IDENTIFICATION="en_NZ.UTF-8" \ LC_ALL= < 1552432350 987688 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :hmm < 1552432362 424819 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :` echo "${!LC*}" < 1552432363 52229 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​/srv/hackeso-code/multibot_cmds/lib/limits: line 5: exec: : not found < 1552432365 767538 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` echo "${!LC*}" < 1552432366 504594 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432387 907622 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` echo "${!LA*}" < 1552432388 611705 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :LANG < 1552432392 137922 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` echo "${!L[ACO]*}" < 1552432392 977612 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432396 44920 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :what? < 1552432421 927437 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :`env < 1552432422 606357 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :HACKENV=/hackenv \ LANG=en_NZ.UTF-8 \ PWD=/hackenv \ HOME=/tmp \ http_proxy=http://127.0.0.1:3128 \ TERM=linux \ SHLVL=0 \ PATH=/hackenv/bin:/opt/python27/bin:/opt/ghc/bin:/usr/bin:/bin < 1552432445 180343 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :that's a bit too long to print in full < 1552432454 288698 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo "${!*}" < 1552432454 993459 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432458 366455 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :what < 1552432462 193192 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :I don't get how this works < 1552432538 265032 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo "${!L@}" < 1552432539 68498 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :LANG LINENO < 1552432541 411919 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo "${!@}" < 1552432542 80694 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432548 288376 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :I see < 1552432552 167198 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :it's all in the BASH manual < 1552432569 586523 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Right, we already set a handful of environment variables. Looks like that doesn't actually go through umlbox init, but we instead just prefix an 'env' to the command. < 1552432574 867301 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`perl -e for (sort keys%ENV) { print "$_ " } < 1552432575 453342 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :HACKENV HOME LANG PATH PWD SHLVL TERM http_proxy < 1552432580 104642 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :hmm, it's not that long < 1552432587 7926 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` perl -e 'for (sort keys%ENV) { print "$_ " }' < 1552432587 898686 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :HACKENV HOME LANG PATH PWD SHLVL TERM _ http_proxy < 1552432608 505036 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The `env output was complete, if that's what the "bit too long" comment was referring to. < 1552432613 617679 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` grep -ri hackego bin < 1552432615 331953 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/echo:echo I AM HACKEGO! I AM THE VOID! PREPARE... TO DIE! < 1552432632 910480 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :fizzie: yes, sorry < 1552432636 799751 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :I expected it to be longer < 1552432645 698306 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`dobg echo < 1552432647 298256 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :3764:2013-09-13 rm bin/echo \ 3763:2013-09-13 chmod +x bin/echo \ 3762:2013-09-13 echo echo No output. > bin/echo \ 3557:2013-08-29 revert f6f3d9626c03 \ 3530:2013-08-29 chmod +x /hackenv/bin/echo \ 3529:2013-08-29 echo echo Cats are cool but should be made illegal. > /hackenv/bin/echo < 1552432676 600426 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :How is rm the last commit? < 1552432680 620390 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Is this a bad scowrev? < 1552432705 149859 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`hurl bin/echo < 1552432706 16804 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :https://hack.esolangs.org/repo/log/tip/bin/echo < 1552432718 637761 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :shachaf: no, bin/echo just doesn't exist I think. not that it matters, I invoke the shell builtin. you could override it from "bin/``" < 1552432721 535152 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I am confusil. < 1552432734 139251 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` du bin/echo < 1552432734 848880 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :du: cannot access 'bin/echo': No such file or directory < 1552432740 331906 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Wait, how did grep find it? < 1552432742 61508 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` du bin/ping < 1552432743 4468 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :4 bin/ping < 1552432758 881491 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` grep -ri hackego bin < 1552432760 577225 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/echo:echo I AM HACKEGO! I AM THE VOID! PREPARE... TO DIE! < 1552432763 333025 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` grep -i hackego bin/echo < 1552432764 72857 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :grep: bin/echo: No such file or directory < 1552432788 103107 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` grep -l HACKEGO bin | cat -A < 1552432788 761351 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :grep: bin: Is a directory < 1552432793 885305 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` grep -Rl HACKEGO bin | cat -A < 1552432794 764566 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/^B^Becho$ < 1552432799 709432 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :aha < 1552432827 295907 :AnotherTest!~turingcom@ptr-82l26zfgz2ng38e2jxt.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 240 seconds < 1552432837 339254 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` dobg echo < 1552432839 70087 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :3800:2013-09-18 chmod +x bin/\x02\x02echo \ 3799:2013-09-18 echo "echo I AM HACKEGO! I AM THE VOID! PREPARE... TO DIE!" > bin/\x02\x02echo < 1552432852 98153 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :PATH, TERM and HOME are set by umlbox. Our 'sandbox' script resets path (actually, to a rather wrong value) and adds HACKENV and http_proxy. PWD and SHLVL and _ are presumably from the shell. I can't remember where LANG is getting set. < 1552432855 92986 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`echo echo < 1552432855 704859 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :I AM HACKEGO! I AM THE VOID! PREPARE... TO DIE! < 1552432865 434346 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`rm bin/echo < 1552432867 40783 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552432870 49694 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo "$PATH" < 1552432870 712677 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​/hackenv/bin:/opt/python27/bin:/opt/ghc/bin:/usr/bin:/bin < 1552432870 975067 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :hack the ego, patch the soul < 1552432875 578778 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` ls bin/** < 1552432876 340772 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/welcome < 1552432877 889134 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` ls bin/** < 1552432878 749564 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/ \ bin/04w08e09l11c12o13m04e \ bin/8ball < 1552432884 314859 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :what would the right value be? < 1552432927 959371 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :The rigth value wouldn't include /opt/ghc/bin or /opt/python27/bin because there are nothing at those paths. < 1552432943 805186 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :So I guess /hackenv/bin:/usr/bin:/bin minimally. < 1552432949 154076 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` printf "%b" bin/*$'\x02'* < 1552432949 836611 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/welcome < 1552432957 837146 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`` printf "%q" bin/*$'\x02'* < 1552432958 594670 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​$'bin/\002welcome' < 1552433066 488631 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Now I don't know if I should reuse the existing env command from the 'sandbox' wrapper, or finish adding the umlbox feature to set variables via init. < 1552433174 484920 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` $'\x0F' < 1552433175 405815 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :229) Phantom_Hoover: I have just one tvtropes page open in elinks, but my tvtropes.txt "queue" has 38 tvtropes.org URLs waiting for processing. < 1552433200 644745 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` cat bin/$'\x0F' < 1552433201 318052 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​#!/bin/bash \ cmd="${1-quote}" \ TIMEFORMAT="real: %lR, user: %lU, sys: %lS" \ shopt -s extglob globstar \ eval -- "$cmd" | rnoooooooodl < 1552433237 574198 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` ls -l bin/$'\x0F' < 1552433238 430871 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :lrwxrwxrwx 1 1000 1000 1 Jul 8 2017 bin/ -> ` < 1552433242 77491 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :whoa < 1552433242 811044 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`` < 1552433243 574345 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :1240) do we seriously not do quotes any more? < 1552433272 86913 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` cat bin/$'\x16' < 1552433272 825235 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552433281 739480 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` echo bin/$'\x16'* < 1552433283 386180 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :bin/ bin/ bin/echo < 1552433291 695873 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :anyway, there's three of those < 1552433315 121769 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`cat bin/ < 1552433315 710467 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :No output. < 1552433316 265272 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`perl -we opendir $d,"bin" or die; for (sort readdir$d) { if (!/\A[!-~]+\z/) { $o=$_=~s/[^ -z]/sprintf"{%02X}",ord$&/ger; print "$o "; } } < 1552433316 975472 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​{02}welcome {03}04w{03}08e{03}09l{03}11c{03}12o{03}13m{03}04e{0F} {0F} {16} {16}{16}{16} {16}{16}echo 8{0F}ball `{CC}{80} d{C3}{B6}ts qu{C3}{B8}rjan r{C3}{A8}sum{C3}{A8} v{C3}{A4}lkommen wisd{C3}{B6}m {C2}{BF} {C3}{BC}ml{C3}{A4}{C3}{BC}t {CE}{BF}{CF}{85}{CE}{B5}{CE}{BB}{CE}{BA}{CE}{BF}{CE}{BC}{CE}{B5} {D0}{B4}{D0}{BE}{D0}{B1}{D1}{80}{D0}{BE}-{D0}{BF}{D0}{BE}{D0}{B6}{D0}{B0}{D0}{BB}{D0}{BE}{D0}{B2}{D0}{B0}{D1}{82}{D1}{8C} {D8}{9F} {E2}{81}{97} < 1552433407 300830 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`perl -we use Encode; opendir $d,"bin" or die; for (sort readdir$d) { if (!/\A[!-~]+\z/) { $o=decode_utf8($_)=~s/[^ -z]/sprintf"{%02X}",ord$&/ger; print "$o "; } } print "~" < 1552433409 440222 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​{02}welcome {03}04w{03}08e{03}09l{03}11c{03}12o{03}13m{03}04e{0F} {0F} {16} {16}{16}{16} {16}{16}echo 8{0F}ball `{300} d{F6}ts qu{F8}rjan r{E8}sum{E8} v{E4}lkommen wisd{F6}m {BF} {FC}ml{E4}{FC}t {3BF}{3C5}{3B5}{3BB}{3BA}{3BF}{3BC}{3B5} {434}{43E}{431}{440}{43E}-{43F}{43E}{436}{430}{43B}{43E}{432}{430}{442}{44C} {61F} {2057} ~ < 1552433448 166462 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` cat $'`\xCC\x80' < 1552433448 807428 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :cat: '`'$'\314\200': No such file or directory < 1552433452 573031 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` cat bin/$'`\xCC\x80' < 1552433453 246692 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :echo "This should probably do something, but it does not." < 1552433479 330516 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :cc 80? < 1552433482 531076 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :shouldn't that be cd 80? < 1552433491 629683 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`¿ < 1552433492 906166 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​¯/)o_​°(\¯ ? < 1552433582 118241 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`¿ C < 1552433583 753485 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :tluaf noitatnemgeS��.�דIW>�V��fo egaugnal eht si C < 1552433597 825908 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :`¿ rules of wisdom < 1552433598 976639 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​ noitautcnup dna noitazilatipac reporp esu dna ,taht erofeb ecaps on htiw enilwen a ni dne dna decaps elgnis eb ,yek pukool eht tuohtiw elbadnatsrednu eb :dluohs yeht ,romuh s‘yrtne eht rof laitnesse sselnu < 1552433643 791704 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :laitnesse < 1552433656 286771 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? rules of wisdom < 1552433657 286256 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :unless essential for the entry‘s humor, they should: be understandable without the lookup key, be single spaced and end in a newline with no space before that, and use proper capitalization and punctuation < 1552433704 725449 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection < 1552433708 711250 :xkapastel!uid17782@gateway/web/irccloud.com/x-hotyhslugsbpigkh JOIN :#esoteric < 1552433753 248475 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` cat $'bin/\x61F' < 1552433753 966690 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :cat: bin/aF: No such file or directory < 1552433760 96241 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu PRIVMSG #esoteric :``` cat $'bin/\xD8\x9F' < 1552433760 785347 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​\? "$@" | rev < 1552433986 257876 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Ping timeout: 246 seconds < 1552434936 986643 :b_jonas!~x@catv-176-63-24-176.catv.broadband.hu QUIT :Quit: leaving