00:55:21 -!- Sgeo__ has joined. 00:58:40 -!- Sgeo_ has quit (Ping timeout: 248 seconds). 01:28:58 -!- arseniiv has quit (Ping timeout: 246 seconds). 02:15:52 -!- Lord_of_Life has quit (Ping timeout: 246 seconds). 02:18:30 -!- Lord_of_Life has joined. 02:20:42 Is this recognizable at all as a cosplay item? https://i.imgur.com/FJSEwEX.jpg 02:35:45 -!- nfd9001 has joined. 02:42:17 -!- Sgeo_ has joined. 02:45:21 What is a cosplay tree? 02:46:06 -!- Sgeo__ has quit (Ping timeout: 272 seconds). 02:47:52 -!- nfd has joined. 02:49:34 -!- nfd9001 has quit (Ping timeout: 252 seconds). 02:49:59 -!- nfd9001 has joined. 02:52:11 -!- nfd has quit (Ping timeout: 250 seconds). 03:12:27 Sgeo__: I don't recognize it as any particular item. But I'm probably not familiar with whatever it's from. 03:16:38 lizzie_swett[m], it's supposed to be a NetHack mimic acting like a strange object 03:17:03 https://nethackwiki.com/wiki/File:Strange_object.png 03:17:07 I was going to say, it looks like a chest of some sort 03:18:02 haven't played nethack with tiles :/ 03:19:00 I also ordered a shirt that says ] mimic or strange object 03:19:02 Ah... like this tile. https://nethackwiki.com/wiki/File:Strange_object.png 03:19:21 I've played NetHack with tiles, but not enough to remember what the strange object sprite looked like. 03:42:09 [[Adar]] M https://esolangs.org/w/index.php?diff=63381&oldid=63380 * A * (+23) /* Adar-= */ 03:48:53 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63382&oldid=63376 * A * (+132) /* Request for a different form for oscillators */ 03:58:22 -!- Asdf_ has joined. 04:00:59 . o O (Odd theory for the deletion of TuxCrafting's GitHub account, may be spamming: After TuxCrafting's accounts had an acquication from Microsoft, Microsoft e-mailed to TuxCrafting saying: ) 04:03:22 "We will updating your computer, and your information will disappear. It might be a good idea to temporarilt delete your GitHub account." TuxCrafting was pertified, so they immediately deleted their GitHub account without thinking. After realizing that it was very foolish to do, TuxCrafting was full of remorse... 04:03:29 -!- Asdf_ has quit (Quit: Page closed). 04:06:31 [[Blindfolded Arithmetic]] M https://esolangs.org/w/index.php?diff=63383&oldid=61189 * A * (+13) Z3 is *not* a language. It is a computer architecture. 04:09:13 [[Got a match?]] M https://esolangs.org/w/index.php?diff=63384&oldid=62870 * A * (-34) 04:12:21 -!- Sgeo__ has joined. 04:12:46 -!- FreeFull has quit. 04:15:18 -!- Sgeo_ has quit (Ping timeout: 244 seconds). 04:27:20 -!- xkapastel has quit (Quit: Connection closed for inactivity). 04:43:02 -!- Sgeo__ has quit (Ping timeout: 268 seconds). 05:02:33 -!- Sgeo has joined. 05:56:59 -!- Sgeo has quit (Read error: Connection reset by peer). 05:57:20 -!- Sgeo has joined. 06:14:10 -!- S_Gautam has joined. 06:19:00 -!- Sgeo_ has joined. 06:20:20 -!- Sgeo has quit (Ping timeout: 244 seconds). 06:44:09 -!- AnotherTest has joined. 06:44:32 -!- sebbu has joined. 06:45:50 -!- Sgeo__ has joined. 06:48:32 -!- AnotherTest has quit (Ping timeout: 248 seconds). 06:48:49 -!- sebbu2 has quit (Ping timeout: 264 seconds). 06:49:27 -!- Sgeo_ has quit (Ping timeout: 268 seconds). 07:17:21 -!- AnotherTest has joined. 08:33:17 -!- salpynx has quit (Quit: Page closed). 08:37:34 -!- S_Gautam has quit (Quit: Connection closed for inactivity). 08:39:20 -!- Sgeo_ has joined. 08:42:23 -!- Sgeo__ has quit (Ping timeout: 258 seconds). 08:45:45 -!- tromp has quit (Remote host closed the connection). 08:53:55 -!- tromp has joined. 09:28:41 -!- adu has quit (Quit: adu). 09:35:24 -!- Frater_EST has joined. 09:52:40 -!- tuxcrafting has joined. 10:05:21 -!- Sgeo_ has quit (Read error: Connection reset by peer). 10:05:48 -!- Sgeo_ has joined. 10:15:14 -!- wob_jonas has joined. 10:16:21 arseniiv: re pairing function, if you only wanted natural numbers, and you can implement multiplication, then the usual (x,y) represented as binom(x+y,2)+y works fine 10:16:48 but if you have some language where you can handle strings of bits easier, then sure, feel free to interleave bits 10:17:36 (0) chooses a function different from both of those because it wants to handle a domain larger than just natural numbers, but even then their function isn't too inconvenient for natural numbers given that it already wants to have multiplication 10:24:08 Sgeo__: ah. I didn't recognize that because it doesn't look like a bracket. 10:34:00 What languages have an infinity floating point literal? 10:34:24 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63385&oldid=63382 * A * (+347) 10:34:25 -!- xkapastel has joined. 10:35:32 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63386&oldid=63385 * A * (+118) 10:36:43 -!- AnotherTest has quit (Ping timeout: 248 seconds). 10:38:17 huh? 10:40:16 Taneb: J and some lisps have special syntax for it C and perl and python just have 9e999. 10:40:38 s/for it/for it./ 10:41:02 wob_jonas: thanks 10:41:04 `python3 -cprint(9e999) 10:41:05 inf 10:41:20 there's probably more but I don't know all languages off hand 10:41:51 of course some languages have library constants, that includes C and C++ 10:41:54 python too 10:42:31 `python3 -cimport math; print(math.inf) 10:42:32 inf 10:43:51 -!- arseniiv has joined. 10:46:20 Taneb: some lisps have rational number literals, with a numerator and denominator, and 1/0 gives an infinity literal 10:46:36 in J, the syntax is a bare underscore for infinity 10:48:04 readeability truly isn't J's primary objective lol 10:48:43 i don't think a literal for infinity is necessary if your language isn't highly directed at math problems 10:49:01 rust technically has them, but they're disabled by default: { #![allow(overflowing_literals)] 9e999 } works 10:49:45 myname: a literal isn't necessary even if it is directed at math problems, because you can use library constants, like C and C++ and python and rust have 10:50:18 yeah, but i could see why J has it. i could understand it for matlab, too 10:52:16 of course, whether you really want to write such things as numeric_limits::infinity() insteead of INFINITY (and std::allocator::difference_type instead of ptrdiff_t) is a matter of taste 10:52:44 but the C++ library does offer both 10:53:07 (technically INFINITY is of float type, so that's not quite equivalent, but they convert easily) 10:53:34 but 9e999 works fine 10:54:04 although it's hacky and breaks down if you use eg bcd floats which support an exponent of 999 10:54:27 (actually maybe they don't but like if you use 128 or 256-bit floats or w/e) 10:54:31 tuxcrafting: sure, sometimes you have to write 9e9999 instead 10:58:14 MATLAB has the `inf` function, but maybe that doesn't quite count as a literal, even if it's used pretty much like one. (You can also give it some arguments to create different-sized matrices with inf in all elements, in which case it looks even less like a literal.) 11:00:46 Taneb: R7RS introduces +inf.0 and -inf.0 into the syntax, though infinities in general are optional. 11:02:48 (Case-insensitive.) 11:03:02 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63387&oldid=63386 * A * (+462) 11:05:37 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63388&oldid=63387 * A * (+502) 11:07:26 [[Talk:Adar]] https://esolangs.org/w/index.php?diff=63389&oldid=63388 * TuxCrafting * (+390) trigger value can be anything by shifting the initial value 11:10:49 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63390&oldid=63389 * A * (+284) 11:11:21 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63391&oldid=63390 * A * (+78) /* Computational class */ Sign my tag 11:13:58 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63392&oldid=63391 * A * (+291) 11:14:22 [[Adar]] M https://esolangs.org/w/index.php?diff=63393&oldid=63381 * A * (+4) 11:19:12 [[Talk:Adar]] https://esolangs.org/w/index.php?diff=63394&oldid=63392 * TuxCrafting * (+460) 11:19:13 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63395&oldid=63394 * A * (+22) 11:25:50 [[Adar]] M https://esolangs.org/w/index.php?diff=63396&oldid=63393 * A * (+115) /* Looping counter */ 11:26:34 [[Adar]] M https://esolangs.org/w/index.php?diff=63397&oldid=63396 * A * (+100) /* Looping counter */ 11:29:01 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63398&oldid=63395 * A * (-162) I have implemented conditional statements, which could suggest that Adar is more powerful than people suspect it to be. 11:30:03 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63399&oldid=63398 * A * (-3) Bad indent 11:31:18 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63400&oldid=63399 * A * (-290) *No* it is insulting to repeat what others say. 11:53:41 -!- tromp has quit (Remote host closed the connection). 11:58:24 It's so good to delete obsolete parts of this program. I just hope I won't need to resurrect them later. 12:01:20 -!- Frater_EST has quit (Ping timeout: 244 seconds). 12:08:20 -!- tromp has joined. 12:32:00 -!- Frater_EST has joined. 12:45:52 [[Talk:Adar]] M https://esolangs.org/w/index.php?diff=63401&oldid=63400 * A * (-47) /* Computational class */ 12:51:32 -!- Frater_EST has left. 12:54:02 -!- xkapastel has quit (Quit: Connection closed for inactivity). 12:59:42 -!- AnotherTest has joined. 13:08:51 -!- Sgeo__ has joined. 13:12:28 -!- Sgeo_ has quit (Ping timeout: 272 seconds). 13:35:55 -!- tuxcrafting has quit (Ping timeout: 248 seconds). 13:37:47 -!- tuxcrafting has joined. 13:51:33 [[Backshift]] N https://esolangs.org/w/index.php?oldid=63402 * A * (+513) Created page with "[[Backshift]] is another sorting algorithm that aims to implement sorting in clean code. ==Algorithm==
 Take 4321 as an example.  while move_left_number != 0:     move_le..."
