00:04:12 `url bin/multicode 00:04:13 https://hack.esolangs.org/repo/file/tip/bin/multicode 00:04:27 `url bin/unidecode 00:04:27 https://hack.esolangs.org/repo/file/tip/bin/unidecode 00:05:30 `singlecode ₿ 00:05:31 No output. 00:06:13 oh i see 00:06:18 `multicode ₿ 00:06:19 Sequence '\xe2\x82\xbf' is not valid in charset 'ANSI_X3.4-1968'. 00:06:27 it's hit by that 00:06:48 `` echo $LANG 00:06:49 No output. 00:06:58 `locale 00:06:58 LANG= \ LANGUAGE= \ LC_CTYPE="POSIX" \ LC_NUMERIC="POSIX" \ LC_TIME="POSIX" \ LC_COLLATE="POSIX" \ LC_MONETARY="POSIX" \ LC_MESSAGES="POSIX" \ LC_PAPER="POSIX" \ LC_NAME="POSIX" \ LC_ADDRESS="POSIX" \ LC_TELEPHONE="POSIX" \ LC_MEASUREMENT="POSIX" \ LC_IDENTIFICATION="POSIX" \ LC_ALL= 00:07:10 `` locale 00:07:11 LANG= \ LANGUAGE= \ LC_CTYPE="POSIX" \ LC_NUMERIC="POSIX" \ LC_TIME="POSIX" \ LC_COLLATE="POSIX" \ LC_MONETARY="POSIX" \ LC_MESSAGES="POSIX" \ LC_PAPER="POSIX" \ LC_NAME="POSIX" \ LC_ADDRESS="POSIX" \ LC_TELEPHONE="POSIX" \ LC_MEASUREMENT="POSIX" \ LC_IDENTIFICATION="POSIX" \ LC_ALL= 00:07:18 `2 locale 00:07:19 2/1: 00:07:50 i'm pretty sure there used to be something nz-ish there... 00:07:57 ``` locale 00:07:58 LANG=C \ LANGUAGE= \ LC_CTYPE="C" \ LC_NUMERIC="C" \ LC_TIME="C" \ LC_COLLATE="C" \ LC_MONETARY="C" \ LC_MESSAGES="C" \ LC_PAPER="C" \ LC_NAME="C" \ LC_ADDRESS="C" \ LC_TELEPHONE="C" \ LC_MEASUREMENT="C" \ LC_IDENTIFICATION="C" \ LC_ALL= 00:08:17 `` multicode ₿ 00:08:18 Sequence '\xe2\x82\xbf' is not valid in charset 'ANSI_X3.4-1968'. 00:08:22 ``` multicode ₿ 00:08:23 Sequence '\xe2\x82\xbf' is not valid in charset 'ANSI_X3.4-1968'. 00:08:52 `unicode 🐑 00:08:53 Sequence '\xf0\x9f\x90\x91' is not valid in charset 'ANSI_X3.4-1968'. 00:09:09 `` LC_CTYPE=en_US.UTF-8 multicode ₿ 00:09:10 U+20BF BITCOIN SIGN \ UTF-8: e2 82 bf UTF-16BE: 20bf Decimal: ₿ \ ₿ \ Category: Sc (Symbol, Currency) \ Bidi: ET (European Number Terminator) 00:09:16 aha 00:10:17 fizzie: HackEso's default locale is no longer nz-ish and that breaks unicode stuff 00:10:38 `` LC_CTYPE=nz_.UTF-8 icode ₿ 00:10:39 ​/hackenv/bin/`: line 5: warning: setlocale: LC_CTYPE: cannot change locale (): No such file or directory 00:10:44 oops 00:10:54 `` LC_CTYPE=en_US.UTF-8 icode ₿ 00:10:55 ​[U+20BF BITCOIN SIGN] 00:11:05 now someone is contacting the guy who originally designed Calibri? 00:11:20 what is even 00:11:25 i was trying to edit the line into the nz version, didn't know the full format, then left the line in irssi 00:11:29 it's not that big a deal 00:14:01 oren: anyway, found out why `unidecode ₿ wasn't working, locale has become unset. 00:15:35 -!- ais523 has quit (Quit: sorry for my connection). 00:15:43 `` LC_CTYPE=en_NZ.UTF-8 icode ₿ 00:15:44 ​[U+20BF BITCOIN SIGN] 00:15:51 -!- ais523 has joined. 00:15:56 hm it's still there. or at least not erring out. 00:21:35 [[Mov]] M https://esolangs.org/w/index.php?diff=61272&oldid=43770 * Salpynx * (+26) /* References */ Wayback archive of this mov paper, via [[Talk:Z3]] 00:21:37 `wisdom baba 00:21:38 That's not wise. 00:36:48 i,i #define CASE break; case ␤ #define DEFAULT break; default 00:44:57 is «switch(i) { break; }» valid syntax? 00:45:03 my guess is yes but it produces a warning? 00:45:29 `! c switch(4) { case 4: puts("Hello, world!"); break; } 00:45:29 No warning when I tried. 00:45:31 Hello, world! 00:45:36 `! c switch(4) { break; case 4: puts("Hello, world!"); break; } 00:45:38 Hello, world! 00:45:48 `! c switch(4) { puts("Unreachable!"); break; case 4: puts("Hello, world!"); break; } 00:45:49 Hello, world! 00:45:57 I guess `! c doesn't show warnings anyway 00:46:03 clang has a warning with -Weverything 00:46:22 warning: 'break' will never be executed [-Wunreachable-code-break] 00:46:32 But that warns about lots of things I don't care about. 00:47:47 gcc -Wall -Wextra -O3 warns about unreachable code at the start of a switch statement, but not about unreachable break statements in that position 00:48:33 Maybe I'll just start using this. 00:48:44 here's my test: https://tio.run/##VYo9C8IwFEX3/IpnXVIwItjJiLObo3N8iW3wNZF8WEH6141BJ4d7OfdwUfSIpSytQ8rawD4mbf16ODDrEozKOv7wVrfwYgBxsgkH3v0WwCUYdZMVUUUD3e4r7zlF3hwNkV/B5APpRdPK//9cE0zKwcFGsrmUN15J9bGIsyKqbZ4pqCJO2w8 00:48:56 I could #define Case break; case and #define OrCase case, and then forbid the string "case" 00:49:05 And similarly for default. 00:49:40 gcc and clang both have enablable warnings about fallthroughs without an appropriate comment 00:50:18 OK, but the code with breaks still looks ugly. 00:52:28 gcc on godbolt doesn't print any warnings for your code. 00:52:35 With those flags, at version 8.3? 00:52:42 I don't see the tio.run compiler output. 00:53:51 it's at the bottom 00:53:57 -!- brandonson has quit (Remote host closed the connection). 00:54:01 in the "Debug" section 00:54:06 only there isn't any with this code 00:54:25 Oh, you mean it warns for non-break code. 00:54:25 if you put a statement before the first break;, you'll see compiler warnings there 00:54:37 right 00:54:51 -!- mich181189_ has joined. 01:02:18 oerjan: It might have something to do with the changes I made while setting up the IRC_* environment variables. 01:02:39 -!- tswett[m] has quit (*.net *.split). 01:02:40 -!- mich181189 has quit (*.net *.split). 01:02:41 -!- HackEso has quit (*.net *.split). 01:02:44 oerjan: There was something special about the locale-setting, something like it not being part of the Bitbucket'd code but a local customization instead. 01:02:44 -!- mich181189_ has changed nick to mich181189. 01:03:10 -!- HackEso has joined. 01:04:29 `unidecode ₿ 01:04:31 No output. 01:04:38 -!- Lord_of_Life has quit (Ping timeout: 258 seconds). 01:04:42 `unidecode ä 01:04:43 ​[U+00E4 LATIN SMALL LETTER A WITH DIAERESIS] 01:04:55 I guess I never noticed because unidecode is explicitly UTF-8. 01:05:18 -!- economicsbat has quit (Ping timeout: 246 seconds). 01:06:43 -!- Lord_of_Life has joined. 01:07:20 -!- economicsbat has joined. 01:07:30 ...or, uh, odd. 01:08:23 Oh, right: it has a fallback. 01:09:39 So it's explicitly UTF-8 except when the Python version's unicodedata.name is unable to decode the character, in which case it falls back to bin/singlecode, which is a wrapper around bin/multicode, which is locale-aware. 01:10:32 -!- tswett[m] has joined. 01:11:05 ais523: Favourite switch trick: replacing `if (x == 4) foo();` with `switch (x) case 4: foo();`. 01:11:31 A non-block switch body just looks odd. 01:17:55 `unidecode ₿ 01:17:56 ​[U+20BF BITCOIN SIGN] 01:17:57 `locale 01:17:58 LANG= \ LANGUAGE= \ LC_CTYPE=en_NZ.UTF-8 \ LC_NUMERIC="POSIX" \ LC_TIME="POSIX" \ LC_COLLATE="POSIX" \ LC_MONETARY="POSIX" \ LC_MESSAGES="POSIX" \ LC_PAPER="POSIX" \ LC_NAME="POSIX" \ LC_ADDRESS="POSIX" \ LC_TELEPHONE="POSIX" \ LC_MEASUREMENT="POSIX" \ LC_IDENTIFICATION="POSIX" \ LC_ALL= 01:18:08 oerjan: I just set LC_CTYPE for now, I don't remember how it used to be. 01:41:24 thanks 01:45:12 fizzie: looks like it was most except LC_ALL : https://esolangs.org/logs/2018-06-02.html#lIc 01:45:31 and LANGUAGE 01:46:15 I think that probably means LANG was set explicitly. 01:46:51 `` env -u LC_CTYPE LANG=en_NZ.UTF-8 locale 01:46:52 LANG=en_NZ.UTF-8 \ LANGUAGE= \ LC_CTYPE="en_NZ.UTF-8" \ LC_NUMERIC="en_NZ.UTF-8" \ LC_TIME="en_NZ.UTF-8" \ LC_COLLATE="en_NZ.UTF-8" \ LC_MONETARY="en_NZ.UTF-8" \ LC_MESSAGES="en_NZ.UTF-8" \ LC_PAPER="en_NZ.UTF-8" \ LC_NAME="en_NZ.UTF-8" \ LC_ADDRESS="en_NZ.UTF-8" \ LC_TELEPHONE="en_NZ.UTF-8" \ LC_MEASUREMENT="en_NZ.UTF-8" \ LC_IDENTIFICATION="en_NZ.UTF-8" \ LC_ALL= 01:47:01 That looks about the same. 01:47:08 Let's swap it to that then. 01:47:15 `cat bin/`` 01:47:16 ​#!/bin/sh \ export LANG=C; exec bash -O extglob -c "$@" | rnooodl 01:47:44 `locale 01:47:44 LANG=en_NZ.UTF-8 \ LANGUAGE= \ LC_CTYPE="en_NZ.UTF-8" \ LC_NUMERIC="en_NZ.UTF-8" \ LC_TIME="en_NZ.UTF-8" \ LC_COLLATE="en_NZ.UTF-8" \ LC_MONETARY="en_NZ.UTF-8" \ LC_MESSAGES="en_NZ.UTF-8" \ LC_PAPER="en_NZ.UTF-8" \ LC_NAME="en_NZ.UTF-8" \ LC_ADDRESS="en_NZ.UTF-8" \ LC_TELEPHONE="en_NZ.UTF-8" \ LC_MEASUREMENT="en_NZ.UTF-8" \ LC_IDENTIFICATION="en_NZ.UTF-8" \ LC_ALL= 01:48:11 i guess ``` is some evidence for it not having been more than LANG 01:48:31 Well, I also remember it only setting one variable. 01:49:18 (But I couldn't relocate the original HackEgo stuff anywhere to check.) 02:30:01 -!- Cale has quit (Ping timeout: 268 seconds). 02:37:50 Man, this Case thing is great. 02:47:26 what do people use titlecase for in C, anyway? 02:48:22 I use it for types. 02:48:29 And also for these keyword macros. 02:48:41 I also have Struct/Union/Enum 02:49:11 And "cast" and "global" which are just defined to be nothing. Maybe I should make the case consistent. 02:50:22 Also enum values for some reason? Probably Haskell-derived. 02:52:35 -!- ais523 has quit (Quit: quit). 03:04:43 -!- adu has quit (Quit: adu). 03:04:43 -!- FreeFull has quit. 03:44:44 b_jonas's habit of linking entire week logs from the wiki + the case insensitivity issue in IE i've mentioned before means i cannot easily check whether his anchors are right :( 03:46:21 (on single day logs i usually manage to find the highlighting by paging down a bit) 03:47:04 The issue is that IE can't find the anchor if there's another one that's case-insensitively equal? 03:47:11 [[BANCStar]] M https://esolangs.org/w/index.php?diff=61273&oldid=61199 * Oerjan * (+1) /* Implementation */ Fix bug (presumably) 04:00:43 shachaf: one that's earlier, yes 04:02:49 -!- tromp has joined. 04:07:17 -!- tromp has quit (Ping timeout: 246 seconds). 04:26:41 [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61274&oldid=61244 * A * (-176) /* List of candidates */ 04:28:03 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61275&oldid=61270 * A * (+115) /* [Ongoing] Compilation to Home Row by User:Helen and User:A */ 04:28:22 -!- Frater_EST has joined. 05:28:48 -!- imode has quit (Ping timeout: 245 seconds). 05:49:16 -!- Frater_EST has quit (Ping timeout: 246 seconds). 05:51:02 -!- tromp has joined. 05:51:16 -!- Frater_EST has joined. 05:55:28 -!- tromp has quit (Ping timeout: 245 seconds). 06:45:39 -!- tromp has joined. 06:49:49 -!- tromp has quit (Ping timeout: 246 seconds). 06:55:27 -!- tromp has joined. 07:56:15 -!- AnotherTest has joined. 08:17:18 [[User talk:A]] https://esolangs.org/w/index.php?diff=61276&oldid=61267 * A * (+156) 08:17:51 [[Volatile]] https://esolangs.org/w/index.php?diff=61277&oldid=60906 * A * (+60) /* Number tricks */ 08:18:00 [[User talk:A]] https://esolangs.org/w/index.php?diff=61278&oldid=61276 * A * (-711) Blanked the page 08:18:17 [[User talk:Helen]] https://esolangs.org/w/index.php?diff=61279&oldid=61250 * A * (-1604) Blanked the page 08:19:11 -!- Frater_EST has left. 08:20:52 [[Works in progress]] https://esolangs.org/w/index.php?diff=61280&oldid=61157 * A * (-16) 08:22:26 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61281&oldid=61275 * A * (-15) /* [Unsuccessful] Compilation to Z3 derivative by User:A and User:Helen */ 08:23:59 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61282&oldid=61281 * A * (+7) Comment out a wrong attempt(because the space for this page is valuable) 08:25:02 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61283&oldid=61282 * A * (-427) 08:49:08 [[List of ideas]] M https://esolangs.org/w/index.php?diff=61284&oldid=61197 * Orisphera * (+42) Added an idea. 08:49:18 -!- tromp has quit (Remote host closed the connection). 09:01:33 -!- tromp has joined. 09:13:41 -!- wob_jonas has joined. 09:14:35 b_jonas's habit of linking entire week logs => ah, sorry. that's because I search in those. I should probably translate the urls to single-day logs. 09:15:15 although if the case-insensitivity really produces bugs in a browser you use, then perhaps you should replace the browser or modify the logs pace. 09:23:36 i'll have to replace the browser eventually. 09:23:59 and the log anchors are supposed to be permanent. 09:25:44 oerjan: true. you can have multiple anchors at the same place, but the DOM for the mothly archives is already big, so there's a cost for that. 09:26:02 oerjan: You can probably write a short script to scroll to an anchor case-sensitively in IE. 09:26:08 you could also use a different browser (like a text editor) just for this purpose, without changing the normal browser 09:26:10 I'd write it but I don't have access to IE. 09:26:58 does this depend on the version of IE? 09:32:07 the version is the latest. 09:32:21 ok 09:34:45 what i usually do is look for the automatically highlighted text, which is fast enough in the daily logs. 09:35:09 wait, so that one works, only the anchor doesn't? 09:35:11 interesting 09:35:19 Oh, the highlighting works, right. 09:36:02 oerjan: What if you type "document.querySelector('#lIc').scrollIntoView()" into the JavaScript console? 09:39:26 . o O ( what #lIc ) 09:40:04 18:45 fizzie: looks like it was most except LC_ALL : https://esolangs.org/logs/2018-06-02.html#lIc 09:40:16 Hmm, that wasn't a monthly link or a b_jonaslink. 09:41:57 shachaf: I think that means that the LANG env-var was set, which is the default for locale facets where the corresponding env-vars are set, but the locale program shows the effective locale for those facets. 09:42:03 ``` loacle 09:42:04 ``` locale 09:42:05 bash: loacle: command not found 09:42:06 LANG=C \ LANGUAGE= \ LC_CTYPE="C" \ LC_NUMERIC="C" \ LC_TIME="C" \ LC_COLLATE="C" \ LC_MONETARY="C" \ LC_MESSAGES="C" \ LC_PAPER="C" \ LC_NAME="C" \ LC_ADDRESS="C" \ LC_TELEPHONE="C" \ LC_MEASUREMENT="C" \ LC_IDENTIFICATION="C" \ LC_ALL= 09:42:22 ``` export LANG=de_DE.utf8; locale 09:42:23 locale: Cannot set LC_CTYPE to default locale: No such file or directory \ locale: Cannot set LC_MESSAGES to default locale: No such file or directory \ locale: Cannot set LC_ALL to default locale: No such file or directory \ LANG=de_DE.utf8 \ LANGUAGE= \ LC_CTYPE="de_DE.utf8" \ LC_NUMERIC="de_DE.utf8" \ LC_TIME="de_DE.utf8" \ LC_COLLATE="de_DE.utf8" \ LC_MONETARY="de_DE.utf8" \ LC_MESSAGES="de_DE.utf8" \ LC_PAPER="de_DE.utf8" \ LC_NAME="de_DE.utf8" \ LC_ 09:42:25 I didn't read the logs or anything about that line except the link. 09:42:26 ^ see 09:42:36 I noly set the LANG variable 09:43:14 shachaf: hm that javascript worked, but _not_ the corresponding for b_jonas's link. 09:43:32 as for LC_ALL, that's both an ovverrider env-var that you rarely use, and the key in the setlocale function to set or get the locale for all facets, and when you get it that way, you get a string that encodes the setting for each locale facet 09:43:42 Which link? 09:45:18 shachaf: the one in BANCStar 09:45:37 wob_jonas: fizzie already solved the LANG problem 09:45:50 oh, you mean THAT link. I should replace that. 09:45:53 but ``` explicitly selects LANG=C so it still won't work for that 09:47:26 [[BANCStar]] https://esolangs.org/w/index.php?diff=61285&oldid=61273 * B jonas * (+2) /* Implementation */ 09:47:44 oerjan: What does it do on the b_jonaslink? 09:48:14 Also what does document.querySelectorAll('#lHPb') print? 09:48:50 what's all this fancy querySelectorAll thing? 09:49:02 shachaf: complains in norwegian about the scrollIntoView property not existing (possibly because the querySelector returns NULL, the message is ambiguous) 09:49:25 I thought you just document.getElementById("IHPb"), which, mind you, also is a "new" javascript DOM function in that I wrote code back before it existed, but still 09:50:10 https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById 09:50:15 oh hm i may have replaced it wrong, let me try again 09:50:30 Oh, yes, that's better. I was going to use querySelectorAll earlier. 09:50:37 ah. crazy CSS stuff. 09:50:39 Anyway who even knows about web APIs? 09:51:02 shachaf: I have links to documentation about them, and wrote a short javascript function at least once. 09:51:32 that was lots of years ago, when browsers were very different 09:51:44 so I cared about portability to browsers that are now very ancient 09:52:12 shachaf: it actually worked without All, i had just accidentally capitalized the L in the anchor :P 09:52:28 (because i edited it by hand) 09:52:44 OK. 09:52:49 But you should use wob_jonas's thing. 09:52:57 You can tell wob_jonas is a wob expert. 09:53:14 this terrible ancient code was that => https://www.perlmonks.com/?node_id=841827 09:55:51 `? anchovy 09:55:52 anchovy? ¯\(°​_o)/¯ 09:55:53 `? anchovies 09:55:54 anchovies? ¯\(°​_o)/¯ 09:56:55 -!- sebbu3 has changed nick to sebbu. 09:59:46 * oerjan saves the js snippet in a ridiculous place 10:00:17 *+but convenient 10:00:53 in the wisdome? on the logs website itself? 10:01:36 no, in my Scratch.hs file 10:01:50 because it's almost always open. 10:01:55 oerjan: You can make a bookmark with "document.querySelector(location.hash).scrollIntoView()" or something like that. 10:02:02 And then just click on that? 10:02:13 hm... 10:29:13 I could just add something like that on the page. I was just assuming you wouldn't need any scripting to scroll to the location. 10:32:58 -!- oerjan has quit (Quit: Nite). 10:34:11 yes, that is a reasonable assumption 10:36:00 `? 7 10:36:02 7 is one third of the half of the answer. Also a somewhat popular reformed Borg drone. 10:48:31 -!- wob_jonas has quit (Ping timeout: 246 seconds). 10:59:37 -!- hakatashi has quit (Remote host closed the connection). 10:59:56 -!- hakatashi has joined. 11:17:59 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61286&oldid=61283 * A * (+323) /* Bitch is probably Turing-incomplete */ 11:19:45 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61287&oldid=61286 * A * (+65) Add my signature 11:20:58 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61288&oldid=61287 * A * (-7) /* No, it might be */ 11:21:59 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61289&oldid=61288 * TuxCrafting * (+334) 11:23:37 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61290&oldid=61289 * A * (+304) /* Bitch is probably Turing-incomplete */ 11:24:30 [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61291&oldid=61290 * A * (+2) /* Bitch is probably Turing-incomplete */ 11:27:07 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61292&oldid=61291 * A * (-322) Let User:TuxCrafting focus on the next comment 11:28:58 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61293&oldid=61292 * TuxCrafting * (+386) 11:30:25 [[Z3]] https://esolangs.org/w/index.php?diff=61294&oldid=61230 * A * (+63) 11:35:13 [[Bitch]] https://esolangs.org/w/index.php?diff=61295&oldid=61249 * A * (-9) /* Impossible */ 11:38:37 [[User:A]] https://esolangs.org/w/index.php?diff=61296&oldid=61029 * A * (-436) 11:40:54 I guess maybe it could be because it's a
and not an old-fashioned that it's jumping to. 11:44:43 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61297&oldid=61293 * TuxCrafting * (+468) 11:45:00 Also I should've made the line ids all lowercase. :/ 11:46:09 It's not like they're all that long anyway. 11:59:10 -!- arseniiv has joined. 12:00:08 -!- AnotherTest has quit (Ping timeout: 258 seconds). 12:24:14 [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61298&oldid=61274 * A * (-651) bitch is not worth featured. 12:27:40 either or id="" should work with anchor links 12:28:00 though I might be missing context here perhaps 12:38:52 -!- AnotherTest has joined. 13:00:24 FireFly: The context is that it all works on many browsers, with the exception of IE, where (AIUI) the scrolling doesn't work and the anchors are considered case-insensitive. Actually, I guess those might be the same problem? I haven't paid too much attention either. 13:00:45 ah 13:06:36 -!- Lord_of_Life has quit (Ping timeout: 244 seconds). 13:08:42 -!- Lord_of_Life has joined. 13:16:31 [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61299&oldid=61297 * A * (-367) /* Bitch is probably Turing-incomplete */ 13:42:21 -!- tromp has quit (Remote host closed the connection). 13:46:48 [[Laundry shop]] N https://esolangs.org/w/index.php?oldid=61300 * A * (+93) Created page with " [[Category:2019]] [[Category:Languages]] [[Category:Unimplemented]] [[Category:Stack-based]]" 13:52:47 [[Laundry shop]] https://esolangs.org/w/index.php?diff=61301&oldid=61300 * A * (+453) 13:53:15 [[Laundry shop]] https://esolangs.org/w/index.php?diff=61302&oldid=61301 * A * (+41) 13:54:21 [[Laundry shop]] https://esolangs.org/w/index.php?diff=61303&oldid=61302 * A * (+90) /* Syntax */ 13:54:38 [[Laundry shop]] https://esolangs.org/w/index.php?diff=61304&oldid=61303 * A * (-50) /* Syntax */ 13:54:48 [[Laundry shop]] https://esolangs.org/w/index.php?diff=61305&oldid=61304 * A * (-55) /* Hello, world! program */ 14:11:51 -!- tromp has joined. 14:13:37 -!- imode has joined. 14:16:17 -!- tromp has quit (Ping timeout: 246 seconds). 14:37:49 -!- MDude has quit (Quit: Going offline, see ya! (www.adiirc.com)). 14:51:22 -!- tromp has joined. 14:55:28 -!- tromp has quit (Ping timeout: 245 seconds). 15:11:54 [[User:TuxCrafting]] https://esolangs.org/w/index.php?diff=61306&oldid=61194 * TuxCrafting * (+516) 16:03:21 -!- tromp has joined. 16:21:14 -!- Cale has joined. 16:41:56 -!- b_jonas has joined. 16:59:37 -!- xkapastel has joined. 17:04:18 -!- b_jonas has set topic: for #esoteric: Welcome to the international stock market for esoteric programming language invention, implementation, ignorance, innovation, and integration! | 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. 17:04:31 do we want that old version of wisdom.pdf in the topic by the way? 17:08:06 happy World Amateur Radio Day! 17:21:07 -!- tromp has quit (Remote host closed the connection). 17:40:09 -!- tromp has joined. 17:44:13 [[User:Singingbanana]] M https://esolangs.org/w/index.php?diff=61307&oldid=57634 * Singingbanana * (-1) 17:58:50 [[Fastlane]] N https://esolangs.org/w/index.php?oldid=61308 * TuxCrafting * (+4311) Created page with "== Introduction == Fastlane is an esoteric language created by [[User:TuxCrafting]] that has a peculiar way of doing flow control by controlling the "speed" of the instructio..." 18:01:06 [[Fastlane]] M https://esolangs.org/w/index.php?diff=61309&oldid=61308 * TuxCrafting * (+108) categorize 18:01:28 -!- pikhq has quit (Ping timeout: 246 seconds). 18:04:51 -!- pikhq has joined. 18:04:53 [[Language list]] M https://esolangs.org/w/index.php?diff=61310&oldid=61193 * TuxCrafting * (+15) add fastlane 18:05:37 [[User:TuxCrafting]] M https://esolangs.org/w/index.php?diff=61311&oldid=61306 * TuxCrafting * (+15) here too 18:07:26 -!- imode has quit (Ping timeout: 268 seconds). 18:21:39 -!- tromp has quit (Remote host closed the connection). 18:28:11 -!- pikhq_ has joined. 18:31:30 -!- pikhq has quit (Ping timeout: 255 seconds). 18:33:11 -!- pikhq has joined. 18:33:23 -!- pikhq_ has quit (Ping timeout: 245 seconds). 18:43:37 -!- imode has joined. 18:53:58 -!- imode has quit (Ping timeout: 246 seconds). 19:00:09 -!- tromp has joined. 19:04:48 -!- tromp has quit (Ping timeout: 255 seconds). 19:11:48 -!- FreeFull has joined. 19:13:19 -!- imode has joined. 19:26:43 -!- imode has quit (Ping timeout: 245 seconds). 19:26:47 -!- imode1 has joined. 19:53:07 -!- imode1 has quit (Ping timeout: 246 seconds). 20:01:37 `? freischütz 20:01:38 freischütz? ¯\(°​_o)/¯ 20:04:59 -!- imode has joined. 20:24:13 -!- imode has quit (Ping timeout: 245 seconds). 20:30:30 -!- AnotherTest has quit (Ping timeout: 268 seconds). 20:50:08 -!- tromp has joined. 21:51:32 -!- imode has joined. 23:01:59 -!- imode has quit (Ping timeout: 246 seconds). 23:09:23 -!- imode has joined. 23:14:48 -!- MDude has joined. 23:23:41 -!- imode has quit (Ping timeout: 246 seconds). 23:37:43 -!- sebbu3 has joined. 23:39:51 -!- vertrex has quit (Ping timeout: 250 seconds). 23:40:28 -!- sebbu has quit (Disconnected by services). 23:40:34 -!- sebbu3 has changed nick to sebbu. 23:42:18 -!- vertrex has joined. 23:57:19 -!- oerjan has joined. 23:58:32 america is strange