< 1551140054 466343 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551140127 235058 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 245 seconds < 1551140127 361730 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1551140502 411246 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1551141728 258680 :tromp_!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 245 seconds < 1551142520 415376 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551142556 763673 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551142570 428900 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551142646 764926 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection > 1551143683 672633 PRIVMSG #esoteric :14[[07Hello world program in esoteric languages14]]4 10 02https://esolangs.org/w/index.php?diff=60087&oldid=59990 5* 03Cortex 5* (+108) 10 < 1551144548 407065 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 255 seconds < 1551145044 944118 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551145292 961478 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 246 seconds < 1551146802 916612 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :ts supports custom formats and output to microseconds < 1551147245 260392 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551147272 795639 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551147285 427158 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551147369 660566 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551147800 953189 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1551148009 341052 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :How should coroutines work if you wanted them to be really efficient? < 1551148017 703711 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I'm thinking about it and the details are actually tricky. < 1551148023 345116 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I wonder whether anyone's done it properly. < 1551148096 50145 :xkapastel!uid17782@gateway/web/irccloud.com/x-rsqtguclyefkvqqe QUIT :Quit: Connection closed for inactivity < 1551148766 20382 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :shachaf: well, in some cooperative RTOSes, you are only allowed to yield in main() < 1551148774 243552 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :(or some rule morally equivalent to that) < 1551148798 592684 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :so there's a tight bound on the per-coroutine stack size < 1551148813 378865 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :anyway, can you elaborate? < 1551148926 310682 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :So there are a bunch of different use cases, but let's say we're talking about asynchronous I/O. < 1551148957 296303 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :If you want to write a complicated thing that does asynchronous I/O, you can write a state machine by hand. < 1551148975 318043 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Or you can make small cooperative threads with full stacks of their own. < 1551148992 705469 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Which is nice but kind of wasteful with respect to memory use and unnecessary cache misses and so on. < 1551149033 731194 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :If you have compiler support, you can maybe have it generate something like the state machine for you, and do liveness analysis and everything and make it nice. < 1551149040 772193 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1551149043 702967 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But I'm wondering about the details of how it should work. < 1551149058 737121 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Especially when you have asynchronous things that call other asynchronous things and so on. < 1551149222 638058 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :The coroutine state machine state is effectively a second stack, used only for async state < 1551149241 350941 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yeah < 1551149269 198012 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :This is good because the stack is smaller and you only use it for things that really need to be saved (your regular stack is in cache so you don't want to switch stacks completely). < 1551149288 453463 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :the question then is could you sensibly tell the compiler which things don't need to be saved < 1551149301 980285 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :or would that be a nightmare < 1551149337 761169 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :It should be able to figure it out? < 1551149362 220578 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :If you tag your async functions then only their variables that are saved across yield calls need be saved. < 1551149649 962497 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551149841 975783 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1551149912 942966 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 246 seconds < 1551150634 127329 :FreeFull!~freefull@defocus/sausage-lover QUIT : > 1551153972 42720 PRIVMSG #esoteric :14[[07Thue-Mirr14]]4 10 02https://esolangs.org/w/index.php?diff=60088&oldid=60078 5* 03Salpynx 5* (+236) 10I made an interpreter to test my "Stretching-the-Truth"-machine < 1551154079 620586 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :kmc: Man, this is trickier than I thought. < 1551154087 680148 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :do you have good ideas twh < 1551154229 502881 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :no < 1551154237 431800 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I don't do good ideas < 1551154241 131319 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :only bad ones < 1551154247 760727 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :bad advice for a price < 1551154306 639956 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :what is the price < 1551154389 213028 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :varies according to circumstance < 1551154431 73208 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :right now < 1551154506 346112 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :is it cake < 1551154529 838822 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :sure < 1551155921 282327 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551156167 278154 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 240 seconds < 1551157176 450434 :S_Gautam!uid286066@gateway/web/irccloud.com/x-afblmliagqaxkntx JOIN :#esoteric < 1551158645 270171 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :do you have any cake > 1551161615 997244 PRIVMSG #esoteric :14[[07Special:Log/upload14]]4 upload10 02 5* 03Salpynx 5* 10uploaded "[[02File:Pentagraph.png10]]" > 1551162263 634241 PRIVMSG #esoteric :14[[07Talk:Thue-Mirr14]]4 10 02https://esolangs.org/w/index.php?diff=60090&oldid=60081 5* 03Salpynx 5* (+869) 10Pentagraph program, graphing Thue-Mirr "chaos" < 1551162405 408591 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551162665 401267 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 255 seconds < 1551162813 443423 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551162841 768811 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551162855 415895 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551162956 758988 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551163935 283274 :arseniiv!~arseniiv@94.41.3.137.dynamic.ufanet.ru JOIN :#esoteric < 1551164815 777010 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551164957 99499 :S_Gautam!uid286066@gateway/web/irccloud.com/x-afblmliagqaxkntx QUIT :Quit: Connection closed for inactivity < 1551165185 675443 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 268 seconds < 1551166229 940413 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 246 seconds < 1551166929 796478 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551167348 754920 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Nite > 1551167820 577144 PRIVMSG #esoteric :14[[07Talk:BytePusher14]]4 10 02https://esolangs.org/w/index.php?diff=60091&oldid=52813 5* 03Plugnburn 5* (+171) 10/* (Virtual) Machines */ < 1551169057 715064 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551169105 392423 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551169337 581147 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551169353 182264 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551173126 868395 :arseniiv!~arseniiv@94.41.3.137.dynamic.ufanet.ru QUIT :Read error: Connection reset by peer < 1551173126 948920 :arseniiv!~arseniiv@94.41.3.137.dynamic.ufanet.ru JOIN :#esoteric < 1551173246 198140 :trnv2!~trn@prone.ws JOIN :#esoteric < 1551173289 124986 :arseniiv_!~arseniiv@94.41.3.137.dynamic.ufanet.ru JOIN :#esoteric < 1551173405 186644 :17WABYY79!~arseniiv@94.41.3.137.dynamic.ufanet.ru JOIN :#esoteric < 1551173405 283539 :arseniiv!~arseniiv@94.41.3.137.dynamic.ufanet.ru QUIT :Read error: Connection reset by peer < 1551173405 334955 :17WABYY79!~arseniiv@94.41.3.137.dynamic.ufanet.ru QUIT :Read error: Connection reset by peer < 1551173405 610271 :trn!~trn@prone.ws QUIT :Ping timeout: 245 seconds < 1551173460 900441 :trnv2!~trn@prone.ws NICK :trn < 1551173603 497669 :arseniiv_!~arseniiv@94.41.3.137.dynamic.ufanet.ru NICK :arseniiv < 1551174397 380760 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be JOIN :#esoteric > 1551183179 556552 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Edible Melon 5* 10New user account < 1551183237 422822 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551183401 439959 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 255 seconds < 1551183406 554325 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1551183925 732531 :nfd!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net JOIN :#esoteric < 1551184061 118398 :AnotherTest_!~turingcom@d51A4B8E1.access.telenet.be JOIN :#esoteric < 1551184224 30602 :nfd9001!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net QUIT :Ping timeout: 246 seconds < 1551184224 718648 :heroux!sandroco@gateway/shell/insomnia247/x-pwmpzsduiwxwlngb QUIT :Ping timeout: 246 seconds < 1551184229 409097 :rain1!~My_user_n@unaffiliated/rain1 QUIT :Ping timeout: 255 seconds < 1551184229 581385 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 255 seconds < 1551184229 685846 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be QUIT :Ping timeout: 255 seconds < 1551184230 167274 :bobby!~Bob@76.202.115.164 QUIT :Ping timeout: 255 seconds < 1551184231 93434 :AnotherTest_!~turingcom@d51A4B8E1.access.telenet.be NICK :AnotherTest < 1551184233 367585 :heroux!sandroco@gateway/shell/insomnia247/x-ptrfksmsipywjqyw JOIN :#esoteric < 1551184234 732569 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 JOIN :#esoteric < 1551184247 961908 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :for reference, see https://esolangs.org/logs/2018-12.html#lYfc the previous discussion on how to implement coroutines < 1551184317 796287 :rain1!~My_user_n@unaffiliated/rain1 JOIN :#esoteric < 1551184346 683846 :bobby!~Bob@76.202.115.164 JOIN :#esoteric < 1551184412 471993 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551184703 447803 :S_Gautam!uid286066@gateway/web/irccloud.com/x-hrvmgdbjurcaxotg JOIN :#esoteric < 1551185221 453524 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com JOIN :#esoteric < 1551185250 707784 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com QUIT :Max SendQ exceeded < 1551186604 662032 :xkapastel!uid17782@gateway/web/irccloud.com/x-fvngaeosiejumqpp JOIN :#esoteric < 1551187620 57807 :Vorpal!~Vorpal@unaffiliated/vorpal QUIT :Ping timeout: 257 seconds < 1551188089 365762 :grumble!~grumble@freenode/staff/grumble QUIT :Quit: in lieu of the innuendo in the end know my intent though < 1551188139 179135 :grumble!~~@freenode/staff/grumble JOIN :#esoteric < 1551191700 407073 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1551191777 256697 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 245 seconds < 1551192005 792070 :Soni!~quassel@unaffiliated/soniex2 QUIT :Quit: http://quassel-irc.org - Chat comfortably. Anywhere. < 1551192114 12805 :Soni!~quassel@unaffiliated/soniex2 JOIN :#esoteric < 1551193052 75154 :AnotherTest!~turingcom@d51A4B8E1.access.telenet.be QUIT :Ping timeout: 245 seconds < 1551193603 421710 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1551193660 480180 :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 < 1551193787 401759 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 240 seconds > 1551199787 930374 PRIVMSG #esoteric :14[[07User:OdinSmodin14]]4 N10 02https://esolangs.org/w/index.php?oldid=60092 5* 03Areallycoolusername 5* (+26) 10Created page with "I lost this account. Heck." < 1551199788 46667 :xkapastel!uid17782@gateway/web/irccloud.com/x-fvngaeosiejumqpp QUIT :Quit: Connection closed for inactivity < 1551203655 72300 :xkapastel!uid17782@gateway/web/irccloud.com/x-givdacpceynyqwpd JOIN :#esoteric < 1551206022 413631 :Phantom_Hoover!~phantomho@cpc108439-cowc8-2-0-cust785.14-2.cable.virginm.net JOIN :#esoteric < 1551206022 497080 :Phantom_Hoover!~phantomho@cpc108439-cowc8-2-0-cust785.14-2.cable.virginm.net QUIT :Changing host < 1551206022 497140 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric < 1551206431 138642 :AnotherTest!~turingcom@ptr-82l26zcehbybvusuxld.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1551206463 298496 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1551207837 47370 :arseniiv!~arseniiv@94.41.3.137.dynamic.ufanet.ru QUIT :Ping timeout: 258 seconds < 1551208771 521713 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu JOIN :#esoteric < 1551209695 860479 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu PRIVMSG #esoteric :oh wow! < 1551209732 486576 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu PRIVMSG #esoteric :I just payed online with debit card through an online payment website that has a fallback to allow paying without javascript. I think this is a first. < 1551210279 780568 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551211471 993851 :59NAAJ5ZK!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551212360 816536 :sftp!~sftp@unaffiliated/sftp QUIT :Ping timeout: 268 seconds < 1551212415 184148 :sftp!~sftp@unaffiliated/sftp JOIN :#esoteric < 1551212886 234658 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Excess Flood < 1551212901 306163 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551212985 154768 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :Can someone recommend me a new rubik's cube < 1551213195 101069 :int-e!~noone@int-e.eu PRIVMSG #esoteric :. o O ( get a megaminx ) < 1551213397 35285 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :int-e: I'm thinking something with an obvious isomorphism to the original < 1551213499 204160 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Uh, one can buy 17x17x17 cubes now? Crazy... < 1551213527 790449 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(only EUR 1.3k) < 1551213581 913628 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Anyway, I know too little. Stickerless is nice but that doesn't really narrow it down much. < 1551213686 687573 :int-e!~noone@int-e.eu PRIVMSG #esoteric :isomorphic, eh... there's the mirror cube variant (which I imagine would be really awkward to handle) < 1551213759 594362 :int-e!~noone@int-e.eu PRIVMSG #esoteric :But apparently that doesn't stop people from offering speed cubing variants of those... "Shengshou Mirror Speed Cube" < 1551213795 135514 :int-e!~noone@int-e.eu PRIVMSG #esoteric :https://images-eu.ssl-images-amazon.com/images/I/512Tno1siWL._AC_US218_.jpg ... I guess that's the standard checkerboard pattern < 1551213933 910807 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :int-e: basically I'm looking for a 3x3x3 cube that isn't a really stiff one I bought in a toy store whose stickers are coming off < 1551214983 398576 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu PRIVMSG #esoteric :Taneb: ask #rubik on this irc network, they can give good advice about that < 1551215065 74601 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu PRIVMSG #esoteric :Taneb: I bought two decent cubes last year, the one I prefer is "Quyi TheValk 3" < 1551215090 298339 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu PRIVMSG #esoteric :note that "3" is the version number, not size > 1551215098 456811 PRIVMSG #esoteric :14[[07User:Cortex14]]4 10 02https://esolangs.org/w/index.php?diff=60093&oldid=60079 5* 03Cortex 5* (+323) 10 > 1551216573 896436 PRIVMSG #esoteric :14[[07YesNoMaybeUnknown14]]4 N10 02https://esolangs.org/w/index.php?oldid=60094 5* 03Cortex 5* (+1365) 10Created page with "'''YesNoMaybeUnknown''' is an esolang created by [[User:Cortex|]] using quaternary digits (or quits). These 4 values are represented as: * ? (unknown) * 0 (no) * (maybe) *..." > 1551216600 652468 PRIVMSG #esoteric :14[[07User:Cortex14]]4 10 02https://esolangs.org/w/index.php?diff=60095&oldid=60093 5* 03Cortex 5* (+24) 10 < 1551217142 442971 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :oh i have a mirror cube! < 1551217146 825993 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :(or had; I haven't seen it in a while) < 1551217162 439390 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it is definitely more difficult to handle < 1551217166 533973 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and it looks way cool < 1551217200 824272 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :I first encountered one while drunk at a New Year's party and it became an object of obsession for a little while < 1551217342 126871 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I think I first encountered one at your house. < 1551217674 173599 :Taneb!~Taneb@runciman.hacksoc.org PRIVMSG #esoteric :My brother's girlfriend got me a cube whose faces change colour depending on the light < 1551219370 758500 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :Taneb: that's neat < 1551220082 94985 :S_Gautam!uid286066@gateway/web/irccloud.com/x-hrvmgdbjurcaxotg QUIT :Quit: Connection closed for inactivity < 1551221050 135582 :AnotherTest!~turingcom@ptr-82l26zcehbybvusuxld.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 268 seconds < 1551221866 335489 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection < 1551222711 59037 :59NAAJ5ZK!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551223299 170613 :b_jonas!~x@catv-176-63-24-160.catv.broadband.hu QUIT :Quit: leaving < 1551225083 243531 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551225331 218896 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 246 seconds