< 1551917753 536226 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :ais523: yesterday orin mentioned that he tried to do a git rebase, but git hung in some infinite loop or took too long. we don't know what he did wrong. < 1551917786 670068 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :using a version system where rebases are sometimes required :-P < 1551917875 876937 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :ais523: cherry-picks for rebases are useful IMO in a distributed version control system, because they allow me to use the vcs myself in any way I want in a private branch, and later clean up and publish it the way the leader of the project wants < 1551917897 896209 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :if I can't do that, I have to end up using two repositories of potentially two different vcses in some ugly way < 1551917924 767421 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, in Thicket (the VCS I'm planning, it's a more-practical version of Scapegoat), eveything is automatically rebased as far back in history as possible < 1551917927 537568 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :I don't do actual rebases, because changing branches that way is confusing to me, I simply create a branch with a new name < 1551917938 940323 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so rebasing isn't a meaningful operation, as it would be a no-op < 1551917971 806708 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :ais523: um, but sometimes there are conflicts resolved manually < 1551917985 91226 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :so I can want to rebase a branch mostly automatically, but resolve some conflicts < 1551917997 190093 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :whether it's conflicts the vcs can detect or semantic ones that it can't detect < 1551918016 972418 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you can add conflict resolutions manually if required < 1551918031 609749 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :heck, if you rebase everything as far as possible, it will mostly be semantic conflicts < 1551918049 611369 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :a good VCS would be able to detect semantic conflicts too, I think < 1551918062 580862 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :I don't really understand how "rebase as far as possible" means though < 1551918102 834878 :moony__!~moony@hellomouse/dev/moony PRIVMSG #esoteric :ais523, well if it's moved as far back as possible < 1551918119 122831 :moony__!~moony@hellomouse/dev/moony PRIVMSG #esoteric :what happens if the rebase gets moved so far back the text merges fine, but it doesnt compile < 1551918124 901246 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: so in Git, normally each commit is the parent of the one before < 1551918142 991446 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but that's not normally what you actually want, because it adds a lot of false dependencies < 1551918156 493816 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so ideally a VCS should parent each commit to the most recent commit that's actually needed for the new commit to work < 1551918164 230157 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :what? < 1551918175 393592 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :"the each commit is the parent of the one before" -- isn't that time travel? < 1551918209 851261 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :err, each's commits parent is the one before < 1551918220 432136 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(although Git totally allows commits to be parented out of order) < 1551918240 727191 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :yeah, I know. it keeps the date when you cherry-pick a commit < 1551918263 179554 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :the problem is that you can't tell when anything was committed < 1551918265 911562 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :anyway < 1551918276 369243 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :I like having commits have a parent as late as possible < 1551918285 885163 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :because then you have intermediate versions that are known to work and tested < 1551918291 11422 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :well, as much as you actually test them at least < 1551918303 118081 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :if you rebase stuff back, it gets impossible to get known working states, or even suspected working states < 1551918303 256721 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: see, I think git's big mistake here is confusing a patch/diff, and a snapshot/version < 1551918304 717786 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551918308 113952 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the two concepts should be separate < 1551918319 159540 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you can record the known working states, but you should do so separately, rather than tying them to individual diffs < 1551918401 131885 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :right, but I like how the snapshot is the important concept, and I record snapshots primarily, as I do in svn < 1551918428 101472 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't like that because it makes it impossible to take parts of a repository out of order < 1551918446 55763 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you cherry-pick from a repo, you can't subsequently merge that repo, without git attempting to apply some of the changes twice < 1551918448 500447 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :and the diffs between a snapshot and its parents come in only in order to not apply any diff twice when you merge two branches that share some diffs < 1551918465 91819 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(git has a workaround for this, detecting duplicated patches and not applying them, but it's not a general-purpose one) < 1551918466 890144 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :you can't in git, but you can in svn < 1551918483 936628 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :because svn (starting from 1.7 or something) records which diffs have been merged on each file < 1551918487 325055 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 240 seconds < 1551918488 885838 :Lord_of_Life_!~Lord@unaffiliated/lord-of-life/x-0885362 NICK :Lord_of_Life < 1551918496 490045 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :b_jonas: that's the correct way to do it < 1551918503 88745 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :yes < 1551918510 451994 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :so in that respects, diffs are needed < 1551918551 747216 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :and they can be cherry-picked backwards or forwards, and if used correctly (which is sometimes hard), the individual diffs will keep their identity < 1551918590 57017 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :sadly this is what's hard to make work in the hypothetical extension I've been thinking, where I try to make a distributed vcs layer over svn < 1551918615 79777 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :because then you can have the same diff from a private branch come into the public repo as two separate identities < 1551918687 666801 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :even without a distributed vcs, the svn system isn't perfect, it probably can be improved < 1551918715 289973 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :and yes, maybe it should be improved in a direction where the diffs are more important < 1551918722 795104 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :which might be what hg is trying to do, I don't really understand < 1551918744 87339 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :hg is crazy because it apparently tries to have multiple paradigms, and it's not even clear to me if that's only for historical reasons < 1551919454 140648 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :I wonder who'll become the new high priest of The Dark One when Redcloak is killed in the seventh book of OOTS. < 1551919646 203159 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Jirix, perhaps? but I doubt Redcloak will die permanently, given that the plot seems to require a 17th-level cleric of the Dark One alive < 1551919651 705007 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's possible that he dies and gets resurrected < 1551920277 123142 :nfd9001!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net QUIT :Ping timeout: 245 seconds < 1551920580 603 :nfd9001!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net JOIN :#esoteric < 1551920977 708329 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :ais523: Jirix is way over in Gobbotopia, though I guess Xykon can teleport and is interested in having a high priest of TDO < 1551921074 799702 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :yeah, I guess you're right, they'll have to actually cast a 9th level spell, so it's not so easy to just get a replacement < 1551921291 771428 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu PRIVMSG #esoteric :but I'm not sure there's a deadline on that. as long as they can even get TDO to talk to the other gods, and the new goblin leader not want to use the Dark One's original plan, the gods could wait < 1551921342 971687 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1551921778 176749 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : Outlandish GG theory: this is Violetta <-- that is indeed pretty outlandish < 1551921886 783492 :b_jonas!~x@catv-176-63-24-121.catv.broadband.hu QUIT :Quit: leaving < 1551921987 641169 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : I think nominating your own language to be featured is rather poor form <-- i'm not sure A is Helen. maybe ais523 could check? (or already did.) < 1551922038 937698 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION pretty much assumes he'll regret not finishing the logs first < 1551922214 537495 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : and it's my fault <-- on the bright side, sounds like you could make a nerdy children's song out of it < 1551922276 944166 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :. o O ( nerdery rhyme? ) < 1551922351 424658 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :apparently someon made a book of those < 1551922353 894351 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*+e < 1551922478 958821 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric : heh, oerjan was right in 2012 <-- unlike these days, i mean, about what? < 1551922500 990275 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(GG? in which case i may have forgotten exactly what i said.) < 1551923382 135973 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: I don't think A is Helen, but if you think checking is a good idea, I'll check < 1551923394 981953 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :should I? < 1551923454 141477 :Sgeo!~Sgeo@ool-18b98dd9.dyn.optonline.net PRIVMSG #esoteric :ais523, wait, how do we know that Redcloak will die? < 1551923454 526813 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :fwiw, I'd be reluctant to feature any language with an attempted TCness proof by A unless someone else had first corrected all the mistakes in it :-D < 1551923483 663330 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Sgeo: we don't, b_jonas seems to think he will for some reason, I don't think there's much evidence for that though < 1551923757 871040 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i was wondering if b_jonas was spoilering < 1551923793 889624 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :he does seem to have a habit of presenting theories of what will happen in fiction as fact < 1551923820 28221 :adu_!~ajr@pool-70-110-26-251.washdc.fios.verizon.net JOIN :#esoteric < 1551923841 71509 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ais523: ok if you don't think so. i didn't have a strong impression. < 1551923869 136917 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :all agree on the TC proof, although i may be too lazy to do anything like that < 1551923879 950290 :LKoen_!~LKoen@2a01cb0407597a000cc9db60f4eacd0a.ipv6.abo.wanadoo.fr QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1551923942 836433 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(i'd have to like read it...) < 1551923974 94553 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :also i want redcloak to have a happy ending :( < 1551924015 823265 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i suppose that's not entirely in conflict with dying in that universe < 1551924090 160060 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I tried to read it, and came out with no more understanding than when I'd started < 1551924103 974416 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i am not surprised < 1551924196 68249 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I like the way the proof starts by saying the language probably isn't TC < 1551924222 908773 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm, maybe it isn't meant to be a TC proof? I think an earlier revision said it was but A may have changed eir mind? < 1551924253 914915 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :This picture is TG: https://cdn.discordapp.com/attachments/465999263059673088/553008336220717066/cmj2.jpg < 1551924343 862386 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :fwiw, this language looks fairly easy to write a TCness proof or disproof for < 1551924375 142588 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :shachaf: I was browsing a maths journal at the university library's "new issues" desk once, and it had an indecipherable diagram right after the ToC, with the caption: "Fig. 1: A fascinating picture." < 1551924401 749762 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Good thing this diagram makes perfect sense. < 1551924423 844009 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :AFAICT, every instruction it has can be implemented in 1-bit-wrapping BF, and all the instructions of 1-bit-wrapping BF exist in it, except that a) it has instructions to zero everything to the right of the tape and b) the only conditional checks whether everything to the left of the tape is 0 < 1551924442 900496 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that probably means the language is a PDA, unless there's some way to sneak data storage into it that I've missed < 1551924449 763971 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I'm sure the fascinating picture made sense as well, it just needed a little more context than that one. < 1551924609 412746 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :actually, hmm, you can do things like left-shift the accumulator by its own bitwise complement, which might give a method of storage < 1551924633 900899 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also, the interpreter only has 32 bits of accumulator and 32 bits of storage, which is obviously sub-TC, but I'm guessing that's just an interpreter issue < 1551924667 688289 :adu_!~ajr@pool-70-110-26-251.washdc.fios.verizon.net QUIT :Quit: adu_ < 1551924700 145857 :Blacksilver!~Blacksilv@198-91-139-26.cpe.distributel.net JOIN :#esoteric < 1551924733 119709 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :err, 64, not 32 < 1551924735 874050 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :still < 1551924750 932670 :Essadon!~Essadon@81-225-32-185-no249.tbcn.telia.com QUIT :Quit: Qutting < 1551924758 193815 :ais523!~ais523@unaffiliated/ais523 QUIT :Quit: quit < 1551931326 236463 :Blacksilver!~Blacksilv@198-91-139-26.cpe.distributel.net QUIT :Ping timeout: 252 seconds < 1551931535 693779 :xkapastel!uid17782@gateway/web/irccloud.com/x-lwoceckcuzvlakmb QUIT :Quit: Connection closed for inactivity < 1551931620 788289 :FreeFull!~freefull@defocus/sausage-lover QUIT : < 1551932458 153742 :danieljabailey!~danieljab@cpc75709-york6-2-0-cust725.7-1.cable.virginm.net JOIN :#esoteric < 1551932792 68679 :bobby!~Bob@76.202.115.164 QUIT :*.net *.split < 1551932792 613768 :zzo38!~zzo38@24-207-15-213.eastlink.ca QUIT :*.net *.split < 1551932792 906787 :izabera!~izabera@unaffiliated/izabera QUIT :*.net *.split < 1551933002 13906 :Vorpal!~Vorpal@unaffiliated/vorpal QUIT :Ping timeout: 255 seconds < 1551933095 286021 :Vorpal!~Vorpal@c83-254-216-72.bredband.comhem.se JOIN :#esoteric < 1551933095 369140 :Vorpal!~Vorpal@c83-254-216-72.bredband.comhem.se QUIT :Changing host < 1551933095 369198 :Vorpal!~Vorpal@unaffiliated/vorpal JOIN :#esoteric < 1551934417 334676 :bobby!~Bob@76.202.115.164 JOIN :#esoteric < 1551934417 334731 :zzo38!~zzo38@24-207-15-213.eastlink.ca JOIN :#esoteric < 1551934417 417005 :izabera!~izabera@unaffiliated/izabera JOIN :#esoteric < 1551937273 78825 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :https://imgur.com/qUxvk2I < 1551937297 430339 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :Stellaris just... naturally seems to cause stupid borders now < 1551937472 627298 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :I think i'm finally getting the hang of the new new stellaris > 1551940573 580821 PRIVMSG #esoteric :14[[07User talk:Helen14]]4 M10 02https://esolangs.org/w/index.php?diff=60311&oldid=60301 5* 03Oerjan 5* (+38) 10unsigned < 1551943825 551838 :nfd!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net JOIN :#esoteric < 1551944017 995490 :nfd9001!~nfd9001@c-73-157-90-101.hsd1.wa.comcast.net QUIT :Ping timeout: 255 seconds < 1551946130 275008 :arseniiv!~arseniiv@136.169.200.33 JOIN :#esoteric < 1551949838 138458 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :oerjan: ah, I assumed because A's been editing the page for Bitch a lot < 1551949956 803011 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :yeah < 1551950284 548290 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Aren't they the same person? < 1551950850 562229 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oerjan: 2012: https://en.wikipedia.org/wiki/Talk:Malbolge#Referenced_in_popular_culture < 1551950855 447839 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :shachaf: Helen seems more competent to me < 1551950937 278108 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :int-e: you mean someone admitted to copying it from wikipedia? < 1551950949 61537 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(I picked up a DVD box a couple of days ago... it looks to me like some poor soul was tasked with manually copying the hello world program (no longer on the english wikipedia page either; it's been replaced there by a shorter one...) on a typewriter. First change is replacing a ~ by a -; later on there are more typos, and it got cut off at the end. < 1551950982 492599 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :aha < 1551950983 241990 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oerjan: No, but it's clearly the same program that was on wikipedia at the time, modulo typos and cutoff. Just as you wrote. < 1551951046 900427 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :So... why was there a malboge program in Elementary < 1551951094 568072 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Because Holmes of course recognizes the programming language and then sends it off to an expert who can actually read it. They come back with some formula ("algorithm"). < 1551951139 295277 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :I see < 1551951269 267472 :AnotherTest!~turingcom@ptr-82l26zcehbybvusuxld.18120a2.ip6.access.telenet.be JOIN :#esoteric < 1551951744 544119 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION was secretly hoping it was about Girl Genius and that he'd somehow predicted what's currently happening :P < 1551953453 255528 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oerjan: you may have but I'm usually not remembering much of what happened 6-7 years ago :) < 1551953520 535992 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hey i didn't i knew _what_ i had predicted :P < 1551953527 210514 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :something with dimensions, i presume < 1551953532 939855 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*didn't say < 1551953613 212658 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :int-e: you say that now, but when i read "oerjan was right in 2012" it sounded like you expected me to :) < 1551953620 515180 :int-e!~noone@int-e.eu PRIVMSG #esoteric :sure... this is looking increasingly like time travel may actually be going to have happened real soon now, meantime, years ago. < 1551953642 982368 :int-e!~noone@int-e.eu PRIVMSG #esoteric :oerjan: Yeah it was cruel bait. I admit it. I'm a bad person. < 1551953670 61759 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION swats int-e -----### < 1551953750 11221 :int-e!~noone@int-e.eu PRIVMSG #esoteric :(I don't really know when we "heard" all those stories about sightings of what's likely Lucrecia traveling through time.) < 1551953786 818447 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :albia said when she met lucrezia way back, her mind was shattered. i wonder if she had too much contact with these madness-inducing dimensions < 1551953803 449445 :int-e!~noone@int-e.eu PRIVMSG #esoteric :But we finally meet somebody who's actually confused about time, so that's progress. What's up with Prede[sp?]'s Lantern though? < 1551953820 220370 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :oh right the lantern < 1551953827 609302 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*prende < 1551953835 585239 :int-e!~noone@int-e.eu PRIVMSG #esoteric :thanks < 1551953887 962106 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :confused and confusing < 1551953957 341489 :int-e!~noone@int-e.eu PRIVMSG #esoteric :time travel and foreign languages will do that to you < 1551954031 147084 :int-e!~noone@int-e.eu PRIVMSG #esoteric :("time travel" may not be happening; the idea of beings that span a large interval of time *and* space isn't exactly new) < 1551954138 578912 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i probably should start approaching bed -> < 1551954147 222537 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Nite < 1551954164 651112 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :can i use 2/pi * atan(x) as my activator function? < 1551954167 973891 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Hmmm. xkcd makes me confused about left and right... are we staring at a mirror? are we looking at the person from behind? is it a mirror image of a photograph taken from the front? < 1551954177 663647 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :izabera: I'm not going to stop you < 1551954187 367228 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :yeah but is that a reasonable choice? < 1551954208 227293 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :int-e: I think we're looking at the person from the front? < 1551954220 389976 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :The blue rectangle is their right. < 1551954257 818647 :int-e!~noone@int-e.eu PRIVMSG #esoteric :shachaf: oh, I think I misattributed an arrow tip. :) < 1551954273 231142 :Taneb!~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0 PRIVMSG #esoteric :izabera: Wikipedia suggests that atan on its own works < 1551954293 567282 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Puzzle: Why do mirrors flip things left-right and not up-down? < 1551954303 897365 :int-e!~noone@int-e.eu PRIVMSG #esoteric :shachaf: yeah I love that one < 1551954308 90990 :izabera!~izabera@unaffiliated/izabera PRIVMSG #esoteric :sure, i just wanted to scale it between -1 and 1 < 1551954355 214422 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :is there a website to determine if my unicode implementation supports X and Y features? e.g. the new heiroglyphics features < 1551954383 155882 :int-e!~noone@int-e.eu PRIVMSG #esoteric :shachaf: thinking about it, how about using ceiling mirrors as a hint? :P < 1551954389 567514 :rain1!~My_user_n@unaffiliated/rain1 PRIVMSG #esoteric :Hard mode puzzle: How do i free the creatures from inside the mirror realm? < 1551954409 774862 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :It sounds like a silly puzzle at first -- the obvious answer is that mirrors flip front-back -- but it took me surprisingly long to come up with an answer I was happy with. < 1551954458 71704 :int-e!~noone@int-e.eu PRIVMSG #esoteric :shachaf: I agree, that's the easy bit. You need psychology for explaining the idea that mirrors swap left and right. < 1551954482 548506 :int-e!~noone@int-e.eu PRIVMSG #esoteric :Or some silly geometry (orientation...) < 1551954578 988333 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Here's the visualization I was happy with: < 1551954622 648917 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Gnxr n genafcnerag cvrpr bs tynff naq jevgr fbzr grkg ba vg. Abj ubyq vg va sebag bs n zveebe. Obgu gur tynff grkg naq gur zveebe grkg ner ernqnoyr naq hasyvccrq. Abj cnvag bar fvqr bs gur tynff bcndhr -- lbh pna'g frr vg va gur zveebe nalzber. Gb frr vg va gur zveebe, lbh arrq gb ebgngr vg 180°, naq lbh pna pubbfr jurgure gb ebgngr vg yrsg-evtug be hc-qbja. < 1551954653 28003 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :(If you haven't seen this puzzle before you should think about it first! It's TG.) < 1551955043 170856 :int-e!~noone@int-e.eu PRIVMSG #esoteric :I prefer the explanation that jura lbh frr lbhefrys va gur zveebe, naq lbh envfr lbhe yrsg unaq, gur zveebe vzntr envfrf gurve evtug unaq. Ol pubbfvat n crefba sbe ersrerapr, fjnccvat hc naq qbja orpbzrf n evqvphybhf bcgvba; fjnccvat yrsg naq evtug (ol n 180 qrterr ebgngvba-ersyrpgvbaf ner uneq gb cresbez ba culfvpny bowrpgf) vf gur angheny pubvpr jura gelvat gb gnxr gur zveebe vzntr'f cynpr. < 1551955901 834691 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Right, because you have horizontal symmetry. < 1551956526 71624 :xkapastel!uid17782@gateway/web/irccloud.com/x-flhvqtgwskyqzvcs JOIN :#esoteric > 1551958024 63843 PRIVMSG #esoteric :14[[07User talk:Helen14]]4 10 02https://esolangs.org/w/index.php?diff=60312&oldid=60311 5* 03A 5* (-164) 10No reply! Revert edit. > 1551958097 345373 PRIVMSG #esoteric :14[[07Bitch14]]4 10 02https://esolangs.org/w/index.php?diff=60313&oldid=60302 5* 03A 5* (-612) 10Non-implemented algorithms will be useless. < 1551959667 412440 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Ping timeout: 240 seconds < 1551961185 398828 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric < 1551961652 226136 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 QUIT :Ping timeout: 245 seconds < 1551961819 336621 :Lord_of_Life!~Lord@unaffiliated/lord-of-life/x-0885362 JOIN :#esoteric < 1551962751 727305 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 JOIN :#esoteric < 1551962796 431843 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :Sgeo: it's possible that he won't die. I'm only sure that Xykon has to be destroyed; whether Redcloak dies is still open. < 1551962928 126161 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :But it's still worth to know who's next in succession, because Durkon has a mission that requires a high-level priest of the Dark One with knowledge of the Snarl, which pretty much means only the high priest with the Mantle because otherwise it's kept a secret, < 1551962963 697752 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :so if the mission proves to be impossible with Redcloak, the order may be forced to kill or incapacitate Redcloak in hopes that the next high priest will be more reasonable. < 1551963016 950245 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :However, it's also quite possible that Redcloak will simply go down in the fight to protect Xykon and the plan, or die when he takes revenge on the Order for destroying Xykon. < 1551963105 145744 :danieljabailey!~danieljab@cpc75709-york6-2-0-cust725.7-1.cable.virginm.net QUIT :Ping timeout: 252 seconds < 1551963185 277216 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :" it looks to me like some poor soul was tasked with manually copying the [Malbolge] hello world program" => < 1551963260 135763 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :the hungarian translations of the K&R book (ANSI edition) have lots of typos like that. they were published before the digital typesetting age, so it was typeset by a professional typesetter who was very diligent, but apparently doesn't know much about programming. < 1551963521 606537 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :" Puzzle: Why do mirrors flip things left-right and not up-down?" => I don't think they actually do that. The seem to flip things or not randomly in any direction. At least they always manage to confuse me whenever I try to do anything by observing my body through a mirror, \ < 1551963541 82882 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :it often takes multiple failed tries to figure out what direction something is in reality even if I can see it in the mirror. < 1551963647 335029 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :That mirrors flip only left and right seems like the conventional wisdom that people repeat because they read it in books, without actually paying attention and experimenting with an actual mirror. < 1551964900 641927 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Remote host closed the connection < 1551966944 327658 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551967228 268397 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 245 seconds < 1551968967 85954 :xkapastel!uid17782@gateway/web/irccloud.com/x-flhvqtgwskyqzvcs QUIT :Quit: Connection closed for inactivity < 1551970534 873911 :Melvar!~melvar@dslb-088-066-199-031.088.066.pools.vodafone-ip.de QUIT :Ping timeout: 250 seconds < 1551970560 108589 :Melvar!~melvar@dslb-088-066-199-031.088.066.pools.vodafone-ip.de JOIN :#esoteric < 1551970728 543875 :fmease!fmeasematr@gateway/shell/matrix.org/x-moeujmjkwbsmgvya JOIN :#esoteric < 1551970982 549385 :fmease!fmeasematr@gateway/shell/matrix.org/x-moeujmjkwbsmgvya PART #esoteric :"User left" < 1551971047 997691 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :ais523: in M:tG, apparently there are over a dozen rares with an ability similar to "you may spend mana as though it were mana of any type cast that spell". Half of them say "any type" and half "any color", which was a nonexistant distinction until OGW. < 1551971167 346703 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :But the distinction is preserved from whatever was in fashion when the card was first printed, to keep the oracle text more guessable. That much makes sense. But then why didn't they make False Dawn work like its odd printed text with respect to devotion/chroma? < 1551971303 564720 :wob_jonas!25bf3cd1@gateway/web/cgi-irc/kiwiirc.com/ip.37.191.60.209 PRIVMSG #esoteric :`? Dead Man's Chest < 1551971305 54931 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :Dead Man's Chest? ¯\(°​_o)/¯ < 1551972756 362708 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric < 1551972767 295354 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Ping timeout: 240 seconds < 1551972773 658905 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net NICK :MDude < 1551973167 220913 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric < 1551973265 793059 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Ping timeout: 268 seconds < 1551973271 944418 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net NICK :MDude < 1551973274 256138 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551973540 217003 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net QUIT :Ping timeout: 246 seconds < 1551973557 383520 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric < 1551973645 222436 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Ping timeout: 246 seconds < 1551973652 429006 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net NICK :MDude < 1551973788 119188 :orby_work!32e0e343@gateway/web/freenode/ip.50.224.227.67 JOIN :#esoteric < 1551973793 27213 :orby_work!32e0e343@gateway/web/freenode/ip.50.224.227.67 PRIVMSG #esoteric :greetings all < 1551973904 323071 :olsner!~salparot@c193-14-197-104.bredband.comhem.se JOIN :#esoteric < 1551973941 520880 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net JOIN :#esoteric < 1551974044 509330 :MDude!~MDude@c-73-187-225-46.hsd1.pa.comcast.net QUIT :Ping timeout: 250 seconds < 1551974046 766003 :MDead!~MDude@c-73-187-225-46.hsd1.pa.comcast.net NICK :MDude < 1551974336 14549 :olsner!~salparot@c193-14-197-104.bredband.comhem.se QUIT :Quit: ZNC - http://znc.in < 1551974686 360444 :olsner!~salparot@c193-14-197-104.bredband.comhem.se JOIN :#esoteric < 1551977299 385324 :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 < 1551978728 678913 :tromp!~tromp@ip-217-103-3-94.ip.prioritytelecom.net JOIN :#esoteric < 1551979314 330415 :LKoen!~LKoen@2a01cb0407597a00d0656d98eceb4767.ipv6.abo.wanadoo.fr JOIN :#esoteric > 1551981487 409371 PRIVMSG #esoteric :14[[07Zahlen14]]4 10 02https://esolangs.org/w/index.php?diff=60314&oldid=60306 5* 03Orby 5* (+2959) 10Introducing unary operators. > 1551981591 676537 PRIVMSG #esoteric :14[[07Zahlen14]]4 M10 02https://esolangs.org/w/index.php?diff=60315&oldid=60314 5* 03Orby 5* (+16) 10/* Types */ fixing typo > 1551981692 904999 PRIVMSG #esoteric :14[[07Zahlen14]]4 M10 02https://esolangs.org/w/index.php?diff=60316&oldid=60315 5* 03Orby 5* (+0) 10/* Factor */ < 1551982731 392996 :LKoen!~LKoen@2a01cb0407597a00d0656d98eceb4767.ipv6.abo.wanadoo.fr QUIT :Remote host closed the connection > 1551983553 578872 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Pidot 5* 10New user account > 1551983784 625880 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=60317&oldid=60280 5* 03Pidot 5* (+186) 10 < 1551984023 327170 :Phantom_Hoover!~phantomho@cpc108439-cowc8-2-0-cust785.14-2.cable.virginm.net JOIN :#esoteric < 1551984023 409101 :Phantom_Hoover!~phantomho@cpc108439-cowc8-2-0-cust785.14-2.cable.virginm.net QUIT :Changing host < 1551984023 409147 :Phantom_Hoover!~phantomho@unaffiliated/phantom-hoover JOIN :#esoteric > 1551984359 438403 PRIVMSG #esoteric :14[[07Zahlen14]]4 10 02https://esolangs.org/w/index.php?diff=60318&oldid=60316 5* 03Orby 5* (-96) 10/* Length */ < 1551984467 162249 :ski!~ski@remote11.chalmers.se PRIVMSG #esoteric :shachaf : hm, what was similar to the mode thing i was talking about ? something about linear something ? < 1551984520 487287 :ski!~ski@remote11.chalmers.se PRIVMSG #esoteric :also, which linear Prolog thing ? Lolli ? Lygon ? Forum ? something else ? < 1551985134 338711 :LKoen!~LKoen@lfbn-idf2-1-273-77.w82-123.abo.wanadoo.fr JOIN :#esoteric < 1551985303 806033 :LKoen!~LKoen@lfbn-idf2-1-273-77.w82-123.abo.wanadoo.fr QUIT :Remote host closed the connection < 1551985310 23398 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :ski: I don't remember, what was the context? < 1551985311 632198 :LKoen!~LKoen@lfbn-idf2-1-273-77.w82-123.abo.wanadoo.fr JOIN :#esoteric > 1551985324 908473 PRIVMSG #esoteric :14[[07Zahlen14]]4 10 02https://esolangs.org/w/index.php?diff=60319&oldid=60318 5* 03Orby 5* (+1034) 10Adding miscellaneous operators > 1551985562 531240 PRIVMSG #esoteric :14[[07Zahlen14]]4 M10 02https://esolangs.org/w/index.php?diff=60320&oldid=60319 5* 03Orby 5* (-80) 10/* Concatenate */ < 1551985579 448011 :b_jonas!~x@catv-176-63-25-71.catv.broadband.hu JOIN :#esoteric < 1551986160 476125 :ski!~ski@remote11.chalmers.se PRIVMSG #esoteric :i dunno. you mentioned it a little over a month ago (on this channel) < 1551986319 770700 :ski!~ski@remote11.chalmers.se PRIVMSG #esoteric :(" ski: Seems similar to the mode thing you were talking about the other day, though I think that's not linear.", then after two days " ski: What do you think of this linear Prolog thing?") < 1551986353 350079 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Oh. < 1551987415 956923 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :ski: Right, I think it's something weaker than preadditive. < 1551987434 551347 :ski!~ski@remote11.chalmers.se PRIVMSG #esoteric :what is ? < 1551987476 703810 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :Whatever this category is, if there is one. < 1551987508 462363 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :It's like how Rel is a free module over a boolean semiring, or something like that. > 1551987783 263917 PRIVMSG #esoteric :14[[07Zahlen14]]4 10 02https://esolangs.org/w/index.php?diff=60321&oldid=60320 5* 03Orby 5* (+290) 10Cleaning up. > 1551987818 375688 PRIVMSG #esoteric :14[[07Zahlen14]]4 M10 02https://esolangs.org/w/index.php?diff=60322&oldid=60321 5* 03Orby 5* (-76) 10/* Concatenate */ < 1551988440 799173 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :is it unprofessional to call my new git branch "oren-hates-git" < 1551988452 541651 :S_Gautam!uid286066@gateway/web/irccloud.com/x-oauynggpihbiwvci JOIN :#esoteric < 1551988474 418931 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :doing it anyway, I have good reason to < 1551988513 63987 :LKoen!~LKoen@lfbn-idf2-1-273-77.w82-123.abo.wanadoo.fr QUIT :Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.” < 1551988655 427625 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :I would like to use more advanced TTF features but there is scant documentation for the ttf hinting language < 1551988891 93923 :b_jonas!~x@catv-176-63-25-71.catv.broadband.hu PRIVMSG #esoteric :orin: no, it's not unprofessional, as long as it's in a private repository, and you don't publish it under that name < 1551988955 437583 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :it's a feature branch to replace the one that isn't working < 1551989007 751747 :S_Gautam!uid286066@gateway/web/irccloud.com/x-oauynggpihbiwvci NICK :siddharth < 1551989017 176155 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :my pervious feature branch can't be rebased without hanging forever < 1551989028 339974 :siddharth!uid286066@gateway/web/irccloud.com/x-oauynggpihbiwvci NICK :S_Gautam < 1551989269 61927 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :what language is git written in anyway? < 1551989296 51766 :b_jonas!~x@catv-176-63-25-71.catv.broadband.hu PRIVMSG #esoteric :mostly C < 1551989327 163265 :b_jonas!~x@catv-176-63-25-71.catv.broadband.hu PRIVMSG #esoteric :with some light unixisms > 1551989429 120193 PRIVMSG #esoteric :14[[07Special:Log/newusers14]]4 create10 02 5* 03Fmease 5* 10New user account < 1551989526 172028 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :i'm wondering if my old feature branch was so borked it caused git to go into an infinite loop < 1551989553 157315 :orin!~oren@ec2-18-212-11-99.compute-1.amazonaws.com PRIVMSG #esoteric :I left it chugging for 24 hours before I decided it was doomed < 1551989772 906224 :b_jonas!~x@catv-176-63-25-71.catv.broadband.hu PRIVMSG #esoteric :`? fish < 1551989774 781620 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :Come and dance and love the fish! Mister Disco summoned it. > 1551990445 938050 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=60323&oldid=60317 5* 03Fmease 5* (+289) 10/* Introductions */ > 1551990525 798372 PRIVMSG #esoteric :14[[07Esolang:Introduce yourself14]]4 M10 02https://esolangs.org/w/index.php?diff=60324&oldid=60323 5* 03Fmease 5* (-82) 10Fix my signature > 1551991722 501001 PRIVMSG #esoteric :14[[07Brainfuck14]]4 10 02https://esolangs.org/w/index.php?diff=60325&oldid=60251 5* 03Cortex 5* (+103) 10/* Cat */ > 1551991953 772360 PRIVMSG #esoteric :14[[07ALLSCII14]]4 10 02https://esolangs.org/w/index.php?diff=60326&oldid=60309 5* 03Cortex 5* (+60) 10 > 1551992207 846397 PRIVMSG #esoteric :14[[07ALLSCII14]]4 10 02https://esolangs.org/w/index.php?diff=60327&oldid=60326 5* 03Cortex 5* (+76) 10 < 1551995426 153372 :FreeFull!~freefull@defocus/sausage-lover JOIN :#esoteric < 1551996501 303558 :Remavas!~Remavas@unaffiliated/remavas JOIN :#esoteric < 1551997703 264135 :arseniiv!~arseniiv@136.169.200.33 QUIT :Ping timeout: 245 seconds < 1551998033 261514 :S_Gautam!uid286066@gateway/web/irccloud.com/x-oauynggpihbiwvci QUIT :Quit: Connection closed for inactivity < 1551998537 874774 :Remavas!~Remavas@unaffiliated/remavas QUIT :Read error: Connection reset by peer < 1551998820 163187 :b_jonas!~x@catv-176-63-25-71.catv.broadband.hu PRIVMSG #esoteric :[ _1*180%8 < 1551998820 840302 :j-bot!eldis4@firefly.nu PRIVMSG #esoteric :b_jonas: _22.5 < 1551998859 111348 :xkapastel!uid17782@gateway/web/irccloud.com/x-ommnygklgrjuvgvr JOIN :#esoteric < 1552001787 294353 :AnotherTest!~turingcom@ptr-82l26zcehbybvusuxld.18120a2.ip6.access.telenet.be QUIT :Ping timeout: 240 seconds < 1552002605 814546 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1552002915 432985 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :`learn Heiroglyphics are an ancient set of symbols used for writing last wills and testaments. < 1552002917 954969 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :Learned 'heiroglyphic': Heiroglyphics are an ancient set of symbols used for writing last wills and testaments. < 1552002970 107009 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :took me a while to figure that one out < 1552002979 853718 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*MWAHAHAHA* < 1552002997 619123 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :i was expecting it to be a spoken pun rather than a written pun < 1552003002 951710 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :despite being written rather than spoken < 1552003012 21495 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`5 w < 1552003014 552368 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :1/2:lie//Lies are even easier than monoids. They form groups, known as Lie groups. \ fternoon//Fternoon is the time of day when the Danes usually eat their fternooners. \ `5//`5 is equivalent to repeating `` 5 times, then splitting the output into irc-sized pieces. defaults to "quote". See `1, `4 and `spam. Confusingly _not_ the obvious generalization of `2. \ `learn//`learn creates a wisdom entry and tries to guess which word is < 1552003017 89179 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`n < 1552003017 774134 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :2/2:the key. Syntax (case insensitive): `learn [a|an|the] [s][punctuation] [...] \ `hoat//`hoat: See `hoag < 1552003036 880463 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? `spam < 1552003037 987407 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​`spam prints the nth output piece of the previous `1, `2, `4, `5, sport or spore command. n defaults to the next piece to display. Abbreviation: `n. < 1552003043 322163 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? `n < 1552003044 653313 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​`n is an abbreviation for `spam. < 1552003048 554555 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? `4 < 1552003049 795427 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​`4 is equivalent to `5 , except that it only repeats 4 times. Useful when you've already run a command forgetting to use `5. < 1552003055 477243 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? `1 < 1552003056 658266 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​`1 is equivalent to `` , except that it splits the output into irc-sized pieces. The next pieces can be viewed with `spam. See also `2. Confusingly the obvious generalization of `4. < 1552003065 992790 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? `2 < 1552003067 125846 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​`2 is equivalent to `1 , except that it starts displaying the _second_ output piece. Useful when you've already run a command forgetting to use `1. < 1552003072 179579 :shachaf!~shachaf@unaffiliated/shachaf PRIVMSG #esoteric :`? `3 < 1552003073 309403 :HackEso!~h@techne.zem.fi PRIVMSG #esoteric :​`3 is the obvious generalization of `2 or `4, trying too hard to confuse everyone.