00:00:08 I don't think the whole article is really useful, but I couldn't leave it like that. 00:01:07 -!- Melvar has quit (Ping timeout: 240 seconds). 00:04:12 ah, how to make a hash out of a hash function? 00:04:27 The "process" side is worse, but I don't think we really need an article on hash functions, unless there's an actual esolang angle to them. 00:06:10 fizzie: this may well have been a joke... the function was constant before. :P 00:06:57 int-e: Unless I missed something, it did still depend on the length of the input. 00:07:05 Oh, no. 00:07:12 Starts at 0, eh? 00:07:14 yes 00:07:23 I don't think it was a joke, though. 00:07:38 regardless, I agree with the sentiment that it has no esoteric contents anyway. 00:13:49 -!- Melvar has joined. 00:28:17 [[Language list]] M https://esolangs.org/w/index.php?diff=61051&oldid=60976 * Void * (+13) /* E */ 00:34:02 [[Entish]] N https://esolangs.org/w/index.php?oldid=61052 * Void * (+2338) Created page with "{{infobox proglang |name=Entish |paradigms=imperative |author=[[void4]] |year=[[:Category:2019|2019]] |memsys=stack-based |dimensions=tree-based |class=:Category:Turing comp..." 00:38:50 [[Entish]] M https://esolangs.org/w/index.php?diff=61053&oldid=61052 * Void * (-118) 00:48:16 [[RarVM]] M https://esolangs.org/w/index.php?diff=61054&oldid=61049 * Void * (+1) 00:49:36 [[User talk:A]] M https://esolangs.org/w/index.php?diff=61055&oldid=61031 * Helen * (+195) 00:50:24 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61056&oldid=61046 * Helen * (+891) /* Incrementing */ In progress 01:00:03 Do you like Magic: the Puzzling? I am looking at a recent one just now and I believe I have figured how to do it. 01:02:19 -!- Lord_of_Life has quit (Ping timeout: 264 seconds). 01:03:05 -!- Lord_of_Life has joined. 01:05:18 [[RarVM]] M https://esolangs.org/w/index.php?diff=61057&oldid=61054 * Void * (+310) /* Language overview */ 01:11:33 [[User:Void]] N https://esolangs.org/w/index.php?oldid=61058 * Void * (+43) Created page with "When life gives you lemons, create esolangs" 01:13:08 -!- user24 has joined. 01:13:41 An esolang whose syntax is *dancing* 01:15:38 how would you dance your language? 01:20:18 `? disco 01:20:19 disco? ¯\(°​_o)/¯ 01:20:22 hum 01:20:29 [[List of ideas]] https://esolangs.org/w/index.php?diff=61059&oldid=60992 * Void * (+39) /* Joke/Silly Ideas */ 01:20:30 `grwp disco 01:20:31 brexit:brexit is a command to forcefully exit, releasing 1GB of free space. This command was recently discovered to have a bug where it will repeatedly delay itself if not enough force is available. \ hfs:You have discovered an eerie cavern. The air above the dark stone floor is alive with vortices of purple light and dark, boiling clouds. Seemingly bottomless pits mark the surface. \ learning:Learning is disco, baby. \ lem:Stanisław Lem was a Polish 01:20:56 `grwp Disco 01:20:56 fish:Come and dance and love the fish! Mister Disco summoned it. 01:29:32 If you'd add some way to output tones, what kind of music would your esolang be most suited to? 01:42:55 I thought of a idea of a Magic: the Gathering card with "enchant object that is not in a hidden zone" (and also flash). 01:43:36 user24: If you mean with dancing, I suppose, it depend what kind of dancing. There is different kind of music for different kind of dancing, I think. 01:47:23 zzo38: if you ignore the music part and only focus on movement it might be easier 01:48:12 Although, there is esolangs with musical syntax as well, but depending how the one with dancing is, you have to see if it is suitable or not. (I don't know much about dancing, though.) 02:20:39 [[RarVM]] M https://esolangs.org/w/index.php?diff=61060&oldid=61057 * Void * (+40) 02:28:22 Only 50k instructions per second, ouch 02:29:08 How do you write fast VMs? 02:29:27 Depends on the VM, and on the host, I think. 02:30:12 I've tried RPython, because in theory, it generates a JIT for you. But in practice, it sucks to program with implicit types 02:31:00 You can't really say: "I want a 64 bit uint right here", you never know 02:31:49 I have partially written a Z-machine implementation for Famicom, for example, and it does a lot of stuff to improve speed. 02:33:45 did you add some sort of tracing? 02:34:09 How do you mean? 02:34:53 https://en.wikipedia.org/wiki/Tracing_just-in-time_compilation 02:36:02 It does not do any kind of JIT, actually. 02:36:40 And still, it's fast? 02:37:31 maybe the loop is not too complex, so the compiler optimizes it well 02:37:55 Since I have not finished writing it (I abandoned it for now, since on this computer I no longer have the stuff needed for testing), I don't know, but by counting the cycles and comparing, it seems like it would likely be faster than other implementations running on similar computers. 02:38:06 It is written in assembly language, so it isn't optimized by a compiler. 02:38:32 Do you know any Famicom programming? 02:39:41 nope 02:42:56 It is the NMOS 6502 instruction set. There is the memory mapping, and then the hardware; I have also designed the cartridge hardware (although haven't actually built it, but I expect it would work), which isn't that complicated but does a few things which are very uncommon in Famicom cartridges (it maps mapper registers over RAM mirrors, it uses a bank size of one byte, and it doesn't care whether the signal is a read or a write). 02:43:16 Do you know Z-machine programming? 02:43:35 not yet :) 02:45:11 holy shit 02:45:18 Here is the document of Z-machine: http://zzo38computer.org/backup/zspec/zip_old.txt I have been unable to get it to render properly on my computer (I am probably doing something wrong), but even the source text is readable enough. 02:45:19 i just enabled the Rust optimizer 02:45:53 (I also implemented Z-machine in C, in JavaScript, and in Glulx. Note, Glulx is another VM for text adventure games like Z-machine is.) 02:50:19 other than a short encounter with Twine, i have not seen much interactive fiction before 02:50:23 Rust optimizer results: Lvl 0: ~50k IPS, 1: 160k IPS, 2: 800k IPS, 3: 1M IPS! 02:56:12 -!- FreeFull has quit. 02:58:47 What VM is that? 03:00:08 https://esolangs.org/wiki/RarVM 03:01:27 OK 03:15:19 [[RarVM]] M https://esolangs.org/w/index.php?diff=61061&oldid=61060 * Void * (+62) /* Implementations */ 03:49:53 i assume those are sam's favorite mushrooms 03:54:55 [[Special:Log/upload]] upload * Void * uploaded "[[File:Snapshot.png]]" 04:00:36 [[RarVM]] M https://esolangs.org/w/index.php?diff=61063&oldid=61061 * Void * (+357) /* Examples/Use cases */ 04:24:37 http://venge.net/graydon/talks/CompilerTalk-2019.pdf 04:28:10 `unidecode ÐĐƉ 04:28:12 ​[U+00D0 LATIN CAPITAL LETTER ETH] [U+0110 LATIN CAPITAL LETTER D WITH STROKE] [U+0189 LATIN CAPITAL LETTER AFRICAN D] 04:28:31 unicode can go fuck themselves with an african D 04:28:48 I hate these letters so much 04:29:28 At least in the font I am using the appearance are all same, it look like. 04:29:34 http://hopl.info/polykey.html 04:29:39 -!- user24 has quit (Quit: Leaving). 04:32:12 there shoudln't be two letters that look exactly the same in the same damn script 04:33:03 Yes, I think you are correct 04:47:05 -!- Frater_EST has joined. 05:41:28 I do not understand that classification of programming languages very well. 05:41:43 Better explanations would help. 05:47:27 -!- Frater_EST has left. 06:03:17 -!- arseniiv has joined. 06:33:18 [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61064&oldid=61047 * A * (+11) /* List of candidates */ 06:35:36 [[Bitch]] https://esolangs.org/w/index.php?diff=61065&oldid=61043 * A * (-29) Change to unknown computational class 06:47:41 [[Bitch]] https://esolangs.org/w/index.php?diff=61066&oldid=61065 * A * (-375) /* Common Algorithms */ 07:31:54 -!- oerjan has quit (Quit: Nite). 08:14:54 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61067&oldid=61056 * A * (+228) /* Attempt by User:Helen */ 08:21:52 [[Z3]] N https://esolangs.org/w/index.php?oldid=61068 * A * (+745) Created page with "The [[Z3]] is a German computer created by [https://en.wikipedia.org/wiki/Konrad_Zuse Konrad Zuse]. Despite its extreme simplicity(the computer simulated only addition, subtra..." 08:22:50 [[Z3]] https://esolangs.org/w/index.php?diff=61069&oldid=61068 * A * (+69) 08:24:08 [[Z3]] https://esolangs.org/w/index.php?diff=61070&oldid=61069 * A * (+141) 08:25:00 [[Z3]] https://esolangs.org/w/index.php?diff=61071&oldid=61070 * A * (+62) 08:26:13 -!- fiktion has left ("Leaving"). 08:32:20 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61072&oldid=61067 * A * (+439) It is possible that bitch compiles to a Minsky machine. 08:32:57 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61073&oldid=61072 * A * (-4) Oh no, I made it super messy. 08:37:48 [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61074&oldid=61064 * A * (-12) Very close 08:40:10 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61075&oldid=61073 * A * (-2393) Shorten the page 08:44:01 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61076&oldid=61075 * A * (+2393) Reading this page without the "tape" edit seems awkward. 08:44:49 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61077&oldid=61076 * A * (+2) /* User:A - Implementing a tape */ 08:45:08 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61078&oldid=61077 * A * (-43) /* User:A - Wrong idea of a tape */ 08:47:17 [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61079&oldid=61074 * A * (+50) /* List of candidates */ 09:01:36 -!- AnotherTest has joined. 09:17:29 -!- carado has joined. 09:18:37 -!- wob_jonas has joined. 09:19:48 -!- carado has quit (Client Quit). 09:48:17 -!- sebbu3 has quit (Read error: Connection reset by peer). 09:49:00 -!- sebbu has joined. 10:21:36 -!- Frater_EST has joined. 10:43:35 -!- sebbu has quit (Read error: Connection reset by peer). 10:44:19 -!- sebbu has joined. 10:50:45 -!- Melvar has quit (Ping timeout: 252 seconds). 11:06:08 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61080&oldid=61078 * A * (+171) Provide more information for the readers. 11:07:02 -!- Sgeo_ has quit (Ping timeout: 268 seconds). 11:07:59 -!- MDude has quit (Ping timeout: 252 seconds). 11:08:43 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61081&oldid=61080 * A * (+307) I'm pretty positive that this will fail. 11:18:13 -!- monkeystance has joined. 11:45:16 [[User talk:A]] https://esolangs.org/w/index.php?diff=61082&oldid=61055 * A * (-250) 11:45:35 [[User talk:A]] https://esolangs.org/w/index.php?diff=61083&oldid=61082 * A * (-231) 11:48:13 [[MalTape]] N https://esolangs.org/w/index.php?oldid=61084 * A * (+125) Edit 11:52:10 [[MalTape]] https://esolangs.org/w/index.php?diff=61085&oldid=61084 * A * (+516) 11:53:19 [[MalTape]] https://esolangs.org/w/index.php?diff=61086&oldid=61085 * A * (+115) /* The tape */ 11:53:49 [[MalTape]] M https://esolangs.org/w/index.php?diff=61087&oldid=61086 * A * (-20) /* Computational class */ 11:54:07 [[MalTape]] https://esolangs.org/w/index.php?diff=61088&oldid=61087 * A * (+31) /* Computational class */ 11:54:56 Does this group actually ever talk about occult/esoteric/paranormal or is that a red herring? 11:55:56 [[MalTape]] https://esolangs.org/w/index.php?diff=61089&oldid=61088 * A * (+208) /* Computational class */ 11:56:12 [[MalTape]] https://esolangs.org/w/index.php?diff=61090&oldid=61089 * A * (+28) /* Actual commands */ 11:57:03 [[Joke language list]] https://esolangs.org/w/index.php?diff=61091&oldid=60729 * A * (+61) /* Brainfuck derivatives */ 12:02:09 Frater_E: that is a leftover from a topic set for late April fools 12:02:17 `welcome Frater_E 12:02:19 Frater_E: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: . (For the other kind of esoterica, try #esoteric on EFnet or DALnet.) 12:02:42 the channel topic usually says something like that 12:03:24 Oh, in that case I am in the wrong interest group. :P 12:03:48 Thanks anyway. 12:03:57 And for clarifying. 12:04:29 -!- Sgeo_ has joined. 12:04:39 -!- Frater_EST has left. 12:06:34 I guess we should change the channel topic 12:14:51 fizzie? 12:16:43 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61092&oldid=61081 * A * (+195) /* Incrementing */ 12:18:37 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61093&oldid=61092 * A * (+3) pseudo-code seems crammed 12:20:53 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61094&oldid=61093 * A * (+5) /* Decrementing */ 12:43:07 Oh, I hadn't even noticed that. 12:43:15 -!- Frater_EST has joined. 12:44:10 -!- fizzie has set topic: Welcome to the international soiree for esoteric programming language discussion, design, development and devaluation! | https://esolangs.org | logs: https://esolangs.org/logs/ http://codu.org/logs/_esoteric/ http://tunes.org/~nef/logs/esoteric/?C=M;O=D | https://www.dropbox.com/s/fyhqyvy3i8oh25m/wisdom.pdf. 12:44:23 wob_jonas: FWIW, we don't topiclock, it's a free-for-all to update. 12:44:34 I just reverted it to the pre-April-fools one. 12:44:46 yaeh 12:44:59 (Well, except I also dropped the IOCCC mention, I think it's been long enough.) 12:45:09 we also do code golf and canaima support 12:45:35 -!- Frater_EST has left. 12:46:35 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61095&oldid=61094 * A * (+14) /* Attempt by User:Helen */ 12:48:09 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61096&oldid=61095 * A * (+40) /* Another attempt by User:A */ 12:53:15 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61097&oldid=61096 * A * (+7) /* Another attempt by User:A */ 13:03:00 -!- Lord_of_Life has quit (Ping timeout: 255 seconds). 13:03:17 -!- Lord_of_Life has joined. 13:09:04 -!- Lymia has set topic: Welcome to the international tea party for esoteric programming language discussion, design, development and devaluation! | https://esolangs.org | logs: https://esolangs.org/logs/ http://codu.org/logs/_esoteric/ http://tunes.org/~nef/logs/esoteric/?C=M;O=D | https://www.dropbox.com/s/fyhqyvy3i8oh25m/wisdom.pdf. 13:09:13 -!- Lymia has set topic: Welcome to the international cosplay tea party for esoteric programming language discussion, design, development and devaluation! | https://esolangs.org | logs: https://esolangs.org/logs/ http://codu.org/logs/_esoteric/ http://tunes.org/~nef/logs/esoteric/?C=M;O=D | https://www.dropbox.com/s/fyhqyvy3i8oh25m/wisdom.pdf. 13:18:28 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61098&oldid=61097 * Helen * (+266) /* Attempt by User:Helen */ 13:21:04 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61099&oldid=61098 * Helen * (+14) /* Decrementing idea */ very minor formatting edit 13:21:52 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61100&oldid=61099 * Helen * (-14) Undo revision 61099 by [[Special:Contributions/Helen|Helen]] ([[User talk:Helen|talk]]), changed my mind 13:24:18 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61101&oldid=61100 * Helen * (+260) /* Attempt by User:Helen */ 13:25:55 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61102&oldid=61101 * Helen * (+135) /* Attempt by User:Helen */ 13:26:39 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61103&oldid=61102 * Helen * (-14) /* Attempt by User:Helen */ 13:34:12 -!- xkapastel has joined. 13:46:46 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61104&oldid=61103 * A * (+196) This is completely possible. 13:47:41 -!- moei has joined. 13:50:28 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61105&oldid=61104 * A * (+149) Add something. 13:52:50 [[Talk:Home Row]] https://esolangs.org/w/index.php?diff=61106&oldid=57274 * A * (-297) Blanked the page 13:56:20 -!- joast has quit (Remote host closed the connection). 14:00:21 -!- joast has joined. 14:04:20 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61107&oldid=61105 * A * (-710) Compiling to a Minsky macine will be trivial, since Home Row was already compiled to it. 14:04:26 -!- monkeystance has left ("Leaving"). 14:16:56 [[JarJarScript]] M https://esolangs.org/w/index.php?diff=61108&oldid=58105 * EnilKoder * (+0) correction of spelling of "grammar" 14:19:22 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61109&oldid=61107 * A * (-201) Sorry, I misunderstood the loops. 14:19:51 -!- atslash has quit (Ping timeout: 264 seconds). 14:20:27 -!- atslash has joined. 14:24:43 [[Bitch]] https://esolangs.org/w/index.php?diff=61110&oldid=61066 * A * (+20) The halting problem is of course impossible. 14:25:20 -!- atslash has quit (Ping timeout: 246 seconds). 14:25:42 [[Bitch]] https://esolangs.org/w/index.php?diff=61111&oldid=61110 * A * (+55) /* Unproven */ 14:26:06 [[Bitch]] https://esolangs.org/w/index.php?diff=61112&oldid=61111 * A * (-75) /* Unproven */ 14:26:30 -!- atslash has joined. 14:26:33 [[Bitch]] https://esolangs.org/w/index.php?diff=61113&oldid=61112 * A * (+19) /* Unproven */ 14:27:40 [[Bitch]] https://esolangs.org/w/index.php?diff=61114&oldid=61113 * A * (-19) /* Unproven */ 14:30:05 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61115&oldid=61109 * A * (+8) Add links that I forgot to add. 14:44:22 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61116&oldid=61115 * A * (-171) /* Unconditional Branching */ 14:45:20 [[User talk:A]] https://esolangs.org/w/index.php?diff=61117&oldid=61083 * A * (-388) Blanked the page 14:55:50 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61118&oldid=61116 * A * (+200) You understood it the wrong way. I will explain it. 15:05:58 `olist 1161 15:05:59 olist 1161: shachaf oerjan Sgeo FireFly boily nortti b_jonas 15:18:56 -!- carado has joined. 15:19:07 -!- carado has left. 15:40:50 -!- nfd9001 has quit (Ping timeout: 268 seconds). 15:47:37 -!- digitalcold has left. 16:30:54 -!- wob_jonas has quit (Remote host closed the connection). 18:12:04 -!- FreeFull has joined. 18:15:17 -!- LKoen has joined. 18:25:16 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61119&oldid=61118 * Helen * (+943) /* Incrementing */ Actually did algorithm 18:26:03 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61120&oldid=61119 * Helen * (-1397) /* Incrementing */ Reverting accident 18:48:35 [[Alphabet Stew]] M https://esolangs.org/w/index.php?diff=61121&oldid=58275 * DMC * (-64) /* Description */ 18:49:14 [[Alphabet Stew]] M https://esolangs.org/w/index.php?diff=61122&oldid=61121 * DMC * (+0) /* Description */ 18:50:54 [[Alphabet Stew]] M https://esolangs.org/w/index.php?diff=61123&oldid=61122 * DMC * (+77) /* Description */ 18:58:08 -!- b_jonas has joined. 19:00:20 [[User:DMC]] M https://esolangs.org/w/index.php?diff=61124&oldid=60812 * DMC * (+37) 19:48:13 -!- LKoen_ has joined. 19:49:51 -!- MDude has joined. 19:51:47 -!- LKoen has quit (Ping timeout: 252 seconds). 19:54:01 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61125&oldid=61120 * Helen * (+2077) /* Incrementing */ 19:57:30 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61126&oldid=61125 * Helen * (+245) /* Attempt by User:Helen */ 20:00:31 -!- AnotherTest has quit (Ping timeout: 264 seconds). 20:02:30 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61127&oldid=61126 * Helen * (+951) /* Decrementing idea */ Minor change to incrementing algorithm probably yields correct result 20:02:57 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61128&oldid=61127 * Helen * (+6) /* Decrementing idea */ oops 20:08:12 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61129&oldid=61128 * Helen * (+122) /* Zeroing a cell */ 20:13:27 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61130&oldid=61129 * Helen * (+367) /* Attempt by User:Helen */ 20:13:49 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61131&oldid=61130 * Helen * (+4) /* Attempt by User:Helen */ small formatting error 20:18:47 -!- LKoen has joined. 20:19:33 [[Bitch]] M https://esolangs.org/w/index.php?diff=61132&oldid=61114 * Helen * (+437) /* Impossible */ added halting problem because I thought it was good 20:21:14 [[Bitch]] M https://esolangs.org/w/index.php?diff=61133&oldid=61132 * Helen * (+57) /* Impossible */ formatting 20:22:35 -!- LKoen_ has quit (Ping timeout: 252 seconds). 20:43:34 -!- arseniiv has quit (Read error: Connection reset by peer). 20:43:44 -!- arseniiv has joined. 20:49:47 -!- arseniiv has quit (Ping timeout: 268 seconds). 21:19:43 -!- b_jonas has quit (Quit: leaving). 21:27:55 -!- brandonson has joined. 22:22:47 -!- shikhout has joined. 22:25:15 -!- shikhout has quit (Changing host). 22:25:15 -!- shikhout has joined. 22:25:20 -!- shikhin has quit (Disconnected by services). 22:25:27 -!- shikhin has joined. 22:30:47 -!- Phantom_Hoover has joined. 22:31:06 -!- shikhin has quit (Disconnected by services). 22:31:13 -!- shikhin has joined. 22:33:15 -!- shikhout has left. 22:34:14 -!- shikhin has quit (Disconnected by services). 22:34:19 -!- Melvar has joined. 22:34:22 -!- shikhin_ has joined. 22:37:12 -!- moei has quit (Quit: Leaving...). 22:56:02 -!- LKoen has 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.”). 23:09:46 -!- Sgeo_ has quit (Ping timeout: 268 seconds). 23:11:41 -!- Sgeo has joined. 23:17:35 -!- oerjan has joined. 23:21:51 yay, i actually caught someone with an april fools joke! a bit late but... 23:22:36 i'm not sure that's ever happened before, but then my childhood memories are pretty blurry. 23:27:10 * oerjan is slightly surprised someone like b_jonas hadn't created [[Z3]] before. 23:29:48 a minor annoyance when checking lots of esolangs tabs is that unlike wikipedia, the page title for history pages starts with "Revision history" instead of the page name, meaning that the first letters showing in the tab lists give me no indication of which page is which without hovering. 23:31:47 -!- Phantom_Hoover has quit (Read error: Connection reset by peer). 23:33:14 i would guess that's the reason why wikipedia changed it. 23:38:33 heh www.mediawiki.org doesn't have that change 23:50:27 hm neither does wiktionary. 23:52:48 german wikipedia has a version with quote marks. 23:54:53 -!- brandonson has quit (Ping timeout: 252 seconds). 23:58:23 Very consistent.