13:54:43  [[Talk:Backshift]] N https://esolangs.org/w/index.php?oldid=63403 * TuxCrafting * (+272) Created page with "This doesn't work. Take 3124 for example; it will try to move 4, but since the list is already of length 4, it halts, despite it being obviously unso..."
14:10:06  [[Talk:Backshift]] M https://esolangs.org/w/index.php?diff=63404&oldid=63403 * A * (+197) 
14:11:57  [[Backshift]] M https://esolangs.org/w/index.php?diff=63405&oldid=63402 * A * (+221) 
14:12:48  [[Talk:Backshift]] M https://esolangs.org/w/index.php?diff=63406&oldid=63404 * A * (+171) 
14:13:38  [[Backshift]] M https://esolangs.org/w/index.php?diff=63407&oldid=63405 * A * (+57) Specify
14:14:44 -!- FreeFull has joined.
14:15:08 -!- Lord_of_Life_ has joined.
14:16:53  [[Backshift]] M https://esolangs.org/w/index.php?diff=63408&oldid=63407 * A * (+159) 
14:17:32 -!- Lord_of_Life has quit (Ping timeout: 245 seconds).
14:17:42 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
14:18:15  [[Talk:Backshift]] M https://esolangs.org/w/index.php?diff=63409&oldid=63406 * A * (+51) 
14:19:33 -!- wob_jonas has quit (Remote host closed the connection).
14:22:53  [[Backshift]] M https://esolangs.org/w/index.php?diff=63410&oldid=63408 * A * (+86) /* Algorithm */
14:28:57  how do i execute commands
14:29:03  `bash yes | head | wc
14:29:04  bash: yes | head | wc: No such file or directory
14:29:25  `echo hi
14:29:25  hi
14:29:31  you have a wisde range of choices
14:29:32  `? ``
14:29:34  ​` is the prefix to greatness.
14:29:40  `` yes | head | wc
14:29:40  ​     10      10      20
14:33:42 -!- rain2 has quit (Quit: WeeChat 1.6).
14:37:18 -!- rain1 has joined.
14:40:59 -!- Sgeo__ has quit (Quit: Leaving).
14:42:34 -!- moei has joined.
14:44:02 -!- xkapastel has joined.
14:50:16  [[Ellipsis]]  https://esolangs.org/w/index.php?diff=63411&oldid=33657 * Arcorann * (+7) /* See also */
15:03:53 -!- yaewa has joined.
15:06:43 -!- moei has quit (Ping timeout: 245 seconds).
15:50:22 -!- tuxcrafting has quit (Quit: rcirc on GNU Emacs 26.1).
16:08:05 -!- LKoen has joined.
16:28:25 -!- budonyc has joined.
16:44:19 -!- LKoen has quit (Remote host closed the connection).
16:47:26 -!- atslash has quit (Quit: Leaving).
16:47:37 -!- atslash has joined.
17:19:26 -!- LKoen has joined.
17:36:27  [[Blindfolded Arithmetic]]  https://esolangs.org/w/index.php?diff=63412&oldid=63383 * Ais523 * (-13) Undo revision 63383 by [[Special:Contributions/A|A]] ([[User talk:A|talk]]): computational architectures' instruction sets can be interpreted as languages, but going the other way is harder, so the revision is less clear
17:47:47 -!- LKoen has quit (Remote host closed the connection).
17:50:21 -!- LKoen has joined.
18:14:59 -!- LKoen has quit (Remote host closed the connection).
18:26:21 -!- MDude has quit (Quit: Going offline, see ya! (www.adiirc.com)).
18:32:20 -!- amdrew has joined.
18:32:23  ayooooooooooooooo
18:36:46 -!- amdrew has quit (Client Quit).
18:45:18 -!- tuxcrafting has joined.
18:45:32 -!- sebbu2 has joined.
18:47:40 -!- sebbu has quit (Ping timeout: 258 seconds).
18:48:59 -!- AnotherTest has quit (Ping timeout: 248 seconds).
19:01:52 -!- tuxcrafting has quit (Ping timeout: 248 seconds).
19:06:51 -!- tuxcrafting has joined.
19:10:56 -!- tuxcrafting has quit (Ping timeout: 248 seconds).
19:11:59 -!- tuxcrafting has joined.
19:45:17 -!- atslash has quit (Quit: This computer has gone to sleep).
19:47:12 -!- b_jonas has joined.
19:52:31 -!- tuxcrafting has quit (Quit: rcirc on GNU Emacs 26.1).
19:54:53 -!- AnotherTest has joined.
19:56:58 -!- atslash has joined.
20:02:07  still no IOCCC
20:02:13 -!- xkapastel has quit (Quit: Connection closed for inactivity).
20:03:15 -!- AnotherTest has quit (Ping timeout: 258 seconds).
20:04:24  :(
20:04:47  subscribe to `ioccclist if you want to find out quickly when the sources are released by the way
20:08:06  `` cat bin/ioccclist | rot13
20:08:09  rpub -a "$(onfranzr "$0")${@:+ }$@: "; gnvy -a+2 "$0" | knetf; rkvg \ o_wbanf
20:15:02  it works like the other list commands, you can just append a line with your nick
20:18:35 -!- adu has joined.
21:05:37  [[MIX (Knuth)]]  https://esolangs.org/w/index.php?diff=63413&oldid=63378 * B jonas * (+0) /* MIX256 */  the field numbers were wrong
21:06:38 -!- j-bot has quit (Remote host closed the connection).
21:07:33  [[MIX (Knuth)]]  https://esolangs.org/w/index.php?diff=63414&oldid=63413 * B jonas * (+63) /* MIX256 */ further error
21:21:59 -!- xkapastel has joined.
22:08:33 -!- LKoen has joined.
22:09:03 -!- LKoen has quit (Remote host closed the connection).
22:09:41 -!- LKoen_ has joined.
22:30:53 -!- b_jonas has quit (Remote host closed the connection).
22:32:08 -!- nfd has joined.
22:34:35 -!- nfd9001 has quit (Ping timeout: 248 seconds).
22:36:13 -!- MDude has joined.
22:45:01 -!- Sgeo has joined.
22:48:09 -!- adu has quit (Quit: adu).
22:56:31 -!- yaewa has quit (Quit: Leaving...).
23:20:59 -!- arseniiv has quit (Ping timeout: 248 seconds).
23:22:48 -!- LKoen_ has quit (Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.”).