00:12:41 -!- doesthiswork has joined. 00:20:57 -!- imode has joined. 00:23:06 -!- ivzem_ has joined. 00:23:12 -!- ivzem_ has quit (Client Quit). 00:29:14 [[User:ZM]] https://esolangs.org/w/index.php?diff=54376&oldid=54372 * ZM * (+61) 00:29:30 -!- ivzem has quit (Quit: Page closed). 00:41:16 -!- LKoen has quit (Remote host closed the connection). 00:45:24 Cale: https://www.microsoft.com/en-us/research/wp-content/uploads/2002/01/UsingTensorDiagrams.pdf is too good 00:47:56 -!- LKoen has joined. 00:51:29 -!- LKoen has quit (Remote host closed the connection). 00:51:31 -!- Phantom_Hoover has quit (Remote host closed the connection). 01:06:27 -!- variable has joined. 01:09:14 -!- hppavilion[1] has joined. 01:34:14 -!- augur has joined. 01:51:53 -!- Chal_ has joined. 01:53:27 hmm, what are the best verbs to use for the basic queue operations? 01:53:45 I normally use "push" and "shift" because it's what Perl does (and because "pop" is ambiguous with stacks) 01:53:50 maybe there's a better option, though 01:53:54 I don't like "enqueue"/"dequeue", it's too verbose 01:53:57 -!- hppavilion[1] has quit (Ping timeout: 240 seconds). 01:56:14 -!- Chal_ has quit (Ping timeout: 260 seconds). 01:59:24 [[I/D machine Turing-completeness proof]] https://esolangs.org/w/index.php?diff=54377&oldid=54375 * Ais523 * (-4) err, actually I need a different initial state for the cyclic tag construction to be easily understandable 02:00:36 There's the receive/send pair, but that can feel too network-y. 02:03:11 C++ std::queue just uses push/pop even though it's a queue, and I don't mind that. (And of course STL sequence containers have the full set of {push,pop}_{front,back}.) 02:04:27 ,emplace 02:04:49 I didn't want to complicate the discussion with that. 02:05:11 Oh, I didn't see that there wasa a discussion above. 02:05:25 I assumed you just said it out of the blue. I guess that's not a good assumption. 02:07:22 I think something used enq/deq, which sound good if you like gratuitous abbreviation. 02:08:21 Hmm, you could use fancy operator overloading in C++. 02:08:26 -!- hppavilion[1] has joined. 02:08:50 Well, what I wanted was q << x and x << q 02:08:56 But I guess you can't do that. 02:10:12 Why not? 02:14:04 Oh, I guess you cana. 02:14:05 can 02:14:26 You couldn't get the associativity right to do "x << y << z << q" though. 02:14:56 Right. 02:20:00 -!- hppavilion[1] has quit (Ping timeout: 246 seconds). 02:21:22 Wonder if some people actually do template std::ostream& operator>>(const T& x, std::ostream& s) { return s << x; } "for flexibility". 02:23:04 -!- wob_jonas has joined. 02:23:09 Yeah, as fizzie points out, C++ uses push_back and pop_front 02:23:58 You mentioned push and shift, as well as enqueue and dequeue. 02:24:54 Ha! I've gotten farther in J, I will soon be master of the array! 02:26:16 pop_front and push_back is apparently also what the rust standard library uses, for the std::collections::vec_deque::VecDeque class 02:26:33 There's also the pretty generic add/remove, which is what java.util.Queue does. (Though it also does offer/poll for the non-exception case.) 02:26:51 and for the std::collections::linked_list::LinkedList too 02:29:19 " There's the receive/send pair, but that can feel too network-y." => wait, I have a list of these. not for the actions, but for names of the sides. 02:29:40 We should require making up new puzzle sets specifically for use with Free Hero Mesh, in order that some free puzzle sets can be distributed with it. (The puzzles do not necessarily have to resemble Hero Heart at all.) 02:29:51 POSIX message queues use send/receive. 02:30:27 host / guest; master / slave; server / client; remote / local; passive / active; Alice / Bob; backend / frontend; engine / ?; ? / user; attacker / defender; request / response; produce / consume; implement / specify; provide / require; sock / peer (as in getsockname / getpeername); source / destination (for direction of flow); send / receive (for d 02:30:27 irection of flow); female / male (for hardware plugs). 02:30:55 Most of these have also a third word for the "look but don't remove" operation (front, peek, element, head, ...). 02:36:57 -!- variable has quit (Quit: Found 1 in /dev/zero). 02:37:17 -!- hppavilion[1] has joined. 02:37:44 You can also use append instead of push. Or you could use arrow operators, of which there are two styles: 02:38:25 the C++ style where if v is your queue then (v << x) pushes x and returns the queue, and (v >> x) pops into x and returns the queue; 02:38:52 and the Golang style where IIRC (v <- x) pushes x, and (<- v) pops an element and returns it, but I'm not sure 02:39:56 [[I/D machine Turing-completeness proof]] https://esolangs.org/w/index.php?diff=54378&oldid=54377 * Ais523 * (+7449) /* Compiling cyclic tag to ErrorBucket */ complete the proof 02:40:50 [[I/D machine]] https://esolangs.org/w/index.php?diff=54379&oldid=54358 * Ais523 * (-190) /* Computational class */ now proven 02:42:03 OK, now it's proven 02:42:10 in a way that hopefully people but me can understand 02:42:32 (actually I'd made a mistake in my previous proof but it was easily fixed) 02:44:03 Yes, I just checked, the Golang syntax is indeed what I said above 02:46:46 apparently python arrays use append and remove 02:46:59 no wait 02:47:02 that's incorrect 02:47:36 I've no clue what python uses 02:48:03 put and get is another possibility 02:48:12 if you have a dedicated queue 02:49:51 or perhaps write and read 02:50:25 so many possiblities 02:52:30 In order to implement a puzzle game on Free Hero Mesh, the rules must be followed: It must be played on a 2D rectangular grid with neither dimension greater than 64. It must be mathematically considered as a pure function taking the current state and a key code, and the result is either the new state, or a win, or a loss. The number of commands must be not too much. 02:54:26 `? float 02:54:27 float? ¯\(°​_o)/¯ 02:54:33 `? double 02:54:34 double? ¯\(°​_o)/¯ 02:54:45 `? int 02:54:46 `? long 02:54:47 `? short 02:54:47 int? ¯\(°​_o)/¯ 02:54:48 Long is the Chinese word for dragon. 02:54:49 short? ¯\(°​_o)/¯ 02:55:02 `dowg float 02:55:20 No output. 03:01:03 Python lists use "append" to add to the end, and don't provide a no-argument "remove first item", possibly because it's not O(1). (There's ".pop(0)" if you really want.) 03:01:37 Recapping. In perl: push(@v,$x); $x=pop@v; In ruby: v.push(v); x=v.shift; # append works instead of push 03:01:55 Python's collections.deque uses append, appendleft, pop, popleft for the operations C++ calls push_back, push_front, pop_back and pop_front, respectively. 03:03:13 In C++: v.push_back(x); x=v.front(), v.pop_front(); In golang: v<-x; x = <-v; 03:04:40 In rust: v.push_back(x); x = v.pop_front().unwrap(); 03:05:30 For network stuff like the unix socket api, send and recv are used. Apparently nobody likes enqueue and dequeue. 03:05:54 Your Ruby example names the methods for Array, which I don't think is really fair. 03:05:56 Read and write also works for unix files and sockets. 03:05:57 There is a dedicated Queue class in Ruby core, and that one uses push (aliases enq and operator <<) and pop (aliases deq and shift). 03:06:14 fizzie: ah, I didn't know that. 03:06:25 I think it was Ruby where I got the cute "enq" and "deq" from. 03:06:27 In JavaScript: v.push(x); x=v.shift(); It is similar to the examine with Ruby except you need parentheses after "shift". (Also you wrote "v.push(v)" and I thought it is supposed to be "v.push(x)" like I have?) 03:06:53 zzo38: yeah, it's suppsed to be v.push(x) in ruby 03:07:01 v.push(v) was a typo 03:07:13 I'll push myself to the sleep queue, and won't shift out until later, bye. 03:36:56 -!- augur has quit (Ping timeout: 276 seconds). 03:37:49 -!- augur has joined. 03:39:10 -!- variable has joined. 03:54:44 The only temperature of my computer that I can see with Linux is the temperature for te hard drive. (There are no drivers for the other temperature sensor, although the CMOS setting menu will display it.) 03:58:35 But I don't know what temperature should be considered reasonable? 03:58:42 Do you know? 04:00:19 zzo38, definitely not the 90c my laptop reaches 2/7 04:00:23 *24/7 04:02:36 Yes, I know that, but that only is what temperature is not reasonable, and does not indicate which one is reasonable. 04:03:29 also, it sometimes reaches 100c. So uh 04:03:36 dont buy HP laptops, they have shit cooling 04:10:37 OK. (Although I am not using a laptop computer anyways) 04:19:42 -!- MDude has quit (Ping timeout: 246 seconds). 04:39:13 Finally, now Free Hero Mesh can read class codes from .MB files. 04:42:40 (It still does not include the ability to execute them, although it can convert them into its own format.) 04:48:21 (The .MB file stores compiled byte code, and then it is decompiled every time you want to edit it. Free Hero Mesh stores the source code so that you can format it as you wish, and it works differently too. The byte code is RPN, although the source language used by EKS isn't; Free Hero Mesh uses a RPN format source language too though, since it is easier to convert and implement this way.) 04:48:24 Do you like this? 04:50:14 -!- hppavilion[1] has quit (Ping timeout: 260 seconds). 04:52:23 -!- LKoen has joined. 04:53:56 free hero mesh? 04:57:21 -!- LKoen has quit (Ping timeout: 265 seconds). 05:03:06 -!- augur has quit (Ping timeout: 245 seconds). 05:07:12 Yes. I made up a Fossil repository of what I have so far (which isn't much, yet) 05:07:38 The Fossil repository is: http://zzo38computer.org/fossil/heromesh.ui/ 05:12:48 You can write other comments, complaints, questions, suggestions, etc. 05:13:20 huh, I really like the proof that Chaitin's constant is normal 05:14:09 the argument is that knowing the first n bits of Chaitin's constant allows you to solve halting problems of programs whose length is at most n bits 05:14:18 and this solver has some fixed, finite length 05:14:55 now, suppose Chaitin's constant is compressible; you can then take a compressed representation + decompressor + solver and the resulting program will be able to solve its own halting problem, which is impossible 05:15:27 thus, Chaitin's constant must be incompressible; but if it wasn't normal, you could make use of the bias to come up with a working compression scheme 05:16:34 Yes, I like that too, it look like good to me 05:18:06 (Although I am not sure that maybe there might be a few steps missing?) 05:19:05 (I will look up again Chaitin's constant on Wikipedia; maybe I forgot something else) 05:19:20 -!- augur has joined. 05:19:34 I'm not sure it's valid; what concerns me is that the proof kind-of assumes that you know what Chaitin's constant /is/ (at least to that length), but by definition it's impossible to calculate 05:21:59 It does look to me probably a few steps missing 05:31:34 -!- Forceflow has joined. 05:31:39 -!- Forceflow has quit (Client Quit). 05:41:26 I/D still gets me confused 05:52:46 does the proof page help? at least slightly? 05:52:59 Somewhat, yes 05:53:24 doing the 3* proof helped me understand this one 05:53:41 you can think of the language as being vaguely similar to 3* with the difference that you have no easy way to get back to zero 05:54:09 so you need to maintain a NULL at the end of each of your pointer chains so that you can get back to 0 just by spamming dereferences 05:54:28 that means that when you write a pointer, you write it pointing slightly off-centre, then mutate it just before you read it 05:54:45 hmm, somehow I doubt this explanation is helping much 05:57:13 [[Talk:I/D machine]] https://esolangs.org/w/index.php?diff=54380&oldid=54362 * Ais523 * (+668) r to Keymaker 06:09:06 -!- variable has quit (Quit: /dev/null is full). 06:10:23 -!- variable has joined. 06:12:23 [[I/D machine]] https://esolangs.org/w/index.php?diff=54381&oldid=54379 * Ais523 * (+291) let's give this a trivial impl just so it's Implemented; it's pretty easy to implement, after all 06:13:02 [[I/D machine]] M https://esolangs.org/w/index.php?diff=54382&oldid=54381 * Ais523 * (-2) /* RAM0 */ be a bit clearer about the interpreter/compiler distinction 06:35:29 [[Hatemath]] M https://esolangs.org/w/index.php?diff=54383&oldid=54365 * Sane theinsane * (+40) 06:44:23 [[Hatemath]] https://esolangs.org/w/index.php?diff=54384&oldid=54383 * Sane theinsane * (+1976) 06:53:26 [[Hatemath]] https://esolangs.org/w/index.php?diff=54385&oldid=54384 * Sane theinsane * (+238) 06:54:52 -!- augur has quit (Remote host closed the connection). 06:57:53 [[Hatemath]] https://esolangs.org/w/index.php?diff=54386&oldid=54385 * Sane theinsane * (-2121) 06:58:59 [[Hatemath]] M https://esolangs.org/w/index.php?diff=54387&oldid=54386 * Sane theinsane * (+1) 06:59:45 -!- imode has quit (Ping timeout: 264 seconds). 07:18:32 -!- \oren\_ has joined. 07:18:46 -!- ^v has quit (Ping timeout: 240 seconds). 07:18:48 -!- \oren\ has quit (Ping timeout: 240 seconds). 07:18:50 -!- ^v^v has joined. 07:21:58 -!- contrapumpkin has quit (Ping timeout: 264 seconds). 07:26:39 [[NTFJ]] N https://esolangs.org/w/index.php?oldid=54388 * Conor O'Brien * (+3372) Created page with "{{infobox proglang |name=NTFJ |paradigms=imperative |author=[[User:Conor O'Brien]] |year=[[:Category:2016]] |memsys=stack-based |class=:Category:Unknown computational class|..." 07:27:29 [[NTFJ]] M https://esolangs.org/w/index.php?diff=54389&oldid=54388 * Conor O'Brien * (+45) 07:27:53 [[NTFJ]] M https://esolangs.org/w/index.php?diff=54390&oldid=54389 * Conor O'Brien * (+1) typo fix 07:43:23 [[User:Conor O'Brien]] https://esolangs.org/w/index.php?diff=54391&oldid=54012 * Conor O'Brien * (+885) /* Languages I have made */ add more languages 07:44:04 -!- sleffy has quit (Ping timeout: 260 seconds). 07:44:22 [[User:Conor O'Brien]] https://esolangs.org/w/index.php?diff=54392&oldid=54391 * Conor O'Brien * (-53) 09:40:28 [[MITLML]] https://esolangs.org/w/index.php?diff=54393&oldid=54327 * Singingbanana * (+6) 09:57:35 -!- doesthiswork has quit (Remote host closed the connection). 10:13:24 -!- AnotherTest has joined. 10:16:22 -!- ivzem has joined. 10:16:36 -!- xkapastel has quit (Quit: Connection closed for inactivity). 10:22:15 -!- rumble has joined. 10:23:13 -!- grumble has changed nick to Guest75212. 10:23:13 -!- Guest75212 has quit (Killed (tolkien.freenode.net (Nickname regained by services))). 10:23:13 -!- rumble has changed nick to grumble. 10:28:31 -!- ais523 has quit (Quit: quit). 10:46:29 -!- ivzem has quit (Ping timeout: 260 seconds). 10:56:02 -!- ivzem has joined. 11:14:29 -!- ivzem has quit (Ping timeout: 260 seconds). 11:43:54 -!- Phantom_Hoover has joined. 11:43:54 -!- Phantom_Hoover has quit (Changing host). 11:43:54 -!- Phantom_Hoover has joined. 12:35:48 -!- boily has joined. 12:55:53 fungot: nostril. 12:55:54 boily: might have something like " eof?") and i don't have 12:56:07 fungot: no EOF on your nose? 12:56:07 boily: yacc is used in playstation to read fake games too with java.)) 12:56:16 -!- SopaXorzTaker has joined. 12:56:31 ^style 12:56:31 Available: agora alice c64 ct darwin discworld enron europarl ff7 fisher fungot homestuck ic irc* iwcs jargon lovecraft nethack oots pa qwantz sms speeches ss wp youtube 13:00:26 -!- doesthiswork has joined. 13:47:40 -!- wob_jonas has quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client). 15:38:00 -!- Phantom_Hoover has quit (Ping timeout: 246 seconds). 15:53:29 -!- Phantom_Hoover has joined. 15:53:29 -!- Phantom_Hoover has quit (Changing host). 15:53:29 -!- Phantom_Hoover has joined. 16:08:46 -!- Phantom_Hoover has quit (Read error: Connection reset by peer). 16:09:16 -!- moony has changed nick to anus. 16:09:21 -!- anus has changed nick to moony. 16:25:17 -!- xkapastel has joined. 16:42:17 -!- GautamS_ has joined. 16:46:46 wow i don't know this existed 16:47:50 `relcome GautamS_ 16:47:55 ​GautamS_: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: . (For the other kind of esoterica, try #esoteric on EFnet or DALnet.) 16:53:24 -!- MDude has joined. 16:59:09 -!- augur has joined. 17:09:45 -!- GautamS_ has changed nick to GautamS. 17:20:52 -!- boily has quit (Quit: BIZARRE CHICKEN). 17:30:54 -!- imode has joined. 18:12:48 -!- augur has quit (Remote host closed the connection). 18:49:33 -!- sleffy has joined. 18:54:09 -!- moei has quit (Quit: Leaving...). 19:12:42 -!- danil has joined. 19:12:50 hi 19:19:34 (()(*))(~:^:S*a~^a~!~*~:(/)S^):^ 19:26:08 my faith in esoteric languages came after i saw a C to brainfuck compiler 19:26:14 the pinnacle of the human race 19:28:20 -!- SopaXorzTaker has quit (Remote host closed the connection). 19:31:35 -!- moei has joined. 19:32:19 ^ul (()(*))(~:^:S*a~^a~!~*~:(/)S^):^ 19:32:19 */*/**/***/*****/********/*************/*********************/**********************************/*******************************************************/*****************************************************************************************/********************************************************************************* ...too much output! 19:36:21 -!- danil has quit (Quit: danil). 20:07:51 -!- variable has quit (Quit: /dev/null is full). 20:20:45 -!- danil has joined. 20:22:00 -!- danil has quit (Client Quit). 20:22:49 -!- augur has joined. 20:28:47 -!- augur has quit (Remote host closed the connection). 20:31:34 -!- augur has joined. 20:38:29 -!- erdic has quit (Read error: Connection reset by peer). 20:38:53 -!- augur has quit (Ping timeout: 240 seconds). 20:43:53 -!- Sgeo has joined. 20:45:57 -!- Sgeo__ has quit (Ping timeout: 240 seconds). 20:46:38 -!- erdic has joined. 20:48:39 -!- boily has joined. 21:11:37 -!- danil has joined. 21:12:58 -!- GautamS has quit (Read error: Connection reset by peer). 21:13:07 -!- danil has quit (Client Quit). 21:13:20 -!- GautamS has joined. 21:16:14 -!- variable has joined. 21:16:39 -!- GautamS has quit (Client Quit). 21:18:29 -!- danil has joined. 21:18:37 -!- danil has quit (Client Quit). 21:18:56 -!- oerjan has joined. 21:23:03 -!- Phantom_Hoover has joined. 21:23:03 -!- Phantom_Hoover has quit (Changing host). 21:23:03 -!- Phantom_Hoover has joined. 21:24:54 `5 w 21:25:03 1/2:earth//Topologically speaking, the Earth has been a coffee mug ever since that hole to China was dug. \ roujo's relevant info//That information is stored in an unnamed metal cabinet in one of the top floors of an obscure administrative building with a number that you probably never heard of. \ hallucination//You are just imagining this wi 21:25:04 `n 21:25:05 2/2:sdom entry. \ hand injuries//Hand injuries are surprisingly common among webcomic writers, see eg. http://questionablecontent.net/view.php?comic=2314 or http://www.giantitp.com/comics/oots0864.html \ wfraatw//A WFRAATW is a well-founded recursive acronym akin to "WFRAATW". 21:30:29 [[I/D machine Turing-completeness proof]] M https://esolangs.org/w/index.php?diff=54394&oldid=54378 * Ais523 * (+0) /* Compiling ErrorBucket to the I/D machine */ fix an instance of the old startup routine 21:31:50 -!- danil has joined. 21:32:59 . o O ( is that recursion really well-founded ) 21:34:25 -!- hppavilion[1] has joined. 21:34:49 -!- sleffy has quit (Ping timeout: 256 seconds). 21:36:49 -!- danil has quit (Quit: danil). 21:37:10 -!- danil has joined. 21:37:39 thanks! I wanted to use fungot! 21:37:39 danil: how do you dispatch on the types of variables? 21:38:01 Erm?... 21:38:22 -!- danil has quit (Client Quit). 21:39:29 helløœrjan. all recursion is well founded; some may take a little bit more resources to compute. 21:44:08 BOKAILY 21:45:15 . o O ( did danil fail fungot's test like in the holy grail ) 21:45:16 oerjan: why not? oh i see. i generally do, too. true is xy.x, false is tc if the commands: and can take a few. 21:46:26 i suspect true is not tc, although one never knows with GNU programs. 21:52:23 -!- augur has joined. 21:58:07 -!- wob_jonas has joined. 21:59:01 oerjan: oh yes, I love that scene. "It can't be a gold cup." takes cup that is gold-plated from the inside "This is a carpenter's cup." 21:59:25 true example for http://tvtropes.org/pmwiki/pmwiki.php/Main/HollywoodHomely 22:01:19 -!- augur has quit (Remote host closed the connection). 22:04:05 -!- augur has joined. 22:04:15 wob_jonas: not that holy grail 22:04:25 the monty python one 22:04:55 oh, you mean like the "what's your favourite color?" one? 22:05:03 yeah 22:05:17 but he would have said "Aaaaargh!" rather than "Erm?..." if he failed that 22:08:29 maybe. 22:15:35 will they be back? 22:15:54 boily: will who? 22:27:32 them who got scared by the fungot. 22:27:33 boily: fnord/ fnord).) there is no shift within it is simply cps w/ certain reductions performed 22:27:37 fungot: fnord fnord. 22:27:37 boily: but one i can go back, there are 22:28:05 fungot can scare people? 22:28:05 wob_jonas: it included very sophisticated interactive evaluation debugging facilities, undo dwim features fnord, a perl script 22:30:10 fungot: Stop scaring people, it's not nice. 22:30:11 fizzie: where is lambda calculus is a part. in that time :p :p :p) ( although, it might 22:30:16 Can you report more income (including illegal income) on your taxes than you actually have? 22:33:11 zzo38: I don't think you're allowed to do that, but call 1819 from inlands or +3612509500 from abroad on weekdays during the day if you want to know more definitely, or contact and pay a lawyer if you want to know for sure enough that there's a warranty on it. 22:33:45 -!- augur has quit (Remote host closed the connection). 22:34:22 -!- augur has joined. 22:39:06 . o O ( zero one one eight nine nine nine ♪ ) 22:40:32 meh, these numbers change once every few years. the last one was +3640424242, but then the whole +3640 namespace got disassembled, and every important organization got new numbers completely at random so you have to look them up individually, 22:41:06 and half of them are short numbers like this 1819 one, and for short numbers you can't easily tell what the equivalent is to dial from abroad or what the costing is without looking those info up 22:41:23 I think dismantling the +3640 namespace was a horrible decision 22:44:53 -!- augur has quit (Ping timeout: 252 seconds). 22:49:33 -!- AnotherTest has quit (Ping timeout: 246 seconds). 22:52:40 -!- moony has changed nick to Box[Tux[Qyou]]. 22:52:55 -!- Box[Tux[Qyou]] has changed nick to moony. 22:56:57 -!- moony has changed nick to [o-o]. 22:57:00 -!- [o-o] has changed nick to moony. 22:58:26 -!- moony has changed nick to o-o. 22:58:32 -!- o-o has changed nick to moony. 22:58:46 -!- moony has changed nick to {o-o}. 22:58:49 -!- {o-o} has changed nick to moony. 22:59:46 -!- moony has changed nick to `o-o`. 22:59:51 -!- `o-o` has changed nick to o-o. 22:59:57 -!- o-o has changed nick to moony. 23:00:10 um? 23:00:13 what are you doing? 23:01:37 -!- variable has quit (Quit: /dev/null is full). 23:07:20 something 23:11:28 -!- moei has quit (Read error: Connection reset by peer). 23:12:02 -!- moei has joined. 23:29:07 [[Special:Log/newusers]] create * Hanss314 * New user account 23:37:15 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=54395&oldid=54364 * Hanss314 * (+251) /* Introductions */ 23:43:24 -!- LKoen has joined. 23:44:25 -!- LKoen has quit (Client Quit). 23:47:03 -!- Phantom_Hoover has quit (Remote host closed the connection). 23:47:35 `? cherry 23:47:36 -!- qbinl has joined. 23:47:37 -!- qbinl has quit (Client Quit). 23:47:38 cherry? ¯\(°​_o)/¯ 23:51:57 -!- sprocklem has quit (Ping timeout: 264 seconds). 23:53:20 [[Zero Instruction Set Computer]] https://esolangs.org/w/index.php?diff=54396&oldid=45755 * B jonas * (+28) should really also have an example that isn't created by ais523 23:53:51 -!- sprocklem has joined. 23:54:09 [[Zero Instruction Set Computer]] https://esolangs.org/w/index.php?diff=54397&oldid=54396 * B jonas * (+19) /* Examples */ 23:55:14 [[Zero Instruction Set Computer]] https://esolangs.org/w/index.php?diff=54398&oldid=54397 * B jonas * (-10) /* Examples */