←2021-12-21 2021-12-22 2021-12-23→ ↑2021 ↑all
00:05:37 -!- sprock has quit (Ping timeout: 240 seconds).
00:06:30 -!- sprock has joined.
00:22:58 <esolangs> [[User:Esolang1]] M https://esolangs.org/w/index.php?diff=91125&oldid=91019 * Esolang1 * (-59) deleted: document style
00:23:36 <esolangs> [[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 <esolangs> [[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 <oerjan> ais523: fizzie: i changed the introduction filter to enforce addition at the end hth
03:11:36 <oerjan> (by requiring the last line of the diff not start with a space, which seems to work)
03:27:06 <int-e> > "snoc" > "cons"
03:27:08 <lambdabot> True
03:33:17 <fizzie> TIL: there's a whole set of undocumented map builtins.
03:33:20 <fizzie> `` Burlesque/blsq --no-stdin 'nm "foo" "bar" mi'
03:33:22 <HackEso> ​<"bar","foo">
03:33:25 <fizzie> `` Burlesque/blsq --no-stdin 'nm "foo" "bar" mi "bar" ml'
03:33:26 <HackEso> ​"foo"
03:34:48 <fizzie> 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 <fizzie> So it feels a bit like cheating. Also I don't want to go back to previous days.
03:36:16 <fizzie> There's also a pair acting on the implicit map.
03:36:37 <fizzie> `` Burlesque/blsq --no-stdin '"foo" "bar" sv "bar" gv'
03:36:38 <HackEso> ​"foo"
03:39:00 <int-e> `mkx /bin/blsq//#!/bin/bash//$HACKENV/tmp/Burlesque/blsq --no-stdin "$(print_args_or_input)"
03:39:01 <HackEso> ​/hackenv/bin/mk: line 1: $(echo-p "$key"): Read-only file system
03:39:17 <int-e> `` echo $HACKENV
03:39:18 <HackEso> ​/hackenv
03:39:24 <int-e> `mkx /hackenv/bin/blsq//#!/bin/bash//$HACKENV/tmp/Burlesque/blsq --no-stdin "$(print_args_or_input)"
03:39:29 <HackEso> ​/hackenv/bin/blsq
03:39:53 <int-e> meh, no multi-line
03:40:20 <fizzie> 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 <int-e> `` sed -i "s=//=\n=g" /hackenv/bin/blsq
03:40:34 <HackEso> ​/hackenv/bin/blsq//#!/bin/bash \ $HACKENV/tmp/Burlesque/blsq --no-stdin "$(print_args_or_input)"
03:40:46 <fizzie> (Also saw a few other "new" builtins.)
03:40:52 <fizzie> (Oh well, sleeptime anyway.)
03:40:55 <int-e> `blsq 2rzr@
03:40:56 <HackEso> No output.
03:41:35 <int-e> oh, print_args_or_input will not work in a subshell, tsk
03:42:31 <int-e> `` Burlesque/blsq --no-stdin /dev/stdin <<<'{1 2 3}r@'
03:42:33 <HackEso> ERROR: Unknown command: (in)! \ ERROR: Burlesque: (td) Invalid arguments! \ ERROR: Unknown command: (/s)! \ ERROR: Unknown command: (ev)! \ ERROR: Unknown command: (/d)!
03:43:08 <int-e> `` Burlesque/blsq --no-stdin --file /dev/stdin <<<'{1 2 3}r@'
03:43:10 <HackEso> Invalid usage \ --file <path> Read code from file (incl. STDIN) \ --file-no-stdin <path> Read code from file (excl. STDIN) \ --no-stdin <code> Read code from argv (excl. STDIN) \ --shell Start in shell mode \ --version Print version info \ --compile <path> Pseudo-compile file to haskell code \ --stdin <code> Read code from argv (incl. STDIN) \ \ BurlesqueRoman Muentener, 2012
03:43:33 <int-e> `` Burlesque/blsq --file-no-stdin /dev/stdin <<<'{1 2 3}r@'
03:43:35 <HackEso> ​{{1 2 3} {2 1 3} {3 2 1} {2 3 1} {3 1 2} {1 3 2}}
03:43:37 <int-e> meh
03:45:35 <int-e> `` sed -i /hackenv/bin/blsq '2s=.*=print_args_or_input | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin='
03:45:37 <HackEso> ​/bin/sed: can't find label for jump to `in/blsq'
03:46:48 <int-e> `` sed -i /hackenv/bin/blsq '2s=.*=print_args_or_input | \$HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin='
03:46:49 <HackEso> ​/bin/sed: can't find label for jump to `in/blsq'
03:47:02 <int-e> is it the `sed` wrapper misquoting stuff?
03:47:28 <int-e> `` /bin/sed -i /hackenv/bin/blsq '2s=.*=print_args_or_input | \$HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin='
03:47:29 <HackEso> ​/bin/sed: can't find label for jump to `in/blsq'
03:48:51 <int-e> `` ( 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 <HackEso> ​#! /bin/bash \ print_args_or_input | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin
03:49:03 <int-e> `blsq { 1 2 3 }r@
03:49:04 <HackEso> No output.
03:49:30 <int-e> `` blsq <<<'{ 1 2 3 }r@'
03:49:31 <HackEso> ​{{1 2 3} {2 1 3} {3 2 1} {2 3 1} {3 1 2} {1 3 2}}
03:49:37 <int-e> `` blsq '{ 1 2 3 }r@'
03:49:39 <HackEso> No output.
03:49:52 <int-e> I am so stupid
03:50:24 <int-e> `` ( 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 <HackEso> ​#! /bin/bash \ print_args_or_input "$@" | $HACKENV/tmp/Burlesque/blsq --file-no-stdin /dev/stdin
03:50:32 <int-e> `blsq { 1 2 3 }r@
03:50:33 <HackEso> ​{{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 <oerjan> sled is good for you hth
04:06:45 <oerjan> `slbd
04:06:47 <HackEso> usage: sled file//script
04:06:50 <oerjan> or that
04:11:31 <int-e> `` seq 3 | /bin/sed '2s=.*=Hi!='
04:11:32 <HackEso> 1 \ Hi! \ 3
04:12:01 <int-e> ooooooooooooooooooooooooooooooooooph
04:12:13 <int-e> I swapped the arguments of sed.
04:12:26 <int-e> Maybe I shouldn't be allowed near computers.
04:13:16 <int-e> `ls
04:13:17 <HackEso> ​:#,_@ \ 🌱 \ 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 <int-e> 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 <int-e> obviously it wouldn't protect against the infamous rm -rf /
04:24:37 <oerjan> right. it used to be like that, but then people started putting stuff there "permanently"
04:26:20 <oerjan> `ls bin
04:26:21 <HackEso> 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 <int-e> oh we have another effective twist
05:57:37 <int-e> (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 <BarryNL> `ls
09:20:42 <HackEso> ​:#,_@ \ 🌱 \ 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 <BarryNL> `cat banana.txt
09:21:20 <HackEso> Bananas taste good and have potassium, but they bruise kinda easily. I still like to eat them though :)
09:22:32 <BarryNL> `echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt
09:22:33 <HackEso> ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt
09:22:47 <BarryNL> `ls
09:22:48 <HackEso> ​:#,_@ \ 🌱 \ 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 <BarryNL> `echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> carrot.txt
09:23:58 <HackEso> ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> carrot.txt
09:24:05 <BarryNL> `ls
09:24:07 <HackEso> ​:#,_@ \ 🌱 \ 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 <BarryNL> `echo " Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> banana.txt
09:25:15 <HackEso> ​" Carrots are the ideal food. They are cheap, healthy and kind of tasty." >> banana.txt
09:26:47 <BarryNL> `echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." `> carrot.txt
09:26:48 <HackEso> ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." `> carrot.txt
09:27:07 <BarryNL> `touch carrot.txt
09:27:08 <HackEso> No output.
09:27:16 <BarryNL> `ls
09:27:17 <HackEso> ​:#,_@ \ 🌱 \ 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 <BarryNL> `echo 'Carrots are the ideal food. They are cheap, healthy and kind of tasty.' >> carrot.txt
09:29:59 <HackEso> ​'Carrots are the ideal food. They are cheap, healthy and kind of tasty.' >> carrot.txt
09:30:12 <BarryNL> `cat carrot.txt
09:30:13 <HackEso> No output.
09:31:29 <BarryNL> `printf "Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt
09:31:30 <HackEso> ​"Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt
09:31:48 <BarryNL> `cat carrot.txt
09:31:49 <HackEso> No output.
09:33:54 <BarryNL> `sed -i '0iCarrots are the ideal food. They are cheap, healthy and kind of tasty.' carrot.txt
09:34:13 <BarryNL> `cat carrot.txt
09:34:14 <HackEso> No output.
09:34:32 <BarryNL> `sed -i '1iCarrots are the ideal food. They are cheap, healthy and kind of tasty.' carrot.txt
09:34:33 <HackEso> 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 <BarryNL> echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." | dd of=carrot.txt
09:40:27 <BarryNL> `cat carrot.txt
09:40:29 <HackEso> No output.
09:45:23 <BarryNL> `sh -c 'echo "Carrots are the ideal food. They are cheap, healthy and kind of tasty." > carrot.txt'
09:45:24 <HackEso> sh: 0: Illegal option -
09:47:25 <BarryNL> `sh -c "echo Carrots are the ideal food. They are cheap, healthy and kind of tasty. > carrot.txt"
09:47:47 <BarryNL> `cat carrot.txt
09:47:48 <HackEso> No output.
09:49:31 <BarryNL> `export CARROT="Carrots are the ideal food. They are cheap, healthy and kind of tasty."
09:49:32 <HackEso> export? No such file or directory
09:51:07 <BarryNL> `CARROT="Carrots are the ideal food. They are cheap, healthy and kind of tasty."
09:51:08 <HackEso> CARROT="Carrots? No such file or directory
09:52:08 <BarryNL> `sh -c "ls"
09:52:09 <HackEso> sh: 0: Illegal option -
09:55:08 <BarryNL> `dash -c "ls"
09:55:09 <HackEso> dash: 0: Illegal option -
09:56:19 <BarryNL> `sh --help
09:56:20 <HackEso> sh: 0: Illegal option --
09:56:27 <BarryNL> `sh
09:56:29 <HackEso> No output.
09:56:47 <BarryNL> `ls -halt
09:56:48 <HackEso> 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 <b_jonas> 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 <esolangs> [[Special:Log/newusers]] create * Charon25 * New user account
12:58:32 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=91128&oldid=91086 * Charon25 * (+179) /* Introductions */
13:20:52 <sprout> egel is a bit of a fast moving target at the moment
13:21:19 <sprout> or however you name changing beta software
13:29:46 <esolangs> [[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 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=91130&oldid=91124 * Charon25 * (+11) Added Echo
13:31:34 <esolangs> [[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 <int-e> fizzie: do you update https://zem.fi/tmp/aoc/stats.trajectory.html manually?
15:29:24 <fizzie> 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 <fizzie> I told it to go now.
15:30:08 -!- Sgeo has joined.
15:31:03 <fizzie> 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 <int-e> hmm. very flat curve today (that's what I wanted to see :) )
15:32:09 <riv> that vega tool is awesome
15:50:01 <leah2> ... how does one read the first diagram?
15:50:17 <leah2> the convex parts make sense to me
15:50:51 <leah2> 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 <int-e> 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 <esolangs> [[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 <sprout> 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 <fizzie> 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 <fizzie> 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 <b_jonas> heh
18:53:00 <fizzie> 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 <b_jonas> 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 <fizzie> Not quite yet.
18:53:44 <fizzie> I need to worry about the Burlesque version first.
18:53:55 <fizzie> Don't want to break my streak at day 22.
18:56:17 <esolangs> [[Talk:Main Page]] https://esolangs.org/w/index.php?diff=91133&oldid=81234 * PixelatedStarfish * (+8) /* Tom's idea */
19:10:18 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91134&oldid=91127 * PixelatedStarfish * (+672) /* Grammar in EBNF */
19:10:31 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91135&oldid=91134 * PixelatedStarfish * (+2) /* Grammar in EBNF */
19:11:11 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91136&oldid=91135 * PixelatedStarfish * (+9) /* Proof of Turing Completeness */
19:12:36 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91137&oldid=91136 * PixelatedStarfish * (-7) /* Proof of Turing Completeness */
19:14:45 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91138&oldid=91137 * PixelatedStarfish * (+29) /* Proof of Turing Completeness */
19:16:52 <b_jonas> the classification theorem of finite simple groups is from as late as 2004? I assumed it was from before that.
19:18:01 <riv> I think it was basically done before that, but people went back to filled in some stuff
19:20:16 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91139&oldid=91138 * PixelatedStarfish * (-48) /* Proof of Turing Completeness */
19:20:48 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91140&oldid=91139 * PixelatedStarfish * (-2) /* Instruction Set */
19:21:11 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91141&oldid=91140 * PixelatedStarfish * (-1) /* Proof of Turing Completeness */
19:21:32 <esolangs> [[MacroBeep]] https://esolangs.org/w/index.php?diff=91142&oldid=91141 * PixelatedStarfish * (-2) /* Proof of Turing Completeness */
19:29:33 <b_jonas> 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 <riv> i think they kind of thought it was complete, but im not sure
19:48:11 <riv> I wonder if there's a really good history documentary on this
19:48:13 <riv> there should be
21:10:27 <esolangs> [[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 <esolangs> [[Special:Log/newusers]] create * Signals-chan * New user account
21:18:07 <esolangs> [[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 <esolangs> [[Numberlist]] N https://esolangs.org/w/index.php?oldid=91144 * A casual user * (+16) Created page with "'''Numberlist'''"
21:24:53 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=91145&oldid=91143 * Signals-chan * (+319)
21:25:23 <esolangs> [[Hoverfly]] https://esolangs.org/w/index.php?diff=91146&oldid=90564 * Kemuri * (+29) /* Hoverfly */
21:25:31 <esolangs> [[User:Signals-chan]] N https://esolangs.org/w/index.php?oldid=91147 * Signals-chan * (+3) Created page with "egg"
21:27:21 <esolangs> [[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 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91149&oldid=91144 * A casual user * (+44)
21:30:40 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91150&oldid=91149 * A casual user * (+4)
21:32:55 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91151&oldid=91150 * A casual user * (+81)
21:33:50 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91152&oldid=91151 * A casual user * (+4)
21:38:21 <esolangs> [[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 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91154&oldid=91153 * A casual user * (+5)
21:41:42 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91155&oldid=91154 * A casual user * (+9)
21:44:13 <esolangs> [[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 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91157&oldid=91156 * A casual user * (+38)
21:47:52 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91158&oldid=91157 * A casual user * (+1)
21:49:50 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91159&oldid=91158 * A casual user * (+60)
21:50:34 <esolangs> [[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 <esolangs> [[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 <esolangs> [[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 <fizzie> 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 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91163&oldid=91159 * A casual user * (-50)
21:57:25 <esolangs> [[Numberlist]] https://esolangs.org/w/index.php?diff=91164&oldid=91163 * A casual user * (+5)
21:57:26 <fizzie> A shame, because ln{:><L[12<=}f[{}+]{"[=., ]"jsrg_j2enri2co{^pr@}m[{cp}r[)FLj{UN}j{\\}jL[2==ie}r[L[ before any tweaking was nice and concise.
21:58:49 <fizzie> s/intersection/set difference/ but anyway.
21:59:24 <esolangs> [[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 <esolangs> [[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 <oren> I finished day 22
22:38:37 <oren> 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 <oren> I think there might be a way to skip more iterations by finind the next cuboid more effectectiveley
23:59:34 <oren> right now I neext to copnsider about (2*n)^3 iterations where n is the number of input cuboids
←2021-12-21 2021-12-22 2021-12-23→ ↑2021 ↑all