00:05:37 -!- sprock has quit (Ping timeout: 240 seconds). 00:06:30 -!- sprock has joined. 00:22:58 [[User:Esolang1]] M https://esolangs.org/w/index.php?diff=91125&oldid=91019 * Esolang1 * (-59) deleted: document style 00:23:36 [[TUBSOIL]] M https://esolangs.org/w/index.php?diff=91126&oldid=91045 * Esolang1 * (-58) deleted: document style 00:26:01 -!- Esolang1 has joined. 00:26:32 -!- Esolang1 has quit (Client Quit). 00:36:15 [[MacroBeep]] M https://esolangs.org/w/index.php?diff=91127&oldid=91121 * PythonshellDebugwindow * (+0) /* Grammar in EBNF */ Fix year (this language likely wasn't made in the future) 00:54:04 -!- Guest85 has joined. 01:01:42 -!- Guest85 has quit (Quit: Client closed). 01:52:38 -!- oerjan has joined. 01:58:00 -!- u0_a391 has joined. 01:58:58 -!- u0_a391 has changed nick to kit-ten. 02:01:38 -!- Kit has quit (Ping timeout: 268 seconds). 02:01:47 -!- kit-ten has changed nick to Kit. 02:27:50 -!- delta23 has joined. 03:08:38 ais523: fizzie: i changed the introduction filter to enforce addition at the end hth 03:11:36 (by requiring the last line of the diff not start with a space, which seems to work) 03:27:06 > "snoc" > "cons" 03:27:08 True 03:33:17 TIL: there's a whole set of undocumented map builtins. 03:33:20 `` Burlesque/blsq --no-stdin 'nm "foo" "bar" mi' 03:33:22 ​<"bar","foo"> 03:33:25 `` Burlesque/blsq --no-stdin 'nm "foo" "bar" mi "bar" ml' 03:33:26 ​"foo" 03:34:48 I could've probably used those things for so many things, but they're mentioned neither in the lref nor on the moonpage. 03:35:06 So it feels a bit like cheating. Also I don't want to go back to previous days. 03:36:16 There's also a pair acting on the implicit map. 03:36:37 `` Burlesque/blsq --no-stdin '"foo" "bar" sv "bar" gv' 03:36:38 ​"foo" 03:39:00 `mkx /bin/blsq//#!/bin/bash//$HACKENV/tmp/Burlesque/blsq --no-stdin "$(print_args_or_input)" 03:39:01 ​/hackenv/bin/mk: line 1: $(echo-p "$key"): Read-only file system 03:39:17 `` echo $HACKENV 03:39:18 ​/hackenv 03:39:24 `mkx /hackenv/bin/blsq//#!/bin/bash//$HACKENV/tmp/Burlesque/blsq --no-stdin "$(print_args_or_input)" 03:39:29 ​/hackenv/bin/blsq 03:39:53 meh, no multi-line 03:40:20 Although one thing I'm not so sure about is how to test whether a key exists in that map; a failed lookup returns a _|_ value that I don't know how to deal with. 03:40:31 `` sed -i "s=//=\n=g" /hackenv/bin/blsq 03:40:34 ​/hackenv/bin/blsq//#!/bin/bash \ $HACKENV/tmp/Burlesque/blsq --no-stdin "$(print_args_or_input)" 03:40:46 (Also saw a few other "new" builtins.) 03:40:52 (Oh well, sleeptime anyway.) 03:40:55 `blsq 2rzr@ 03:40:56 No output. 03:41:35 oh, print_args_or_input will not work in a subshell, tsk 03:42:31 `` Burlesque/blsq --no-stdin /dev/stdin <<<'{1 2 3}r@' 03:42:33 ERROR: Unknown command: (in)! \ ERROR: Burlesque: (td) Invalid arguments! \ ERROR: Unknown command: (/s)! \ ERROR: Unknown command: (ev)! \ ERROR: Unknown command: (/d)! 03:43:08 `` Burlesque/blsq --no-stdin --file /dev/stdin <<<'{1 2 3}r@' 03:43:10 Invalid usage \ --file Read code from file (incl. STDIN) \ --file-no-stdin Read code from file (excl. STDIN) \ --no-stdin Read code from argv (excl. STDIN) \ --shell Start in shell mode \ --version Print version info \ --compile Pseudo-compile file to haskell code \ --stdin Read code from argv (incl. STDIN) \ \ BurlesqueRoman Muentener, 2012 03:43:33 `` Burlesque/blsq --file-no-stdin /dev/stdin <<<'{1 2 3}r@' 03:43:35 ​{{1 2 3} {2 1 3} {3 2 1} {2 3 1} {3 1 2} {1 3 2}} 03:43:37 meh 03:45:35 `` sed -i /hackenv/bin/blsq '2s=.*=print_args_or_input | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin=' 03:45:37 ​/bin/sed: can't find label for jump to `in/blsq' 03:46:48 `` sed -i /hackenv/bin/blsq '2s=.*=print_args_or_input | \$HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin=' 03:46:49 ​/bin/sed: can't find label for jump to `in/blsq' 03:47:02 is it the `sed` wrapper misquoting stuff? 03:47:28 `` /bin/sed -i /hackenv/bin/blsq '2s=.*=print_args_or_input | \$HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin=' 03:47:29 ​/bin/sed: can't find label for jump to `in/blsq' 03:48:51 `` ( echo '#! /bin/bash'; echo 'print_args_or_input | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin' ) > $HACKENV/bin/blsq; cat $HACKENV/bin/blsq 03:48:54 ​#! /bin/bash \ print_args_or_input | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin 03:49:03 `blsq { 1 2 3 }r@ 03:49:04 No output. 03:49:30 `` blsq <<<'{ 1 2 3 }r@' 03:49:31 ​{{1 2 3} {2 1 3} {3 2 1} {2 3 1} {3 1 2} {1 3 2}} 03:49:37 `` blsq '{ 1 2 3 }r@' 03:49:39 No output. 03:49:52 I am so stupid 03:50:24 `` ( echo '#! /bin/bash'; echo 'print_args_or_input "$@" | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin' ) > $HACKENV/bin/blsq; cat $HACKENV/bin/blsq 03:50:26 ​#! /bin/bash \ print_args_or_input "$@" | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin 03:50:32 `blsq { 1 2 3 }r@ 03:50:33 ​{{1 2 3} {2 1 3} {3 2 1} {2 3 1} {3 1 2} {1 3 2}} 03:52:39 * int-e ponders giving oerjan a trigger warning for thos efforts. 04:06:37 sled is good for you hth 04:06:45 `slbd 04:06:47 usage: sled file//script 04:06:50 or that 04:11:31 `` seq 3 | /bin/sed '2s=.*=Hi!=' 04:11:32 1 \ Hi! \ 3 04:12:01 ooooooooooooooooooooooooooooooooooph 04:12:13 I swapped the arguments of sed. 04:12:26 Maybe I shouldn't be allowed near computers. 04:13:16 `ls 04:13:17 ​:#,_@ \ 🌱 \ a.o \ a.out \ asmbf-1.2.7 \ banana.txt \ bef2 \ bfi \ bin \ Burlesque \ compiled_brachylog.pl \ egel-master \ egel-scripts \ egel.zip \ eGtbSgN68aHU \ foo \ just \ karma \ le \ olist.new \ output.b \ paste \ pd \ pd.c \ pikhqbow_tst \ program \ -.s \ spline \ spout \ stall \ test \ test.sh \ this.py \ tmp \ wisdomls.txt \ xaa 04:15:07 oerjan: fwiw, my main motivation for a /volatile (by whatever name) was that I'd love to just remove all files here without worrying of breaking stuff 04:15:37 obviously it wouldn't protect against the infamous rm -rf / 04:24:37 right. it used to be like that, but then people started putting stuff there "permanently" 04:26:20 `ls bin 04:26:21 No output. 04:50:54 -!- sprout has joined. 05:54:59 -!- j-bot has quit (Remote host closed the connection). 05:55:13 -!- j-bot has joined. 05:57:13 oh we have another effective twist 05:57:37 (though easily predictable from part 1) 06:13:23 -!- oerjan has quit (Quit: Nite). 07:22:15 -!- delta23 has quit (Quit: Leaving). 07:33:00 -!- arseniiv has joined. 08:27:37 -!- tromp has joined. 08:46:09 -!- Sgeo has quit (Read error: Connection reset by peer). 09:20:40 `ls 09:20:42 ​:#,_@ \ 🌱 \ a.o \ a.out \ asmbf-1.2.7 \ banana.txt \ bef2 \ bfi \ bin \ Burlesque \ compiled_brachylog.pl \ egel-master \ egel-scripts \ egel.zip \ eGtbSgN68aHU \ foo \ just \ karma \ le \ olist.new \ output.b \ paste \ pd \ pd.c \ pikhqbow_tst \ program \ -.s \ spline \ spout \ stall \ test \ test.sh \ this.py \ tmp \ wisdomls.txt \ xaa 09:21:19 `cat banana.txt 09:21:20 Bananas taste good and have potassium, but they bruise kinda easily. I still like to eat them though :) 09:22:32 `echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt 09:22:33 ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt 09:22:47 `ls 09:22:48 ​:#,_@ \ 🌱 \ a.o \ a.out \ asmbf-1.2.7 \ banana.txt \ bef2 \ bfi \ bin \ Burlesque \ compiled_brachylog.pl \ egel-master \ egel-scripts \ egel.zip \ eGtbSgN68aHU \ foo \ just \ karma \ le \ olist.new \ output.b \ paste \ pd \ pd.c \ pikhqbow_tst \ program \ -.s \ spline \ spout \ stall \ test \ test.sh \ this.py \ tmp \ wisdomls.txt \ xaa 09:23:57 `echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> carrot.txt 09:23:58 ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> carrot.txt 09:24:05 `ls 09:24:07 ​:#,_@ \ 🌱 \ a.o \ a.out \ asmbf-1.2.7 \ banana.txt \ bef2 \ bfi \ bin \ Burlesque \ compiled_brachylog.pl \ egel-master \ egel-scripts \ egel.zip \ eGtbSgN68aHU \ foo \ just \ karma \ le \ olist.new \ output.b \ paste \ pd \ pd.c \ pikhqbow_tst \ program \ -.s \ spline \ spout \ stall \ test \ test.sh \ this.py \ tmp \ wisdomls.txt \ xaa 09:25:14 `echo " Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> banana.txt 09:25:15 ​" Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> banana.txt 09:26:47 `echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." `> carrot.txt 09:26:48 ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." `> carrot.txt 09:27:07 `touch carrot.txt 09:27:08 No output. 09:27:16 `ls 09:27:17 ​:#,_@ \ 🌱 \ a.o \ a.out \ asmbf-1.2.7 \ banana.txt \ bef2 \ bfi \ bin \ Burlesque \ carrot.txt \ compiled_brachylog.pl \ egel-master \ egel-scripts \ egel.zip \ eGtbSgN68aHU \ foo \ just \ karma \ le \ olist.new \ output.b \ paste \ pd \ pd.c \ pikhqbow_tst \ program \ -.s \ spline \ spout \ stall \ test \ test.sh \ this.py \ tmp \ wisdomls.txt \ xaa 09:29:58 `echo 'Carrots are the ideal food. They are cheap, healthy and kind of tasty.' >> carrot.txt 09:29:59 ​'Carrots are the ideal food. They are cheap, healthy and kind of tasty.' >> carrot.txt 09:30:12 `cat carrot.txt 09:30:13 No output. 09:31:29 `printf "Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt 09:31:30 ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt 09:31:48 `cat carrot.txt 09:31:49 No output. 09:33:54 `sed -i '0iCarrots are the ideal food. They are cheap, healthy and kind of tasty.' carrot.txt 09:34:13 `cat carrot.txt 09:34:14 No output. 09:34:32 `sed -i '1iCarrots are the ideal food. They are cheap, healthy and kind of tasty.' carrot.txt 09:34:33 Usage: /bin/sed [OPTION]... {script-only-if-no-other-script} [input-file]... \ \ -n, --quiet, --silent \ suppress automatic printing of pattern space \ --debug \ annotate program execution \ -e script, --expression=script \ add the script to the commands to be executed \ -f script-file, --file=script-file \ add the contents of script-file to the commands to be executed \ --f 09:40:01 echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." | dd of=carrot.txt 09:40:27 `cat carrot.txt 09:40:29 No output. 09:45:23 `sh -c 'echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt' 09:45:24 sh: 0: Illegal option - 09:47:25 `sh -c "echo Carrots are the ideal food. They are cheap, healthy and kind of tasty. > carrot.txt" 09:47:47 `cat carrot.txt 09:47:48 No output. 09:49:31 `export CARROT="Carrots are the ideal food. They are cheap, healthy and kind of tasty." 09:49:32 export? No such file or directory 09:51:07 `CARROT="Carrots are the ideal food. They are cheap, healthy and kind of tasty." 09:51:08 CARROT="Carrots? No such file or directory 09:52:08 `sh -c "ls" 09:52:09 sh: 0: Illegal option - 09:55:08 `dash -c "ls" 09:55:09 dash: 0: Illegal option - 09:56:19 `sh --help 09:56:20 sh: 0: Illegal option -- 09:56:27 `sh 09:56:29 No output. 09:56:47 `ls -halt 09:56:48 total 384K \ drwxr-xr-x 9 1000 1000 4.0K Dec 22 09:27 . \ -rw-r--r-- 1 1000 1000 0 Dec 22 09:27 carrot.txt \ drwxr-xr-x 2 1000 1000 4.0K Dec 21 05:38 paste \ drwxr-xr-x 2 1000 1000 4.0K Dec 20 13:31 Burlesque \ drwxr-xr-x 22 1000 1000 4.0K Dec 11 21:53 .. \ -rw-r--r-- 1 1000 1000 1 Dec 11 21:49 foo \ -rw-r--r-- 1 1000 1000 2 Dec 8 06:08 spline \ -rw-r--r-- 1 1000 1000 231 Dec 8 06:08 spout \ drwxr-xr-x 2 1000 1000 4.0K Sep 1 17:36 bin 10:03:01 -!- sprout has quit (Ping timeout: 240 seconds). 10:19:38 -!- Lord_of_Life_ has joined. 10:21:01 -!- Lord_of_Life has quit (Ping timeout: 256 seconds). 10:21:01 -!- Lord_of_Life_ has changed nick to Lord_of_Life. 10:38:32 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 10:45:03 -!- tromp has joined. 11:10:46 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 11:13:27 -!- tromp has joined. 11:20:49 -!- Koen has joined. 11:35:34 -!- arseniiv has quit (Ping timeout: 260 seconds). 11:46:18 -!- j-bot has quit (Remote host closed the connection). 11:46:31 -!- j-bot has joined. 11:46:56 -!- sprout has joined. 11:52:50 -!- BarryNL has quit (Read error: Connection reset by peer). 11:53:50 -!- BarryNL has joined. 12:26:00 oerjan: to be clear, my egel installation in /tmp isn't supposed to be permanent, feel free to delete it. and if we don't want /tmp to hold permanent stuff, then perhaps add a job to delete it once every month. or once every year. 12:28:56 -!- chiselfuse has quit (Remote host closed the connection). 12:37:09 -!- chiselfuse has joined. 12:55:10 [[Special:Log/newusers]] create * Charon25 * New user account 12:58:32 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=91128&oldid=91086 * Charon25 * (+179) /* Introductions */ 13:20:52 egel is a bit of a fast moving target at the moment 13:21:19 or however you name changing beta software 13:29:46 [[Echo]] N https://esolangs.org/w/index.php?oldid=91129 * Charon25 * (+7618) Created pages with category : Working principle, Instructions, Examples, External resources 13:30:34 [[Language list]] https://esolangs.org/w/index.php?diff=91130&oldid=91124 * Charon25 * (+11) Added Echo 13:31:34 [[Echo]] https://esolangs.org/w/index.php?diff=91131&oldid=91129 * Charon25 * (+29) 13:38:56 -!- Koen has quit (Remote host closed the connection). 14:14:27 -!- arseniiv has joined. 14:15:00 -!- earendel has quit (Quit: Connection closed for inactivity). 14:32:49 -!- Koen has joined. 14:44:27 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 14:44:59 -!- chiselfuse has quit (Remote host closed the connection). 14:45:10 -!- chiselfuse has joined. 15:09:06 -!- tromp has joined. 15:23:19 fizzie: do you update https://zem.fi/tmp/aoc/stats.trajectory.html manually? 15:29:24 Yes, it's all manual. The thinking was, it's only "safe" to run the leaderboard update script once at least 100 people have both stars, and that's hard to predict. 15:29:55 I told it to go now. 15:30:08 -!- Sgeo has joined. 15:31:03 Day 22 looks to be well on its way of making records in the "% of solutions with just one star" chart, https://zem.fi/tmp/aoc/stats.aligned.ratio.html 15:31:04 hmm. very flat curve today (that's what I wanted to see :) ) 15:32:09 that vega tool is awesome 15:50:01 ... how does one read the first diagram? 15:50:17 the convex parts make sense to me 15:50:51 ah, the curve is over time in the y-axis i guess 15:51:44 -!- Koen has quit (Remote host closed the connection). 15:54:46 leah2: the first graph has no time axis, just counts for part 1 without part 2, and for part 2. The latter is increasing; the former goes down by 1 when somebody solves part 2. 17:18:02 -!- NotApplicable has joined. 17:27:03 -!- Cale has quit (Remote host closed the connection). 17:30:20 -!- Cale has joined. 17:30:24 [[APOL]] https://esolangs.org/w/index.php?diff=91132&oldid=91097 * Ginger Industries * (+413) 17:49:23 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 18:10:26 https://ibb.co/CbDwNtc <- AoC, day 22, task 2 - egel code I ain't proud of today but it is what it is. 'translated' from glguy early solution 18:36:23 -!- tromp has joined. 18:47:09 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 18:51:03 I've got an octree in my Go code, and it's the bulkiest, most repetitive piece of code I've written in a while. 18:52:06 See, I thought about having a loop over the octree's children, but then I went, "hmm, but if I have a loop, I'll have to do a full bounds check for each child, but if I just manually unroll the loop I only need to test against one edge". 18:52:28 heh 18:53:00 Then I spent half an hour chasing a mistake in one of the conditions of those 8 branches. (I had updated one < into >= correctly, but not changed which end it was testing.) 18:53:26 fizzie: and then you took that principle to its conclusion and wrote versions of its hot parts in assembly optimized for your target computer? 18:53:36 Not quite yet. 18:53:44 I need to worry about the Burlesque version first. 18:53:55 Don't want to break my streak at day 22. 18:56:17 [[Talk:Main Page]] https://esolangs.org/w/index.php?diff=91133&oldid=81234 * PixelatedStarfish * (+8) /* Tom's idea */ 19:10:18 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91134&oldid=91127 * PixelatedStarfish * (+672) /* Grammar in EBNF */ 19:10:31 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91135&oldid=91134 * PixelatedStarfish * (+2) /* Grammar in EBNF */ 19:11:11 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91136&oldid=91135 * PixelatedStarfish * (+9) /* Proof of Turing Completeness */ 19:12:36 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91137&oldid=91136 * PixelatedStarfish * (-7) /* Proof of Turing Completeness */ 19:14:45 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91138&oldid=91137 * PixelatedStarfish * (+29) /* Proof of Turing Completeness */ 19:16:52 the classification theorem of finite simple groups is from as late as 2004? I assumed it was from before that. 19:18:01 I think it was basically done before that, but people went back to filled in some stuff 19:20:16 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91139&oldid=91138 * PixelatedStarfish * (-48) /* Proof of Turing Completeness */ 19:20:48 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91140&oldid=91139 * PixelatedStarfish * (-2) /* Instruction Set */ 19:21:11 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91141&oldid=91140 * PixelatedStarfish * (-1) /* Proof of Turing Completeness */ 19:21:32 [[MacroBeep]] https://esolangs.org/w/index.php?diff=91142&oldid=91141 * PixelatedStarfish * (-2) /* Proof of Turing Completeness */ 19:29:33 riv: done as in all the groups up to isomorphism were known, or done as they believed there was a proof that the list is complete? 19:30:59 -!- tromp has joined. 19:43:34 -!- benji has quit (Quit: ZNC - https://znc.in). 19:44:58 -!- benji has joined. 19:48:00 i think they kind of thought it was complete, but im not sure 19:48:11 I wonder if there's a really good history documentary on this 19:48:13 there should be 21:10:27 [[Special:Log/newusers]] create * A casual user * New user account 21:13:11 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 21:14:51 [[Special:Log/newusers]] create * Signals-chan * New user account 21:18:07 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=91143&oldid=91128 * A casual user * (+172) 21:22:03 -!- tromp has joined. 21:24:35 [[Numberlist]] N https://esolangs.org/w/index.php?oldid=91144 * A casual user * (+16) Created page with "'''Numberlist'''" 21:24:53 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=91145&oldid=91143 * Signals-chan * (+319) 21:25:23 [[Hoverfly]] https://esolangs.org/w/index.php?diff=91146&oldid=90564 * Kemuri * (+29) /* Hoverfly */ 21:25:31 [[User:Signals-chan]] N https://esolangs.org/w/index.php?oldid=91147 * Signals-chan * (+3) Created page with "egg" 21:27:21 [[Woof]] N https://esolangs.org/w/index.php?oldid=91148 * Signals-chan * (+234) Created page with "'''woof''' is an esolang created by [[User:Signals-chan|signals-chan]]. It it centered around the noises that dogs make. The source is available on [https://replit.com/@yescyy..." 21:28:36 [[Numberlist]] https://esolangs.org/w/index.php?diff=91149&oldid=91144 * A casual user * (+44) 21:30:40 [[Numberlist]] https://esolangs.org/w/index.php?diff=91150&oldid=91149 * A casual user * (+4) 21:32:55 [[Numberlist]] https://esolangs.org/w/index.php?diff=91151&oldid=91150 * A casual user * (+81) 21:33:50 [[Numberlist]] https://esolangs.org/w/index.php?diff=91152&oldid=91151 * A casual user * (+4) 21:38:21 [[Numberlist]] https://esolangs.org/w/index.php?diff=91153&oldid=91152 * A casual user * (+58) 21:38:49 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 21:39:16 [[Numberlist]] https://esolangs.org/w/index.php?diff=91154&oldid=91153 * A casual user * (+5) 21:41:42 [[Numberlist]] https://esolangs.org/w/index.php?diff=91155&oldid=91154 * A casual user * (+9) 21:44:13 [[Numberlist]] https://esolangs.org/w/index.php?diff=91156&oldid=91155 * A casual user * (-47) 21:45:20 -!- BarryNL has quit (Quit: Quit). 21:45:44 [[Numberlist]] https://esolangs.org/w/index.php?diff=91157&oldid=91156 * A casual user * (+38) 21:47:52 [[Numberlist]] https://esolangs.org/w/index.php?diff=91158&oldid=91157 * A casual user * (+1) 21:49:50 [[Numberlist]] https://esolangs.org/w/index.php?diff=91159&oldid=91158 * A casual user * (+60) 21:50:34 [[QWERTY Keyboard Dot Language]] https://esolangs.org/w/index.php?diff=91160&oldid=13477 * Kaveh Yousefi * (+172) Amended some orthographic mistakes and improved the formatting. 21:51:10 [[QWERTY Keyboard Dot Language]] https://esolangs.org/w/index.php?diff=91161&oldid=91160 * Kaveh Yousefi * (+214) Added a hyperlink to my implementation of the QWERTY Keyboard Dot Language programming language on GitHub. 21:51:58 [[QWERTY Keyboard Dot Language]] https://esolangs.org/w/index.php?diff=91162&oldid=91161 * Kaveh Yousefi * (+25) Added the category tag Output only. 21:54:47 -!- arseniiv has quit (Quit: gone too far). 21:57:02 For part 1 in Burlesque, I just wrote something quick that filters the input to the small values and then explicitly generates all the cubes and uses the union and intersection builtins. But it's been running for minutes already for the second example. :/ 21:57:11 [[Numberlist]] https://esolangs.org/w/index.php?diff=91163&oldid=91159 * A casual user * (-50) 21:57:25 [[Numberlist]] https://esolangs.org/w/index.php?diff=91164&oldid=91163 * A casual user * (+5) 21:57:26 A shame, because ln{:> s/intersection/set difference/ but anyway. 21:59:24 [[QWERTY Keyboard Dot Language]] https://esolangs.org/w/index.php?diff=91165&oldid=91162 * Kaveh Yousefi * (+457) Added an example section and the Hello, World! program. 22:01:00 [[Numberlist]] https://esolangs.org/w/index.php?diff=91166&oldid=91164 * A casual user * (+1) 22:07:11 -!- Koen has joined. 22:15:28 -!- Koen has quit (Remote host closed the connection). 22:17:04 -!- Koen has joined. 22:32:20 -!- chiselfuse has quit (Remote host closed the connection). 22:32:32 -!- chiselfuse has joined. 22:32:57 -!- sprout has quit (Ping timeout: 240 seconds). 22:36:10 I finished day 22 22:38:37 https://gist.github.com/orenwatson/398ec33de02a4e53977f84ad21a165ed AOC day 22 part1+2 in Freebasic 22:46:20 -!- sprout has joined. 22:49:29 -!- Koen has quit (Quit: Leaving...). 22:51:18 -!- sprout has quit (Ping timeout: 260 seconds). 23:00:14 -!- tromp has joined. 23:00:43 -!- sprout has joined. 23:05:29 -!- sprout has quit (Ping timeout: 252 seconds). 23:17:40 -!- sprout has joined. 23:21:57 -!- sprout has quit (Ping timeout: 240 seconds). 23:35:59 -!- sprout has joined. 23:40:58 -!- sprout has quit (Ping timeout: 268 seconds). 23:41:01 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 23:52:21 -!- sprout has joined. 23:56:57 -!- sprout has quit (Ping timeout: 240 seconds). 23:57:40 I think there might be a way to skip more iterations by finind the next cuboid more effectectiveley 23:59:34 right now I neext to copnsider about (2*n)^3 iterations where n is the number of input cuboids