< 1558224085 118415 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :kmc: There is ways to force a maximum stack size, such as what I did in Free Hero Mesh (there is a user setting for the maximum stack size and the direction of the stack, and then any recursive functions will check that limit, and functions that are not recursive do not check the stack size). < 1558224619 355667 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :gcc has a flag to give you stack size information < 1558224643 834794 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :But I want to statically check the depth in every case. < 1558224654 757336 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Maybe I should just ban recursive functions. < 1558224662 383043 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What are they good for, anyway? < 1558224693 355239 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :There is many thing that it is good for, I think, although also there is many cases where it is better to not use it. < 1558224695 916102 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I guess some code is much easier to write with recursion but it tends to be rare. < 1558224706 356394 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Parsers? Trees? < 1558224733 774068 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I suppose "trees" is pretty broad. < 1558224751 133644 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :are trees scow < 1558224760 591735 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :often it's easiest to write with recursion, but you end up doing it another way for some reason or another < 1558224766 298312 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :of course in many cases that just means reifying the stack < 1558224770 802023 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and you will have the same issues < 1558224871 1375 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :but more control over what to do < 1558224884 816954 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :perhaps < 1558224895 652196 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :but it won't magically give you a bound on space < 1558224914 152015 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :I think the best way to design it is, you have enough ropes to hang yourself, and also a few more just in case < 1558224945 815721 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :i want to add that to the quote db but I don't remember how < 1558224946 297960 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I mean, you can just check the bound instead of getting a stack overflow. < 1558224964 837516 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :You can allocate your reified stack in a difference place from "the stack" < 1558225062 785341 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :yes, that is one advantage < 1558225066 400069 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :it can grow and move on its own < 1558225075 563439 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :and it's easier to check, yes < 1558225081 949468 :kmc!~beehive@li521-214.members.linode.com PRIVMSG #esoteric :stack overflow is usually one of the worst handled error conditions < 1558225208 102784 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :Did you look how it is implemented in Free Hero Mesh, if you think the handling of stack overflow is reasonable? < 1558225263 74392 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :(it is only implemented if __GNUC__ is defined, and if it is enabled at runtime; otherwise stack overflow is not checked) < 1558225336 758758 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Also you might have a very small stack because you're doing some (stack-switching) coroutine thing. < 1558225372 119926 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Or you could want to do a non-stack-switching coroutine thing where you effectively reify part of the stack. < 1558225377 460136 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Where you is the compiler. < 1558225388 134843 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :I didn't look at Free Hero Mesh. < 1558225537 297877 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :Currently, the stack protection is only checked in the execute_program() function (in exec.c); later if other recursive functions are added then those also might do, such as the function to move an object in a direction (due to objects pushing each other, this call is going to be recursive). The definition of execute_program() starts with: if(StackProtection()) Throw("Call stack overflow"); < 1558225587 335324 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :where Throw is a macro defined in exec.c (which writes the address of the string literal to a global variable, and then calls longjmp()), and StackProtection is a macro defined in heromesh.h > 1558226357 5935 PRIVMSG #esoteric :14[[07Examinable Invocation Vector14]]4 N10 02https://esolangs.org/w/index.php?oldid=62350 5* 03Hakerh400 5* (+3843) 10Examinable Invocation Vector > 1558226444 842077 PRIVMSG #esoteric :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=62351&oldid=62022 5* 03Hakerh400 5* (+35) 10Added EIV to the language list < 1558226649 686993 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Man, trees are kind of scow for caches. < 1558226675 921592 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :What's an ordered set/map data structure that's cache-friendly? < 1558226884 275453 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :I don't know < 1558226946 844446 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :Is there something like OpenID over SASL, that does not require a web browser or any other implementation other than SASL? > 1558228447 988802 PRIVMSG #esoteric :14[[07Thue14]]4 10 02https://esolangs.org/w/index.php?diff=62352&oldid=60452 5* 03Mipinggfxgbtftybfhfyhfn 5* (+296) 10/* Sample programs */ > 1558228819 676861 PRIVMSG #esoteric :14[[07Thue14]]4 10 02https://esolangs.org/w/index.php?diff=62353&oldid=62352 5* 03Mipinggfxgbtftybfhfyhfn 5* (+65) 10/* Sample programs */ > 1558228986 445880 PRIVMSG #esoteric :14[[07Thue14]]4 M10 02https://esolangs.org/w/index.php?diff=62354&oldid=62353 5* 03Mipinggfxgbtftybfhfyhfn 5* (-1) 10/* Sample programs */ > 1558229054 820564 PRIVMSG #esoteric :14[[07Thue14]]4 10 02https://esolangs.org/w/index.php?diff=62355&oldid=62354 5* 03Mipinggfxgbtftybfhfyhfn 5* (+0) 10/* Sample programs */ > 1558229123 256734 PRIVMSG #esoteric :14[[07Talk:Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62356&oldid=62337 5* 03A 5* (-245) 10/* History or Etymology */ < 1558229270 418376 :Sgeo__!~Sgeo@ool-18b98439.dyn.optonline.net JOIN :#esoteric < 1558229439 511177 :Sgeo_!~Sgeo@ool-18b98439.dyn.optonline.net QUIT :Ping timeout: 244 seconds < 1558229855 299377 :weston!8ea78f5a@gateway/web/freenode/ip.142.167.143.90 PRIVMSG #esoteric :!zjoust Sookie ->+>+[+][[---][+]]<+[+]+[-][+[-]]+++++>-[+][+[+][+[+][>]>>-]]<[->[->>>>>>>>>++[-]>++[-]>>++[<]>>[-]>++[-]>++[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]>[+]->[-]][]<[+++++<->>--<<+++.++>>-<++[>[.+][+[-.][--]->+++]++>--<]<[+]]>>]<[[+][+]>]+[>[>>>>>>>>>[-]>[+]>[++++]]>>>+] < 1558229856 106728 :zemhill_______!bfjoust@selene.zem.fi PRIVMSG #esoteric :weston.Sookie: points 8.52, score 49.04, rank 1/47 < 1558229893 106443 :weston!8ea78f5a@gateway/web/freenode/ip.142.167.143.90 PRIVMSG #esoteric :!zjoust Sookie < < 1558229893 282259 :zemhill_______!bfjoust@selene.zem.fi PRIVMSG #esoteric :weston.Sookie: points -46.00, score 0.00, rank 47/47 (-46) < 1558229936 118175 :westonian!8ea78f5a@gateway/web/freenode/ip.142.167.143.90 JOIN :#esoteric < 1558230032 27855 :westonian!8ea78f5a@gateway/web/freenode/ip.142.167.143.90 PRIVMSG #esoteric :!zjoust Sookie ->+>+[+][[---][+]]<+[+]+[-][+[-]]+++++>-[+][+[+][+[+][>]>>-]]<[->[->>>>>>>>>++[-]>++[-]>>++[<]>>[-]>++[-]>++[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]>[+]->[-]][]<[+++++<->>--<<+++.++>>-<++[>[.+][+[-.][--]->+++]++>--<]<[+]]>>]<[[+][+]>]+[>[>>>>>>>>>[-]>[+]>[++++]]>>>+] < 1558230032 802486 :zemhill_______!bfjoust@selene.zem.fi PRIVMSG #esoteric :westonian.Sookie: points 9.60, score 53.37, rank 1/47 (+2) < 1558230163 117261 :weston!8ea78f5a@gateway/web/freenode/ip.142.167.143.90 QUIT :Ping timeout: 256 seconds < 1558230435 125698 :westonian!8ea78f5a@gateway/web/freenode/ip.142.167.143.90 QUIT :Ping timeout: 256 seconds > 1558230483 757149 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=62357&oldid=62213 5* 03A 5* (+51) 10/* Impossible */ > 1558231063 816371 PRIVMSG #esoteric :14[[07Talk:Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62358&oldid=62356 5* 03A 5* (+11) 10/* Sketch: A RAM Machine */ > 1558231081 311040 PRIVMSG #esoteric :14[[07Talk:Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62359&oldid=62358 5* 03A 5* (+11) 10/* Sketch: A RAM Machine */ < 1558231931 591661 :iconmaster!~iconmaste@2604:6000:b180:d800:548e:295e:2bfb:76f2 JOIN :#esoteric < 1558231938 880835 :iconmaster!~iconmaste@2604:6000:b180:d800:548e:295e:2bfb:76f2 QUIT :Client Quit > 1558232374 517375 PRIVMSG #esoteric :14[[07Talk:Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62360&oldid=62359 5* 03A 5* (+4) 10/* Sketch: A RAM Machine */ > 1558234808 268072 PRIVMSG #esoteric :14[[07Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62361&oldid=62357 5* 03A 5* (+177) 10/* Swapping two values */ < 1558236661 650121 :FreeFull!~freefull@defocus/sausage-lover QUIT : > 1558237545 548915 PRIVMSG #esoteric :14[[07Turing Machine But Way Worse14]]4 M10 02https://esolangs.org/w/index.php?diff=62362&oldid=62258 5* 03RealUndefined 5* (+155) 10turing-complete > 1558237634 688216 PRIVMSG #esoteric :14[[07Turing Machine But Way Worse14]]4 M10 02https://esolangs.org/w/index.php?diff=62363&oldid=62362 5* 03RealUndefined 5* (+0) 10 < 1558237910 944064 :adu!~ajr@pool-173-73-86-145.washdc.fios.verizon.net QUIT :Quit: adu > 1558239506 245197 PRIVMSG #esoteric :14[[07Turing Machine But Way Worse14]]4 M10 02https://esolangs.org/w/index.php?diff=62364&oldid=62363 5* 03RealUndefined 5* (+16) 10redirect in abbreviation added > 1558239515 649033 PRIVMSG #esoteric :14[[07Turing Machine But Way Worse14]]4 M10 02https://esolangs.org/w/index.php?diff=62365&oldid=62364 5* 03RealUndefined 5* (+4) 10Redirected page to [[TMBWW]] > 1558239528 325607 PRIVMSG #esoteric :14[[07Turing Machine But Way Worse14]]4 M10 02https://esolangs.org/w/index.php?diff=62366&oldid=62365 5* 03RealUndefined 5* (-20) 10nope. > 1558239696 786368 PRIVMSG #esoteric :14[[07TMBWW14]]4 N10 02https://esolangs.org/w/index.php?oldid=62367 5* 03RealUndefined 5* (+42) 10Add redirect < 1558240607 301703 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 JOIN :#esoteric > 1558240839 332937 PRIVMSG #esoteric :14[[07Bit~14]]4 N10 02https://esolangs.org/w/index.php?oldid=62368 5* 03RealUndefined 5* (+969) 10Created page with "{{lowercase}} ''Note: This is still a work-in-progress.'' '''bit~''' is a language made by [[User:RealUndefined]], in May 2019. It is a cell-based language that uses bits to..." < 1558240874 308712 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 QUIT :Ping timeout: 252 seconds > 1558240927 68744 PRIVMSG #esoteric :14[[07Bit~14]]4 10 02https://esolangs.org/w/index.php?diff=62369&oldid=62368 5* 03RealUndefined 5* (+24) 10 < 1558241693 253798 :Frater_EST!~adrianbib@wsip-68-15-198-210.ok.ok.cox.net JOIN :#esoteric < 1558242382 905385 :Frater_EST!~adrianbib@wsip-68-15-198-210.ok.ok.cox.net PART :#esoteric < 1558243864 62523 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 JOIN :#esoteric < 1558244135 64743 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 QUIT :Ping timeout: 258 seconds < 1558245243 242712 :nfd!~nfd9001@2601:602:8500:2443:f48e:eae1:b692:7842 QUIT :Ping timeout: 248 seconds > 1558247590 242818 PRIVMSG #esoteric :14[[07Shark14]]4 M10 02https://esolangs.org/w/index.php?diff=62370&oldid=62349 5* 03Madk 5* (+5) 10Use clearer terminoloy > 1558247925 139981 PRIVMSG #esoteric :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=62371&oldid=62351 5* 03Madk 5* (+12) 10/* S */ Add shark to list < 1558250056 533573 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :Make some Magic: the Gathering cards that are world, and that in addition to continuous effects will also have a death trigger. In addition to global enchantments, other permanent types are also possible. < 1558250096 35746 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Isn't World deprecated? < 1558250341 219434 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 JOIN :#esoteric < 1558250619 197034 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 QUIT :Ping timeout: 248 seconds < 1558250916 62265 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 JOIN :#esoteric < 1558252034 645486 :sebbu3!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1558252273 959041 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 258 seconds < 1558253125 363298 :Ezarkei!~Ezarkei@116.14.136.77.rev.sfr.net JOIN :#esoteric < 1558254084 128468 :Ezarkei!~Ezarkei@116.14.136.77.rev.sfr.net QUIT :Read error: Connection reset by peer < 1558255356 591018 :AnotherTest!~turingcom@ptr-82l26zfnlgwh4k4ewtw.18120a2.ip6.access.telenet.be JOIN :#esoteric > 1558257270 441358 PRIVMSG #esoteric :14[[07User:Hakerh40014]]4 10 02https://esolangs.org/w/index.php?diff=62372&oldid=60568 5* 03Hakerh400 5* (+35) 10/* Programming languages we created */ < 1558257670 240294 :atslash!~atslash@static.231.107.9.5.clients.your-server.de JOIN :#esoteric < 1558260240 71939 :pikhq!~pikhq@174-16-32-159.hlrn.qwest.net QUIT :Ping timeout: 246 seconds > 1558261040 870919 PRIVMSG #esoteric :14[[07Examinable Invocation Vector14]]4 10 02https://esolangs.org/w/index.php?diff=62373&oldid=62350 5* 03Hakerh400 5* (+703) 10/* Examples */ > 1558261095 789087 PRIVMSG #esoteric :14[[07Examinable Invocation Vector14]]4 10 02https://esolangs.org/w/index.php?diff=62374&oldid=62373 5* 03Hakerh400 5* (+37) 10/* Reversing bits */ > 1558261874 78942 PRIVMSG #esoteric :14[[07Examinable Invocation Vector14]]4 M10 02https://esolangs.org/w/index.php?diff=62375&oldid=62374 5* 03Hakerh400 5* (+3) 10/* Repeat the first character three times */ < 1558262922 882120 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 258 seconds < 1558262998 82995 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1558263234 879535 :unlimiter!~unlimiter@41.143.84.193 JOIN :#esoteric < 1558263509 867697 :unlimiter!~unlimiter@41.143.84.193 QUIT :Client Quit < 1558263842 968437 :gerzytet!~gerzytet@71.214.110.235 QUIT :Ping timeout: 258 seconds < 1558264517 592734 :arseniiv!~arseniiv@145.255.0.230 JOIN :#esoteric > 1558267625 537033 PRIVMSG #esoteric :14[[07Shark14]]4 M10 02https://esolangs.org/w/index.php?diff=62376&oldid=62370 5* 03Madk 5* (-2) 10Fibonacci sequence starts with 0, 1 not 1, 1 > 1558268843 735197 PRIVMSG #esoteric :14[[07Cd14]]4 N10 02https://esolangs.org/w/index.php?oldid=62377 5* 03A 5* (+115) 10Created page with "[[Cd]] is an [[esoteric programming language]]. [[Category:2019]] [[Category:Languages]] [[Category:Unimplemented]]" > 1558270285 114751 PRIVMSG #esoteric :14[[07Cd14]]4 M10 02https://esolangs.org/w/index.php?diff=62378&oldid=62377 5* 03A 5* (+557) 10 > 1558271123 714008 PRIVMSG #esoteric :14[[07User:TonyBrown14814]]4 10 02https://esolangs.org/w/index.php?diff=62379&oldid=61647 5* 03TonyBrown148 5* (+180) 10 < 1558275846 720117 :sebbu3!~sebbu@unaffiliated/sebbu NICK :sebbu < 1558280446 278210 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1558282332 27618 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :shachaf: Wizards of the Coast no longer makes cards using it (same with banding and many other stuff), but still it can be done by unofficial cards < 1558284949 591022 :AnotherTest!~turingcom@ptr-82l26zfnlgwh4k4ewtw.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 250 seconds < 1558284963 639113 :pikhq!~pikhq@97-122-207-41.hlrn.qwest.net JOIN :#esoteric < 1558284988 497473 :AnotherTest!~turingcom@ptr-82l26zfnlgwh4k4ewtw.18120a2.ip6.access.telenet.be JOIN :#esoteric > 1558285177 86285 PRIVMSG #esoteric :14[[07Talk:Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=62380&oldid=62360 5* 03Helen 5* (+415) 10/* Impossible */ [[Bootstrap]] isn't impossible > 1558285526 965581 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=62381&oldid=62361 5* 03Helen 5* (-889) 10/* Impossible */ Cleaned up; Removed bootstrapping comment; Removed some dumb stuff of mine; The pi comment is still valid; Unproven things go in [[bitch#Unproven|Unproven]] > 1558285554 36773 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=62382&oldid=62381 5* 03Helen 5* (+116) 10/* Unproven */ Unproven things go in [[bitch#Unproven|Unproven]] #2 < 1558287315 642722 :pikhq!~pikhq@97-122-207-41.hlrn.qwest.net QUIT :Ping timeout: 268 seconds < 1558287695 196599 :pikhq!~pikhq@174-16-244-90.hlrn.qwest.net JOIN :#esoteric < 1558292931 129167 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :I would want some stack switching support in JavaScript. (It can help with some things combining synchronous and asynchronous code, and has a few other uses.) > 1558293466 896980 PRIVMSG #esoteric :14[[07Talk:Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62383&oldid=62380 5* 03Helen 5* (+240) 10Added a notice at the top to not to delete things > 1558294098 948794 PRIVMSG #esoteric :14[[07Bitch14]]4 M10 02https://esolangs.org/w/index.php?diff=62384&oldid=62382 5* 03Helen 5* (-24) 10/* Unproven */ Removed [[99 bottles of beer]] as that has been done > 1558296399 748688 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=62385&oldid=62384 5* 03Salpynx 5* (-3) 10Correct memory system < 1558296677 558933 :AnotherTest!~turingcom@ptr-82l26zfnlgwh4k4ewtw.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 252 seconds > 1558298329 411024 PRIVMSG #esoteric :14[[07User talk:Sinthorion14]]4 N10 02https://esolangs.org/w/index.php?oldid=62386 5* 03Camto 5* (+60) 10Created page with "Hello it's me. ~~~~" < 1558298431 701748 :S_Gautam!uid286066@gateway/web/irccloud.com/x-motbiitbcwplluot JOIN :#esoteric < 1558299953 863374 :unlimiter!~unlimiter@41.143.84.193 JOIN :#esoteric > 1558300296 845365 PRIVMSG #esoteric :14[[07User:Cortex14]]4 10 02https://esolangs.org/w/index.php?diff=62387&oldid=60822 5* 03Cortex 5* (+0) 10/* Print "Hello, World!QHQQHQ" */ < 1558300674 131732 :unlimiter!~unlimiter@41.143.84.193 QUIT :Quit: WeeChat 2.4 < 1558302000 440686 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Bands With Other deprecated cards < 1558302071 845085 :john_metcalf!~digital_w@host86-139-60-58.range86-139.btcentralplus.com PART :#esoteric < 1558302563 696368 :zzo38!~zzo38@24-207-15-213.eastlink.ca PRIVMSG #esoteric :Then you will define "deprecated cards" properly (or just make Un-cards and don't care) < 1558303153 108750 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 258 seconds < 1558303169 436015 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1558303558 762870 :MDude!~MDude@97-127-150-204.cdrr.qwest.net QUIT :Ping timeout: 268 seconds < 1558303687 197041 :sleepnap!~thomas@97.112.25.67 JOIN :#esoteric < 1558305253 281848 :sleepnap!~thomas@97.112.25.67 QUIT :Ping timeout: 245 seconds < 1558307027 320863 :tromp!~tromp@2a02:a210:1585:3200:6459:b2fb:d850:59b8 QUIT :Remote host closed the connection < 1558308452 684770 :sleepnap!~thomas@97.112.25.67 JOIN :#esoteric < 1558308828 484891 :MDude!~MDude@74.5.156.180 JOIN :#esoteric < 1558309163 300137 :tromp!~tromp@2a02:a210:1585:3200:b0fb:86b9:f4cb:fce0 JOIN :#esoteric < 1558309448 299148 :tromp!~tromp@2a02:a210:1585:3200:b0fb:86b9:f4cb:fce0 QUIT :Ping timeout: 252 seconds