←2019-04-17 2019-04-18 2019-04-19→ ↑2019 ↑all
00:04:12 <oerjan> `url bin/multicode
00:04:13 <HackEso> https://hack.esolangs.org/repo/file/tip/bin/multicode
00:04:27 <oerjan> `url bin/unidecode
00:04:27 <HackEso> https://hack.esolangs.org/repo/file/tip/bin/unidecode
00:05:30 <oerjan> `singlecode ₿
00:05:31 <HackEso> No output.
00:06:13 <oerjan> oh i see
00:06:18 <oerjan> `multicode ₿
00:06:19 <HackEso> Sequence '\xe2\x82\xbf' is not valid in charset 'ANSI_X3.4-1968'.
00:06:27 <oerjan> it's hit by that
00:06:48 <oerjan> `` echo $LANG
00:06:49 <HackEso> No output.
00:06:58 <oerjan> `locale
00:06:58 <HackEso> 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 <oerjan> `` locale
00:07:11 <HackEso> 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 <oerjan> `2 locale
00:07:19 <HackEso> 2/1:
00:07:50 <oerjan> i'm pretty sure there used to be something nz-ish there...
00:07:57 <ais523> ``` locale
00:07:58 <HackEso> 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 <oerjan> `` multicode ₿
00:08:18 <HackEso> Sequence '\xe2\x82\xbf' is not valid in charset 'ANSI_X3.4-1968'.
00:08:22 <oerjan> ``` multicode ₿
00:08:23 <HackEso> Sequence '\xe2\x82\xbf' is not valid in charset 'ANSI_X3.4-1968'.
00:08:52 <salpynx> `unicode 🐑
00:08:53 <HackEso> Sequence '\xf0\x9f\x90\x91' is not valid in charset 'ANSI_X3.4-1968'.
00:09:09 <oerjan> `` LC_CTYPE=en_US.UTF-8 multicode ₿
00:09:10 <HackEso> U+20BF BITCOIN SIGN \ UTF-8: e2 82 bf UTF-16BE: 20bf Decimal: &#8383; \ ₿ \ Category: Sc (Symbol, Currency) \ Bidi: ET (European Number Terminator)
00:09:16 <oerjan> aha
00:10:17 <oerjan> fizzie: HackEso's default locale is no longer nz-ish and that breaks unicode stuff
00:10:38 <oerjan> `` LC_CTYPE=nz_.UTF-8 icode ₿
00:10:39 <HackEso> ​/hackenv/bin/`: line 5: warning: setlocale: LC_CTYPE: cannot change locale (): No such file or directory
00:10:44 <oerjan> oops
00:10:54 <oerjan> `` LC_CTYPE=en_US.UTF-8 icode ₿
00:10:55 <HackEso> ​[U+20BF BITCOIN SIGN]
00:11:05 <oren> now someone is contacting the guy who originally designed Calibri?
00:11:20 <oren> what is even
00:11:25 <oerjan> 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 <oren> it's not that big a deal
00:14:01 <oerjan> 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 <oerjan> `` LC_CTYPE=en_NZ.UTF-8 icode ₿
00:15:44 <HackEso> ​[U+20BF BITCOIN SIGN]
00:15:51 -!- ais523 has joined.
00:15:56 <oerjan> hm it's still there. or at least not erring out.
00:21:35 <esowiki> [[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 <oerjan> `wisdom baba
00:21:38 <HackEso> That's not wise.
00:36:48 <shachaf> i,i #define CASE break; case ␤ #define DEFAULT break; default
00:44:57 <ais523> is «switch(i) { break; }» valid syntax?
00:45:03 <ais523> my guess is yes but it produces a warning?
00:45:29 <ais523> `! c switch(4) { case 4: puts("Hello, world!"); break; }
00:45:29 <shachaf> No warning when I tried.
00:45:31 <HackEso> Hello, world!
00:45:36 <ais523> `! c switch(4) { break; case 4: puts("Hello, world!"); break; }
00:45:38 <HackEso> Hello, world!
00:45:48 <ais523> `! c switch(4) { puts("Unreachable!"); break; case 4: puts("Hello, world!"); break; }
00:45:49 <HackEso> Hello, world!
00:45:57 <ais523> I guess `! c doesn't show warnings anyway
00:46:03 <shachaf> clang has a warning with -Weverything
00:46:22 <shachaf> warning: 'break' will never be executed [-Wunreachable-code-break]
00:46:32 <shachaf> But that warns about lots of things I don't care about.
00:47:47 <ais523> 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 <shachaf> Maybe I'll just start using this.
00:48:44 <ais523> here's my test: https://tio.run/##VYo9C8IwFEX3/IpnXVIwItjJiLObo3N8iW3wNZF8WEH6141BJ4d7OfdwUfSIpSytQ8rawD4mbf16ODDrEozKOv7wVrfwYgBxsgkH3v0WwCUYdZMVUUUD3e4r7zlF3hwNkV/B5APpRdPK//9cE0zKwcFGsrmUN15J9bGIsyKqbZ4pqCJO2w8
00:48:56 <shachaf> I could #define Case break; case and #define OrCase case, and then forbid the string "case"
00:49:05 <shachaf> And similarly for default.
00:49:40 <ais523> gcc and clang both have enablable warnings about fallthroughs without an appropriate comment
00:50:18 <shachaf> OK, but the code with breaks still looks ugly.
00:52:28 <shachaf> gcc on godbolt doesn't print any warnings for your code.
00:52:35 <shachaf> With those flags, at version 8.3?
00:52:42 <shachaf> I don't see the tio.run compiler output.
00:53:51 <ais523> it's at the bottom
00:53:57 -!- brandonson has quit (Remote host closed the connection).
00:54:01 <ais523> in the "Debug" section
00:54:06 <ais523> only there isn't any with this code
00:54:25 <shachaf> Oh, you mean it warns for non-break code.
00:54:25 <ais523> if you put a statement before the first break;, you'll see compiler warnings there
00:54:37 <ais523> right
00:54:51 -!- mich181189_ has joined.
01:02:18 <fizzie> 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 <fizzie> 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 <fizzie> `unidecode ₿
01:04:31 <HackEso> No output.
01:04:38 -!- Lord_of_Life has quit (Ping timeout: 258 seconds).
01:04:42 <fizzie> `unidecode ä
01:04:43 <HackEso> ​[U+00E4 LATIN SMALL LETTER A WITH DIAERESIS]
01:04:55 <fizzie> 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 <fizzie> ...or, uh, odd.
01:08:23 <fizzie> Oh, right: it has a fallback.
01:09:39 <fizzie> 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 <fizzie> ais523: Favourite switch trick: replacing `if (x == 4) foo();` with `switch (x) case 4: foo();`.
01:11:31 <fizzie> A non-block switch body just looks odd.
01:17:55 <fizzie> `unidecode ₿
01:17:56 <HackEso> ​[U+20BF BITCOIN SIGN]
01:17:57 <fizzie> `locale
01:17:58 <HackEso> 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 <fizzie> oerjan: I just set LC_CTYPE for now, I don't remember how it used to be.
01:41:24 <oerjan> thanks
01:45:12 <oerjan> fizzie: looks like it was most except LC_ALL : https://esolangs.org/logs/2018-06-02.html#lIc
01:45:31 <oerjan> and LANGUAGE
01:46:15 <fizzie> I think that probably means LANG was set explicitly.
01:46:51 <fizzie> `` env -u LC_CTYPE LANG=en_NZ.UTF-8 locale
01:46:52 <HackEso> 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 <fizzie> That looks about the same.
01:47:08 <fizzie> Let's swap it to that then.
01:47:15 <oerjan> `cat bin/``
01:47:16 <HackEso> ​#!/bin/sh \ export LANG=C; exec bash -O extglob -c "$@" | rnooodl
01:47:44 <fizzie> `locale
01:47:44 <HackEso> 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 <oerjan> i guess ``` is some evidence for it not having been more than LANG
01:48:31 <fizzie> Well, I also remember it only setting one variable.
01:49:18 <fizzie> (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 <shachaf> Man, this Case thing is great.
02:47:26 <ais523> what do people use titlecase for in C, anyway?
02:48:22 <shachaf> I use it for types.
02:48:29 <shachaf> And also for these keyword macros.
02:48:41 <shachaf> I also have Struct/Union/Enum
02:49:11 <shachaf> And "cast" and "global" which are just defined to be nothing. Maybe I should make the case consistent.
02:50:22 <shachaf> 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 <oerjan> 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 <oerjan> (on single day logs i usually manage to find the highlighting by paging down a bit)
03:47:04 <shachaf> The issue is that IE can't find the anchor if there's another one that's case-insensitively equal?
03:47:11 <esowiki> [[BANCStar]] M https://esolangs.org/w/index.php?diff=61273&oldid=61199 * Oerjan * (+1) /* Implementation */ Fix bug (presumably)
04:00:43 <oerjan> 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 <esowiki> [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61274&oldid=61244 * A * (-176) /* List of candidates */
04:28:03 <esowiki> [[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 <esowiki> [[User talk:A]] https://esolangs.org/w/index.php?diff=61276&oldid=61267 * A * (+156)
08:17:51 <esowiki> [[Volatile]] https://esolangs.org/w/index.php?diff=61277&oldid=60906 * A * (+60) /* Number tricks */
08:18:00 <esowiki> [[User talk:A]] https://esolangs.org/w/index.php?diff=61278&oldid=61276 * A * (-711) Blanked the page
08:18:17 <esowiki> [[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 <esowiki> [[Works in progress]] https://esolangs.org/w/index.php?diff=61280&oldid=61157 * A * (-16)
08:22:26 <esowiki> [[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 <esowiki> [[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 <esowiki> [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61283&oldid=61282 * A * (-427)
08:49:08 <esowiki> [[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 <wob_jonas> 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 <wob_jonas> 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 <oerjan> i'll have to replace the browser eventually.
09:23:59 <oerjan> and the log anchors are supposed to be permanent.
09:25:44 <wob_jonas> 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 <shachaf> oerjan: You can probably write a short script to scroll to an anchor case-sensitively in IE.
09:26:08 <wob_jonas> you could also use a different browser (like a text editor) just for this purpose, without changing the normal browser
09:26:10 <shachaf> I'd write it but I don't have access to IE.
09:26:58 <wob_jonas> does this depend on the version of IE?
09:32:07 <oerjan> the version is the latest.
09:32:21 <wob_jonas> ok
09:34:45 <oerjan> what i usually do is look for the automatically highlighted text, which is fast enough in the daily logs.
09:35:09 <wob_jonas> wait, so that one works, only the anchor doesn't?
09:35:11 <wob_jonas> interesting
09:35:19 <shachaf> Oh, the highlighting works, right.
09:36:02 <shachaf> oerjan: What if you type "document.querySelector('#lIc').scrollIntoView()" into the JavaScript console?
09:39:26 <oerjan> . o O ( what #lIc )
09:40:04 <shachaf> 18:45 <oerjan> fizzie: looks like it was most except LC_ALL : https://esolangs.org/logs/2018-06-02.html#lIc
09:40:16 <shachaf> Hmm, that wasn't a monthly link or a b_jonaslink.
09:41:57 <wob_jonas> 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 <wob_jonas> ``` loacle
09:42:04 <wob_jonas> ``` locale
09:42:05 <HackEso> bash: loacle: command not found
09:42:06 <HackEso> 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 <wob_jonas> ``` export LANG=de_DE.utf8; locale
09:42:23 <HackEso> 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 <shachaf> I didn't read the logs or anything about that line except the link.
09:42:26 <wob_jonas> ^ see
09:42:36 <wob_jonas> I noly set the LANG variable
09:43:14 <oerjan> shachaf: hm that javascript worked, but _not_ the corresponding for b_jonas's link.
09:43:32 <wob_jonas> 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 <shachaf> Which link?
09:45:18 <oerjan> shachaf: the one in BANCStar
09:45:37 <oerjan> wob_jonas: fizzie already solved the LANG problem
09:45:50 <wob_jonas> oh, you mean THAT link. I should replace that.
09:45:53 <oerjan> but ``` explicitly selects LANG=C so it still won't work for that
09:47:26 <esowiki> [[BANCStar]] https://esolangs.org/w/index.php?diff=61285&oldid=61273 * B jonas * (+2) /* Implementation */
09:47:44 <shachaf> oerjan: What does it do on the b_jonaslink?
09:48:14 <shachaf> Also what does document.querySelectorAll('#lHPb') print?
09:48:50 <wob_jonas> what's all this fancy querySelectorAll thing?
09:49:02 <oerjan> shachaf: complains in norwegian about the scrollIntoView property not existing (possibly because the querySelector returns NULL, the message is ambiguous)
09:49:25 <wob_jonas> 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 <wob_jonas> https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById
09:50:15 <oerjan> oh hm i may have replaced it wrong, let me try again
09:50:30 <shachaf> Oh, yes, that's better. I was going to use querySelectorAll earlier.
09:50:37 <wob_jonas> ah. crazy CSS stuff.
09:50:39 <shachaf> Anyway who even knows about web APIs?
09:51:02 <wob_jonas> shachaf: I have links to documentation about them, and wrote a short javascript function at least once.
09:51:32 <wob_jonas> that was lots of years ago, when browsers were very different
09:51:44 <wob_jonas> so I cared about portability to browsers that are now very ancient
09:52:12 <oerjan> shachaf: it actually worked without All, i had just accidentally capitalized the L in the anchor :P
09:52:28 <oerjan> (because i edited it by hand)
09:52:44 <shachaf> OK.
09:52:49 <shachaf> But you should use wob_jonas's thing.
09:52:57 <shachaf> You can tell wob_jonas is a wob expert.
09:53:14 <wob_jonas> this terrible ancient code was that => https://www.perlmonks.com/?node_id=841827
09:55:51 <wob_jonas> `? anchovy
09:55:52 <HackEso> anchovy? ¯\(°​_o)/¯
09:55:53 <wob_jonas> `? anchovies
09:55:54 <HackEso> 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 <oerjan> *+but convenient
10:00:53 <wob_jonas> in the wisdome? on the logs website itself?
10:01:36 <oerjan> no, in my Scratch.hs file
10:01:50 <oerjan> because it's almost always open.
10:01:55 <shachaf> oerjan: You can make a bookmark with "document.querySelector(location.hash).scrollIntoView()" or something like that.
10:02:02 <shachaf> And then just click on that?
10:02:13 <oerjan> hm...
10:29:13 <fizzie> 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 <wob_jonas> yes, that is a reasonable assumption
10:36:00 <wob_jonas> `? 7
10:36:02 <HackEso> 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 <esowiki> [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61286&oldid=61283 * A * (+323) /* Bitch is probably Turing-incomplete */
11:19:45 <esowiki> [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61287&oldid=61286 * A * (+65) Add my signature
11:20:58 <esowiki> [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61288&oldid=61287 * A * (-7) /* No, it might be */
11:21:59 <esowiki> [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61289&oldid=61288 * TuxCrafting * (+334)
11:23:37 <esowiki> [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61290&oldid=61289 * A * (+304) /* Bitch is probably Turing-incomplete */
11:24:30 <esowiki> [[Talk:Bitch]] M https://esolangs.org/w/index.php?diff=61291&oldid=61290 * A * (+2) /* Bitch is probably Turing-incomplete */
11:27:07 <esowiki> [[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 <esowiki> [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61293&oldid=61292 * TuxCrafting * (+386)
11:30:25 <esowiki> [[Z3]] https://esolangs.org/w/index.php?diff=61294&oldid=61230 * A * (+63)
11:35:13 <esowiki> [[Bitch]] https://esolangs.org/w/index.php?diff=61295&oldid=61249 * A * (-9) /* Impossible */
11:38:37 <esowiki> [[User:A]] https://esolangs.org/w/index.php?diff=61296&oldid=61029 * A * (-436)
11:40:54 <fizzie> I guess maybe it could be because it's a <div id="x"> and not an old-fashioned <a name="x"> that it's jumping to.
11:44:43 <esowiki> [[Talk:Bitch]] https://esolangs.org/w/index.php?diff=61297&oldid=61293 * TuxCrafting * (+468)
11:45:00 <fizzie> Also I should've made the line ids all lowercase. :/
11:46:09 <fizzie> 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 <esowiki> [[Esolang:Featured languages/Candidates]] https://esolangs.org/w/index.php?diff=61298&oldid=61274 * A * (-651) bitch is not worth featured.
12:27:40 <FireFly> either <a name=""> or id="" should work with anchor links
12:28:00 <FireFly> though I might be missing context here perhaps
12:38:52 -!- AnotherTest has joined.
13:00:24 <fizzie> 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 <FireFly> ah
13:06:36 -!- Lord_of_Life has quit (Ping timeout: 244 seconds).
13:08:42 -!- Lord_of_Life has joined.
13:16:31 <esowiki> [[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 <esowiki> [[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 <esowiki> [[Laundry shop]] https://esolangs.org/w/index.php?diff=61301&oldid=61300 * A * (+453)
13:53:15 <esowiki> [[Laundry shop]] https://esolangs.org/w/index.php?diff=61302&oldid=61301 * A * (+41)
13:54:21 <esowiki> [[Laundry shop]] https://esolangs.org/w/index.php?diff=61303&oldid=61302 * A * (+90) /* Syntax */
13:54:38 <esowiki> [[Laundry shop]] https://esolangs.org/w/index.php?diff=61304&oldid=61303 * A * (-50) /* Syntax */
13:54:48 <esowiki> [[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 <esowiki> [[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 <b_jonas> do we want that old version of wisdom.pdf in the topic by the way?
17:08:06 <kmc> 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 <esowiki> [[User:Singingbanana]] M https://esolangs.org/w/index.php?diff=61307&oldid=57634 * Singingbanana * (-1)
17:58:50 <esowiki> [[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 <esowiki> [[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 <esowiki> [[Language list]] M https://esolangs.org/w/index.php?diff=61310&oldid=61193 * TuxCrafting * (+15) add fastlane
18:05:37 <esowiki> [[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 <b_jonas> `? freischütz
20:01:38 <HackEso> 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 <b_jonas> america is strange
←2019-04-17 2019-04-18 2019-04-19→ ↑2019 ↑all