< 1449446805 316101 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You know, I think a being which does *not* exist is more perfect than one which does. < 1449446861 792590 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :After all, the most perfect situation is a situation in which nothing is necessary. If the existence of a being is necessary, that being is a mark of imperfection. < 1449446897 95523 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :God, being perfect in all ways, is certainly not a mark of imperfection. < 1449446931 278914 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The ontological argument got it backwards. < 1449446952 622141 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ACTION sidles away from the puffs of logic < 1449446972 414114 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :ACTION puff puff puff < 1449447100 886476 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :well you've shown that the ontological argument is based on a matter of opinion about what perfection is < 1449447135 224791 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :By the way, let me monologue about my indentation philosophy. < 1449447183 55185 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :A piece of an expression generally consists of an opening delimiter and/or a closing delimiter and/or middle delimiters, along with inner contents. < 1449447209 381061 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The rule is pretty simple. < 1449447242 694457 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :If the expression-piece is split across multiple lines, then all delimiters should be at the same indentation level, and all inner contents should be at a greater indentation level. < 1449447280 494233 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Well... that's not completely accurate. < 1449447292 927051 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :In any case, here's how I'd do an "if" statement: < 1449447296 933254 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :if (foo) { < 1449447299 728324 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : bar; < 1449447301 771018 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :} else { < 1449447303 534411 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : baz; < 1449447304 60882 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :} < 1449447316 951184 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :All braces are at the same indentation level, as are the keywords "if" and "else". < 1449447346 478353 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The "indentation level that a token is at" means the amount that the line is indented, not the point where the left edge of the token appears. < 1449447361 221387 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Meanwhile, "bar;" and "baz;" are at the next greater indentation level. < 1449447420 101117 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :"foo" is inner contents, but it's allowed to occupy a single line along with delimiters. < 1449447422 233462 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :that's indeed how I indent < 1449447435 152479 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :How about a big function call? Like this: < 1449447438 85214 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :functionCall( < 1449447441 799652 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : bigLongArgumentOne, < 1449447445 211026 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : bigLongArgumentTwo, < 1449447445 628141 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :) < 1449447467 334912 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :hmmm that's a good idea < 1449447488 438719 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Thou shalt not indent a line in order to make its beginning line up with a token inside of the line above it, for that is detestable to Me. < 1449447511 413673 :bb010g!uid21050@gateway/web/irccloud.com/x-oqfhdcnphujfkazo QUIT :Quit: Connection closed for inactivity < 1449447579 549389 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :So that means in Haskell, you don't do this: < 1449447581 16460 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :do blah; < 1449447582 318481 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : blah; < 1449447584 692470 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Do this instead: < 1449447585 352147 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :do < 1449447586 828899 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : blah; < 1449447588 561690 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : blah; < 1449447635 652850 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Try to make this "indent the inner contents of a syntax element" thing the only style of indentation that you use. < 1449447646 923498 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :There's one other style which is okay, but should be avoided. < 1449447674 856650 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Namely: you can break a syntax element that would normally be one line across two lines, putting a line break in an arbitrary place and indenting the second line. < 1449447828 704314 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Here's an officially tswett-approved way of indenting SQL: < 1449447829 914382 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :SELECT people.height < 1449447830 56854 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :FROM < 1449447830 56925 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : people < 1449447830 199425 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : INNER JOIN cities < 1449447832 151272 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric : ON people.name = cities.name < 1449448365 494006 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1449448373 678827 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :@massages-loud < 1449448374 221395 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric :You don't have any messages < 1449448400 536015 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :konboilyha < 1449448437 16180 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :\bonsorenoir\. < 1449448524 525508 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Groileetings. < 1449448572 815100 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :salutswettations. < 1449448697 605740 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Also... < 1449448776 731633 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :... < 1449448807 236289 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :...? < 1449448852 254883 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :... ... ... < 1449448903 669900 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :ACTION is tempted to mapole tswett < 1449448918 88303 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :....... < 1449448985 926225 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :………………… < 1449449022 599570 :aretecode!~aretecode@104.156.228.67 JOIN :#esoteric < 1449449024 971187 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :,,、 < 1449449032 738817 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :。。。。。。 < 1449449054 470802 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :. . . . . < 1449449096 951251 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :⁙⁙⁙⁙⁙⁙⁙⁙ < 1449449186 672985 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :︙ < 1449449188 860820 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :︙ < 1449449192 672248 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :︙ < 1449449194 190418 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :¨¨¨¨¨¨ < 1449449249 366430 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :⋰⋱⋰⋱⋰⋱⋰⋱⋰ < 1449449270 978157 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :. . . .. . .. . . . . .. . .. . . . . .. . .. . . . . .. . .. . < 1449449288 309785 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :.. . . .. . .. ... .. ...... . .. . .. . . .... < 1449449321 764768 :andrew!~andrew@59.38.97.39 QUIT :Remote host closed the connection < 1449449391 263275 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Never mind. < 1449449409 947186 :bender|_!~benderx2@2404:e800:e61a:41d:a568:5567:7eed:6d04 JOIN :#esoteric < 1449449421 274483 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :why do I have the feeling there's a fnord hidden somewhere in that... < 1449449610 225753 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You know what the worst thing is? < 1449449647 529695 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :multiple fnords? no fnords? reverse fnord? < 1449449689 604802 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :fungot: What's the worst thing in life? Something about your enemies? < 1449449690 161783 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :fizzie: that it makes a guest of it, much as the moon takes liberty. reason. justice. civility. edification. perfection. for the first time in i don't have a very exciting 24 hours or so. < 1449449868 359304 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :The fnord was contained in *your* messages. < 1449449888 47539 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`? fnord < 1449449899 153847 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​? ¯\(°​_o)/¯ < 1449449908 340600 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`file wisdom/fnord < 1449449909 666724 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :wisdom/fnord: UTF-8 Unicode text < 1449449916 134184 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`hexdump wisdom/fnord < 1449449916 990183 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0000000 203f afc2 285c b0c2 80e2 5f8b 296f c22f \ 0000010 0aaf \ 0000012 < 1449449938 1782 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo '​? ¯\(°​_o)/¯' | hexdump < 1449449938 846450 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0000000 80e2 3f8b c220 5caf c228 e2b0 8b80 6f5f \ 0000010 2f29 afc2 000a \ 0000015 < 1449449954 986481 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :the fnord was in you all along < 1449450006 571701 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :So... how are those different? < 1449450008 196839 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :tswett: are you confused < 1449450013 965117 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run unidecode $(wisdom/fnord) < 1449450015 16815 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: wisdom/fnord: Permission denied < 1449450020 21447 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run unidecode $(cat wisdom/fnord) < 1449450020 979914 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+003F QUESTION MARK] [U+0020 SPACE] [U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+200B ZERO WIDTH SPACE] [U+005F LOW LINE] [U+006F LATIN SMALL LETTER O] [U+0029 RIGHT PARENTHESIS] [U+002F SOLIDUS] [U+00AF MACRON] < 1449450039 136109 :hppavilion[1]!~Devourero@93-231-58-66.gci.net QUIT :Ping timeout: 260 seconds < 1449450044 679025 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :The Fnord you can grasp is not the True Fnord. < 1449450053 213149 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`unidecode ​? ¯\(°​_o)/¯ < 1449450054 88352 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+200B ZERO WIDTH SPACE] [U+003F QUESTION MARK] [U+0020 SPACE] [U+00AF MACRON] [U+005C REVERSE SOLIDUS] [U+0028 LEFT PARENTHESIS] [U+00B0 DEGREE SIGN] [U+200B ZERO WIDTH SPACE] [U+005F LOW LINE] [U+006F LATIN SMALL LETTER O] [U+0029 RIGHT PARENTHESIS] [U+002F SOLIDUS] [U+00AF MACRON] < 1449450075 688793 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :That'll do it. < 1449450092 972483 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run unidecode $(cat /dev/urandom) < 1449450115 767120 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :ACTION taps boily's foot. < 1449450123 782686 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run unidecode $(cat /dev/urandom | head -c 50) < 1449450139 305241 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`loudly Are you still with us, HackEgo? < 1449450145 597669 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Traceback (most recent call last): \ File "/hackenv/bin/unidecode", line 4, in \ s = u" ".join("[U+{0:04X} {1}]".format(ord(c), unicodedata.name(c, "DUNNO")) for c in " ".join(sys.argv[1:]).decode("utf-8")).encode("utf-8") \ File "/usr/lib/python2.7/encodings/utf_8.py", line 16, in decode \ return codecs.utf_8_decode(input, err < 1449450146 716847 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​04,09A09,04r04,09e09,04 04,09y09,04o04,09u09,04 04,09s09,04t04,09i09,04l04,09l09,04 04,09w09,04i04,09t09,04h04,09 09,04u04,09s09,04,04,09 09,04H04,09a09,04c04,09k09,04E04,09g09,04o04,09? < 1449450146 859384 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1449450196 735022 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`ls < 1449450199 541 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 01,08yellow \ bdsmreclist \ bin \ canary \ cat \ Complaints.mp3 \ :-D \ dog \ emoticons \ etc \ evil \ factor \ good \ ibin \ interps \ le \ lib \ paste \ quines \ quotes \ share \ src \ u8tbl \ u8tbl.c \ wisdom \ wisdom.pdf < 1449450201 781933 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :holy fungot. this is aggressive! < 1449450202 315977 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: have a look. which of course it was a nasty pair, but he had already been a mass grave < 1449450227 59253 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :who the hell wants little-endian 16-bit hexdumps < 1449450233 314807 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run unidecode $(ls *yellow*) < 1449450235 316886 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1449450254 400116 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Doink. < 1449450264 896566 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Wait, no doink. < 1449450271 400019 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo $(ls *yellow*) < 1449450272 369429 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​01,08yellow < 1449450283 276921 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run unidecode '$(ls *yellow*)' < 1449450284 201684 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​[U+0024 DOLLAR SIGN] [U+0028 LEFT PARENTHESIS] [U+006C LATIN SMALL LETTER L] [U+0073 LATIN SMALL LETTER S] [U+0020 SPACE] [U+002A ASTERISK] [U+0079 LATIN SMALL LETTER Y] [U+0065 LATIN SMALL LETTER E] [U+006C LATIN SMALL LETTER L] [U+006C LATIN SMALL LETTER L] [U+006F LATIN SMALL LETTER O] [U+0077 LATIN SMALL LETTER W] [U+002A ASTERISK] [U+0029 R < 1449450311 258369 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run ls *yellow* | hexdump < 1449450312 214544 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0000000 3003 2c31 3830 6579 6c6c 776f 0a03 \ 000000e < 1449450380 142104 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :WHY ARE YOU USING little-endian hexdumps? < 1449450396 827032 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Hmm. < 1449450401 121036 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Hmmmmm. < 1449450405 985145 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run rm -v *yellow* < 1449450409 216622 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :removed `\00301,08yellow\003' < 1449450558 979334 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`run which hexdump < 1449450559 771557 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/usr/bin/hexdump < 1449450567 598792 :hppavilion[1]!~Devourero@58-0-174-206.gci.net JOIN :#esoteric < 1449450573 880425 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` echo hello | hexdump < 1449450574 960449 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0000000 6568 6c6c 0a6f \ 0000006 < 1449450609 731542 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :it really is 16 bit little endian. there's something fundamentally wrong there. < 1449450612 370176 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run echo 12345 | hexdump < 1449450613 98741 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :0000000 3231 3433 0a35 \ 0000006 < 1449450630 73994 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` echo hello | hexdump -C < 1449450632 428057 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :00000000 68 65 6c 6c 6f 0a |hello.| \ 00000006 < 1449450645 777606 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :much more sane. < 1449450655 582102 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :as a sane person, I concur. < 1449450995 848827 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :All righty now. < 1449450996 269233 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`ls < 1449450997 124373 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​:-( \ 03(* \ bdsmreclist \ bin \ canary \ cat \ close \ *) \ Complaints.mp3 \ :-D \ dog \ emoticons \ etc \ evil \ factor \ good \ ibin \ interps \ le \ lib \ paste \ quines \ quotes \ share \ src \ u8tbl \ u8tbl.c \ wisdom \ wisdom.pdf < 1449451016 600968 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :` (* < 1449451017 337457 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: : not found < 1449451040 570964 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :` \(\* < 1449451041 330136 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: : not found < 1449451046 621267 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :...??? < 1449451055 684751 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :You seem to be trying to run a command with an empty name. < 1449451078 689140 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :` Since the command name is the thing between the grave accent and the space. < 1449451079 332354 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: : not found < 1449451086 593895 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :And you're not puting anything there. < 1449451089 793062 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :ah, oops < 1449451094 650822 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :dat keming < 1449451097 457596 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :`(* < 1449451098 335407 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: (*: not found < 1449451105 710212 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :still, not sure what the hell is < 1449451107 93596 :bb010g!uid21050@gateway/web/irccloud.com/x-aajsxbfixmgwpgil JOIN :#esoteric < 1449451108 358899 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`` \(\* < 1449451108 501473 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :it is* < 1449451109 168994 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :bash: (*: command not found < 1449451114 962156 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :Also, it's not in bin. < 1449451131 444987 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`` find / -name '(*' -type f < 1449451162 812774 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :find: `/proc/tty/driver': Permission denied \ find: `/proc/1/task/1/fd': Permission denied \ find: `/proc/1/task/1/fdinfo': Permission denied \ find: `/proc/1/task/1/ns': Permission denied \ find: `/proc/1/fd': Permission denied \ find: `/proc/1/fdinfo': Permission denied \ find: `/proc/1/ns': Permission denied \ find: `/proc/2/task/2/fd': Permissi < 1449451178 173900 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :derp. < 1449451199 692851 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`` find / -name '(*' -type f 2>/dev/null < 1449451211 770335 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :No output. < 1449451221 554560 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run ls *'*'* < 1449451222 517608 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​03(* \ close \ *) < 1449451264 60088 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`cat cat < 1449451264 967683 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Meow~~ >^.^< < 1449451270 782057 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`cat emoticons/* < 1449451271 702785 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :cat: emoticons/*: No such file or directory < 1449451277 964271 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`run cat emoticons/* < 1449451279 255157 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :lol \ 凸 \ ガ~(゚ロ゚;)~ン \ (°Д°) \ (≧∇≦)/ \ ¯\(°​_o)/¯ \ ーー蟲蟲 \ オラオラオラ(三・o・)三☆三(`ε´三)無駄無駄無駄無駄 < 1449451293 256577 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :We have a bunch of them. < 1449451295 752448 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :`ls emoticons < 1449451296 593382 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :drowning \ flipbird \ gaaan \ gaan \ kyaa \ shrug \ swatter \ useless < 1449451379 541570 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :swatter is pretty nice ^^ < 1449451396 260859 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :\oren\: do you have 蟲 in your font? < 1449451701 443630 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :isn't that an insect attack? < 1449451812 618934 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :six 虫 at the end of a stick being swung around! < 1449451834 695120 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` run ls *close* < 1449451835 645247 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :run run run < 1449451842 307342 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`` ls *close* < 1449451843 335112 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :close \ *) < 1449451848 688895 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh < 1449452028 228498 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :boily: not yet < 1449452075 450746 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :also the letter omega is now known as wubbleyou < 1449452104 479918 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :it's a cuddly doubleyou < 1449452228 590819 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`addquote <\oren\> also the letter omega is now known as wubbleyou <\oren\> it's a cuddly doubleyou < 1449452231 199759 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :1260) <\oren\> also the letter omega is now known as wubbleyou <\oren\> it's a cuddly doubleyou < 1449452783 63314 :aretecode!~aretecode@104.156.228.67 QUIT :Ping timeout: 260 seconds < 1449452911 465519 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Read error: Connection reset by peer < 1449453458 503226 :jaboja64!~jaboja@ese227.neoplus.adsl.tpnet.pl JOIN :#esoteric < 1449453534 833137 :jaboja!~jaboja@ers164.neoplus.adsl.tpnet.pl QUIT :Ping timeout: 245 seconds < 1449454121 674158 :andrew!~andrew@183.37.18.216 JOIN :#esoteric < 1449454122 393907 :tswett!~tswett@192.241.237.138 PRIVMSG #esoteric :I thought it was spelled "doubleu". < 1449454156 183577 :andrew!~andrew@183.37.18.216 QUIT :Remote host closed the connection < 1449454321 959432 :andrew!~andrew@183.37.18.216 JOIN :#esoteric < 1449454372 898328 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :you and your friend have a file with 1000 numbers (two copies of the same file). you have to find the highest number in that file < 1449454380 307454 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :this would be easy, but who finishes first wins < 1449454396 783257 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :and if A finishes first but B finds a larger number, B wins < 1449454429 797648 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :you don't really have to find the highest value, just some value higher than what your friend finds < 1449454444 226460 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :or finish first with the same value < 1449454476 666268 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :what strategy do you use? < 1449454974 563282 :Frooxius!~Frooxius@193.86.27.79 QUIT :Read error: Connection reset by peer < 1449455038 353209 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :sample 1 / e * 1000 values, use the highest. < 1449455053 432666 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :> floor $ 1 / (exp 1) * 1000 < 1449455055 369644 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 367 < 1449455070 979334 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :is that just a guess or do you have proof < 1449455099 605696 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i recognize the strategy from a very different problem < 1449455116 506346 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :finding the best meal at a restaurant or something, iirc hth < 1449455166 374049 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :that problem has the restriction that you only get one chance to choose each option. < 1449455210 92870 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :> exp (-1) < 1449455212 55113 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 0.36787944117144233 < 1449455246 533897 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i'm pretty sure this isn't optimal, because it can be beaten on average by the "check all the numbers dammit" strategy < 1449455310 86766 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :which i believe _ties_ with the "check 50%" strategy... < 1449455338 802739 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :still checking 367 of them because e. I like e. < 1449455344 971838 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :e is good < 1449455385 15297 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :> 1 % 2 < 1449455386 842474 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : 1 % 2 < 1449455394 131335 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :what about the "check 367", then go on until you find a larger one, then stop < 1449455403 899103 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :which is most similar < 1449455444 439922 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :> (1 % 1 + 1 % 10000000) ^ 10000000 < 1449455448 628291 :lambdabot!~lambdabot@haskell/bot/lambdabot PRIVMSG #esoteric : mueval-core: Time limit exceeded < 1449455449 39877 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :but i'm not sure if it makes sense to use a strategy that is not just a number of values to check < 1449455501 816161 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :of course if you know your opponent's strategy, you should check one number less i think < 1449455516 715180 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :or well < 1449455525 586251 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :maybe not < 1449455556 635081 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :a bfjoust for finding the largest number in a list. < 1449455564 209300 :sebbu2!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1449455573 643539 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 246 seconds < 1449455673 876044 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07O14]]4 M10 02http://esolangs.org/w/index.php?diff=45798&oldid=43930 5* 03Phase 5* (-1) 10 < 1449455903 292983 :boily!~alexandre@96.127.201.149 QUIT :Quit: ACYCLIC CHICKEN < 1449455914 671546 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm this problem has a bit of the two envelopes problem in it < 1449455965 134281 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :wait not that < 1449456545 851225 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :Hmm can't I just run a simulation < 1449457544 999007 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :wait, what about the order of the numbers < 1449457596 718739 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :the strategy "check the first N numbers" is faster than "shuffle then check N numbers" < 1449458204 406358 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :my simulation gives: < 1449458212 701184 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :A= 123456789A < 1449458212 843733 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=1 -aaAAAAAAA < 1449458212 843818 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=2 b--aaaaAAA < 1449458212 843843 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=3 bb---aaaaa < 1449458212 843885 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=4 Bb--b----a < 1449458215 185934 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=5 Bbba-bb--- < 1449458217 650172 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=6 Bbb-a-bbbb < 1449458220 120907 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=7 Bbb-aa-bbb < 1449458222 637344 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=8 BBb--aa-BB < 1449458225 92219 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=9 BBbb-aaA-B < 1449458227 692607 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=a BBbb-aaAA- < 1449458238 742731 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :where a,A is advantage to A, b,B is advantage to B < 1449458304 82468 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :fancy < 1449458321 942237 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :capitals are advantages > 500 in 1000 trials < 1449458330 851921 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :lowercase is >100 < 1449458402 260062 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :sort of a prisoner's dilemma happening in part of the diagram < 1449458419 875563 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :this is on an array of 10 numbers < 1449458427 386523 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :i think if they always check the first N numbers, then whoever stops first will always have checked a subset of the other one < 1449458435 651079 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :so will never have a _larger_ number < 1449458453 662973 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :so there should be shuffling. < 1449458455 992688 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :also in this simulation, both player shuffle independently < 1449458460 363833 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh. < 1449458554 508892 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :so it is best to check _much_ more numbers than the opponent, or _slightly_ fewer. < 1449458616 401231 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :the first gives you a better chance of finding the maximum, the latter gives you a better chance of finishing first < 1449458672 438344 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(but still with a good maximum) < 1449458798 139927 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :I should make a better heatmap < 1449458830 30000 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :if your opponent checks many numbers, you should check slightly fewer. if e checks few, you should check more than em. < 1449458845 727024 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :hm that's pretty PD < 1449458871 195103 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :but not quite < 1449458911 461962 :bb010g!uid21050@gateway/web/irccloud.com/x-aajsxbfixmgwpgil QUIT :Quit: Connection closed for inactivity < 1449458938 831226 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :about half is fairly good too < 1449459004 10164 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :A= 123456789A < 1449459004 586850 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=1 -aαAAAAAAA < 1449459004 732833 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=2 b-aaαααAAA < 1449459004 875296 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=3 βb---aaααα < 1449459004 875378 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=4 Bb--b---aa < 1449459006 518281 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=5 Bβ-a-bbb-- < 1449459009 110007 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=6 Bβb-a-βbbb < 1449459011 594068 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=7 Bβb-aα-βββ < 1449459014 65206 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=8 BBβ-aaα-BB < 1449459016 598049 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=9 BBβb-aαA-B < 1449459019 43850 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=a BBβb-aαAA- < 1449459052 379239 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :here the greek letters represent an advantage of 3 per 10 or more < 1449459089 304173 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :eh doesn;t tell much more < 1449459093 721448 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :bah < 1449459111 814758 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :there's a kind of phase shift between 4 and 5 < 1449459226 997589 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :it's a little too thin to have rock-paper-scissors < 1449459267 15353 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :http://www.orenwatson.be/envelopes.htm < 1449459268 514025 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :4 beats 5 beats 6 beats a beats 4 < 1449459307 987750 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :oh, I see < 1449459313 770105 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :oh wait < 1449459319 803863 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :5 beats 8 < 1449459351 419201 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :8 beats a < 1449459391 447618 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :no, still four steps < 1449459547 856197 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :maybe it would exist if there were more strategies? < 1449459561 744810 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :that is, a larger array? < 1449459629 4458 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :well some of those - could be a slight advantage < 1449459685 18456 :andrew!~andrew@183.37.18.216 QUIT :Ping timeout: 245 seconds < 1449459698 517014 :andrew!~andrew@14.154.164.199 JOIN :#esoteric < 1449459748 253622 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :A= 123456789abcdef < 1449459748 491192 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=1 -ααAAAAAAAAAAAA < 1449459748 633719 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=2 β-aaααAAAAAAAAA < 1449459748 633794 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=3 βb--aaαααααAAAA < 1449459748 633814 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=4 Bb----aaaaααααα < 1449459750 758759 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=5 Bβb-----aaaaaaα < 1449459753 208418 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=6 Bβb---b-----aaa < 1449459755 654947 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=7 BBβb-a-bbb----- < 1449459758 216156 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=8 BBβb--a-bbbbb-- < 1449459760 805565 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=9 BBβb--aa-ββbbbb < 1449459763 168841 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=a BBβbb-aaα-βββββ < 1449459765 711097 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=b BBββb--aαα-BBββ < 1449459768 235210 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=c BBBβb--aaαA-BBB < 1449459770 810968 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=d BBBβbb-aaαAA-BB < 1449459773 215134 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=e BBBββb--aααAA-B < 1449459775 759854 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=f BBBββb--aααAAA- < 1449459778 179365 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :15 options < 1449459810 653800 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net PRIVMSG #esoteric :\oren\, i like your style < 1449459817 549931 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :6 - 7 - a - f - 6 < 1449459821 962637 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :still four < 1449459824 778472 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net PRIVMSG #esoteric :who needs pasting services? < 1449459832 233244 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net PRIVMSG #esoteric :just post the shit IRC < 1449459900 1610 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :ACTION wonders if ^v sounds a little grumpy < 1449459912 331630 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :IT'S FOR SCIENCE < 1449459932 362966 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net PRIVMSG #esoteric :its sarcasm xD i dont care if you spam but some people might < 1449459981 431905 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :^v: meh, I figure we spent like 10 minutes posting nothing but various dots earlier, so whatever < 1449459988 310376 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :given that the channel is _still_ slow on average... < 1449460090 240602 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :the 6 - 7 is the main chokepoint, you cannot avoid having both < 1449460133 412199 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :I think the lines of - are probably infinitely thin (as the nubmer of options increases) < 1449460148 761321 :bb010g!uid21050@gateway/web/irccloud.com/x-qayruavyaxzyjbwm JOIN :#esoteric < 1449460224 103727 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :but still the b zone and the a zone would always be mirrored created a 6-7 chokepoint < 1449460399 830848 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :in fact larger seems worse, since the distance between what you can get from 7 and what can reach 6 increases < 1449460424 328199 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :(in the 4 - 5 case before, they're 8 and 9 so neigbors) < 1449461012 496710 :jaboja64!~jaboja@ese227.neoplus.adsl.tpnet.pl QUIT :Ping timeout: 246 seconds < 1449462215 976695 :Frooxius!~Frooxius@193.86.27.79 JOIN :#esoteric < 1449463251 39365 :bender|_!~benderx2@2404:e800:e61a:41d:a568:5567:7eed:6d04 QUIT :Quit: Ping Pong Fuckout < 1449464527 210794 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :oerjan: I modified it to print even the smallest advantages < 1449464538 873167 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :with b as , and a as . < 1449464541 894186 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :A= 123456789abcdef < 1449464542 36774 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=1 -ααAAAAAAAAAAAA < 1449464542 36857 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=2 β-aaαααAAAAAAAA < 1449464542 36877 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=3 βb-.aaαααααAAAA < 1449464542 36896 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=4 Bb,-,.aaaaααααα < 1449464544 343442 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=5 Bβb.-,,..aaaaαα < 1449464546 916035 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=6 Bβb,.-b,,-..aaa < 1449464549 493850 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=7 BBβb.a-bbb,,-.. < 1449464551 953694 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=8 BBβb,.a-bbbbb,, < 1449464554 461851 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=9 BBβbb.aa-ββbbbb < 1449464556 978032 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=a BBβbb-aaα-βββββ < 1449464559 506034 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=b BBββb,.aαα-BBββ < 1449464561 946467 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=c BBBβb,.aaαA-BBB < 1449464564 459838 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=d BBBβbb-aaαAA-BB < 1449464566 868732 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=e BBBβbb,aaααAA-B < 1449464569 414343 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :B=f BBBββb,.aααAAA- < 1449464601 791501 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :, and . indicate only a 1/100 to 1/10 advantage < 1449464624 465549 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :but as you can see, at 4,5,6 there is a cycle! < 1449464637 702160 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :f -> 7 -> c as well < 1449464797 470182 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :in any case, there's not a winning pure strategy < 1449464836 225925 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :but there should be a mixed one < 1449464867 772688 :Sgeo_!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :"Writing U+BF (two hexadecimal digits) is not common practice, nor is writing an odd number of hexadecimal digits." < 1449464874 171531 :Sgeo_!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :I think that last part of the sentence is wrong < 1449464902 306062 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :U+1F673 < 1449464909 261774 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :(random number) < 1449464923 219304 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`unicode U+1F673 < 1449464924 285082 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​🙳 < 1449464933 663793 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :`unidecode 🙳 < 1449464935 544711 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :U+1F673 - No such unicode character name in database \ UTF-8: f0 9f 99 b3 UTF-16BE: d83dde73 Decimal: 🙳 \ 🙳 (🙳) \ Uppercase: U+1F673 \ Category: Cn (Other, Not Assigned) < 1449464950 599498 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :råndöm < 1449465006 925032 :Sgeo_!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :"UTF-8 can therefore be used to exchange data among computers no matter what their native byte ordering is. For this reason, UTF-8 is becoming the de facto standard for encoding web pages." < 1449465012 737794 :Sgeo_!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :I... think there may be other reasons too < 1449465042 293325 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :such as the dominance of linux over web servers? < 1449465058 397367 :Sgeo_!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Such as ASCII being valid UTF-8 < 1449465063 522463 :Sgeo_!~Sgeo@ool-44c0f875.dyn.optonline.net PRIVMSG #esoteric :Although the page does mention that < 1449465099 111830 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :that too, but that's true of Shift-JIS and the EUC-* encodings too < 1449465374 529609 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :So the combination of being ascii-compatible and supporting all languages < 1449465397 142857 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :(where all means "languages commonly used on the internet") < 1449466330 513448 :lleu!~gnomebad@cpc15-croy20-2-0-cust489.croy.cable.virginm.net JOIN :#esoteric < 1449466331 48074 :lleu!~gnomebad@cpc15-croy20-2-0-cust489.croy.cable.virginm.net QUIT :Changing host < 1449466331 190638 :lleu!~gnomebad@unaffiliated/lleu JOIN :#esoteric < 1449466355 533806 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :\oren\: GB 18030! < 1449466377 509764 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :which is pan-Unicode and compatible to GBK in addition to ASCII < 1449466698 827913 :\oren\!~oren@TOROON0949W-LP130-01-1242512118.dsl.bell.ca PRIVMSG #esoteric :wow. nice < 1449467007 38602 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net QUIT :Ping timeout: 260 seconds < 1449467036 8070 :tromp_!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Remote host closed the connection < 1449467038 369406 :pikhq!~pikhq@2601:647:4b00:63aa::f63 PRIVMSG #esoteric :GB 18030 is kinda a pain to encode and decode. < 1449467044 551732 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :\oren\: and we now have a nasty conversion table, hehe < 1449467062 280831 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :pikhq: yup < 1449467084 644606 :pikhq!~pikhq@2601:647:4b00:63aa::f63 PRIVMSG #esoteric :But, it is at least a full encoding of Unicode, and thus vastly better than the typical legacy encoding. < 1449467113 17026 :pikhq!~pikhq@2601:647:4b00:63aa::f63 PRIVMSG #esoteric :Much better than, say, Shift-JIS. < 1449467162 125070 :pikhq!~pikhq@2601:647:4b00:63aa::f63 PRIVMSG #esoteric :Sgeo_: The best rationale is that UTF-8 is: multi-lingual, ASCII compatible, and *relatively easy to support*. < 1449467165 912699 :augur!~augur@c-73-46-94-9.hsd1.fl.comcast.net JOIN :#esoteric < 1449467257 162951 :Walpurgisnacht!~ah@0018f8b54430.click-network.com JOIN :#esoteric < 1449467752 482295 :oerjan!~oerjan@hagbart.nvg.ntnu.no QUIT :Quit: Nite < 1449468659 118676 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 260 seconds < 1449468967 10392 :hppavilion[1]!~Devourero@58-0-174-206.gci.net QUIT :Ping timeout: 260 seconds < 1449469012 321863 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :UTF-8 is compatible with Principle of Extended ASCII though, while Shift-JIS isn't < 1449470664 144295 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449470927 25215 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Ping timeout: 260 seconds < 1449471623 221555 :hppavilion[1]!~Devourero@58-0-174-206.gci.net JOIN :#esoteric < 1449471982 94278 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net JOIN :#esoteric < 1449473311 549036 :bb010g!uid21050@gateway/web/irccloud.com/x-qayruavyaxzyjbwm QUIT :Quit: Connection closed for inactivity < 1449473493 642605 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Which are better encoding of list of natural numbers as natural numbers, is it the "Reverse Numeric Encoding" (I made it up), or the "Modified Godel Encoding" (my modified version of some other people's idea to make it properly one-to-one)? < 1449473855 959960 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1449473933 706843 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What's the "Reverse Numeric Encoding"? < 1449473971 872232 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :The one I described before that involves reversing the bits < 1449475369 161783 :hppavilion[1]!~Devourero@58-0-174-206.gci.net PRIVMSG #esoteric :zzo38: So "Not Enoding"? < 1449475421 867652 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I do not understand you. < 1449475634 959040 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :In both cases only finite lists are encoded, but it does even include empty list. < 1449475664 257292 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :putting 3 pages of polynoms on a solution to a task: check < 1449475858 607731 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :If you are encoding tuples instead then you can use Morton encoding (there are other ways too but I used Morton encoding because of INTERCAL); it is simpler than encoding lists. < 1449475887 518378 :andrew!~andrew@14.154.164.199 QUIT :Remote host closed the connection < 1449475913 292014 :Walpurgisnacht!~ah@0018f8b54430.click-network.com QUIT :Quit: Car man Hook hand Car door < 1449475985 945994 :andrew!~andrew@14.154.164.199 JOIN :#esoteric < 1449476951 910465 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Don't you know that INTERCAL can make Morton encodings and Gray encodings? < 1449477612 187182 :mroman!~mroman@160.85.232.212 JOIN :#esoteric < 1449477616 597031 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :freenode's having trouble again? < 1449477747 130091 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1449477883 859896 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449478134 808631 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Ping timeout: 245 seconds < 1449478179 124046 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 260 seconds < 1449478265 287817 :zadock!~outsider@cthulhu.tuiasi.ro JOIN :#esoteric < 1449478391 404108 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :http://i.imgur.com/3DkP9KD.png < 1449478400 567690 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :^- when 50% of the webpage is advertisment < 1449478514 971334 :hppavilion[1]!~Devourero@58-0-174-206.gci.net QUIT :Ping timeout: 260 seconds < 1449478777 965900 :andrew!~andrew@14.154.164.199 QUIT :Remote host closed the connection < 1449478933 499210 :andrew!~andrew@14.154.164.199 JOIN :#esoteric < 1449479150 382743 :zadock!~outsider@cthulhu.tuiasi.ro QUIT :Quit: Leaving < 1449479828 551522 :andrew!~andrew@14.154.164.199 QUIT :Ping timeout: 246 seconds < 1449480951 41033 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net QUIT :Ping timeout: 260 seconds < 1449481564 166409 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449481819 47869 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Ping timeout: 260 seconds < 1449481829 55481 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :Well... I've written a tool that "compresses" images down to ASCII only < 1449481843 280054 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :or in other terms: a binary PPM file with only ascii values < 1449481855 210138 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :so every pixel can be represented using only ascii for raw binary ppms < 1449481875 637400 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :can you show some example? < 1449481983 583948 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net QUIT :Quit: adu < 1449482025 90228 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :http://codepad.org/WtyQmCT4 < 1449482058 971729 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :that's a 32x32 picture of Lena. < 1449482191 662163 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :http://codepad.org/a7KQLWdc <- 128x128 picture of some airport < 1449482199 969337 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1449482208 274269 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :and as you can probably guess from the repeating values the original picture was a jpeg :D < 1449482273 297160 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :izabera: the image will be darker though, because the max value is 126 < 1449482327 703933 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :but you can just use in image viewer than can multiply each value by around 2.8 < 1449482334 677357 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :then it looks bright again < 1449482459 870546 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 245 seconds < 1449482618 700411 :Frooxius!~Frooxius@193.86.27.79 QUIT :Quit: *bubbles away* < 1449482664 174710 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :but that's not very useful < 1449482669 627461 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :ppm files are too huge < 1449482679 909348 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :you better use png and b64 obviously < 1449482696 181164 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :can you show a larger picture? < 1449482719 13514 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :or the program itself? < 1449482932 96949 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :mroman: but wouldn't that restrict what bnrightnesses you can use? < 1449482976 620799 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :mroman: wait, why would you use 255 max brightness for this in first place, as opposed to say 126 max brightness? < 1449482986 615295 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :that would at least let you make bright pixels, even if not dark ones < 1449483012 804408 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :yeah that's gimp :) < 1449483024 513929 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :but ideally it would use 126 as max brightness yes < 1449483033 9303 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :izabera: Just scale down rgb by 2.8 then shift 32 < 1449483313 418823 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :izabera: http://codepad.org/GA06KiBh < 1449483316 64994 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :^- that's the program < 1449483399 213385 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :The RESUME and STASH and RETRIEVE commands of INTERCAL are also very similar command found in dc. The operation of ~ operator is also found in BESM-6 instruction set. The $ and ? operators are also things that have been invented before. < 1449483422 132915 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :http://mroman.ch/imgshare/ascii.ppm < 1449483424 967436 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :That's a bigger picture < 1449483429 193042 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :it's 2.3M though < 1449483438 16372 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :(ppms are huge) < 1449483505 528911 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :b_jonas: You only have the range 32-126 available basically < 1449483506 530541 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :so < 1449483510 921042 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :really dark things get brighter < 1449483517 274481 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :bright things get darker a lot < 1449483541 900917 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :so yeah, image quality isn't very good :D < 1449483654 469475 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :you can open it in gimp and do a white balance correction < 1449483663 427325 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :and it looks roughly like the original picture again < 1449483740 17741 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :mroman: yes, but if you set 126 max brightness then bright things remain bright. and you could try to use newline and a few other control characters for dark stuff. < 1449483756 536537 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :you already have newlines in the header < 1449483821 740121 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :yeah but you'd need to shift it down by 32 again < 1449483829 103642 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :since 32 is the darkest value possible < 1449483856 838754 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :but this has no useful purpose anyway < 1449483876 791042 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :that I can think of :) < 1449483882 242460 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :for ASCII medium use b64 :) < 1449483890 412039 :mroman!~mroman@160.85.232.212 PRIVMSG #esoteric :or PPM Ascii < 1449483900 95263 :trn!jhj@trnsz.com QUIT :Quit: quit < 1449484067 996218 :Lymia!lymia@2600:3c00::43:8000 QUIT :Ping timeout: 264 seconds < 1449484333 284542 :trn!jhj@trnsz.com JOIN :#esoteric < 1449484337 423125 :Lymia!lymia@magical.girl.lyrical.lymia.moe JOIN :#esoteric < 1449484641 620861 :trn!jhj@trnsz.com QUIT :Excess Flood < 1449484748 3817 :trn!jhj@trnsz.com JOIN :#esoteric < 1449484790 760655 :myndzi!myndzi@2600:3c00::f03c:91ff:fedf:3d4e QUIT :Excess Flood < 1449484958 920191 :trn!jhj@trnsz.com QUIT :Excess Flood < 1449485097 928790 :trn!jhj@trnsz.com JOIN :#esoteric < 1449485356 398768 :myndzi!myndzi@tetrisguide.com JOIN :#esoteric < 1449485612 607906 :andrew!~andrew@119.137.97.24 JOIN :#esoteric < 1449487419 641310 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Remote host closed the connection < 1449487441 53546 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1449487900 82257 :boily!~alexandre@96.127.201.149 JOIN :#esoteric < 1449487993 29805 :AnotherTest!~turingcom@94-224-66-163.access.telenet.be JOIN :#esoteric < 1449488809 502694 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449489068 495148 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Ping timeout: 246 seconds < 1449489477 904157 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1449489631 203740 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 260 seconds < 1449490300 529783 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :`wisdom < 1449490312 319747 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :... < 1449490312 472861 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :science/Semi-automatic text generation. < 1449490389 201491 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :fungot, do you like ascii ppm? < 1449490389 612832 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :b_jonas: only one of his kind with this mutant candy-red blood. an outcast. he thinks it's about to be. someone needs to grab the beta ( 6) in the room. he briefly speaks to its strife! quota for the day. she simply returns to the land of wind and shade. in a kid's yard. not even that sure why < 1449490419 324653 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric :yes. < 1449490931 779535 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :fungot: on top of being sentient, your creepiness levels are spiking as of late. please stop. < 1449490931 985095 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: man. it is a good idea. < 1449490935 804868 :boily!~alexandre@96.127.201.149 PRIVMSG #esoteric :fungot: no. < 1449490936 216213 :fungot!~fungot@momus.zem.fi PRIVMSG #esoteric :boily: like a very clear mirror to break, luckwise. unfortunately it lacks a portal in space. jade's radioactive, omnipotent, space-warping dog named... which is a name i just made you disappear" and stuff < 1449491309 610627 :boily!~alexandre@96.127.201.149 QUIT :Quit: GINGER CHICKEN < 1449492095 185704 :J_Arcane!~chatzilla@37-219-106-73.nat.bb.dnainternet.fi QUIT :Ping timeout: 260 seconds < 1449492475 388415 :andrew!~andrew@119.137.97.24 QUIT :Remote host closed the connection < 1449492738 939768 :AnotherTest!~turingcom@94-224-66-163.access.telenet.be QUIT :Ping timeout: 260 seconds < 1449492966 927089 :Welo!~hato@546A4E77.cm-12-3b.dynamic.ziggo.nl JOIN :#esoteric < 1449493960 820152 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 JOIN :#esoteric < 1449495564 819668 :b_jonas!~x@russell2.math.bme.hu PRIVMSG #esoteric : \o/ < 1449496651 960877 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449497089 495322 :Frooxius!~Frooxius@193.86.27.79 JOIN :#esoteric < 1449497303 595781 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Remote host closed the connection < 1449497390 994279 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Talk:Silly Emplosions14]]4 10 02http://esolangs.org/w/index.php?diff=45799&oldid=13872 5* 03212.219.250.79 5* (+96) 10/* CONTRADICTIONS */ new section < 1449497609 993393 :mauris!~mauris@unaffiliated/nooodl QUIT :Ping timeout: 245 seconds < 1449497809 735840 :newsham!~chat@udp217044uds.hawaiiantel.net QUIT :Ping timeout: 265 seconds < 1449498010 632328 :TieSoul!~TieSoul@86.89.119.147 JOIN :#esoteric < 1449498223 928070 :vifino!vifino@tty.sh QUIT :Ping timeout: 246 seconds < 1449498255 334221 :vifino!vifino@tty.sh JOIN :#esoteric < 1449498360 232864 :edwardk!sid47016@haskell/developer/edwardk QUIT :Ping timeout: 245 seconds < 1449498533 753569 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :https://github.com/lifthrasiir/unison is live on Github now. < 1449498552 303852 :lifthrasiir!~lifthrasi@115.68.131.49 PRIVMSG #esoteric :(also, sample pages etc. are automatically redirected to https://lifthrasiir.github.io/unison/sample ) < 1449498923 815622 :glowcoil!sid3405@gateway/web/irccloud.com/x-jngzsdrumukkgcrp QUIT :Read error: Connection reset by peer < 1449499080 20836 :AnotherTest!~turingcom@2a02:2c40:400::1:6e46 QUIT :Ping timeout: 264 seconds < 1449499435 16672 :sebbu2!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 245 seconds < 1449499669 814359 :edwardk!sid47016@haskell/developer/edwardk JOIN :#esoteric < 1449499777 948673 :Welo!~hato@546A4E77.cm-12-3b.dynamic.ziggo.nl QUIT :Quit: Leaving < 1449499879 192934 :glowcoil!sid3405@gateway/web/irccloud.com/x-xatobtiwekhppryu JOIN :#esoteric < 1449500080 514463 :J_Arcane!~chatzilla@37-219-106-73.nat.bb.dnainternet.fi JOIN :#esoteric < 1449500945 584120 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449501222 585262 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Ping timeout: 256 seconds < 1449501445 745098 :newsham!~chat@udp217044uds.hawaiiantel.net JOIN :#esoteric < 1449501452 683514 :jaboja!~jaboja@ese227.neoplus.adsl.tpnet.pl JOIN :#esoteric < 1449502002 766536 :AnotherTest!~turingcom@193.190.253.145 JOIN :#esoteric < 1449502042 773659 :zgrep!~zgrep@zgrep.org NICK :mterc < 1449502148 950684 :mterc!~zgrep@zgrep.org NICK :zgrep < 1449502585 432046 :mauris!~mauris@unaffiliated/nooodl JOIN :#esoteric < 1449503525 78226 :Welo!~hato@546A4E77.cm-12-3b.dynamic.ziggo.nl JOIN :#esoteric < 1449504865 835533 :oerjan!~oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1449504940 237854 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net JOIN :#esoteric < 1449505568 564324 :spiette!~spiette@mtl.savoirfairelinux.net JOIN :#esoteric < 1449505576 148258 :mroman!~mroman@160.85.232.212 QUIT :Quit: Lost terminal < 1449505639 717174 :sebbu!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1449505655 899257 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net QUIT :Quit: adu < 1449507206 560105 :singingb1yo!~brandonso@thetis.ugrad.cs.ubc.ca QUIT :Ping timeout: 256 seconds < 1449507420 69749 :singingboyo!~brandonso@thetis.ugrad.cs.ubc.ca JOIN :#esoteric < 1449507509 508956 :BloodGod!~BloodGod@cpe-69-76-41-135.ma.res.rr.com JOIN :#esoteric < 1449507691 110333 :singingboyo!~brandonso@thetis.ugrad.cs.ubc.ca QUIT :Ping timeout: 244 seconds < 1449507742 263529 :BloodGod!~BloodGod@cpe-69-76-41-135.ma.res.rr.com NICK :B1ood6od < 1449507772 630327 :singingboyo!~brandonso@thetis.ugrad.cs.ubc.ca JOIN :#esoteric < 1449507792 845680 :B1ood6od!~BloodGod@cpe-69-76-41-135.ma.res.rr.com NICK :BloodGod < 1449507904 658075 :AnotherTest!~turingcom@193.190.253.145 QUIT :Ping timeout: 272 seconds < 1449508063 118011 :singingboyo!~brandonso@thetis.ugrad.cs.ubc.ca QUIT :Ping timeout: 244 seconds < 1449508122 137418 :singingboyo!~brandonso@thetis.ugrad.cs.ubc.ca JOIN :#esoteric < 1449508164 688320 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net JOIN :#esoteric < 1449508474 587518 :tromp!~tromp@ool-18be0bd8.dyn.optonline.net QUIT :Ping timeout: 272 seconds < 1449508623 592229 :Welo!~hato@546A4E77.cm-12-3b.dynamic.ziggo.nl QUIT :Quit: Leaving < 1449508940 533719 :AnotherTest!~turingcom@94-224-66-163.access.telenet.be JOIN :#esoteric < 1449508989 481961 :jaboja!~jaboja@ese227.neoplus.adsl.tpnet.pl QUIT :Ping timeout: 250 seconds < 1449509392 851919 :aretecode!~aretecode@104.156.228.138 JOIN :#esoteric < 1449509601 542196 :jaboja!~jaboja@ese227.neoplus.adsl.tpnet.pl JOIN :#esoteric < 1449509826 283547 :BloodGod!~BloodGod@cpe-69-76-41-135.ma.res.rr.com QUIT :Changing host < 1449509826 462631 :BloodGod!~BloodGod@unaffiliated/bloodgod JOIN :#esoteric < 1449509945 481693 :BloodGod!~BloodGod@unaffiliated/bloodgod PRIVMSG #esoteric :I got an idea about two days ago on a language based off befunge and an important hobby of mine, Rubiks cubes. Been working it out since then. < 1449511028 654044 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :programming in latex is pretty hard < 1449511047 316725 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :way harder than brainfuck < 1449511551 373542 :oerjan!~oerjan@hagbart.nvg.ntnu.no QUIT :Quit: Latex^Hr < 1449511721 340525 :^v!~^v@c-68-41-215-101.hsd1.mi.comcast.net JOIN :#esoteric < 1449512572 647456 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org JOIN :#esoteric < 1449512757 270685 :atrapado!~atrapado@unaffiliated/atrapado JOIN :#esoteric < 1449513098 624957 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Then, learn Plain TeX programming. < 1449513664 764014 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :i already fail to accomplish shit in latex due to expanding issues < 1449513671 19374 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :edef doesn't help, sadly < 1449513773 594696 :aretecode!~aretecode@104.156.228.138 QUIT :Ping timeout: 250 seconds < 1449514277 395215 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :I have written the following macro: \def\ecall#1{\begingroup\edef\next{\endgroup#1}\next} It often helps with some things < 1449514279 504589 :rntz!~rntz@pool-96-248-68-233.cmdnnj.fios.verizon.net PART :#esoteric < 1449514290 978415 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :Although, expanding issues in TeX can sometimes be confusing < 1449514292 878464 :aretecode!~aretecode@104.156.228.138 JOIN :#esoteric < 1449514377 199951 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :what does that do? < 1449514378 268575 :Welo!~hato@546A4E77.cm-12-3b.dynamic.ziggo.nl JOIN :#esoteric < 1449514618 533446 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org QUIT :Ping timeout: 256 seconds < 1449515073 589332 :zzo38!~zzo38@24-207-56-9.eastlink.ca PRIVMSG #esoteric :It fully expands the text before executing it < 1449515121 299877 :myname!~myname@84.200.43.57 PRIVMSG #esoteric :well, i do get "missing }" errors out of edef < 1449516093 623198 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1449516094 554851 :Phantom__Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1449516094 697397 :Phantom__Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Client Quit < 1449516924 190117 :zzo38!~zzo38@24-207-56-9.eastlink.ca QUIT :Quit: zzo38 < 1449517989 619375 :Welo!~hato@546A4E77.cm-12-3b.dynamic.ziggo.nl QUIT :Quit: Leaving < 1449518086 988922 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :[wiki] 14[[07Special:Log/newusers14]]4 create10 02 5* 03HYPotenuser 5* 10New user account < 1449518631 553521 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au JOIN :#esoteric < 1449518661 314794 :BloodGod!~BloodGod@unaffiliated/bloodgod PRIVMSG #esoteric :Im trying to figure out how to decrypt some encrypted smali. Woo. < 1449518936 606709 :jaboja!~jaboja@ese227.neoplus.adsl.tpnet.pl QUIT :Ping timeout: 256 seconds < 1449518952 302490 :mihow!~mihow@50-206-98-70-static.hfc.comcastbusiness.net JOIN :#esoteric < 1449519250 308793 :jaboja!~jaboja@ese227.neoplus.adsl.tpnet.pl JOIN :#esoteric < 1449520704 593675 :Patashu!~Patashu@c27-253-115-204.carlnfd2.nsw.optusnet.com.au QUIT :Ping timeout: 256 seconds < 1449520904 559637 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org JOIN :#esoteric < 1449521495 560162 :spiette!~spiette@mtl.savoirfairelinux.net QUIT :Ping timeout: 250 seconds < 1449522926 83654 :Lord_of_Life!Elite12246@gateway/shell/elitebnc/x-zxypueolrxyrmlfw QUIT :Excess Flood < 1449522982 633923 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org QUIT :Ping timeout: 256 seconds < 1449523098 308999 :spiette!~spiette@mtl.savoirfairelinux.net JOIN :#esoteric < 1449523206 525183 :Lord_of_Life!Elite12246@gateway/shell/elitebnc/x-dgzxsiomzgfgsvwm JOIN :#esoteric < 1449523324 580856 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org JOIN :#esoteric < 1449525282 566204 :MoALTz!~no@78-11-180-214.static.ip.netia.com.pl JOIN :#esoteric < 1449526212 619091 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org QUIT :Ping timeout: 256 seconds < 1449526488 578013 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org JOIN :#esoteric < 1449527122 4402 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Huh. For some reason my doubly-linked list loops back on itself after a certain point < 1449527701 536254 :AnotherTest!~turingcom@94-224-66-163.access.telenet.be QUIT :Quit: ZNC - http://znc.in < 1449527723 848688 :oerjan!~oerjan@hagbart.nvg.ntnu.no JOIN :#esoteric < 1449527906 649075 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :It throws no errors during compilation < 1449527908 445567 :atrapado!~atrapado@unaffiliated/atrapado QUIT :Quit: Leaving < 1449527925 527758 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Don't they all? < 1449527934 155699 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :The offending line seems to be conductor=conductor->next;, though I could very, /very/ easily be wrong < 1449527959 162491 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :I removed all recursion in case it was stack overflowing. That was not the issue. < 1449527995 320800 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :(that conductor=conductor->next; is in a "while(conductor->next!=NULL){...}" loop) < 1449528007 503947 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :(I'm attempting to find the last item in the list) < 1449528060 716011 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :shachaf: Not if you only follow the "next" pointers < 1449528249 729506 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :After the loop is conductor->next = &nd; nd.prev = conductor; and then the function is over < 1449528291 818673 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :conductor is a pointer to the current node when it starts, nd is the argument of the function and should be another node; the one you want to add. < 1449528299 420685 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :What am I doing wrong? < 1449528365 844896 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :implementing linked list by hand < 1449528447 989560 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :quintopia: Couldn't find anything on the internet that implements it themselves. At least, nothing good < 1449528454 479032 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Though I'm not a particularly good googler < 1449528508 784571 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Ok < 1449528513 541752 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :NOW I found it < 1449528516 273874 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :you should probably do conductor.next = &nd instead < 1449528555 199588 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :oh wait nvm < 1449528583 523498 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :look away everyone < 1449528615 338875 :oerjan!~oerjan@hagbart.nvg.ntnu.no PRIVMSG #esoteric :&kay < 1449528630 643945 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :but that line still feels wrong < 1449528640 120982 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :why the &? < 1449528725 337920 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :quintopia: Because I am fumbling my way around until it works and when I did that, it stuck. < 1449528804 691461 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :i get it now < 1449528820 350568 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :nd is the actual node, not a pointer < 1449528827 815921 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :OK < 1449528838 357686 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :quintopia: I suspected that was bad practics < 1449528840 869302 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :*practice < 1449528851 232802 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :its fine < 1449528854 846111 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Now I can't figure out how to access an arbitrary node with #include < 1449528862 379649 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Please tell me that's possible < 1449528868 937080 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's not necessarily "fine"; I think we're missing quite a lot of context. < 1449528872 243907 :quintopia!~quintopia@unaffiliated/quintopia PRIVMSG #esoteric :C code is made from bad practice < 1449528883 699509 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :quintopia: Oh right. < 1449528896 783212 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :fizzie: I'm fumbling my way around. < 1449528900 764738 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Of course you are. < 1449528925 77322 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I mean, if it's e.g. an automatically allocated object, generally putting pointers at one into a linked list is only useful in rare circumstances. < 1449529058 748281 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org PRIVMSG #esoteric :Well I have to go soon. < 1449529219 717629 :BloodGod!~BloodGod@unaffiliated/bloodgod QUIT :Remote host closed the connection < 1449529408 581445 :hppavilion[1]!~Devourero@74-114-87-67.dynamic.asdk12.org QUIT :Ping timeout: 256 seconds < 1449530493 324107 :adu!~ajr@c-73-133-129-229.hsd1.md.comcast.net JOIN :#esoteric < 1449530666 658911 :aretecode!~aretecode@104.156.228.138 QUIT :Ping timeout: 256 seconds < 1449531804 324433 :hppavilion[1]!~Devourero@58-0-174-206.gci.net JOIN :#esoteric < 1449532678 402095 :jaboja64!~jaboja@erw74.neoplus.adsl.tpnet.pl JOIN :#esoteric