< 1520640449 117725 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1520640592 363301 :sleffy!~sleffy@38.98.46.150 JOIN :#esoteric < 1520640717 93354 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Ping timeout: 252 seconds < 1520643221 442980 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover QUIT :Remote host closed the connection < 1520643718 371701 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1520643969 351160 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Ping timeout: 248 seconds < 1520644160 405653 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1520644841 368615 :sleffy!~sleffy@38.98.46.150 QUIT :Ping timeout: 256 seconds < 1520646982 32164 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1520647233 5691 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Ping timeout: 240 seconds < 1520647505 369220 :sleffy!~sleffy@71-95-8-132.static.rvsd.ca.charter.com JOIN :#esoteric < 1520648673 455968 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 248 seconds < 1520648800 419870 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1520648883 531070 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1520649124 709416 :imode!~imode@unaffiliated/imode QUIT :Quit: WeeChat 2.0.1 < 1520649148 247122 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1520649900 608882 :wob_jonas!b03f1900@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.25.0 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1520649921 567071 :variable!~variable@freebsd/developer/variable QUIT :Quit: /dev/null is full < 1520649986 343277 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1520650132 540468 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Remote host closed the connection < 1520650387 88863 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :why are there no usable languages implemented using a queue? < 1520650399 632974 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :stacks have had it too good for too long. < 1520650688 500722 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :imode: usable as in not a tarpit? < 1520650706 449226 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :yup. < 1520650712 218708 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :something like a queue-based forth. < 1520650749 986040 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I think it's because queue-based languages tend to be inherently O(n) slower than other languages < 1520650762 241692 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :because once you put something into the queue you have to wait for it to get back to the front before you can use it < 1520650803 423032 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :well, you encounter some of the same problems with stacks via stack juggling. < 1520650823 344367 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yes < 1520650825 836026 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :and doing deep peeks into the queue is just a matter of shifting. < 1520650829 217877 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the thing about stacks, though, is that they're good for temporaries < 1520650843 466595 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that said, I've been considering the idea of using a /call/ queue rather than a call stack < 1520650851 934470 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :telnet into imode.tech, port 1338. < 1520650866 226588 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it tends to lead to a naturally concurrent language, as opposed to call stacks which tend to lead to sequential languages < 1520650866 302657 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :(the UI may be broken.) < 1520650914 460304 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :this is a prefix expression evaluator. < 1520650918 767623 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :using a queue. < 1520650927 382930 :sleffy!~sleffy@71-95-8-132.static.rvsd.ca.charter.com QUIT :Ping timeout: 256 seconds < 1520650943 661768 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :you can do simple things like `+ 1 + 2 3`. repeatedly hitting enter steps through the queue and performs operations. < 1520650968 319950 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :you can also do definitions. `define square * dup end`. < 1520651232 842362 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :how do definitions work recursively? < 1520651240 127828 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's obvious with a stack, less so with a queue < 1520651267 125535 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :if you do something like `square 4`, the queue turns into `4 * dup`. < 1520651311 962327 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :try defining something recursive! there's no conditionals (yet), so you can't define useful things.. < 1520651409 279472 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, not even recusion < 1520651411 854251 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :just one function calling another < 1520651464 818874 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :any definition gets its content enqueued. < 1520651516 422203 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :so if you have `define foo bar end` and `define bar foo end`, and you type `foo` and hit enter, it'll be replaced with `bar`. likewise, `bar` will be replaced with `foo`. it'll oscillate back and forth. < 1520651546 36043 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, I see < 1520651551 757466 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :this isn't really a queue-based language < 1520651561 428361 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's basically lambda calculus with a weird evaluation roder < 1520651563 193380 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*order < 1520651578 242755 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :as operations stay unevaluated unless all their arguments are fully evaluated < 1520651579 11447 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :it's definitely a queue-based language. everything is held in a queue. < 1520651619 682268 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1520651632 8999 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's basically a circular string on which rewrite rules run < 1520651659 434617 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :whereas lambda calculus can be seen as a string on which rewrite rules run < 1520651687 986909 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :it's definitely the first thing. I don't see how else you'd interpret "queue-based language" aside from... everything's in a queue. < 1520651713 600455 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :imode: I'd expect its nature as a queue to have some impact on the semantics of the language < 1520651725 442775 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :it does, though.. < 1520651729 604628 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you could literally evaluate this language in a different order other than circular scan and get the same result < 1520651759 890809 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :...you could evaluate any RPN language in a different order and get the same result, I don't see your point < 1520651785 621601 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :here, imagine evaluating the language like this: pick a random instance of an operator, see if it has the right number of operands to its right (wrapping round), if it does evaluate it, if it doesn't reroll < 1520651794 666342 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I believe that's 100% equivalent < 1520651806 244934 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :likewise, RPN (the notation) is not inherently tied to a stack (the data structure) < 1520651813 282179 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's a common way to implement it because it's efficient < 1520651830 499936 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :rrrrright, as opposed to rewrite rules. < 1520651845 573818 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but barring metaprogramming facilities like Underload has, you could implement it using rewrite rules or translation to imperative code or even a queue < 1520651881 450402 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :also, wait, you just described what my interpreter does. < 1520651898 730022 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Ping timeout: 268 seconds < 1520651910 4656 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :like, verbatim. try evaluating `+ + 1 2 + 3 4`. type it, then hit enter a couple times. < 1520651923 485013 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :imode: yes, what you have is basically a polish notation evaluator that uses a queue to determine the eval order < 1520651940 219436 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :yyyyyes. how else would you really define a queue-based language. < 1520651949 616419 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :in fact, how else would you really define a stack-based language? < 1520651998 366157 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :forths (and really any RPN languages) kind of imply a stack as an eval order. both of these things imply some kind of rewrite mechanism. again, I don't see your point. < 1520652026 723612 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :normally you say the language is inherently stack-based when you go beyond what you can do with just rewrite rules for defining the semantics < 1520652032 286508 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :although it's quite hard to find an operation that requires that < 1520652044 281234 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :roll comes to mind. < 1520652054 703509 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Underload works entirely with rewrite rules, for example (but tends to cause a "virtual stack" to come into being of operands collecting at the left hand side of the program) < 1520652065 733164 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :even roll can be defined as a multiple-in multiple-out operator < 1520652067 646038 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :I have `get` in my language. < 1520652127 737380 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :so by your logic, RPN langs aren't really stack-oriented languages because there aren't, by default ("canonically, we'll say), operations that explicitly rely on the idea of an underlying stack. < 1520652141 927918 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :what would you do to make them actually stack-oriented? < 1520652182 313593 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I think something like Befunge is inherently stack-oriented because the operands must, by the semantics of the language, be calculated (and thus enstacked) before the operators are even known < 1520652203 810628 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :so the idea of a hidden stack that's not reflected in the syntax? < 1520652233 896134 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :from another point of view, C is inherently stack-oriented, despite not mentioning a stack anywhere in the spec, because the way that functions work inherently requires a call stack to exist < 1520652251 4721 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :ahhh. I get where you're going now. < 1520652277 787326 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :I guess that's just a division of rewrite-based languages and things where rewrite rules don't really fit. < 1520652434 354701 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :so, a call queue... < 1520652485 931358 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :if you're in a procedure, and you call other procedures, do they just get added to the call queue and then called at return from said procedure? < 1520652499 187713 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :doesn't that just reduce to something like what I have? < 1520652557 129597 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :I mean imagine something built up like `foo(); bar(); baz(); return;`. when that return hits, `foo` is called, then `bar`, then `baz`. but `foo` can also enqueue stuff that will be executed after `baz`. < 1520652797 531600 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :ais523: any ideas other than that? those are the assumptions I had when I walked into this. < 1520652883 969944 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, my language with a call queue was trigger-based < 1520652902 310818 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :procedures ran automatically when variables gained particular values < 1520652916 621957 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but a procedure couldn't trigger twice if there was already a copy pending < 1520652922 50120 :imode!~imode@unaffiliated/imode PRIVMSG #esoteric :hm. < 1520654072 61866 :augur!~augur@noisebridge130.static.monkeybrains.net JOIN :#esoteric < 1520654350 67976 :augur!~augur@noisebridge130.static.monkeybrains.net QUIT :Ping timeout: 264 seconds < 1520655509 300884 :heroux!sandroco@gateway/shell/insomnia247/x-zobmcotqtltrlqgy QUIT :Ping timeout: 240 seconds < 1520655546 509505 :heroux!sandroco@gateway/shell/insomnia247/x-xjwcnsjhyilxtfvr JOIN :#esoteric < 1520655696 945538 :ais523!~ais523@unaffiliated/ais523 QUIT :Quit: quit < 1520655944 629135 :doesthiswork!~Adium@207.55.82.87 JOIN :#esoteric < 1520658570 103171 :augur!~augur@2600:380:c04c:b845:9938:db69:fddf:adc0 JOIN :#esoteric < 1520663223 13114 :xkapastel!uid17782@gateway/web/irccloud.com/x-dykaxnwkgwpzszpk QUIT :Quit: Connection closed for inactivity < 1520664961 116986 :augur!~augur@2600:380:c04c:b845:9938:db69:fddf:adc0 QUIT :Ping timeout: 252 seconds < 1520667585 844931 :doesthiswork!~Adium@207.55.82.87 QUIT :Quit: Leaving. < 1520668400 657569 :sleffy!~sleffy@71-95-8-132.static.rvsd.ca.charter.com JOIN :#esoteric < 1520669325 640657 :sleffy!~sleffy@71-95-8-132.static.rvsd.ca.charter.com QUIT :Ping timeout: 268 seconds < 1520669702 731339 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1520676229 241554 :imode!~imode@unaffiliated/imode QUIT :Ping timeout: 260 seconds > 1520678678 608377 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Brokenlagorithm 5* 10New user account > 1520679395 848774 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 M10 02https://esolangs.org/w/index.php?diff=54310&oldid=54305 5* 03Brokenlagorithm 5* (+106) 10 < 1520679534 180073 :AnotherTest!~turingcom@ptr-82l26zex1glfa1xy3qc.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1520690431 988398 :doesthiswork!~Adium@207.55.82.87 JOIN :#esoteric < 1520694178 871366 :HereToAnnoy!4a7b172b@gateway/web/freenode/ip.74.123.23.43 JOIN :#esoteric < 1520694874 916463 :HereToAnnoy!4a7b172b@gateway/web/freenode/ip.74.123.23.43 QUIT :Ping timeout: 260 seconds < 1520696009 406274 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1520696136 998263 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 245 seconds < 1520698306 19023 :doesthiswork!~Adium@207.55.82.87 QUIT :Ping timeout: 264 seconds < 1520699106 463245 :xkapastel!uid17782@gateway/web/irccloud.com/x-dmbxezhmbptdcnzu JOIN :#esoteric < 1520699173 721986 :incomprehensibly!sid3405@gateway/web/irccloud.com/x-juighvyufkautjoj QUIT :Read error: Connection reset by peer < 1520699195 48081 :incomprehensibly!sid3405@gateway/web/irccloud.com/x-enqoqohwsconqshe JOIN :#esoteric < 1520702445 423930 :imode!~imode@unaffiliated/imode JOIN :#esoteric < 1520704522 863373 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1520705874 705632 :ais523!~ais523@unaffiliated/ais523 QUIT :Quit: sorry for my connection < 1520705886 663320 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1520706067 381112 :danieljabailey!~danieljab@cpc75709-york6-2-0-cust725.7-1.cable.virginm.net JOIN :#esoteric < 1520706981 333564 :ais523!~ais523@unaffiliated/ais523 QUIT :Quit: sorry for my connection < 1520706994 257499 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1520709121 373110 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 248 seconds < 1520709241 717268 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric > 1520710572 509869 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Unfixable 5* 10New user account < 1520710893 401408 :Sgeo__!~Sgeo@ool-18b98dd9.dyn.optonline.net JOIN :#esoteric < 1520711039 336850 :Sgeo_!~Sgeo@ool-18b98dd9.dyn.optonline.net QUIT :Ping timeout: 256 seconds < 1520711685 999777 :variable!~variable@freebsd/developer/variable QUIT :Quit: Found 1 in /dev/zero < 1520711706 807630 :laerling!~laerling@unaffiliated/laerling JOIN :#esoteric < 1520711727 668486 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 268 seconds < 1520711841 900971 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1520712383 20108 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 276 seconds < 1520712465 666123 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1520713077 695041 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 240 seconds < 1520713204 889089 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1520714561 177937 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 JOIN :#esoteric < 1520714636 178731 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :On ebay, after submit the feedback form on an item I bought, the site just asked me "Do you want to sell another item?". I never sold anything on ebay. This is such a nonsequitur. < 1520715257 803759 :laerling!~laerling@unaffiliated/laerling QUIT :Ping timeout: 255 seconds < 1520715329 142981 :erkin!~erkin@unaffiliated/erkin JOIN :#esoteric < 1520715653 315632 :int-e!~noone@int-e.eu PRIVMSG #esoteric :wob_jonas: well, at least they didn't ask whethet you've stopped beating your wife... < 1520716144 383707 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :they're suggesting that your feedback is implausible and they don't buy it hth < 1520716198 72978 :sprocklem!~sprocklem@unaffiliated/sprocklem QUIT :Ping timeout: 264 seconds < 1520716456 239381 :augur!~augur@2600:380:8473:e781:95f7:16cc:9733:ec64 JOIN :#esoteric < 1520717529 18388 :grumble!~grumble@freenode/staff/grumble QUIT :Read error: Connection reset by peer < 1520717695 787099 :grumble!~grumble@freenode/staff/grumble JOIN :#esoteric < 1520718045 990975 :augur!~augur@2600:380:8473:e781:95f7:16cc:9733:ec64 QUIT :Remote host closed the connection < 1520718807 27482 :variable!~variable@freebsd/developer/variable JOIN :#esoteric < 1520719530 833889 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :? amnesia < 1520719533 63995 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? forget < 1520719534 311571 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :forget? ¯\(°​_o)/¯ < 1520719534 366258 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? memory < 1520719535 436261 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :memory? ¯\(°​_o)/¯ < 1520719537 554872 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? amnesia < 1520719539 351916 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :amnesia? ¯\(°​_o)/¯ < 1520719555 435739 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? recall < 1520719556 465697 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :recall? ¯\(°​_o)/¯ < 1520719556 731224 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? remember < 1520719557 767433 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :remember? ¯\(°​_o)/¯ < 1520719570 455589 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? learn < 1520719571 524570 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :​`learn creates a wisdom entry and tries to guess which word is the key. Syntax (case insensitive): `learn [a|an|the] [s][punctuation] [...] < 1520719571 751240 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? study < 1520719573 167824 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :A study is mostly useless until backed up by further studies. See studies. < 1520719592 755664 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? studies < 1520719594 15435 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Studies show lots of things. Nobody reads them, though. Also: this study contradicts this other study. These two studies agree, but were secretly paid for by the same company. < 1520719764 37819 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? mario < 1520719765 208980 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Mario is a classic PSPACE-complete problem invented by Nintendo. < 1520719765 872974 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 PRIVMSG #esoteric :`? game < 1520719767 25367 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :game? ¯\(°​_o)/¯ < 1520719830 375726 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`5 w < 1520719835 126658 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :1/3:false//false is a very old stack-based language. For an authentic experience, run it on an Amiga. It's also not true. \ fsm//An FSM is a state machine with noodly appendages. \ blæg//Blæg is a color that cannot exist under the current understanding of physics. It is used on the #esoteric flag, along with ultraviolet and whatever is conv < 1520719842 282572 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`n < 1520719843 30687 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :2/3:enient. It is a nullary color, meaning that it can be mixed with itself to produce the primary colors. \ norway//Norway is the suburb capital of Sweden. It's where the Nobel Peace Prize is announced. It's a warm, dry place, at least compared to Québec. \ remavas//Remavas is a revolution in human biology. He's cofriends with oerjan. He's ap < 1520719844 489970 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`n < 1520719845 817080 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :3/3:parently from Frankfurt, Germany, but he's actually from Mars. His typing skills are so incredibly bad, some say he writes in a different orthography designed for a different language. < 1520720781 565116 :erkin!~erkin@unaffiliated/erkin QUIT :Quit: Ouch! Got SIGIRL, dying... < 1520721077 67197 :sleffy!~sleffy@38.98.46.150 JOIN :#esoteric < 1520721811 222421 :sprocklem!~sprocklem@unaffiliated/sprocklem JOIN :#esoteric < 1520721837 232598 :ais523!~ais523@unaffiliated/ais523 QUIT :Remote host closed the connection < 1520721897 980905 :digitalcold!~redacted@unaffiliated/digitalcold QUIT :Ping timeout: 240 seconds < 1520721906 238684 :digitalcold!~redacted@unaffiliated/digitalcold JOIN :#esoteric < 1520722561 888258 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? tanebventions: maths < 1520722563 198 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Mathematical tanebventions include D-modules, Chu spaces, the torus, Stephen Wolfram, Klein bottles, string diagrams, the reals, Lambek's lemma, Curry's paradox, Stone spaces, algebraic geometry, locales, and histograms. < 1520722593 443881 :int-e!~noone@int-e.eu PRIVMSG #esoteric :`? histogram < 1520722596 398403 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Histograms are diagrams showing histamine levels. Taneb invented them. < 1520722601 667714 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`slwd tanebventions: maths//s/ms,/& linear logic,/ < 1520722602 712768 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :Roswbud! < 1520722605 615722 :int-e!~noone@int-e.eu PRIVMSG #esoteric :mmm < 1520722609 393363 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`slwd tanebventions: math//s/ms,/& linear logic,/ < 1520722611 450638 :HackEgo!~HackEgo@162.248.166.242 PRIVMSG #esoteric :tanebventions: math//Mathematical tanebventions include D-modules, Chu spaces, the torus, Stephen Wolfram, Klein bottles, string diagrams, linear logic, the reals, Lambek's lemma, Curry's paradox, Stone spaces, algebraic geometry, locales, and histograms. < 1520722636 186618 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Oh, I guess Taneb dually invented antihistograms. < 1520722646 349533 :int-e!~noone@int-e.eu PRIVMSG #esoteric :. o O ( histograms are diagrams often found in ancient caves? ) < 1520722668 459764 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Aren't those prehistograms? < 1520722745 783629 :int-e!~noone@int-e.eu PRIVMSG #esoteric :perhaps < 1520722766 258525 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :perhapstograms < 1520723407 559991 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :https://twitter.com/stevecheckoway/status/972540498282975234 < 1520723464 591352 :wob_jonas!b03f1829@gateway/web/cgi-irc/kiwiirc.com/ip.176.63.24.41 QUIT :Quit: http://www.kiwiirc.com/ - A hand crafted IRC client < 1520725100 182000 :AnotherTest!~turingcom@ptr-82l26zex1glfa1xy3qc.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 256 seconds