01:07:47 [[!!Fuck]] https://esolangs.org/w/index.php?diff=105664&oldid=94877 * Kaveh Yousefi * (+253) Added a hyperlink to my implementation of the !!Fuck programming language on GitHub and added the category tag Implemented. 01:09:32 [[!!Fuck]] https://esolangs.org/w/index.php?diff=105665&oldid=105664 * Kaveh Yousefi * (+171) Added an infinite cat program as a further example. 01:12:20 [[!!Fuck]] M https://esolangs.org/w/index.php?diff=105666&oldid=105665 * Kaveh Yousefi * (+214) Improved the instruction table's formatting. 01:34:34 int-e: Hmm, I'm back to it and currently pretty puzzled about room 7,13. 01:34:41 This one doesn't even have a star. 01:56:36 [[Wepmlrio]] M https://esolangs.org/w/index.php?diff=105667&oldid=42856 * PythonshellDebugwindow * (+134) Categories 02:34:03 -!- razetime has joined. 03:16:56 Aw. The simple Burlesque solution for day 20 part 1 works for the sample, but not for the full input. :/ 03:17:28 Guess the numbers aren't unique in the actual input. 03:19:30 Also made a version that implements a doubly linked list using a {{value prev-idx next-idx} ...} block, which worked for the sample too, but didn't halt in 10 minutes for the actual input. It had a whole lot of accessing lists by index. 03:20:44 Maybe the simple solution will work if I just append an index to each value to make them unique. 03:26:39 Yep. Pleasantly simple for once in these later days: psziJ+]{S1jS0jFiS2g0jRAsag2g1[~.+j.%g1jia}r[sas1S0{[~z?}fi{1000.+g1.%Jg0j!![~Pp}3E!p\CL++ 04:06:45 int-e: Ugh, that one was obvious as soon as I thought about it enough. 04:33:47 -!- tromp has joined. 04:36:27 Which one... oh I see, the ohqql flfgrz one. 04:37:19 -!- tromp has quit (Client Quit). 05:25:03 > 173/879 05:25:05 0.19681456200227532 05:44:34 -!- slavfox has quit (Quit: ZNC 1.8.2 - https://znc.in). 05:47:37 -!- slavfox has joined. 05:57:30 -!- chiselfuse has quit (Remote host closed the connection). 05:58:17 -!- chiselfuse has joined. 06:50:18 -!- tromp has joined. 07:08:18 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 07:20:16 -!- tromp has joined. 07:46:15 Oh, that was the last kitten (18 rescues). Only 6 stars though. 07:47:59 I also found a cheesy sign that starts with "Nice try". 08:04:31 > 1100/3375 08:04:32 0.32592592592592595 08:04:52 (day 25 is shaping up to be as twisty as usual) 09:08:18 -!- razetime has quit (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.). 09:19:42 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 10:27:23 -!- tromp has joined. 10:29:16 -!- Lord_of_Life has quit (Ping timeout: 265 seconds). 10:30:36 -!- Lord_of_Life has joined. 11:02:26 so you know how some buildings have three rooms connected in a loop by three doors so the floorplan is not simply connected, right? I live in a smaller apartment that doesn't have such a feature. but I just realized, the state space of where I can walk in the apartment is not simply connected anyway, because I can just do a full rotation in place, and there's no way to contract that to identity no 11:02:32 matter how athletic I am. mathematics forbids it. 11:02:59 (I am not athletic) 11:05:44 -!- Sgeo has quit (Read error: Connection reset by peer). 11:28:40 -!- __monty__ has joined. 12:00:03 how do you spell the adjective form of Poisson for naming mathematical concepts, like Hamiltonian and Lagrangian? is it "Poissonian"? 12:53:28 [[ACCUMULATOR]] M https://esolangs.org/w/index.php?diff=105668&oldid=105661 * UndoneStudios * (+35) 12:56:46 [[ACCUMULATOR]] https://esolangs.org/w/index.php?diff=105669&oldid=105668 * UndoneStudios * (+373) /* Interpreters */ 12:57:23 int-e: Probably the first time I've done a Burlesque solution (@-/r~@=.r~ln{XX)**48?-5ug}ms5dg{0+]J{3>=}m[RTj{2.+5.%2.-}m[?+}{>]3>=}w!{z?}jdw48?+)L[@/-r~@.=r~\[) *first*. 13:05:53 -!- chiselfuse has quit (Write error: Connection reset by peer). 13:06:16 -!- chiselfuse has joined. 13:35:13 int-e: As for twistiness, the numbers suggest that there's again a lot of people who either don't realize or care that there's that link to click to get the last star. 14:22:16 -!- Thelie has joined. 15:35:56 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 15:37:43 -!- tromp has joined. 16:05:51 > map ord "=-0" 16:05:52 [61,45,48] 16:12:13 fizzie: Hmm do you have a nicer way for day 22 than writing down a separate case for the 14 ways that one can fall off an edge, hard-coded to the given input? 16:25:31 Mm, I guess you could say this isn't hardcoded to the input, but it's got more cases than that: https://0x0.st/o5EC.txt 16:25:40 I use that map to (a) when assembling the cube from faces, map the face and its orientation to a "canonical" cube, and (b) when walking, if the bounds are exceeded, computing the new face, direction, and position from (x', y') = (mxx*x + mxy*y + mxs*(S-1), myx*x + myy*y + mys*(S-1)). 16:26:30 I did this: http://paste.debian.net/1265255/ 16:26:54 Keeping things 2D. 16:27:20 Well, so do I (keep things 2D, I mean). 16:27:24 More or less, anyway. 16:27:49 In theory what I've got should work for any net of a cube, though I've only tested it on the sample and my puzzle input. 16:28:51 Oh I guess you can walk on the given input to map that to your default cube. 16:31:05 Yeah, here's a comment from the source: https://0x0.st/o56s.txt 16:32:12 (map that = map those walks) 16:32:24 I start from an arbitrary face that I call face 0, orientation 0 (the one that has the starting position), and do a recursive thing that finds all the neighbors (in the input) and uses that map to put them to the right place in the canonical cube, and record how the input data is rotated in relation to that. 16:33:22 Out of curiosity, was your puzzle input net the same as mine? Mine was ⡼⠁ 16:33:22 Right. Yeah, and that'll work for all nets. 16:33:34 yep, same one 16:34:16 (I drew a diagram on a sheet of paper for this, it's still around.) 16:34:30 Right. Since the sample and the input weren't the same, I thought it might vary. (I guess it could still be just a coincidence we've got the same one.) 16:37:21 -!- Thelie has quit (Ping timeout: 252 seconds). 16:37:54 There are at least 48 possible nets though... so it's already a pretty big coincidence. 16:38:29 (this includes symmetric versions) 16:42:29 60 might be the actual count, but it's easy to miss a case. 16:43:02 I think we got less "esolangy" puzzles this year than is usual. I mean, the Intcode year was kind of exceptional, but there's usually still at least a couple of ones around an assembly-ish language of some sort. 16:56:29 yeah all we got was day 10 17:02:01 Eh it was fine. And I got exactly 333 global leaderboard points which is kind of neat. 17:27:08 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 17:28:28 -!- tromp has joined. 17:42:11 I had already forgotten about day 10. 17:43:41 I got exactly 0 points, which is a very round number. 17:49:17 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 17:50:01 Yeah those points are largely meaningless. I mean... 1) you have to start when the problem unlocks 2) you basically can't hit any roadblocks (parsing the problem, approach to solving, possinle misinterpretations, bugs)... and even then you need to be kind of fast. For me, it gets a bit easier towards the end as people drop out and problems become harder. 17:50:30 But getting into the top 100 is definitely not something I plan for :P 17:52:20 Surprisingly I got points today... the problem felt way too standard for that. But maybe it isn't, and my previous exposure to balanmced base 3 is kind of special. 17:54:23 (I also lost a rank between part 1 and part 2 today... 6 seconds was too slow!) 17:55:32 I definitely thought "oh, like balanced ternary but for base 5" as soon as I saw today's puzzle, but maybe I'm in the minority too. 18:12:36 -!- tromp has joined. 18:23:13 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 18:47:41 [[Talk:PDAsephone]] https://esolangs.org/w/index.php?diff=105670&oldid=100100 * BoundedBeans * (+209) 19:09:36 fungot, if a dollop is the same as a scoop, does that imply that a doll is the same as a sco? 19:09:36 b_jonas: even then, somehow i forgot those, i guess. ( but i don't know to what extend this might be interesting 19:51:23 -!- tromp has joined. 19:57:02 -!- chiselfuse has quit (Ping timeout: 255 seconds). 19:59:03 -!- chiselfuse has joined. 20:12:45 -!- Sgeo has joined. 20:23:06 Meh. When a Burlesque program takes long, it's so hard to know if it's just being slow, or if it has in fact ended up in an infinite loop of some kind. 20:23:29 Would be convenient if it had some sort of interactive output facility for debugging. 20:41:01 -!- chiselfuse has quit (Read error: Connection reset by peer). 20:41:38 -!- chiselfuse has joined. 20:49:09 [[MindFuck]] https://esolangs.org/w/index.php?diff=105671&oldid=105660 * Fly * (-107) 20:58:37 "real 19m21.351s" guess it was just slow. (Part 1 of day 24...) 21:11:52 -!- chiselfuse has quit (Remote host closed the connection). 21:13:16 -!- chiselfuse has joined. 21:39:48 -!- Hooloovoo has quit (Ping timeout: 256 seconds). 21:41:10 -!- Hooloovoo has joined. 22:11:58 [[OZZo]] N https://esolangs.org/w/index.php?oldid=105672 * Fly * (+787) Created page with "Created by Fly aka Cristian Cestola, oZZo (that stands for "one zero zero one" or "1001") is an esoteric programming language that uses instructions made of binary numbers. ==Instructions== {| class="wikitable" !Command !Description |- |1111 |sets memory to true |- |0000 | 22:12:55 [[OZZo]] https://esolangs.org/w/index.php?diff=105673&oldid=105672 * Fly * (+21) /* Instructions */ 22:21:29 [[User:Fly]] N https://esolangs.org/w/index.php?oldid=105674 * Fly * (+49) Created page with "All my esolangs: * [[MindFuck]] * [[Ozzo|oZZo]]" 22:22:16 [[User:Fly]] https://esolangs.org/w/index.php?diff=105675&oldid=105674 * Fly * (+0) 22:23:34 [[OZZo]] https://esolangs.org/w/index.php?diff=105676&oldid=105673 * Fly * (+4) /* Instructions */ 22:25:34 [[OZZo]] https://esolangs.org/w/index.php?diff=105677&oldid=105676 * Fly * (+63) /* Hello World */ 22:34:43 [[Solbofuck]] https://esolangs.org/w/index.php?diff=105678&oldid=51968 * Kaveh Yousefi * (+269) Added a hyperlink to my implementation of the Solbofuck programming language on GitHub and added the category tag Implemented. 22:37:07 [[Solbofuck]] https://esolangs.org/w/index.php?diff=105679&oldid=105678 * Kaveh Yousefi * (+138) Added further categories to the page. 22:39:10 [[Solbofuck]] https://esolangs.org/w/index.php?diff=105680&oldid=105679 * Kaveh Yousefi * (+214) Added an infinite cat program as a further example. 22:42:09 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 22:48:53 -!- tromp has joined. 22:51:26 -!- bgs has quit (Remote host closed the connection). 23:02:01 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 23:36:38 -!- __monty__ has quit (Quit: leaving). 23:54:34 -!- masterbu1lder has quit (Quit: Lost terminal).