←2020-05-14 2020-05-15 2020-05-16→ ↑2020 ↑all
00:03:59 -!- zzo38 has quit (Quit: zzo38).
00:04:50 -!- zzo38 has joined.
00:27:54 -!- arseniiv has quit (Ping timeout: 272 seconds).
00:50:20 -!- LKoen has quit (Remote host closed the connection).
00:58:32 <int-e> @metar lowi
00:58:32 <lambdabot> LOWI 150050Z AUTO 08005KT 050V110 9999 -SHRA FEW011 SCT013 BKN015 10/08 Q1010
00:59:00 <int-e> light rain showers, hmm
01:02:11 <shachaf> @metar koak
01:02:11 <lambdabot> KOAK 150053Z 29013KT 10SM FEW016 SCT023 SCT033 BKN180 19/12 A3011 RMK AO2 SLP195 T01940122
01:11:26 <int-e> too warm?
01:15:28 <shachaf> Seems fine.
01:15:35 <shachaf> Too bad I'm indoors all day.
01:15:51 <int-e> well I imagine it's warmer during the day :P
01:16:13 <shachaf> @date
01:16:13 <lambdabot> Maybe you meant: vote paste dice
01:16:15 <shachaf> @time
01:16:19 <lambdabot> Local time for shachaf is Thu May 14 18:16:15 2020
01:16:33 <pikhq> @metar KAPA
01:16:34 <lambdabot> KAPA 150053Z 11008KT 10SM FEW055 BKN110 14/06 A2999 RMK AO2 SLP118 T01440061
01:17:01 <int-e> Oh.
01:17:25 <int-e> Never mind, I totally misplaced KOAK on the map.
01:20:01 <int-e> I think the "SH" is a lie, this is steady rain. (And I have a hard time believing that the 6km or so distance from the airport make a difference)
01:20:45 <int-e> I'd argue against the - as well, but I don't really know what the standard for that is :)
01:22:22 <int-e> But maybe it was correct 2h ago.
01:37:39 -!- zzo38 has quit (Disconnected by services).
01:37:44 -!- zzo38 has joined.
04:08:23 -!- xelxebar has quit (Ping timeout: 240 seconds).
04:11:23 <zzo38> Would someone help with a set of Magic: the Gathering cards that I am making?
04:22:51 -!- xelxebar has joined.
04:33:09 <int-e> shachaf: So I did give SSE a try; it came surprisingly close to the plain integer code (23 cycles vs. 21) after tweaking the assembly generated by g++ (which added loads to and from the xmm registers to each loop iteration for no good reason)
04:33:54 <shachaf> Does clang also do it?
04:34:06 <int-e> clang fails to assign more than 8 XMM registers.
04:35:03 <int-e> or maybe it's something else; it complains with opt.cc:236:9: error: couldn't allocate output register for constraint 'x'
04:35:11 <shachaf> You're using SIMD intrinsics with a fixed number of registers and it's still loading and storing all the time?
04:35:15 <shachaf> Man, I don't know.
04:35:26 <int-e> I'm using inline assembly
04:35:46 <int-e> because I wanted to be fair ... and the integer code is using inline assembly
04:39:24 <int-e> It's not the number of registers. clang doesn't like this: asm("" : "+x" (v));
04:39:52 <int-e> (which is supposed to assign an XMM input/output register for v)
04:40:36 <int-e> clang version 9.0.1-12
04:43:15 <zzo38> Does it work in GCC?
04:43:58 <int-e> yes it does
04:44:12 <shachaf> clang 9 seems to be happy with that line out of context according to godbolt.org.
04:44:41 <int-e> mmm
04:46:10 <int-e> void test() { unsigned __int128 v; asm("" : "+x" (v)); }
04:47:24 <int-e> I guess the type matters.
04:47:49 <zzo38> Check that the generated code is correct, and then file a bug report for whichever compiler is wrong (possibly both).
04:48:03 <int-e> can't be arsed.
04:49:26 <zzo38> OK
04:57:27 <shachaf> I was using __m128 v;
05:15:39 <int-e> mmm
05:21:02 <int-e> funny, if I change that to "+x" (*(__m128d*)&v) it's accepted in clang++ and faster than before in g++
05:21:44 <int-e> also funny: -fheinous-gnu-extensions
05:23:21 <zzo38> What does that do exactly?
05:24:02 <int-e> it's a pretty silly way to cast a value while still being an lvalue
05:24:51 <zzo38> I just found out now that clang has a \p escape for making Pascal strings, apparently.
05:27:42 <int-e> shachaf: so that gets it down to the 23 cycles without hacking the assembly code, and g++ and clang++ end up being equally fast (unsurprisingly, since the only thing they really add is a loop counter)
05:55:29 -!- doesthiswork has joined.
05:59:53 <zzo38> I don't generaly use inline assembly codes in C, because then it would be dependent on the computer, and a program is written in C to avoid that so that it can work on many computers.
06:20:57 <int-e> Actually I have no plans of using this code.
06:22:54 <int-e> The version I actually used was pure C(++ makes no real difference) and about 30% slower... and more than fast enough.
06:34:00 <shachaf> zzo38: What about SIMD intrinsics?
06:38:02 -!- imode has quit (Ping timeout: 256 seconds).
06:43:30 -!- zseri has joined.
06:51:33 -!- kspalaiologos has joined.
06:52:02 <kspalaiologos> 46.43.2.108 <- someone has mirrored the wiki, including the cert lol
06:52:33 <int-e> that's fizzie's thing
06:52:58 <int-e> actually, esolangs.org has address 46.43.2.108
07:10:56 <kspalaiologos> oh, really
07:11:10 <kspalaiologos> damn, I didn't know
07:30:13 -!- zseri has quit (Quit: zseri).
08:03:03 -!- doesthiswork has quit (Ping timeout: 256 seconds).
08:03:49 -!- rain1 has joined.
09:15:34 -!- sprocklem has quit (Ping timeout: 240 seconds).
09:17:40 -!- sprocklem has joined.
09:22:42 -!- sprocklem has quit (Ping timeout: 260 seconds).
09:23:16 -!- sprocklem has joined.
09:30:43 -!- Lord_of_Life_ has joined.
09:31:09 -!- kspalaiologos has quit (Read error: Connection reset by peer).
09:31:33 -!- kspalaiologos has joined.
09:32:14 -!- Lord_of_Life has quit (Ping timeout: 256 seconds).
09:32:14 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
09:41:43 <rain1> how is the group theory approcah going?
09:44:50 -!- opticnerve has joined.
09:45:47 <kspalaiologos> `? hackeso
09:45:49 <HackEso> HackEso is almost, but not quite, entirely unlike HackEgo.
09:56:27 -!- atslash has quit (Ping timeout: 260 seconds).
09:59:46 -!- FreeFull has joined.
10:00:56 -!- LKoen has joined.
10:08:03 -!- atslash has joined.
10:15:57 <esowiki> [[Babalang]] https://esolangs.org/w/index.php?diff=72287&oldid=71780 * RocketRace * (+2251) Document changes from version 1.1
10:16:36 <esowiki> [[Babalang]] M https://esolangs.org/w/index.php?diff=72288&oldid=72287 * RocketRace * (+35) Version number!
10:17:17 -!- gnu-nobody has joined.
10:25:05 -!- Cale has quit (Ping timeout: 240 seconds).
11:52:28 <esowiki> [[Talk:ARGENTOS]] https://esolangs.org/w/index.php?diff=72289&oldid=50222 * A * (+217)
12:05:13 -!- Arcorann has joined.
12:22:31 <Arcorann> Anyone ever try to implement the TPK algorithm in an esoteric language?
12:26:19 -!- arseniiv has joined.
12:36:13 <esowiki> [[Asm2bf]] https://esolangs.org/w/index.php?diff=72290&oldid=71366 * Palaiologos * (+602) v1.3.7 release notes
12:44:54 <esowiki> [[Asm2bf]] https://esolangs.org/w/index.php?diff=72291&oldid=72290 * Palaiologos * (+195) labels => bflabels, discourage constant numeric label usage
12:50:07 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72292&oldid=72284 * AnimaLibera * (+4325) add special ports
12:56:29 -!- doesthiswork has joined.
13:00:51 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72293&oldid=72292 * AnimaLibera * (+352) better style
13:01:21 <esowiki> [[Silberjoder]] M https://esolangs.org/w/index.php?diff=72294&oldid=53522 * PythonshellDebugwindow * (+0) /* Examples */
13:03:29 <esowiki> [[Asm2bf]] https://esolangs.org/w/index.php?diff=72295&oldid=72291 * Palaiologos * (+1978) derle deprecation notice
13:03:53 <kspalaiologos> the article has gotten so messy
13:04:01 <kspalaiologos> I'll need to clean it up one day
13:04:12 <kspalaiologos> I'd appreciate some feedback, though
13:06:01 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72296&oldid=72293 * AnimaLibera * (+70) clarify the notion of mysterious code in the Shared bit buffer definition
13:09:05 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72297&oldid=72296 * AnimaLibera * (+163) add an intro the the special ports section
13:10:31 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72298&oldid=72297 * AnimaLibera * (+46) better style for the special ports section
13:12:16 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72299&oldid=72298 * AnimaLibera * (+28) even better style for the special ports section
13:17:18 <esowiki> [[Ports]] M https://esolangs.org/w/index.php?diff=72300&oldid=72299 * AnimaLibera * (+132) add recommendation to use a script to output a string
13:28:04 -!- arseniiv_ has joined.
13:28:19 <esowiki> [[What a mess!]] M https://esolangs.org/w/index.php?diff=72301&oldid=68580 * PythonshellDebugwindow * (+154)
13:31:08 -!- arseniiv has quit (Ping timeout: 256 seconds).
13:31:29 <esowiki> [[Language list]] M https://esolangs.org/w/index.php?diff=72302&oldid=72279 * PythonshellDebugwindow * (+30) /* W */
13:31:30 -!- ski has quit (Ping timeout: 258 seconds).
13:32:14 -!- ski has joined.
13:43:12 <kspalaiologos> fungot, do you like markov chains?
13:43:12 <fungot> kspalaiologos: hci is a huge pita :p http://rafb.net/ fnord the clicks are too far apart to be double clicks links on mirc. :p
13:44:17 <kspalaiologos> fungot, please say something that makes sense
13:44:17 <fungot> kspalaiologos: works fine fnord you can see precisely where errors occur in particularly hairy macro interactions. continuations as a y combinator. i assumed it was a sake or something.
14:00:12 -!- rain1 has quit (Quit: Lost terminal).
14:15:39 -!- Cale has joined.
14:28:05 -!- Cale has quit (Ping timeout: 240 seconds).
14:32:35 <esowiki> [[User:PythonshellDebugwindow/(Unnamed language)]] M https://esolangs.org/w/index.php?diff=72303&oldid=72286 * PythonshellDebugwindow * (+48) /* Edge cases */
14:34:13 <esowiki> [[User:PythonshellDebugwindow/(Unnamed language)]] M https://esolangs.org/w/index.php?diff=72304&oldid=72303 * PythonshellDebugwindow * (+180) /* Builtins */
14:35:42 <esowiki> [[User:PythonshellDebugwindow/(Unnamed language)]] M https://esolangs.org/w/index.php?diff=72305&oldid=72304 * PythonshellDebugwindow * (+144)
14:37:30 <esowiki> [[User:PythonshellDebugwindow/Cmt]] https://esolangs.org/w/index.php?diff=72306&oldid=71911 * PythonshellDebugwindow * (+0) PythonshellDebugwindow changed the content model of the page [[User:PythonshellDebugwindow/Cmt]] from "plain text" to "wikitext"
14:37:30 <esowiki> [[Special:Log/contentmodel]] change * PythonshellDebugwindow * PythonshellDebugwindow changed the content model of the page [[User:PythonshellDebugwindow/Cmt]] from "plain text" to "wikitext"
14:39:52 -!- Cale has joined.
14:43:42 <esowiki> [[-]] M https://esolangs.org/w/index.php?diff=72307&oldid=72247 * PythonshellDebugwindow * (+24)
14:51:32 <esowiki> [[Asm2bf]] M https://esolangs.org/w/index.php?diff=72308&oldid=72295 * Palaiologos * (+16) cam / csm (v1.3.7)
14:53:37 -!- eso2 has joined.
14:55:17 <esowiki> [[Asm2bf]] M https://esolangs.org/w/index.php?diff=72309&oldid=72308 * Palaiologos * (+1001) Regular expressions behind preprocessors
14:57:29 <esowiki> [[-]] M https://esolangs.org/w/index.php?diff=72310&oldid=72307 * PythonshellDebugwindow * (+196) fix interpreter
15:03:47 -!- zseri has joined.
15:05:38 -!- eso2 has quit (Remote host closed the connection).
15:09:55 <esowiki> [[User:PythonshellDebugwindow/(Unnamed language)]] M https://esolangs.org/w/index.php?diff=72311&oldid=72305 * PythonshellDebugwindow * (+2) /* Not function (e.g. !x) */
15:26:02 -!- Arcorann has quit (Read error: Connection reset by peer).
15:32:16 -!- tromp_ has joined.
15:32:43 <esowiki> [[XENBLN]] M https://esolangs.org/w/index.php?diff=72312&oldid=71734 * PythonshellDebugwindow * (+56) /* Program structure */
15:33:09 <esowiki> [[XENBLN]] M https://esolangs.org/w/index.php?diff=72313&oldid=72312 * PythonshellDebugwindow * (-1) /* Program structure */
15:34:50 -!- zseri has quit (Quit: zseri).
15:35:45 -!- tromp has quit (Ping timeout: 272 seconds).
15:35:45 -!- tromp_ has quit (Read error: Connection reset by peer).
15:36:03 -!- tromp has joined.
15:37:22 <esowiki> [[XENBLN]] M https://esolangs.org/w/index.php?diff=72314&oldid=72313 * PythonshellDebugwindow * (+10) /* Datatypes */ update link
15:41:36 <esowiki> [[Asm2bf]] M https://esolangs.org/w/index.php?diff=72315&oldid=72309 * Palaiologos * (+258)
15:42:56 -!- gnu-nobody has quit (Ping timeout: 265 seconds).
15:46:45 <esowiki> [[Asm2bf]] https://esolangs.org/w/index.php?diff=72316&oldid=72315 * Palaiologos * (+231) Remove contradictionary info, rework code to omit the floor character
15:48:19 <esowiki> [[Asm2bf]] M https://esolangs.org/w/index.php?diff=72317&oldid=72316 * Palaiologos * (-171) Move it to the public domain!
15:51:23 <esowiki> [[Asm2bf]] https://esolangs.org/w/index.php?diff=72318&oldid=72317 * Palaiologos * (+511) Sierpinski triangles example
16:06:44 -!- LKoen_ has joined.
16:09:03 -!- LKoen has quit (Quit: Leaving).
16:16:00 -!- tromp has quit (Remote host closed the connection).
16:23:47 -!- atslash has quit (Ping timeout: 260 seconds).
16:24:30 -!- atslash has joined.
16:27:01 -!- imode has joined.
16:27:10 -!- gnu-nobody has joined.
16:27:50 -!- zseri has joined.
16:33:53 -!- adu has joined.
16:34:57 -!- adu has quit (Client Quit).
16:36:30 -!- adu has joined.
16:48:49 -!- gnu-nobody has quit (Ping timeout: 264 seconds).
16:49:45 -!- tromp has joined.
16:54:55 -!- tromp has quit (Ping timeout: 272 seconds).
17:14:18 <esowiki> [[Special:Log/newusers]] create * Enter Your USERNAME * New user account
17:19:57 <b_jonas> `olist 1202
17:19:58 <HackEso> olist 1202: shachaf oerjan Sgeo FireFly boily nortti b_jonas
17:25:03 <doesthiswork> what webcomic is olist again?
17:27:03 <b_jonas> `? olist
17:27:04 <HackEso> olist is update notification for the webcomic Order of the Stick. http://www.giantitp.com/comics/ootslatest.html
17:27:16 <b_jonas> I could make the olist script print the url to the strip
17:38:52 -!- rain1 has joined.
17:41:33 -!- gnu-nobody has joined.
17:41:48 <esowiki> [[Asm2bf]] https://esolangs.org/w/index.php?diff=72319&oldid=72318 * Palaiologos * (+1402) constpp, v1.3.8
17:47:49 <b_jonas> oh yeah, I should use the @ command for that
17:47:55 <b_jonas> `@ doesthis work ? olist
17:47:56 <HackEso> doesthis: /hackenv/bin/nur: line 2: work: command not found
17:47:58 <b_jonas> `@ doesthiswork ? olist
17:48:00 <HackEso> doesthiswork: olist is update notification for the webcomic Order of the Stick. http://www.giantitp.com/comics/ootslatest.html
17:49:02 -!- gnu-nobody has quit (Ping timeout: 256 seconds).
17:51:27 -!- gnu-nobody has joined.
17:56:50 -!- tromp has joined.
18:08:22 <esowiki> [[Asm2bf]] M https://esolangs.org/w/index.php?diff=72320&oldid=72319 * PythonshellDebugwindow * (+0) /* Tips and tricks */
18:08:41 -!- LKoen_ has quit (Remote host closed the connection).
18:10:24 <esowiki> [[Y/N]] M https://esolangs.org/w/index.php?diff=72321&oldid=62429 * PythonshellDebugwindow * (+16)
18:16:47 <orbitaldecay> After reading http://nsl.com/misc/papers/The%20Theory%20of%20Concatenative%20Combinators.htm, I suspect there is a single combinator base similar to iota
18:17:00 -!- rain1 has quit (Quit: leaving).
18:21:30 -!- gnu-nobody has quit (Quit: Konversation terminated!).
18:21:42 -!- gnu-nobody has joined.
18:38:37 -!- gnu-nobody has quit (Ping timeout: 264 seconds).
18:48:16 -!- kspalaiologos has quit (Ping timeout: 246 seconds).
18:51:31 -!- kspalaiologos has joined.
18:55:59 -!- gnu-nobody has joined.
18:58:32 <esowiki> [[Bias]] N https://esolangs.org/w/index.php?oldid=72322 * PythonshellDebugwindow * (+1193) Created page with ":''This page is a work-in-progress, but the language is not. Please dont make major changes to the article without consulting the talk page.'' '''Bias''' is an esolang by..."
18:58:55 <esowiki> [[Bias]] M https://esolangs.org/w/index.php?diff=72323&oldid=72322 * PythonshellDebugwindow * (+1) /* Infinite 1-char Cat */
19:06:08 -!- kspalaiologos has quit (Read error: Connection reset by peer).
19:06:29 -!- kspalaiologos has joined.
19:11:30 -!- zseri has quit (Remote host closed the connection).
19:12:38 -!- zseri has joined.
19:13:29 -!- tromp has quit (Remote host closed the connection).
19:18:00 -!- LKoen has joined.
19:32:44 -!- atslash has quit (Ping timeout: 256 seconds).
19:33:57 -!- atslash has joined.
19:36:58 -!- zseri has quit (Remote host closed the connection).
19:37:28 -!- tromp has joined.
19:38:06 -!- zseri has joined.
19:49:07 -!- zseri has quit (Remote host closed the connection).
19:50:15 -!- zseri has joined.
19:54:23 <esowiki> [[-]] M https://esolangs.org/w/index.php?diff=72324&oldid=72310 * PythonshellDebugwindow * (-905) /* NodeJS Interpreter */
19:55:13 <esowiki> [[Alphaprint]] M https://esolangs.org/w/index.php?diff=72325&oldid=71601 * PythonshellDebugwindow * (+30) /* Resources */
20:03:59 <esowiki> [[Eso2D]] M https://esolangs.org/w/index.php?diff=72326&oldid=71065 * PythonshellDebugwindow * (+37) /* Resources */
20:12:16 -!- gnu-nobody has quit (Ping timeout: 246 seconds).
20:14:41 -!- kspalaiologos has quit (Quit: Leaving).
20:15:57 -!- arseniiv_ has quit (Ping timeout: 256 seconds).
20:24:49 -!- adu has quit (Quit: adu).
20:26:03 <esowiki> [[Bias]] https://esolangs.org/w/index.php?diff=72327&oldid=72323 * PythonshellDebugwindow * (+762)
20:26:16 <esowiki> [[Bias]] M https://esolangs.org/w/index.php?diff=72328&oldid=72327 * PythonshellDebugwindow * (+2) /* Inside biases */
20:26:54 <esowiki> [[Bias]] M https://esolangs.org/w/index.php?diff=72329&oldid=72328 * PythonshellDebugwindow * (+11) /* Hello, World! */
20:27:09 -!- LKoen has quit (Remote host closed the connection).
20:28:01 -!- LKoen has joined.
20:29:43 <esowiki> [[Eso2D]] M https://esolangs.org/w/index.php?diff=72330&oldid=72326 * PythonshellDebugwindow * (-12) /* Memory */
20:31:46 -!- opticnerve has quit (Quit: bye).
20:35:44 <esowiki> [[Language list]] M https://esolangs.org/w/index.php?diff=72331&oldid=72302 * PythonshellDebugwindow * (+11) /* B */ + [[Bias]]
20:40:03 <esowiki> [[Beta-Juliet and Portia]] M https://esolangs.org/w/index.php?diff=72332&oldid=70656 * PythonshellDebugwindow * (+75) /* External resources */ wayback
20:41:13 <esowiki> [[Beta-Juliet and Portia]] M https://esolangs.org/w/index.php?diff=72333&oldid=72332 * PythonshellDebugwindow * (-42) /* External resources */ wayback
20:45:51 <esowiki> [[2iota]] M https://esolangs.org/w/index.php?diff=72334&oldid=23599 * PythonshellDebugwindow * (+33) /* External resources */ wayback
20:46:01 <esowiki> [[2iota]] M https://esolangs.org/w/index.php?diff=72335&oldid=72334 * PythonshellDebugwindow * (+1) /* External resources */
20:50:55 -!- adu has joined.
20:51:43 -!- MasoKiffles has joined.
20:52:51 -!- MasoKiffles has quit (Remote host closed the connection).
20:56:27 <esowiki> [[User:PythonshellDebugwindow]] M https://esolangs.org/w/index.php?diff=72336&oldid=72282 * PythonshellDebugwindow * (+42) /* Languages */
20:58:44 <esowiki> [[Full 0]] M https://esolangs.org/w/index.php?diff=72337&oldid=17945 * PythonshellDebugwindow * (+3) /* Command Overview */
20:59:05 <esowiki> [[Full 0]] M https://esolangs.org/w/index.php?diff=72338&oldid=72337 * PythonshellDebugwindow * (+6) /* Misc and Links */
20:59:55 <esowiki> [[Full 0]] M https://esolangs.org/w/index.php?diff=72339&oldid=72338 * PythonshellDebugwindow * (+29) /* Misc and Links */
21:22:14 -!- adu has quit (Quit: adu).
21:26:22 -!- tromp has quit (Remote host closed the connection).
21:27:44 -!- adu has joined.
21:31:42 -!- Lord_of_Life_ has joined.
21:33:44 -!- Lord_of_Life has quit (Ping timeout: 258 seconds).
21:33:44 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
21:44:07 -!- tromp has joined.
22:12:05 -!- adu has quit (Quit: adu).
22:14:23 -!- adu has joined.
22:20:52 -!- tromp has quit (Remote host closed the connection).
22:34:16 -!- grumble has changed nick to rawr.
22:36:58 -!- adu has quit (Quit: adu).
22:59:05 -!- tromp has joined.
23:04:09 -!- tromp has quit (Ping timeout: 272 seconds).
23:07:40 <esowiki> [[User:Salpynx/Pico]] N https://esolangs.org/w/index.php?oldid=72340 * Salpynx * (+4567) PF candidate, or stand-alone language?
23:21:12 -!- Sgeo has joined.
23:46:51 -!- atslash has quit (Read error: Connection reset by peer).
23:47:38 -!- atslash has joined.
23:54:22 -!- adu has joined.
←2020-05-14 2020-05-15 2020-05-16→ ↑2020 ↑all