00:38:52 [[Unicorn]] M https://esolangs.org/w/index.php?diff=74938&oldid=66810 * PythonshellDebugwindow * (+15) 00:40:45 [[Unicorn]] M https://esolangs.org/w/index.php?diff=74939&oldid=74938 * PythonshellDebugwindow * (+21) /* External resources */ 00:52:02 -!- adu has quit (Quit: adu). 01:03:42 -!- adu has joined. 01:38:37 -!- adu has quit (Quit: adu). 01:41:08 -!- nfd9001 has quit (Ping timeout: 246 seconds). 01:41:13 -!- moony has joined. 01:41:37 -!- moony has changed nick to Guest42671. 01:42:13 -!- nfd9001 has joined. 01:44:02 -!- Guest42671 has quit (Client Quit). 01:49:42 -!- probablymoony has joined. 01:57:45 -!- probablymoony has changed nick to moony. 02:21:38 -!- atslash has quit (Ping timeout: 260 seconds). 02:22:59 -!- atslash has joined. 02:34:22 [[Talk:Brainfuck]] https://esolangs.org/w/index.php?diff=74940&oldid=72617 * DanielCristofani * (+802) /* A possible proof */ 02:53:50 zzo38: I believe git already has a protocol that doesn't require downloading the whole repo from the server side, it's just that git the software can't handle partial repositories on the client side. This is a big reason why I recommend svn. 02:54:52 but I could be wrong 02:55:03 maybe the server doesn't quite allow you to pick which objects to download 02:55:32 the svn client also isn't perfect about this, but it handles partial repositories much better 02:56:24 Well, you can use svn for your own projects (although I use Fossil myself), but many people use git. 03:07:55 -!- craigo has quit (Ping timeout: 246 seconds). 04:10:05 -!- MDude has quit (Read error: Connection reset by peer). 04:10:23 -!- MDude has joined. 05:35:28 -!- rain1 has joined. 06:35:19 [[User:Zzo38/Programming languages with unusual features]] https://esolangs.org/w/index.php?diff=74941&oldid=54495 * Zzo38 * (+1602) PostScript 07:09:06 -!- LKoen has joined. 07:52:40 -!- 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.”). 08:22:30 -!- kuluma has joined. 08:33:59 -!- b_jonas has quit (Quit: leaving). 08:36:42 -!- kuluma has quit (Remote host closed the connection). 08:51:36 -!- cpressey has joined. 08:51:54 -!- imode has quit (Ping timeout: 246 seconds). 09:30:25 -!- TheLie has joined. 09:31:11 [[Tandem]] https://esolangs.org/w/index.php?diff=74942&oldid=74837 * Chris Pressey * (-9) /* Example programs */ Fix initialization idioms in example programs (h/t arseniiv, I'm still catching up) 09:54:36 [[Tandem]] https://esolangs.org/w/index.php?diff=74943&oldid=74942 * Chris Pressey * (+40) Give in to determinism. Add section on non-terminating rewrites. 10:26:06 -!- Lord_of_Life_ has joined. 10:27:26 -!- Lord_of_Life has quit (Ping timeout: 260 seconds). 10:27:27 -!- Lord_of_Life_ has changed nick to Lord_of_Life. 10:29:55 -!- tromp has joined. 10:30:44 -!- craigo has joined. 10:33:52 -!- tromp_ has quit (Ping timeout: 260 seconds). 10:37:16 [[Tandem]] https://esolangs.org/w/index.php?diff=74944&oldid=74943 * Chris Pressey * (+146) /* Computational class */ Answer one of these questions. 10:44:50 -!- olsner has quit (Ping timeout: 256 seconds). 10:55:08 -!- olsner has joined. 10:55:48 I detect a distinct tendency by the users of the esolang wiki to see every language in terms of brainfuck 10:56:18 All esolangs are brainfuck derivatives. 10:56:21 :P 10:57:07 Yeah, I used to be like that once upon a time 10:57:08 Especially Intercal. 10:57:13 -!- LKoen has joined. 10:57:22 With good guidance they'll grow out of it 10:58:14 (This is me trying to build up a time travel joke, or failing that, a break of causality through unfettered coming from.) 10:58:36 (But it won't be funny. :P) 10:58:43 Chet out my fancy inotify program: https://shachaf.net/tmp/mustardwatch/mustardwatch.c 10:58:52 It uses ptrace to detect what files a program uses and reruns it when they change. 10:59:53 shachaf: that's a pretty cool idea 11:01:03 cpressey: This category is *totally* Brainfuck-centric: https://esolangs.org/wiki/Category:Before_1993 11:01:42 Hah, we have Perl and Python? 11:04:07 (The latter article is a disappointment.) 11:13:50 [[Talk:Javagony Turing-completeness proof]] N https://esolangs.org/w/index.php?oldid=74945 * Chris Pressey * (+582) Feedback on this proof 11:17:34 cpressey: i think that decrementing part is just the loop condition 11:19:50 Yes, they're demonstrating that Javagony can do something that brainfuck interpreters do, I get that 11:19:59 like, translation of a bf program to javagony is the following: translate +.<> as written on the page. for [subprogram] create a method with that translation in Proof class and make call to proof.doWhileReadNe0(subprogramMethod) 11:20:04 it's not an interpreter 11:20:07 You know, I've never tried writing a brainfuck self-interpreter 11:20:11 I might give it a go 11:20:13 it's a framework for translating arbitrary bf programs 11:21:17 I stand by my statement that it's halfway to a brainfuck interpreter, which would be a 100% convincing proof of its TCness 11:22:53 ++[>+<-] would translate to: Proof.subprogram() { tape.right(); tape.write(tape.read() - 1); tape.left(); tape.write(tape.read() + 1); } and in main tape.write(tape.read() + 1); tape.write(tape.read() + 1); proof.doWhileReadNe0(proof.subprogram); 11:23:13 yeah, you could write an interpreter, but that not what this proof is about 11:23:17 cpressey: I guess the simple truth is that Brainfuck is the one minimal programming language that everybody has heard of. 11:23:44 (for some pretty big value of "everybody") 11:24:25 technically, that "proof" is not a real proof since it does not show that the translation does have the same semantics as the bf programm you are translating 11:50:04 -!- cpressey has quit (Quit: Lunch.). 11:59:12 -!- 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.”). 12:39:55 [[CUTLASS]] M https://esolangs.org/w/index.php?diff=74946&oldid=51170 * PythonshellDebugwindow * (-3) that cat only has one page, rm 12:51:29 [[Bigspace]] M https://esolangs.org/w/index.php?diff=74947&oldid=74866 * DmilkaSTD * (+27) 12:52:13 myname: That's a very common thing though. The attitude is usually that the reduction is the creative and tricky part while showing that the semantics are preserved is merely tedious routine. 12:53:10 (Obviously there are exceptions.) 12:54:22 [[Tuplary]] M https://esolangs.org/w/index.php?diff=74948&oldid=74736 * DmilkaSTD * (+106) +string,format 12:56:48 [[Tuplary]] M https://esolangs.org/w/index.php?diff=74949&oldid=74948 * DmilkaSTD * (+120) +string.eg 12:58:12 -!- cpressey has joined. 13:08:09 [[Bigspace]] M https://esolangs.org/w/index.php?diff=74950&oldid=74947 * PythonshellDebugwindow * (+25) /* Heap access */ cat 13:47:59 -!- TheLie has quit (Remote host closed the connection). 13:53:59 -!- arseniiv has joined. 14:08:46 https://rdcu.be/b5nn1 14:09:50 collatz checked 14:35:53 [[Special:Log/newusers]] create * Retrac0 * New user account 14:38:05 Not bad 14:38:12 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=74951&oldid=74929 * Retrac0 * (+155) 14:38:57 -!- lucky has joined. 14:39:58 -!- lucky has quit (Changing host). 14:39:58 -!- lucky has joined. 14:54:53 -!- Arcorann has quit (Read error: Connection reset by peer). 15:03:29 [[X.so]] M https://esolangs.org/w/index.php?diff=74952&oldid=34447 * PythonshellDebugwindow * (-6) unpipe 15:04:23 [[Bitfuck]] M https://esolangs.org/w/index.php?diff=74953&oldid=36829 * PythonshellDebugwindow * (+68) cats 15:05:46 [[RISBF]] M https://esolangs.org/w/index.php?diff=74954&oldid=65757 * PythonshellDebugwindow * (+211) 15:06:50 [[Boolfuck]] M https://esolangs.org/w/index.php?diff=74955&oldid=74516 * PythonshellDebugwindow * (+49) /* External resources */ cats 15:11:35 -!- rodgort` has joined. 15:12:03 -!- sftp_ has joined. 15:12:13 -!- nfd has joined. 15:12:44 -!- tromp_ has joined. 15:14:15 -!- sftp has quit (Excess Flood). 15:14:15 -!- rodgort has quit (Ping timeout: 264 seconds). 15:14:15 -!- cpressey has quit (Ping timeout: 264 seconds). 15:14:22 -!- sftp_ has changed nick to sftp. 15:14:23 -!- cpressey has joined. 15:15:22 -!- tromp has quit (Ping timeout: 254 seconds). 15:15:50 -!- nfd9001 has quit (Ping timeout: 264 seconds). 15:15:50 -!- Hooloovo0 has quit (Ping timeout: 264 seconds). 15:15:50 -!- laerling has quit (Ping timeout: 264 seconds). 15:16:09 -!- Hooloovo0 has joined. 15:19:04 -!- TheLie has joined. 15:20:21 [[Javagony Turing-completeness proof]] M https://esolangs.org/w/index.php?diff=74956&oldid=74898 * PythonshellDebugwindow * (+4873) 15:20:56 [[Javagony Turing-completeness proof]] M https://esolangs.org/w/index.php?diff=74957&oldid=74956 * PythonshellDebugwindow * (+37) /* Main.java */ 15:22:06 -!- laerling has joined. 15:28:37 [[Javagony Turing-completeness proof]] M https://esolangs.org/w/index.php?diff=74958&oldid=74957 * PythonshellDebugwindow * (+1) /* The proof */ 15:31:52 [[Javagony Turing-completeness proof]] M https://esolangs.org/w/index.php?diff=74959&oldid=74958 * PythonshellDebugwindow * (+183) /* And now for a brainfuck interpreter... */ 15:39:25 [[Entfedern]] M https://esolangs.org/w/index.php?diff=74960&oldid=54166 * PythonshellDebugwindow * (+41) /* timeSealing */ cat 15:40:22 [[Alarm Clock Radio]] M https://esolangs.org/w/index.php?diff=74961&oldid=54014 * PythonshellDebugwindow * (+50) /* See also */ 15:40:57 [[EPARM]] M https://esolangs.org/w/index.php?diff=74962&oldid=65408 * PythonshellDebugwindow * (+6) 15:41:57 [[SNUSP]] M https://esolangs.org/w/index.php?diff=74963&oldid=65752 * PythonshellDebugwindow * (+6) 15:42:33 [[Extensions to SNUSP]] M https://esolangs.org/w/index.php?diff=74964&oldid=53707 * PythonshellDebugwindow * (+16) 15:42:51 [[SNUSP]] M https://esolangs.org/w/index.php?diff=74965&oldid=74963 * PythonshellDebugwindow * (+3) /* See also */ 15:44:13 -!- LKoen has joined. 15:44:19 [[Calculon]] M https://esolangs.org/w/index.php?diff=74966&oldid=21144 * PythonshellDebugwindow * (+30) 15:45:12 arseniiv: I finally implemented it, including a parser and batch I/O -- https://github.com/catseye/Tandem 15:47:57 [[Golf (A)]] M https://esolangs.org/w/index.php?diff=74967&oldid=69743 * PythonshellDebugwindow * (+49) 16:06:17 [[]] N https://esolangs.org/w/index.php?oldid=74968 * PythonshellDebugwindow * (+1144) Created page with "{{Wrongtitle|title=_}} {{WIP}} '''_''' is an esolang by [[User:PythonshellDebugwindow]]. ==Commands== {| class="wikitable sortable" ! Command !! Effect |- | % ||..." 16:06:43 [[]] M https://esolangs.org/w/index.php?diff=74969&oldid=74968 * PythonshellDebugwindow * (+39) /* Interpreter */ 16:07:20 [[!!!Batch]] M https://esolangs.org/w/index.php?diff=74970&oldid=73352 * PythonshellDebugwindow * (-55) /* Derivatives */ 16:08:17 -!- cpressey has quit (Quit: WeeChat 1.9.1). 16:16:47 yay! 16:16:50 oh 16:16:59 @tell cpressey yay! 16:16:59 Consider it noted. 16:29:58 [[User:Arseniiv/Generalized Minsky machine]] M https://esolangs.org/w/index.php?diff=74971&oldid=66960 * Arseniiv * (+224) I should have done it long ago 16:30:48 [[Special:Log/move]] move * Arseniiv * moved [[User:Arseniiv/Generalized Minsky machine]] to [[Generalized Minsky machine]]: this model is quite a reasonable model 16:32:49 [[Minsky machine]] M https://esolangs.org/w/index.php?diff=74974&oldid=73742 * Arseniiv * (+152) should have done it a long time ago 16:34:13 @tell cpressey also kudos for Minsky machine! Now I wonder would it be as easy to represent a generalized Minsky machine which uses arbitrary recursive polynomial types? 16:34:13 Consider it noted. 16:35:12 [[User:Arseniiv]] M https://esolangs.org/w/index.php?diff=74975&oldid=70294 * Arseniiv * (-1) deslashing 16:43:19 [[Sandbox/td]] M https://esolangs.org/w/index.php?diff=74976&oldid=69867 * PythonshellDebugwindow * (+29) 16:46:09 -!- BWBellairs has quit (Quit: Quit). 16:48:06 [[User:PythonshellDebugwindow/UnusedLangLetters]] M https://esolangs.org/w/index.php?diff=74977&oldid=73716 * PythonshellDebugwindow * (-1) 16:55:40 -!- BWBellairs has joined. 16:56:37 -!- TheLie has quit (Remote host closed the connection). 16:59:04 -!- tromp has joined. 17:02:37 -!- tromp_ has quit (Ping timeout: 272 seconds). 17:06:29 -!- Melvar has quit (Quit: WeeChat 2.8). 17:13:30 [[Time Out]] M https://esolangs.org/w/index.php?diff=74978&oldid=42291 * PythonshellDebugwindow * (+4) /* Hello World */ 17:15:41 [[HelloWorld]] M https://esolangs.org/w/index.php?diff=74979&oldid=60498 * PythonshellDebugwindow * (+202) cats 17:15:50 -!- Melvar has joined. 17:19:36 -!- kspalaiologos has joined. 17:23:58 [[Espaol]] M https://esolangs.org/w/index.php?diff=74980&oldid=74857 * DmilkaSTD * (-22) 17:25:59 [[BytFuck]] M https://esolangs.org/w/index.php?diff=74981&oldid=74869 * DmilkaSTD * (+0) grammar+=2 17:29:21 -!- b_jonas has joined. 17:31:05 [[Revolution 9]] M https://esolangs.org/w/index.php?diff=74982&oldid=36109 * DmilkaSTD * (+16) 17:33:54 [[Revolution 9]] M https://esolangs.org/w/index.php?diff=74983&oldid=74982 * DmilkaSTD * (+148) 17:34:50 b_jonas: hi 17:37:53 hello 17:38:17 I'm looking for an esolang to build an interpreter for 17:38:26 I'd like to target something turing complete 17:38:48 and preferably something that already has some code samples, but isn't trivial to program (like bf substitutions or smth) 17:39:08 bonus points for evil bit-level twiddling operations 17:39:27 hello arseniiv, kspalaiologos 17:40:00 i considered malbolge, but it's so well known that the surprise aspect is over :p 17:40:13 bonus points for evil bit-level twiddling operations => ohohoho can’t advice anything sorry 17:40:32 bonus points =/= all points :p 17:40:58 I just want to develop something as a showcase of what my x86 packer/obfuscator can do 17:41:48 I thought about writing a NAND-based lang 17:41:55 with some encryption or something 17:43:01 kspalaiologos: why does it have to be an esoteric language? you could just write a C compiler, there are plenty of code examples of C, including ones that do weird stuff 17:43:37 it's very simple: because esolangs aren't this easy to work your way through 17:43:54 some of my crackmes feature esolang X, which has a checker for the solution, with an x86 interpreter bundled 17:44:10 so I'm looking for this X esolang that I could use for making a crackme 17:44:26 there are bonus points for it being hard and not very common, because it adds up some difficulty 17:44:55 also the interpreter has to be non-trivial, so the code protection stuff can really show off 17:45:19 kspalaiologos: how about one of the older ICFP languages then? 17:45:41 including the ones that aren't documented on the esolang wiki, like the space navigation language 17:45:42 uh, I looked it up, it seems interesting 17:45:51 is there a list or something? 17:45:53 or Intcode which isn't ICFP but similar 17:45:56 the google doesn't link to anything useful 17:46:09 kspalaiologos: sadly the old ICFP contest pages are hard to find, 17:46:32 many of the websites are no longer online, since they're all organized by different groups 17:46:37 http://icfpcontest.github.io/ has some links 17:46:45 I used malbolge and I liked it, because a) it was hard to program/read/write b) encryption c) weird operators 17:47:16 yeah 17:47:21 ICFP seems like the way to go 17:47:27 there is some interesting stuff there 17:47:34 ICFP 2000 has GML, a stack-based pure functional language, 17:47:40 well, almost pure functional 17:47:47 the ray-tracing output is a side-effect 17:48:21 2004 has the ant brain language 17:48:40 where you control a swarm of ants by writing a program that is running in the brain of each ant 17:48:43 in a very limited language 17:48:58 ah, this one is entertaining 17:49:14 2014 has two languages: GHC and GCC, one the style of 8-bit cpus, the other a haskell-style functional language 17:49:40 the 9-bit one seems promising 17:49:43 *8 17:50:01 2011 has Lambda: the Gathering, a card game with a programming element, where you make a move by composing a function with another function from either the left or right 17:50:18 see https://esolangs.org/wiki/Category:ICFP_contest 17:50:56 nice 17:51:00 I will evilify it to be hard to program 17:51:03 2007 has Fuun DNA and RNA, where DNA acts as a turing-complete preprocessor and RNA is a vector drawing language with no programming constructs directly inside it which is why you use the preprocessor 17:51:04 and it will make a good tool 17:51:10 it's a very interesting string-based language 17:51:42 oh, and 2006 has UM-32, another low-level cpu-like language, I recommend that one 17:51:45 see https://esolangs.org/wiki/UM-32 17:51:57 yes yes 17:52:00 this is the one on my mind 17:52:00 well, see the original contest description that must be linked from it instead 17:52:24 and there were contests every year since, but I don't have the links 17:52:48 I'll remove instructions 3,4,5 17:53:01 8,9 and add realloced permagen instead 17:53:11 or not 17:53:17 because this seems like harvard architecture to me 17:54:16 kspalaiologos: if you change instructions, you won't be able to run the code that contains the contest 17:54:23 you wanted code examples, there is one, the Codex 17:54:30 if you want to run that, you need the full language 17:54:32 I can write em myself 17:55:02 oh, so you don't want existing example programs after all? 17:56:37 example programs are here to point me the direction 17:56:46 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74984&oldid=74789 * DmilkaSTD * (-1865) 17:56:47 not for anything else 17:56:59 and to test the correctness of your interpreter 17:57:06 yes 17:57:09 and, hah, interesting to see 17:57:14 someone is taking on brainfuck assembly too 17:57:44 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74985&oldid=74984 * DmilkaSTD * (+28) 17:59:21 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74986&oldid=74985 * DmilkaSTD * (-13) 18:05:49 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74987&oldid=74986 * DmilkaSTD * (+177) 18:06:31 [[Talk:BF-ASM:8]] N https://esolangs.org/w/index.php?oldid=74988 * DmilkaSTD * (+116) Created page with "== How to make a compiler == If you want to make a compiler here I'm going to post here my ideas for making one.
" 18:08:14 [[Talk:BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74989&oldid=74988 * DmilkaSTD * (+41) 18:08:39 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74990&oldid=74987 * DmilkaSTD * (-675) 18:09:44 [[Talk:BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74991&oldid=74989 * DmilkaSTD * (+64) 18:14:10 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74992&oldid=74990 * DmilkaSTD * (+265) +basic instructions 18:15:05 [[Talk:BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74993&oldid=74991 * DmilkaSTD * (+60) 18:15:42 [[BF-ASM:8]] https://esolangs.org/w/index.php?diff=74994&oldid=74992 * DmilkaSTD * (+4) 18:17:34 [[User talk:Byskit-dev]] https://esolangs.org/w/index.php?diff=74995&oldid=74918 * DmilkaSTD * (+16) 18:19:30 [[BF-ASM:8]] https://esolangs.org/w/index.php?diff=74996&oldid=74994 * DmilkaSTD * (+95) 18:25:37 -!- adu has joined. 18:43:22 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74997&oldid=74996 * DmilkaSTD * (+660) 18:44:01 [[BF-ASM:8]] M https://esolangs.org/w/index.php?diff=74998&oldid=74997 * DmilkaSTD * (+19) fixed kfor 18:44:34 [[BF-ASM:8]] https://esolangs.org/w/index.php?diff=74999&oldid=74998 * DmilkaSTD * (+13) 18:48:41 -!- TheLie has joined. 18:51:49 [[User:DmilkaSTD]] https://esolangs.org/w/index.php?diff=75000&oldid=74868 * DmilkaSTD * (+47) 18:53:08 [[HelloWorld]] M https://esolangs.org/w/index.php?diff=75001&oldid=74979 * DmilkaSTD * (+0) Fixed the category 18:59:00 [[User:DmilkaSTD]] https://esolangs.org/w/index.php?diff=75002&oldid=75000 * DmilkaSTD * (+67) 19:00:44 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75003&oldid=69155 * DmilkaSTD * (-3145) Replaced content with "'''Esomachine''' was made by [[User:DmilkaSTD]]. It is a [[:Category:cell-based|cell-based]] language that has an [[accumulator]] and it's based in the game [https://en.wi..." 19:01:18 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75004&oldid=75003 * DmilkaSTD * (-36) 19:02:37 [[Esomachine]] https://esolangs.org/w/index.php?diff=75005&oldid=75004 * DmilkaSTD * (+147) +memory 19:03:10 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75006&oldid=75005 * DmilkaSTD * (+28) 19:04:55 [[BytFuck]] M https://esolangs.org/w/index.php?diff=75007&oldid=74981 * PythonshellDebugwindow * (+0) grammar+=3; 19:05:45 [[Espaol]] M https://esolangs.org/w/index.php?diff=75008&oldid=74980 * PythonshellDebugwindow * (+49) /* Proof that "Espaol" is uncomputable */ 19:06:15 [[Talk:BF-ASM:8]] M https://esolangs.org/w/index.php?diff=75009&oldid=74993 * PythonshellDebugwindow * (-4) rm br 19:08:51 -!- castanopsis has joined. 19:10:29 -!- kspalaiologos has quit (Quit: Leaving). 19:10:58 [[Revolution 9]] M https://esolangs.org/w/index.php?diff=75010&oldid=74983 * PythonshellDebugwindow * (+167) cats 19:11:09 [[User:DmilkaSTD]] M https://esolangs.org/w/index.php?diff=75011&oldid=75002 * DmilkaSTD * (+190) get rekt noob 19:12:26 [[Esomachine]] https://esolangs.org/w/index.php?diff=75012&oldid=75006 * DmilkaSTD * (+209) I actually hate this esolang 19:14:28 [[Esomachine]] https://esolangs.org/w/index.php?diff=75013&oldid=75012 * DmilkaSTD * (+25) 19:14:43 [[CLooP]] M https://esolangs.org/w/index.php?diff=75014&oldid=25356 * PythonshellDebugwindow * (+6) 19:15:18 [[User:DmilkaSTD]] M https://esolangs.org/w/index.php?diff=75015&oldid=75011 * DmilkaSTD * (+5) 19:15:27 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75016&oldid=75013 * PythonshellDebugwindow * (+21) /* Commands */ 19:15:45 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75017&oldid=75016 * PythonshellDebugwindow * (-3) 19:17:49 [[CLooP]] M https://esolangs.org/w/index.php?diff=75018&oldid=75014 * PythonshellDebugwindow * (+27) /* External resources */ cat 19:19:00 [[NRSRSSOMN]] M https://esolangs.org/w/index.php?diff=75019&oldid=49768 * PythonshellDebugwindow * (+6) 19:20:22 [[RESOL]] M https://esolangs.org/w/index.php?diff=75020&oldid=16708 * PythonshellDebugwindow * (+12) 19:21:40 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75021&oldid=75017 * DmilkaSTD * (+581) dreams 19:22:04 [[User:DmilkaSTD]] M https://esolangs.org/w/index.php?diff=75022&oldid=75015 * DmilkaSTD * (+26) 19:23:03 [[Esomachine]] M https://esolangs.org/w/index.php?diff=75023&oldid=75021 * PythonshellDebugwindow * (+2) /* Comments */ grm 19:25:14 [[Callable]] M https://esolangs.org/w/index.php?diff=75024&oldid=72412 * PythonshellDebugwindow * (+44) /* Syntax */ 19:25:59 -!- RiriSec has joined. 19:27:19 [[Callable]] M https://esolangs.org/w/index.php?diff=75025&oldid=75024 * PythonshellDebugwindow * (+2) /* BNF */ 19:28:07 [[Callable]] M https://esolangs.org/w/index.php?diff=75026&oldid=75025 * PythonshellDebugwindow * (+0) /* Function list */ 19:29:42 [[]] M https://esolangs.org/w/index.php?diff=75027&oldid=74969 * PythonshellDebugwindow * (-8) 19:30:24 -!- RiriSec has quit (Quit: WeeChat 2.3). 19:31:09 [[Language list]] M https://esolangs.org/w/index.php?diff=75028&oldid=74913 * PythonshellDebugwindow * (+2) /* Non-alphabetic */ +[[|_]] (this title breaks monospace!) 19:32:58 [[]] M https://esolangs.org/w/index.php?diff=75029&oldid=75027 * PythonshellDebugwindow * (+95) /* Commands */ 19:33:32 [[]] M https://esolangs.org/w/index.php?diff=75030&oldid=75029 * PythonshellDebugwindow * (+64) /* Interpreter */ 19:33:45 [[]] M https://esolangs.org/w/index.php?diff=75031&oldid=75030 * PythonshellDebugwindow * (+12) /* Commands */ 19:34:09 [[Esomachine]] https://esolangs.org/w/index.php?diff=75032&oldid=75023 * DmilkaSTD * (+331) almost 19:34:51 [[User:PythonshellDebugwindow]] M https://esolangs.org/w/index.php?diff=75033&oldid=74911 * PythonshellDebugwindow * (+83) /* Languages */ 19:39:37 [[Esomachine]] https://esolangs.org/w/index.php?diff=75034&oldid=75032 * DmilkaSTD * (+435) almost 19:39:56 [[]] M https://esolangs.org/w/index.php?diff=75035&oldid=75031 * PythonshellDebugwindow * (-291) /* Interpreter */ github 19:40:50 [[Blues machine]] M https://esolangs.org/w/index.php?diff=75036&oldid=74885 * PythonshellDebugwindow * (+60) /* External resources */ 19:56:44 [[Esomachine]] https://esolangs.org/w/index.php?diff=75037&oldid=75034 * DmilkaSTD * (+836) finished my childhood esolang (literally) 20:18:58 [[Control Character]] M https://esolangs.org/w/index.php?diff=75038&oldid=61366 * PythonshellDebugwindow * (-167) 20:21:22 [[PATH]] M https://esolangs.org/w/index.php?diff=75039&oldid=65751 * PythonshellDebugwindow * (+54) /* External resources */ cats 20:32:29 [[Hardlang]] M https://esolangs.org/w/index.php?diff=75040&oldid=63907 * PythonshellDebugwindow * (+278) 20:36:19 [[SLOS]] M https://esolangs.org/w/index.php?diff=75041&oldid=68235 * PythonshellDebugwindow * (+1) 22:19:55 -!- 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.”). 22:24:09 -!- adu has quit (Quit: adu). 22:26:47 -!- Lord_of_Life_ has joined. 22:28:06 -!- laerling has quit (Changing host). 22:28:06 -!- laerling has joined. 22:29:25 -!- Lord_of_Life has quit (Ping timeout: 272 seconds). 22:29:25 -!- Lord_of_Life_ has changed nick to Lord_of_Life. 22:45:24 -!- castanopsis has quit (Ping timeout: 256 seconds). 23:06:05 -!- Cubix has joined. 23:12:21 -!- ArthurStrong has joined. 23:13:37 -!- Arcorann has joined. 23:18:49 -!- arseniiv has quit (Ping timeout: 272 seconds). 23:28:39 -!- TheLie has quit (Remote host closed the connection). 23:41:36 [[Special:Log/newusers]] create * Thorimur * New user account 23:44:22 -!- imode has joined. 23:48:18 [[Particle automaton]] M https://esolangs.org/w/index.php?diff=75042&oldid=7879 * PythonshellDebugwindow * (+89) See also 23:49:50 [[Noit o' mnain worb]] M https://esolangs.org/w/index.php?diff=75043&oldid=43391 * PythonshellDebugwindow * (+30) /* External resources */ cat 23:54:25 [[User:PythonshellDebugwindow/(Unnamed language)]] M https://esolangs.org/w/index.php?diff=75044&oldid=74870 * PythonshellDebugwindow * (+125) 23:57:59 -!- FreeFull has quit. 23:58:52 -!- FreeFull has joined.