< 1727481630 554616 :int-e!~noone@int-e.eu PRIVMSG #esolangs :yeah < 1727481652 171666 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in a way I am disappointed by just how good The Waterfall Model is at TCness-proving non-reversible counter machines, or anything that can be made to act as one; it has reduced the effort needed to produce that sort of proof down to typically a couple of minutes < 1727481660 945811 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I still think it's accidental because otherwise that restriction could be expressed in a much clearer fashion. < 1727481702 810281 :int-e!~noone@int-e.eu PRIVMSG #esolangs :but it's not certain :) < 1727481733 483937 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the control flow is so absurdly simple, each counter is tested in only once place in the program and the order doesn't matter, you could even do it simultaneously < 1727481789 330291 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I'd implement a Minsky machine, which can also be done directly. < 1727481794 876940 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :Flooding Waterfall Model was a major challenge but at least that one isn't a pure counter machine, the counters act differently depending on their histories (and the hard part was finding a way to make them act predictably, once I'd done that the regular Waterfall Model could easily serve as a TCness proof for the resulting language) < 1727481804 601061 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :int-e: how do you implement the instruction pointer? < 1727481814 170379 :int-e!~noone@int-e.eu PRIVMSG #esolangs :one cell per state < 1727481824 406762 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :oh yes, that works < 1727481825 369939 :int-e!~noone@int-e.eu PRIVMSG #esolangs :that's either 0 or 1 < 1727481836 136899 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :a one-hot instruction pointer, I should remember that trick more often < 1727481859 665466 :int-e!~noone@int-e.eu PRIVMSG #esolangs :which incidentally shows that you don't need the else branches either < 1727481866 745719 :int-e!~noone@int-e.eu PRIVMSG #esolangs :hmm < 1727481891 452868 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the TWM proof doesn't need the else branches either (or alternatively, doesn't need the if branches), because all the changes made inside an if statement are reversible < 1727481921 403447 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I think that's obviously inherent in any Sloopy program that doesn't nest ifs, and less obviously inherent even in Sloopy programs that do < 1727481936 5347 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Sorry, I'm sure this works out but I did get a bit ahead of myself because I didn't actually consider the test of the counter :) (yeah it'll work). < 1727481951 682442 :int-e!~noone@int-e.eu PRIVMSG #esolangs :or counters < 1727481974 962971 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :worst case you just go The Amnesiac From Minsk, which basically captures the restriction of "each counter can only be tested in one place in the program" < 1727482011 902516 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I used to use TAFM for TCness proofs a lot, but TWM is simpler and also has the properties that make TAFM good for proofs, whilst having a few of its own < 1727482062 85180 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(I used TAFM to originally "bootstrap" the TCness proof for TWM, because I had to use something that was proved TC without using TWM along the way) < 1727482101 326123 :nitrix!~nitrix@user/meow/nitrix QUIT :Quit: ZNC 1.8.2 - https://znc.in < 1727482139 24740 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :actually I feel like a lot of my TCness research has been looking at the tradeoffs between how complex the data storage is and how complex the control flow is < 1727482166 117474 :nitrix!~nitrix@user/meow/nitrix JOIN #esolangs nitrix :ZNC - https://znc.in < 1727482178 224964 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :as you suggested with your one-hot instruction pointer, usually it's possible to simplify the control flow by storing more data < 1727482254 333100 :int-e!~noone@int-e.eu PRIVMSG #esolangs :yeah I guess things get interesting if you limit the number of cells as we do with Minsky machines < 1727482491 841162 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Hmm, how many counters do you need for TC-ness in TWM? < 1727482513 135575 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :The Waterfall Model programs golfed down to use a minimal number of counters can be beautiful, most of the counters end up being used as both value storage and control flow at different times in the program execution < 1727482535 975254 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :minimum known is 6 readable counters + 1 halt counter < 1727482559 675952 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(obviously the halt counter only matters if you want strong Turing-completeness, i.e. halting when and only when the emulated program halts) < 1727482617 55558 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :there is an explicit compiler from https://esolangs.org/wiki/Spiral_Rise to that number of counters, although it's never actually been tested < 1727482730 363404 :int-e!~noone@int-e.eu PRIVMSG #esolangs :so there's a chance that reducing from a 2-counter Minsky machine is actually better. < 1727482817 425784 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in terms of tape cells used? that wouldn't surprise me because Sloopy's control flow is pretty powerful, except for not having loops beyond the outer loop < 1727482828 89996 :int-e!~noone@int-e.eu PRIVMSG #esolangs :yeah < 1727482858 293613 :int-e!~noone@int-e.eu PRIVMSG #esolangs :3 cells should easily suffice if you allow nested ifs. < 1727482873 323068 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the basic problem there is that 2-counter Minsky machines tend to naturally use a lot of small loops to do multiplications and divisions < 1727482890 546169 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so you would probably want one cell as a numerical instruction pointer < 1727482890 860053 :int-e!~noone@int-e.eu PRIVMSG #esolangs :maybe 4 is enough if you don't have nesting. < 1727482987 984104 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :oh, 3 is easy even without nesting: have a numerical instruction pointer where each instruction simply specifies which of the counters to increment or decrement and what the next instruction is, but space out the numbers used (e.g. 0, 10, 20, 30, 40) – then do a test on counter 1 that adds 1 to the instruction if it's nonzero, a test on counter 2 that adds 2 to to the instruction if it's nonzero, and unconditionally add 1 < 1727483043 504102 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the unconditional add of 1 means that the value left in the instruction pointer after running an instruction won't collide with any valid instruction values < 1727483073 228254 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :this is pretty similar to how Esimpl works, although different enough to feel like a different language < 1727483092 6911 :int-e!~noone@int-e.eu PRIVMSG #esolangs :oh yeah that works < 1727483127 183329 :int-e!~noone@int-e.eu PRIVMSG #esolangs :maybe we can even do that without else branches? < 1727483140 922729 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :yes < 1727483152 827538 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I suppose so because most things are easily reversible < 1727483153 306257 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I don't think the else branches in Sloopy actually do anything, especially without nesting < 1727483182 603348 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :you just do the else branch unconditionally afterwards, and cancel it out at the end of the if branch < 1727483225 416059 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :actually maybe they do do something if you have nesting, but they definitely don't if you don't < 1727483295 569683 :int-e!~noone@int-e.eu PRIVMSG #esolangs :well, the else branch is *convenient* because it only executes for one specific value of a cell (namely 0) < 1727483308 863267 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :yes, it makes programs more readable < 1727483324 943119 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in a way Sloopy feels like it would be more elegant with only the else branches, no ifs < 1727483360 846487 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(Perl calls that an "unless" statement, although it allows "unless … else" presumably to avoid adding a special case into the parser) < 1727483416 183718 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ACTION thinks about an esoteric control flow construct that has only the "then" and "else" cases, and works out the value of the test based on which of them runs successfully < 1727483420 764198 :int-e!~noone@int-e.eu PRIVMSG #esolangs :but yeah, (/foo) translates to (-foo/)foo where -foo reverses foo < 1727483436 956802 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and (bar/foo) to (bar-foo)/foo < 1727483456 43876 :int-e!~noone@int-e.eu PRIVMSG #esolangs :misplaced / but yeah < 1727483456 215850 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :err (bar-foo/)foo < 1727483553 326999 :X-Scale!~X-Scale@123.64.114.89.rev.vodafone.pt QUIT :Ping timeout: 256 seconds > 1727483574 372171 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141094&oldid=141090 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+0) 10/* Commands */ < 1727483575 418877 :int-e!~noone@int-e.eu PRIVMSG #esolangs :So that leaves the question of doing this with 2 cells. Which enables consistent Collatz? > 1727483588 858396 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141095&oldid=141094 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+0) 10/* Loops */ < 1727483648 184120 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I'm not sure you can even do consistent Collatz, how do you remember which of the cells is being multiplied onto the other? I guess you could use a wrapping tape that's 2 cells long < 1727483657 199671 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Oh I can't copy the value back, right. < 1727483657 285791 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and use the position of the tape pointer < 1727483681 3578 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :although even then, the modulus would probably have to be a square number < 1727483693 715188 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :err, not the modulus, the ratio < 1727483829 304706 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I don't see why. < 1727483842 44901 :int-e!~noone@int-e.eu PRIVMSG #esolangs :But yeah I didn't want a wrapping tape, so scratch that thought. < 1727483848 196196 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ah, no, it doesn't because you can test on both sides of the copy < 1727483916 143773 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :if the tape has only two writable cells, but a lot more that are stuck at 0, it's still possible to use the tape pointer position to store state, but that feels like cheating in a way < 1727484007 465151 :int-e!~noone@int-e.eu PRIVMSG #esolangs :3 is pretty good < 1727484086 123692 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I have realised that consistent Collatz is capable of embedding a sort of state machine (you store the state machine in the low bits and the consistent-Collatz behaviour happens in the high bits) < 1727484134 103150 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :which somewhat increases the chance that it's TC < 1727484164 164844 :int-e!~noone@int-e.eu PRIVMSG #esolangs :right, you have gcd(m,r) states of that sort < 1727484209 907608 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(using variable names from https://wiki.bbchallenge.org/wiki/Consistent_Collatz ) < 1727484222 536163 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :what you basically end up with is a finite state machine + a PRNG with infinite amounts of state, but the finite state machine can mix state into the PRNG < 1727484232 843831 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(just on the off chance that there's another source) < 1727484247 874015 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :well, the source I wrote is going to be the one I'm most familiar with :-) < 1727484303 316596 :int-e!~noone@int-e.eu PRIVMSG #esolangs :It would be so funny if somebody managed to find a TC fragment of the original Collatz sequence. < 1727484341 903216 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in the sense that you could somehow encode a program into it such that the sequence reached its usual loop only if the program halted? < 1727484352 596508 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Funny and amazing. < 1727484374 615846 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Because that PRNG component feels pretty wild. < 1727484468 969699 :int-e!~noone@int-e.eu PRIVMSG #esolangs :ais523: or maybe any loop whatsoever > 1727484475 752534 PRIVMSG #esolangs :14[[07Esofish14]]4 N10 02https://esolangs.org/w/index.php?oldid=141096 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+627) 10Created page with "{{Derivative|Deadfish}} by ~~~~ Deadfish with one instruction: r R runs the remaineder of the program as the accumulator. For example, iissdr `Hello, World!` runs `Hello, World!` as a [[15]] program, so it p > 1727484534 980826 PRIVMSG #esolangs :14[[07Esofish14]]4 10 02https://esolangs.org/w/index.php?diff=141097&oldid=141096 5* 03Ais523 5* (-188) 10unpipe link to userspace; and don't sign articles in mainspace, they aren't intended to belong to any one person < 1727484755 485166 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(I am sometimes entertaining the idea that Collatz' conjecture could be false. But the only way I see to establish that would be to find a second loop and I'm sure smarter people have tried that with significant computing power already.) < 1727484761 390459 :X-Scale!~X-Scale@31.22.144.228 JOIN #esolangs X-Scale :[https://web.libera.chat] X-Scale < 1727484786 298431 :nitrix!~nitrix@user/meow/nitrix PRIVMSG #esolangs :That's usually what they do yeah, they try to prove it false rather than prove it true. < 1727485048 243815 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :there has been quite a lot of research into the fractional portions of (1½)**n, but the results are pretty miniml < 1727485050 395721 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :* minimal < 1727485111 963567 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and this is very related to the Hydra sequence (which is basically the same, but you truncate the fractional portion before every multiplication by 1½) < 1727486498 264376 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :"hmm you can't nest if-then-else in Sloopy" => wait, really? because then my reduction doesn't work < 1727486529 189284 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :b_jonas: I think you were intended to be able to nest them but int-e thinks the spec is misworded < 1727486563 667547 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :it's still Turing-Complete anyway so it's not a big deal < 1727486606 350916 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :and it's not much harder to prove either < 1727486641 419924 :amby!~ambylastn@ward-15-b2-v4wan-167229-cust809.vm18.cable.virginm.net QUIT :Quit: so long suckers! i rev up my motorcylce and create a huge cloud of smoke. when the cloud dissipates im lying completely dead on the pavement < 1727486647 54989 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :or... hmmm < 1727486654 727414 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I'm not sure, maybe it is harder to prove < 1727486716 473843 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :no, it's still fine, you can use pluses to add the next state to the tape symbol of the next position of the head, and code the states and symbols so that their sums are unique < 1727486826 430249 :craigo!~craigo@user/craigo QUIT :Ping timeout: 252 seconds < 1727486958 518733 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :we've already come up with a few proofs, but mostly by treating it as a counter machine < 1727486962 233634 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :and for testing the value, you use (-/a0 +^n)(-/a1 +^(n-1))(-/a2 +^(n-2)) ... (-/a(n-1) +)(-/an) where ak is the action for when the value of the cell was k, and each branch has enough pluses that the next if branches don't trigger but the minuses leave the counter zero at the end < 1727487432 469008 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :"The Waterfall Model … has reduced the effort needed to produce [… Turing-completeness] proof" => we'll still have to try to make the proof for Imprecision TC first. does TWM help with that? > 1727487445 367467 PRIVMSG #esolangs :14[[07Algebraic Programming Language14]]4 10 02https://esolangs.org/w/index.php?diff=141098&oldid=78249 5* 03Corbin 5* (+102) 10Not to be confused with the better-known APL. < 1727489597 311328 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :b_jonas: not obviously, Imprecision is stuck in the "figure out how to read arbitrary amounts of data" stage > 1727492387 430680 PRIVMSG #esolangs :14[[07Talk:Gift14]]4 10 02https://esolangs.org/w/index.php?diff=141099&oldid=140444 5* 03PrySigneToFry 5* (+133) 10/* I'm really going to die by laughing */ new section > 1727492647 813620 PRIVMSG #esolangs :14[[07Gift14]]4 10 02https://esolangs.org/w/index.php?diff=141100&oldid=139727 5* 03PrySigneToFry 5* (+58) 10 > 1727493013 217676 PRIVMSG #esolangs :14[[07PP'14]]4 M10 02https://esolangs.org/w/index.php?diff=141101&oldid=140980 5* 03PythonshellDebugwindow 5* (+110) 10Categories > 1727493143 860405 PRIVMSG #esolangs :14[[07Esofish14]]4 M10 02https://esolangs.org/w/index.php?diff=141102&oldid=141097 5* 03PythonshellDebugwindow 5* (+68) 10Categories > 1727493166 649445 PRIVMSG #esolangs :14[[07User talk:Unname479814]]4 10 02https://esolangs.org/w/index.php?diff=141103&oldid=140877 5* 03PrySigneToFry 5* (+713) 10 > 1727493217 280877 PRIVMSG #esolangs :14[[07514]]4 M10 02https://esolangs.org/w/index.php?diff=141104&oldid=141095 5* 03PythonshellDebugwindow 5* (+95) 10Categories > 1727493413 982178 PRIVMSG #esolangs :14[[07ZipTied14]]4 M10 02https://esolangs.org/w/index.php?diff=141105&oldid=140998 5* 03PythonshellDebugwindow 5* (+116) 10Categories > 1727493647 770492 PRIVMSG #esolangs :14[[07Brainyay14]]4 M10 02https://esolangs.org/w/index.php?diff=141106&oldid=140941 5* 03PythonshellDebugwindow 5* (+157) 10Categories > 1727493790 352459 PRIVMSG #esolangs :14[[07User:PrySigneToFry14]]4 10 02https://esolangs.org/w/index.php?diff=141107&oldid=140063 5* 03PrySigneToFry 5* (+123) 10 > 1727493843 107290 PRIVMSG #esolangs :14[[07!!brainfeed14]]4 M10 02https://esolangs.org/w/index.php?diff=141108&oldid=125274 5* 03PythonshellDebugwindow 5* (+57) 10See also, category > 1727494095 357234 PRIVMSG #esolangs :14[[07!!brainfeed14]]4 M10 02https://esolangs.org/w/index.php?diff=141109&oldid=141108 5* 03PythonshellDebugwindow 5* (+80) 10Update link > 1727494313 660275 PRIVMSG #esolangs :14[[07!!brainfeed++14]]4 M10 02https://esolangs.org/w/index.php?diff=141110&oldid=140930 5* 03PythonshellDebugwindow 5* (+56) 10Fix typos, add categories > 1727494394 701637 PRIVMSG #esolangs :14[[07De Bruijn indexing14]]4 M10 02https://esolangs.org/w/index.php?diff=141111&oldid=139551 5* 03PythonshellDebugwindow 5* (+7) 10Category < 1727494916 899270 :Lord_of_Life_!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1727494939 887641 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 265 seconds < 1727495000 280353 :Lord_of_Life_!~Lord@user/lord-of-life/x-2819915 NICK :Lord_of_Life > 1727496357 797541 PRIVMSG #esolangs :14[[07MangularJS14]]4 10 02https://esolangs.org/w/index.php?diff=141112&oldid=102435 5* 03PythonshellDebugwindow 5* (-186) 10Not a subset; add; examples > 1727496642 84782 PRIVMSG #esolangs :14[[07MangularJS14]]4 M10 02https://esolangs.org/w/index.php?diff=141113&oldid=141112 5* 03PythonshellDebugwindow 5* (-52) 10/* Restrictions */ > 1727498251 598841 PRIVMSG #esolangs :14[[07W)14]]4 10 02https://esolangs.org/w/index.php?diff=141114&oldid=139008 5* 03Xff 5* (+0) 10/* syntax */ < 1727499162 92278 :ais523!~ais523@user/ais523 QUIT :Quit: quit > 1727499350 431182 PRIVMSG #esolangs :14[[07Talk: 14]]4 N10 02https://esolangs.org/w/index.php?oldid=141115 5* 03Xff 5* (+117) 10Created page with "whats the proof that its TC? [!~~~~]" < 1727499425 319585 :PCWWWWW!~PCWWWWW@213.239.88.180 JOIN #esolangs * :[https://web.libera.chat] PCWWWWW > 1727499518 887133 PRIVMSG #esolangs :14[[07EA Script, It's in the code.14]]4 10 02https://esolangs.org/w/index.php?diff=141116&oldid=121934 5* 03Xff 5* (-9) 10/* Instructions */ thats not a quine. its cheating > 1727499631 503557 PRIVMSG #esolangs :14[[0714]]4 10 02https://esolangs.org/w/index.php?diff=141117&oldid=108732 5* 03Xff 5* (+22) 10/* Commands */ this is what it seems like > 1727501862 974055 PRIVMSG #esolangs :14[[07Bog prok14]]4 10 02https://esolangs.org/w/index.php?diff=141118&oldid=140571 5* 03Xff 5* (+904) 10/* memory related */ > 1727501878 750461 PRIVMSG #esolangs :14[[07Bog prok14]]4 10 02https://esolangs.org/w/index.php?diff=141119&oldid=141118 5* 03Xff 5* (+12) 10/* computation */ > 1727502241 243953 PRIVMSG #esolangs :14[[07Talk:Quine14]]4 10 02https://esolangs.org/w/index.php?diff=141120&oldid=134379 5* 03Xff 5* (+120) 10 > 1727502558 344039 PRIVMSG #esolangs :14[[07VoidLang14]]4 10 02https://esolangs.org/w/index.php?diff=141121&oldid=127283 5* 03Xff 5* (+9) 10/* Quine */ its cheating > 1727502821 643850 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141122&oldid=140023 5* 03PrySigneToFry 5* (+165) 10 > 1727503116 185963 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141123&oldid=141122 5* 03PrySigneToFry 5* (+154) 10 > 1727503332 400294 PRIVMSG #esolangs :14[[07Translated ZhongWen/Mihai Again214]]4 N10 02https://esolangs.org/w/index.php?oldid=141124 5* 03MihaiEso 5* (+3273) 10Created page with "Made [[Translated ZhongWen/PSTF Again]] more funny 1. Drag this rubbish program
                   ..."
> 1727503368 271412 PRIVMSG #esolangs :14[[07Translated ZhongWen/PSTF Again14]]4 10 02https://esolangs.org/w/index.php?diff=141125&oldid=140955 5* 03MihaiEso 5* (+63) 10
> 1727503448 965906 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=141126&oldid=140957 5* 03MihaiEso 5* (+47) 10/* Horribly translated variants */
> 1727503602 218028 PRIVMSG #esolangs :14[[07AH'TALIQUAE ENGLISH14]]4 10 02https://esolangs.org/w/index.php?diff=141127&oldid=133505 5* 03PrySigneToFry 5* (+68) 10
> 1727503682 112947 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141128&oldid=141123 5* 03MihaiEso 5* (+150) 10
> 1727503690 815737 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141129&oldid=141128 5* 03MihaiEso 5* (+1) 10
> 1727503722 264808 PRIVMSG #esolangs :14[[07AH'TALIQUAE ENGLISH14]]4 10 02https://esolangs.org/w/index.php?diff=141130&oldid=141127 5* 03PrySigneToFry 5* (+134) 10
> 1727503838 904376 PRIVMSG #esolangs :14[[07Bog prok14]]4 10 02https://esolangs.org/w/index.php?diff=141131&oldid=141119 5* 03Xff 5* (+46) 10
> 1727503926 717976 PRIVMSG #esolangs :14[[07Flump14]]4 10 02https://esolangs.org/w/index.php?diff=141132&oldid=19941 5* 03Ractangle 5* (+23) 10/* Variants */
> 1727503942 574675 PRIVMSG #esolangs :14[[07AH'TALIQUAE ENGLISH/Examples14]]4 N10 02https://esolangs.org/w/index.php?oldid=141133 5* 03PrySigneToFry 5* (+328) 10Created page with "Main page: [[AH'TALIQUAE ENGLISH]]  == Truth machine == 
 START WITH 0.1 DECLARE A VARIABLE truth AND INITIALIZE IT TO NIL INPUT truth WITH DEFAULT_PROMPT AS PROMPT IF truth IS TRUE THEN:     LOOP THE CODES UNTIL truth IS NOT TRUE:         
> 1727503958 740381 PRIVMSG #esolangs :14[[07User talk:PrySigneToFry14]]4 10 02https://esolangs.org/w/index.php?diff=141134&oldid=140225 5* 03MihaiEso 5* (+681) 10
> 1727503974 297679 PRIVMSG #esolangs :14[[07Bog prok14]]4 10 02https://esolangs.org/w/index.php?diff=141135&oldid=141131 5* 03Xff 5* (+0) 10/* computation */
> 1727503988 727678 PRIVMSG #esolangs :14[[07AH'TALIQUAE ENGLISH14]]4 10 02https://esolangs.org/w/index.php?diff=141136&oldid=141130 5* 03PrySigneToFry 5* (+46) 10
> 1727504004 143712 PRIVMSG #esolangs :14[[07User talk:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141137&oldid=139995 5* 03Unname4798 5* (+1122) 10
> 1727504020 275613 PRIVMSG #esolangs :14[[07Bog prok14]]4 10 02https://esolangs.org/w/index.php?diff=141138&oldid=141135 5* 03Xff 5* (+55) 10/* memory */
> 1727504023 1865 PRIVMSG #esolangs :14[[07User talk:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141139&oldid=141137 5* 03Unname4798 5* (-8) 10
> 1727504465 285657 PRIVMSG #esolangs :14[[07Talk:ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141140&oldid=141074 5* 03ChuckEsoteric08 5* (+177) 10/* How does it move between cells */
> 1727504564 81213 PRIVMSG #esolangs :14[[07Translated ZhongWen/PSTF Again314]]4 N10 02https://esolangs.org/w/index.php?oldid=141141 5* 03PrySigneToFry 5* (+3598) 10Created page with "Hahahahaha, this is an idiot, hahahahahahahahaha, I really laughing my activate symmetric swapping off.  :Back to previous version: [[Translated ZhongWen/Mihai Again2]]  1. Take this shit 
            ..."
> 1727504577 455827 PRIVMSG #esolangs :14[[07Bog prok14]]4 10 02https://esolangs.org/w/index.php?diff=141142&oldid=141138 5* 03Xff 5* (+405) 10/* computation */
> 1727504606 257875 PRIVMSG #esolangs :14[[07Translated ZhongWen/Mihai Again214]]4 10 02https://esolangs.org/w/index.php?diff=141143&oldid=141124 5* 03PrySigneToFry 5* (+45) 10
> 1727504638 913489 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141144&oldid=141129 5* 03MihaiEso 5* (+258) 10
> 1727504648 537323 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=141145&oldid=141126 5* 03PrySigneToFry 5* (+47) 10
> 1727504749 328952 PRIVMSG #esolangs :14[[07014]]4 10 02https://esolangs.org/w/index.php?diff=141146&oldid=141078 5* 03Ractangle 5* (+55) 10/* FlipFlop */
> 1727505430 686058 PRIVMSG #esolangs :14[[07Translated ZhongWen/Mihai Again314]]4 N10 02https://esolangs.org/w/index.php?oldid=141147 5* 03MihaiEso 5* (+2790) 10Created page with "Hahahahaha, this is an idiot, hahahahahahahahaha. I really enjoy doing this because of humour.  :Back to previous version: [[Translated ZhongWen/PSTF Again3]]  1. Take this corrupted file 
 URL URL  CBZ      CBZ -  ..."
> 1727505478 934459 PRIVMSG #esolangs :14[[07Translated ZhongWen/PSTF Again314]]4 10 02https://esolangs.org/w/index.php?diff=141148&oldid=141141 5* 03MihaiEso 5* (+50) 10
> 1727505490 421202 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=141149&oldid=141145 5* 03MihaiEso 5* (+49) 10/* Horribly translated variants */
< 1727505498 204642 :PCWWWWW!~PCWWWWW@213.239.88.180 QUIT :Quit: Client closed
< 1727507069 644583 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727508362 108975 PRIVMSG #esolangs :14[[07GotoStart14]]4 10 02https://esolangs.org/w/index.php?diff=141150&oldid=141011 5* 03ChuckEsoteric08 5* (+320) 10
> 1727508651 457689 PRIVMSG #esolangs :14[[07!English/Examples14]]4 10 02https://esolangs.org/w/index.php?diff=141151&oldid=136141 5* 03MihaiEso 5* (+275) 10/* A chatbot that uses GPT-3 */
> 1727509800 348087 PRIVMSG #esolangs :14[[07Talk:ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141152&oldid=141140 5* 03Ractangle 5* (+211) 10/* How does it move between cells */
> 1727509896 69711 PRIVMSG #esolangs :14[[07Talk:ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141153&oldid=141152 5* 03Ractangle 5* (+14) 10
> 1727510312 13773 PRIVMSG #esolangs :14[[07Talk:ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141154&oldid=141153 5* 03ChuckEsoteric08 5* (+200) 10/* How does it move between cells */
> 1727510378 89421 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141155&oldid=141035 5* 03Ractangle 5* (+209) 10/* 1 */
> 1727510739 860752 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 N10 02https://esolangs.org/w/index.php?oldid=141156 5* 03Ractangle 5* (+71) 10Created page with "* { background-color: dark-grey !important; color: orange; !important;}"
> 1727510889 867071 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=141157&oldid=141042 5* 03DifferentDance8 5* (+11) 10/* K */ the rev before this was correct in removing [[Code-Tree]], but after a long chain of redirects it turns out to be [[Kava]] all along!
< 1727511943 322341 :X-Scale!~X-Scale@31.22.144.228 QUIT :Ping timeout: 256 seconds
> 1727511970 611782 PRIVMSG #esolangs :14[[07!Romanian14]]4 N10 02https://esolangs.org/w/index.php?oldid=141158 5* 03MihaiEso 5* (+1838) 10Created page with "'''!Romanian''' is a esolang made by Mihai Popa. It's taken from the pseudocode language in many Romanian code books, but altered slightly.  == Syntax == The syntax is slimiar to pseudocode.  Comments can be done just like in C:  
 // Example /* Hello!  * Hello! 
> 1727512018 924389 PRIVMSG #esolangs :14[[07User:MihaiEso14]]4 10 02https://esolangs.org/w/index.php?diff=141159&oldid=140013 5* 03MihaiEso 5* (+43) 10
> 1727512051 910992 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=141160&oldid=141157 5* 03MihaiEso 5* (+16) 10/* Non-alphabetic */
> 1727512082 389129 PRIVMSG #esolangs :14[[07!Romanian14]]4 10 02https://esolangs.org/w/index.php?diff=141161&oldid=141158 5* 03MihaiEso 5* (+119) 10/* Truth Machine */ Categories
> 1727512135 284354 PRIVMSG #esolangs :14[[07!Romanian14]]4 10 02https://esolangs.org/w/index.php?diff=141162&oldid=141161 5* 03MihaiEso 5* (+3) 10/* Commands */
< 1727512689 916945 :molson!~molson@2001-48F8-704A-446-486-3FA5-21E2-3E8D-dynamic.midco.net QUIT :Ping timeout: 248 seconds
> 1727512981 167143 PRIVMSG #esolangs :14[[07User:MihaiEso/common.css14]]4 N10 02https://esolangs.org/w/index.php?oldid=141163 5* 03MihaiEso 5* (+105) 10Created page with "* {   background-color: #888888 !important; color: yellow; !important; } a {   color:green; !important; }"
> 1727513111 382034 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141164&oldid=141156 5* 03Ractangle 5* (+20) 10
> 1727513180 564857 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141165&oldid=141164 5* 03Ractangle 5* (+80) 10
> 1727513371 794928 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141166&oldid=141165 5* 03Ractangle 5* (+23) 10
< 1727513439 725884 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer
> 1727513504 7293 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141167&oldid=141166 5* 03Ractangle 5* (-3) 10
> 1727513604 699464 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141168&oldid=141167 5* 03Ractangle 5* (+16) 10
> 1727513629 392980 PRIVMSG #esolangs :14[[07User:Ractangle14]]4 10 02https://esolangs.org/w/index.php?diff=141169&oldid=141026 5* 03Ractangle 5* (+6) 10/* Esolangs */
> 1727513694 205937 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141170&oldid=141168 5* 03Ractangle 5* (+2) 10
> 1727513857 956320 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141171&oldid=141170 5* 03Ractangle 5* (-18) 10
< 1727513983 728946 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Read error: Connection reset by peer
> 1727515152 664478 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141172&oldid=141171 5* 03Ractangle 5* (-5) 10
> 1727515221 608953 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141173&oldid=141172 5* 03Ractangle 5* (+3) 10
> 1727515236 696941 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141174&oldid=141173 5* 03Ractangle 5* (+0) 10
> 1727515364 854297 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141175&oldid=141174 5* 03Ractangle 5* (-53) 10
> 1727515452 487142 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141176&oldid=141155 5* 03Ractangle 5* (+184) 10/* Some more questions */
> 1727515607 40671 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141177&oldid=141175 5* 03Ractangle 5* (+2) 10
> 1727515651 200092 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141178&oldid=141177 5* 03Ractangle 5* (-13) 10
> 1727515899 247964 PRIVMSG #esolangs :14[[07User talk:MihaiEso14]]4 10 02https://esolangs.org/w/index.php?diff=141179&oldid=140994 5* 03MihaiEso 5* (+193) 10/* Make it even  scarier !!!! */
> 1727516029 385893 PRIVMSG #esolangs :14[[07!14]]4 N10 02https://esolangs.org/w/index.php?oldid=141180 5* 03Ractangle 5* (+89) 10Created page with "'''!''' is an esolang based [[!Romanian]] which is possibly based on [[!English]]"
> 1727516096 79177 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141181&oldid=141180 5* 03Ractangle 5* (-10) 10
> 1727516133 216904 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141182&oldid=141181 5* 03Ractangle 5* (+12) 10
> 1727516283 476882 PRIVMSG #esolangs :14[[07+14]]4 10 02https://esolangs.org/w/index.php?diff=141183&oldid=140860 5* 03PrySigneToFry 5* (+126) 10
> 1727516357 559304 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141184&oldid=141182 5* 03Ractangle 5* (+166) 10
> 1727516377 537064 PRIVMSG #esolangs :14[[07!Romanian14]]4 10 02https://esolangs.org/w/index.php?diff=141185&oldid=141162 5* 03MihaiEso 5* (-8) 10/* Commands */
> 1727516398 124048 PRIVMSG #esolangs :14[[07+14]]4 M10 02https://esolangs.org/w/index.php?diff=141186&oldid=141183 5* 03PrySigneToFry 5* (+70) 10
> 1727516441 631480 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141187&oldid=141184 5* 03MihaiEso 5* (+3) 10
> 1727516457 702418 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141188&oldid=141187 5* 03Ractangle 5* (+27) 10
> 1727516462 624407 PRIVMSG #esolangs :14[[07User:MihaiEso/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141189&oldid=141163 5* 03MihaiEso 5* (-105) 10Blanked the page
> 1727516504 975071 PRIVMSG #esolangs :14[[07User talk:MihaiEso14]]4 10 02https://esolangs.org/w/index.php?diff=141190&oldid=141179 5* 03MihaiEso 5* (+167) 10/* PSTF */
> 1727516518 966916 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141191&oldid=141188 5* 03Ractangle 5* (+29) 10
> 1727516540 971384 PRIVMSG #esolangs :14[[07Talk:+14]]4 N10 02https://esolangs.org/w/index.php?oldid=141192 5* 03PrySigneToFry 5* (+72) 10/* Suggested commands by PSTF */ new section
> 1727516639 31862 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141193&oldid=141191 5* 03Ractangle 5* (+96) 10
> 1727516718 929266 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141194&oldid=141193 5* 03Ractangle 5* (+39) 10/* Hello, world! */
> 1727516752 294448 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141195&oldid=141194 5* 03MihaiEso 5* (+23) 10
> 1727517557 719662 PRIVMSG #esolangs :14[[07+14]]4 10 02https://esolangs.org/w/index.php?diff=141196&oldid=141186 5* 03None1 5* (+30) 10
> 1727517569 961539 PRIVMSG #esolangs :14[[07Talk:+14]]4 10 02https://esolangs.org/w/index.php?diff=141197&oldid=141192 5* 03None1 5* (+244) 10/* Suggested commands by PSTF */
> 1727518538 867669 PRIVMSG #esolangs :14[[07User:Emelang14]]4 10 02https://esolangs.org/w/index.php?diff=141198&oldid=140948 5* 03Ractangle 5* (+39) 10
> 1727518718 226740 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 N10 02https://esolangs.org/w/index.php?oldid=141199 5* 03PkmnQ 5* (+3762) 10Created page with "== Booleans == {| class="wikitable" |- ! Constant !! Code |- | False || __doc__.__bool__() |- | True || __doc__.__eq__(__doc__) |} == Integers == {| class="wikitable" |- ! Constant !! Code |- | -2
> 1727518722 762983 PRIVMSG #esolangs :14[[07Python is Magic14]]4 10 02https://esolangs.org/w/index.php?diff=141200&oldid=122655 5* 03PkmnQ 5* (+166) 10/* Constants */
> 1727518921 108523 PRIVMSG #esolangs :14[[07Snakel (Ractangle)14]]4 10 02https://esolangs.org/w/index.php?diff=141201&oldid=140829 5* 03Ractangle 5* (-6) 10
> 1727518965 645690 PRIVMSG #esolangs :14[[07Translated ZhongWen/None1 again14]]4 N10 02https://esolangs.org/w/index.php?oldid=141202 5* 03None1 5* (+3048) 10Created page with "[[Translated ZhongWen/Mihai Again3]] is not crazy enough, so let's be crazier!  1. Take that shit: 
  Palm mieJody      park ten xic       Jane monoing AreSlov..."
> 1727518981 773430 PRIVMSG #esolangs :14[[07Bake14]]4 10 02https://esolangs.org/w/index.php?diff=141203&oldid=140764 5* 03Ractangle 5* (+5) 10
> 1727519028 692288 PRIVMSG #esolangs :14[[07'Python' is not recognized as an internal or external command, operable program or batch file.14]]4 10 02https://esolangs.org/w/index.php?diff=141204&oldid=140698 5* 03Ractangle 5* (-124) 10/* See also */
> 1727519062 112773 PRIVMSG #esolangs :14[[07Translated ZhongWen/None1 again14]]4 10 02https://esolangs.org/w/index.php?diff=141205&oldid=141202 5* 03None1 5* (+1510) 10
> 1727519089 482996 PRIVMSG #esolangs :14[[07Translated ZhongWen/None1 again14]]4 10 02https://esolangs.org/w/index.php?diff=141206&oldid=141205 5* 03None1 5* (+11) 10
> 1727519164 633048 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141207&oldid=141144 5* 03PrySigneToFry 5* (+90) 10
> 1727519217 717442 PRIVMSG #esolangs :14[[07Translated ZhongWen/Mihai Again314]]4 10 02https://esolangs.org/w/index.php?diff=141208&oldid=141147 5* 03None1 5* (+45) 10
> 1727519668 531313 PRIVMSG #esolangs :14[[07Talk:ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141209&oldid=141154 5* 03Ractangle 5* (+193) 10/* How does it move between cells */
> 1727519812 630414 PRIVMSG #esolangs :14[[07Brainfuck/Esointerpreters14]]4 10 02https://esolangs.org/w/index.php?diff=141210&oldid=136868 5* 03None1 5* (+4) 10/* Wenyan interpreters */
< 1727519867 531970 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727519970 92683 PRIVMSG #esolangs :14[[07Path (Ractangle)14]]4 10 02https://esolangs.org/w/index.php?diff=141211&oldid=140672 5* 03Ractangle 5* (+15) 10
> 1727520000 708147 PRIVMSG #esolangs :14[[07Path (Ractangle)14]]4 10 02https://esolangs.org/w/index.php?diff=141212&oldid=141211 5* 03Ractangle 5* (+5) 10
> 1727520016 748481 PRIVMSG #esolangs :14[[07PATH14]]4 10 02https://esolangs.org/w/index.php?diff=141213&oldid=97531 5* 03Ractangle 5* (+20) 10
> 1727520324 593067 PRIVMSG #esolangs :14[[07Deadfish/Implementations (M-Z)14]]4 10 02https://esolangs.org/w/index.php?diff=141214&oldid=132725 5* 03None1 5* (+1795) 10/* WARP */
> 1727520333 724213 PRIVMSG #esolangs :14[[07Deadfish/Implementations (M-Z)14]]4 10 02https://esolangs.org/w/index.php?diff=141215&oldid=141214 5* 03None1 5* (-1) 10/* Wenyan = */
> 1727520361 647331 PRIVMSG #esolangs :14[[07Wenyan14]]4 10 02https://esolangs.org/w/index.php?diff=141216&oldid=141004 5* 03None1 5* (+1776) 10/* Code Samples */
> 1727520435 606896 PRIVMSG #esolangs :14[[07EsoInterpreters14]]4 10 02https://esolangs.org/w/index.php?diff=141217&oldid=141007 5* 03None1 5* (+37) 10/* Main table */
< 1727520532 947324 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown
> 1727520583 333495 PRIVMSG #esolangs :14[[07Hum14]]4 10 02https://esolangs.org/w/index.php?diff=141218&oldid=141070 5* 03Ractangle 5* (+25) 10/* Commands */
> 1727520815 263233 PRIVMSG #esolangs :14[[07Comment14]]4 10 02https://esolangs.org/w/index.php?diff=141219&oldid=141071 5* 03Ractangle 5* (+58) 10/* Python */
> 1727522032 575111 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141220&oldid=141199 5* 03None1 5* (+685) 10/* Lowercase letters */  Finish most of the items
> 1727522098 94870 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 M10 02https://esolangs.org/w/index.php?diff=141221&oldid=141220 5* 03None1 5* (+87) 10/* Lowercase letters */
> 1727522319 876636 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141222&oldid=141221 5* 03None1 5* (-22) 10
> 1727522664 121024 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141223&oldid=141222 5* 03None1 5* (+266) 10/* Lowercase letters */
> 1727522719 254844 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 M10 02https://esolangs.org/w/index.php?diff=141224&oldid=141223 5* 03None1 5* (+119) 10/* Lowercase letters */  Phew, finished!
> 1727522789 196684 PRIVMSG #esolangs :14[[078ial14]]4 10 02https://esolangs.org/w/index.php?diff=141225&oldid=140273 5* 03Ractangle 5* (-29) 10
> 1727522825 554232 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My words14]]4 10 02https://esolangs.org/w/index.php?diff=141226&oldid=141207 5* 03PrySigneToFry 5* (+22) 10
> 1727522847 542140 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141227&oldid=141224 5* 03None1 5* (+87) 10
> 1727522855 442890 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 M10 02https://esolangs.org/w/index.php?diff=141228&oldid=141227 5* 03None1 5* (+0) 10
> 1727522868 527287 PRIVMSG #esolangs :14[[07Constant14]]4 10 02https://esolangs.org/w/index.php?diff=141229&oldid=140197 5* 03None1 5* (+32) 10/* See also */
> 1727522904 622278 PRIVMSG #esolangs :14[[07AH'TALIQUAE ENGLISH14]]4 10 02https://esolangs.org/w/index.php?diff=141230&oldid=141136 5* 03PrySigneToFry 5* (+19) 10
> 1727523101 218399 PRIVMSG #esolangs :14[[07Talk:Python is Magic/Constants14]]4 N10 02https://esolangs.org/w/index.php?oldid=141231 5* 03None1 5* (+1204) 10Created page with "==j and y== You might be curious why the constants for j and y work, in fact, they come from the docs for str and __builtins__.  str.__doc__:  str(ob'''j'''ect='') -> str  str(byte
> 1727523310 295698 PRIVMSG #esolangs :14[[07Talk:Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141232&oldid=141231 5* 03None1 5* (+6) 10
> 1727525048 585212 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141233&oldid=141178 5* 03Ractangle 5* (+0) 10
> 1727525097 416659 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141234&oldid=141233 5* 03Ractangle 5* (+12) 10
> 1727525112 470386 PRIVMSG #esolangs :14[[07User:Ractangle14]]4 10 02https://esolangs.org/w/index.php?diff=141235&oldid=141169 5* 03Ractangle 5* (-5) 10/* Esolangs */
> 1727525414 710839 PRIVMSG #esolangs :14[[07Talk:Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141236&oldid=141232 5* 03PkmnQ 5* (+321) 10
> 1727525892 982859 PRIVMSG #esolangs :14[[07Talk:Python is Magic/Constants14]]4 M10 02https://esolangs.org/w/index.php?diff=141237&oldid=141236 5* 03PkmnQ 5* (-19) 10Shorter backup j
> 1727526219 181913 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141238&oldid=141228 5* 03PkmnQ 5* (-418) 10/* Lowercase letters */ Shorter letters
< 1727526532 63400 :amby!~ambylastn@ward-15-b2-v4wan-167229-cust809.vm18.cable.virginm.net JOIN #esolangs * :realname
> 1727526885 149805 PRIVMSG #esolangs :14[[07Talk:Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141239&oldid=141237 5* 03None1 5* (+285) 10
> 1727527512 990359 PRIVMSG #esolangs :14[[07Soh supplementary private use area-b u+10fffe14]]4 10 02https://esolangs.org/w/index.php?diff=141240&oldid=130153 5* 03YetAnotherAccount 5* (+55) 10me when i spread misinformation on the internet:
> 1727527520 805192 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141241&oldid=141238 5* 03PkmnQ 5* (+362) 10/* Lowercase letters */ More docstrings
> 1727527601 349424 PRIVMSG #esolangs :14[[07Talk:Python is Magic/Constants14]]4 10 02https://esolangs.org/w/index.php?diff=141242&oldid=141239 5* 03PkmnQ 5* (+271) 10/* j and y */
< 1727528031 162016 :Cale!~cale@2607:fea8:995f:f126:15c3:35a5:81ac:187c JOIN #esolangs Cale :realname
< 1727528800 525420 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
< 1727529101 436505 :Thelie!~Thelie@2a03:9b40:21f4:5300:93eb:22b1:63b4:67c3 JOIN #esolangs Thelie :Thelie
> 1727529161 314562 PRIVMSG #esolangs :14[[07A Language Programmed While Listening to Godspeed You! Black Emperor14]]4 M10 02https://esolangs.org/w/index.php?diff=141243&oldid=94055 5* 03YetAnotherAccount 5* (-2) 10/* Commands */ fix the grammatical
> 1727530157 141382 PRIVMSG #esolangs :14[[07EsoInterpreters14]]4 10 02https://esolangs.org/w/index.php?diff=141244&oldid=141217 5* 03ChuckEsoteric08 5* (+960) 10Updated Deadfish links
> 1727530565 288646 PRIVMSG #esolangs :14[[07JSFuck14]]4 10 02https://esolangs.org/w/index.php?diff=141245&oldid=140196 5* 03YetAnotherAccount 5* (+2) 10/* Description */ only creates the function, doesn't run it
> 1727530657 641540 PRIVMSG #esolangs :14[[07Kak-14]]4 10 02https://esolangs.org/w/index.php?diff=141246&oldid=93246 5* 03ChuckEsoteric08 5* (-16) 10
> 1727530822 824400 PRIVMSG #esolangs :14[[07Talk:Kak-14]]4 10 02https://esolangs.org/w/index.php?diff=141247&oldid=137379 5* 03ChuckEsoteric08 5* (+280) 10
< 1727530956 318455 :PCWWWWW!~PCWWWWW@213.239.88.180 JOIN #esolangs * :[https://web.libera.chat] PCWWWWW
> 1727532927 864995 PRIVMSG #esolangs :14[[07Anti-Machine language14]]4 10 02https://esolangs.org/w/index.php?diff=141248&oldid=125970 5* 03YetAnotherAccount 5* (-26) 10there's already a bunch of interpreters
> 1727533216 209556 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141249&oldid=141234 5* 03Ractangle 5* (-4) 10
> 1727533281 351212 PRIVMSG #esolangs :14[[07Beta14]]4 10 02https://esolangs.org/w/index.php?diff=141250&oldid=120435 5* 03YetAnotherAccount 5* (+1) 10dude what
< 1727533291 423913 :craigo!~craigo@user/craigo JOIN #esolangs craigo :realname
> 1727533351 970212 PRIVMSG #esolangs :14[[07Beta14]]4 10 02https://esolangs.org/w/index.php?diff=141251&oldid=141250 5* 03YetAnotherAccount 5* (-1) 10Undo revision [[Special:Diff/141250|141250]] by [[Special:Contributions/YetAnotherAccount|YetAnotherAccount]] ([[User talk:YetAnotherAccount|talk]]): wait, ambiguous
> 1727533412 812869 PRIVMSG #esolangs :14[[07SIMPLE (the other one)14]]4 10 02https://esolangs.org/w/index.php?diff=141252&oldid=122328 5* 03Ractangle 5* (-13) 10/* Interpeter */
< 1727533624 211861 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727533700 430497 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141253&oldid=141249 5* 03Ractangle 5* (+0) 10
> 1727533715 368209 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141254&oldid=141253 5* 03Ractangle 5* (+0) 10
< 1727534145 851752 :op_4_!~tslil@2a01:4f8:c0c:7952::1 JOIN #esolangs * :op_4
< 1727534175 921457 :mich181189_!sid268336@londonhackspace/mich181189 JOIN #esolangs mich181189 :Michael
< 1727534179 967658 :Roy_Mustang!A_D@libera/staff/dragon JOIN #esolangs ad :Roy Mustang, The Flame Alchemist
< 1727534200 975601 :fellow!~fellow@user/fellow JOIN #esolangs fellow :fellow
< 1727534242 956782 :errilaz_!~errilaz@static.157.80.99.88.clients.your-server.de JOIN #esolangs * :errilaz
< 1727534258 910714 :V!~v@ircpuzzles/2022/april/winner/V JOIN #esolangs V :Wie?
< 1727534308 918633 :riv_!river@tilde.team/user/river JOIN #esolangs river :My real name
> 1727534335 304510 PRIVMSG #esolangs :14[[07User:Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14]]4 10 02https://esolangs.org/w/index.php?diff=141255&oldid=141058 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+13) 10
> 1727534423 255320 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141256&oldid=141104 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+18) 10/* Commands */
< 1727534477 50234 :mich181189!sid268336@londonhackspace/mich181189 QUIT :Ping timeout: 265 seconds
< 1727534477 423904 :riv!river@tilde.team/user/river QUIT :Ping timeout: 265 seconds
< 1727534477 518981 :V_!~v@ircpuzzles/2022/april/winner/V QUIT :Ping timeout: 265 seconds
< 1727534477 955273 :errilaz!~errilaz@static.157.80.99.88.clients.your-server.de QUIT :Ping timeout: 265 seconds
< 1727534478 360869 :op_4!~tslil@user/op-4/x-9116473 QUIT :Ping timeout: 265 seconds
< 1727534478 493775 :fellow_!fellow@user/fellow QUIT :Ping timeout: 265 seconds
< 1727534478 614528 :mich181189_!sid268336@londonhackspace/mich181189 NICK :mich181189
< 1727534478 836122 :op_4_!~tslil@2a01:4f8:c0c:7952::1 NICK :op_4
< 1727534612 955159 :A_Dragon!A_D@libera/staff/dragon QUIT :Ping timeout: 619 seconds
> 1727534617 987074 PRIVMSG #esolangs :14[[07User talk:Truttle114]]4 10 02https://esolangs.org/w/index.php?diff=141257&oldid=132748 5* 03Ractangle 5* (-193) 10No
> 1727534732 755027 PRIVMSG #esolangs :14[[07Talk:16 bytes :P14]]4 N10 02https://esolangs.org/w/index.php?oldid=141258 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+17) 10Created page with " print(input());#"
> 1727534790 219795 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141259&oldid=133073 5* 03Ractangle 5* (-30) 10/* Adding numbers */
> 1727534803 701164 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141260&oldid=141259 5* 03Ractangle 5* (+2) 10/* A+B Problem */
> 1727534962 915047 PRIVMSG #esolangs :14[[07User talk:Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14]]4 10 02https://esolangs.org/w/index.php?diff=141261&oldid=131453 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+120) 10
> 1727534990 284797 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141262&oldid=141260 5* 03Ractangle 5* (+24) 10/* Instructions */
> 1727535000 969393 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141263&oldid=141256 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+15) 10/* 15 */
> 1727535020 781252 PRIVMSG #esolangs :14[[075514]]4 N10 02https://esolangs.org/w/index.php?oldid=141264 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+18) 10Redirected page to [[5#15]]
> 1727535037 805307 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141265&oldid=141262 5* 03Ractangle 5* (-11) 10/* Instructions */
> 1727535059 939781 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141266&oldid=141265 5* 03Ractangle 5* (-10) 10/* Instructions */
> 1727535237 256935 PRIVMSG #esolangs :14[[07Talk:Calligulan Assembly14]]4 10 02https://esolangs.org/w/index.php?diff=141267&oldid=86413 5* 03Pro465 5* (+115) 10/* A question */ answer
> 1727535385 287872 PRIVMSG #esolangs :14[[07Special:Log/upload14]]4 upload10 02 5* 03Ractangle 5*  10uploaded "[[02File:The dark reader at home.jpg10]]"
> 1727535427 329465 PRIVMSG #esolangs :14[[07User:Ractangle14]]4 10 02https://esolangs.org/w/index.php?diff=141269&oldid=141235 5* 03Ractangle 5* (+149) 10
> 1727535623 408619 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141270&oldid=141195 5* 03Ractangle 5* (+47) 10
> 1727535656 745507 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141271&oldid=141270 5* 03Ractangle 5* (+27) 10/* Hello, world! */
< 1727535695 331956 :impomatic!~impomatic@2a00:23c7:5fbd:8001:643a:2d9a:9024:909c JOIN #esolangs * :[https://web.libera.chat] impomatic
> 1727535749 594375 PRIVMSG #esolangs :14[[07+14]]4 M10 02https://esolangs.org/w/index.php?diff=141272&oldid=141196 5* 03PrySigneToFry 5* (+154) 10
> 1727535970 557954 PRIVMSG #esolangs :14[[07Python But WORST14]]4 10 02https://esolangs.org/w/index.php?diff=141273&oldid=135489 5* 03PrySigneToFry 5* (+22) 10
> 1727536134 35360 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141274&oldid=141266 5* 03Ractangle 5* (+60) 10/* A+B Problem */
> 1727536279 407019 PRIVMSG #esolangs :14[[07Works in progress14]]4 10 02https://esolangs.org/w/index.php?diff=141275&oldid=141072 5* 03Ractangle 5* (+10) 10
> 1727536300 393233 PRIVMSG #esolangs :14[[07ALWCIDFEC14]]4 10 02https://esolangs.org/w/index.php?diff=141276&oldid=141274 5* 03ChuckEsoteric08 5* (+10) 10/* Instructions */
> 1727536371 26240 PRIVMSG #esolangs :14[[07Hum14]]4 10 02https://esolangs.org/w/index.php?diff=141277&oldid=141218 5* 03Ractangle 5* (-6) 10/* Interpriter */
> 1727536452 598709 PRIVMSG #esolangs :14[[07Bite bytes14]]4 N10 02https://esolangs.org/w/index.php?oldid=141278 5* 03Tommyaweosme 5* (+885) 10Created page with "{{lowercase}}bite bytes is a esolang that can interpret n byte programs easily. == commands ==  p? - prints ? (or variable if b)  q?! - prints ? (or variable if b) shifted by ! ascii characters  a? - saves to variable  i - saves input to variable  b - reference v
> 1727536570 738653 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141279&oldid=140833 5* 03Tommyaweosme 5* (+78) 10
> 1727536580 751434 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141280&oldid=141279 5* 03Tommyaweosme 5* (+5) 10/* grade wikipedia (translated to unname4798: -100000) */
> 1727536780 388238 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141281&oldid=141081 5* 03Tommyaweosme 5* (+109) 10all of these people ''thanked'' ais523. with NO redeeming qualities found yet
> 1727536905 445544 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141282&oldid=141281 5* 03Tommyaweosme 5* (+27) 10WHAT KIND OF HORRID MALICE IS MAKING A PAGE THAT JUST LEADS TO WIKIPEDIA?!??!?!?!!?
< 1727536915 359583 :impomatic!~impomatic@2a00:23c7:5fbd:8001:643a:2d9a:9024:909c PRIVMSG #esolangs :The Core War Tournament Weekend will be held at the Retro Computer Festival in Cambridge, UK, on 9-10 November. https://corewar.co.uk/tournamentweekend2024.htm
> 1727537011 481105 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141283&oldid=141282 5* 03Tommyaweosme 5* (+29) 10ANOTHER ANTI-RESTORATION EVILIST
> 1727537018 738268 PRIVMSG #esolangs :14[[07Hum14]]4 10 02https://esolangs.org/w/index.php?diff=141284&oldid=141277 5* 03Ractangle 5* (+139) 10/* Interpriter */
> 1727537067 393849 PRIVMSG #esolangs :14[[07Hum14]]4 10 02https://esolangs.org/w/index.php?diff=141285&oldid=141284 5* 03Ractangle 5* (+43) 10/* Commands */
> 1727537266 409219 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141286&oldid=141283 5* 03Tommyaweosme 5* (+34) 10he deleted wikipedian propoganda off of esowiki, which is good, but then asked for the creator to positively contribute to wikipedia?!?!?!?!?! this is complete neutral behavior, these acts cancel out eachother.
> 1727537286 770585 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141287&oldid=141286 5* 03Tommyaweosme 5* (+19) 10
> 1727537528 640440 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 N10 02https://esolangs.org/w/index.php?oldid=141288 5* 03Xff 5* (+1139) 10Created page with "'''(ch34t) c0d3''' is an esolang created by [[User:Yayimhere]]. its 2d and has only 4 commands. kinda? well see concept. the commands are:  >v  ^< which are code pointer arrows which changes its direction. its starts going left in lower right corner. memory is a stack 
> 1727537552 624941 PRIVMSG #esolangs :14[[07Tenglish14]]4 N10 02https://esolangs.org/w/index.php?oldid=141289 5* 03Tommyaweosme 5* (+232) 10Created page with "{{lowercase}}tenglish is [[user:tommyaweosme|tommyaweosme]] english as a kinda programming language. == commands == see a library of commands at [[tenglish/commands]] == examples == see a library of examples at [[tenglish/examples]]"
> 1727537570 29016 PRIVMSG #esolangs :14[[07Tenglish/examples14]]4 N10 02https://esolangs.org/w/index.php?oldid=141290 5* 03Tommyaweosme 5* (+35) 10Created page with "''this page is not being made yet''"
> 1727537588 359773 PRIVMSG #esolangs :14[[07Tenglish/commands14]]4 N10 02https://esolangs.org/w/index.php?oldid=141291 5* 03Tommyaweosme 5* (+43) 10Created page with "''this is placeholder for soon-to-be-page''"
> 1727537740 277142 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141292&oldid=141288 5* 03Xff 5* (+202) 10/* commands */
> 1727537908 819753 PRIVMSG #esolangs :14[[07Tenglish/commands14]]4 10 02https://esolangs.org/w/index.php?diff=141293&oldid=141291 5* 03Tommyaweosme 5* (+504) 10
> 1727537948 720843 PRIVMSG #esolangs :14[[07Tenglish/operations14]]4 N10 02https://esolangs.org/w/index.php?oldid=141294 5* 03Tommyaweosme 5* (+76) 10Created page with " add subtract multiply divide concat factorial modulo round round to nearest"
> 1727537982 907265 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141295&oldid=141287 5* 03Tommyaweosme 5* (+29) 10very good content yay
> 1727538238 539994 PRIVMSG #esolangs :14[[07Tenglish/commands14]]4 10 02https://esolangs.org/w/index.php?diff=141296&oldid=141293 5* 03Tommyaweosme 5* (+14) 10
> 1727538248 73382 PRIVMSG #esolangs :14[[07Tenglish/operations14]]4 10 02https://esolangs.org/w/index.php?diff=141297&oldid=141294 5* 03Tommyaweosme 5* (+14) 10
> 1727538481 320053 PRIVMSG #esolangs :14[[07User:Yayimhere14]]4 10 02https://esolangs.org/w/index.php?diff=141298&oldid=140972 5* 03Xff 5* (+19) 10/* esolangs */
> 1727539254 544192 PRIVMSG #esolangs :14[[07Pointstack14]]4 10 02https://esolangs.org/w/index.php?diff=141299&oldid=137466 5* 03ChuckEsoteric08 5* (+1060) 10Added Turing-completenees proof
> 1727539310 946610 PRIVMSG #esolangs :14[[07User:ChuckEsoteric0814]]4 10 02https://esolangs.org/w/index.php?diff=141300&oldid=140091 5* 03ChuckEsoteric08 5* (+16) 10/* Turing-completness Proofs */  added Pointstack
< 1727539553 567597 :PCWWWWW!~PCWWWWW@213.239.88.180 PRIVMSG #esolangs :feedback plz: https://esolangs.org/wiki/P%E2%86%92P%27
< 1727541491 771591 :PCWWWWW!~PCWWWWW@213.239.88.180 QUIT :Quit: Client closed
< 1727542600 692553 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
> 1727542712 32140 PRIVMSG #esolangs :14[[07User:Tommyaweosme/esolangs in ten words or less14]]4 N10 02https://esolangs.org/w/index.php?oldid=141301 5* 03Tommyaweosme 5* (+734) 10Created page with " [[slashalash|///]] - if regex were turing complete:  [[!English]], [[^English]], [[tenglish]], [[english]], etc. - cheating  [[asciidots]] - befunge+wireworld  [[brainfuck]] - this language is fun ++++[>no wait its not-<]>.  
> 1727543109 71729 PRIVMSG #esolangs :14[[07Llec14]]4 10 02https://esolangs.org/w/index.php?diff=141302&oldid=118934 5* 03ChuckEsoteric08 5* (+802) 10/* Examples */
> 1727543544 784244 PRIVMSG #esolangs :14[[07Python is Magic/Constants14]]4 M10 02https://esolangs.org/w/index.php?diff=141303&oldid=141241 5* 03PythonshellDebugwindow 5* (+23) 10Category
> 1727544254 382669 PRIVMSG #esolangs :14[[07Tenglish14]]4 M10 02https://esolangs.org/w/index.php?diff=141304&oldid=141289 5* 03PythonshellDebugwindow 5* (+69) 10Categories
> 1727544273 230213 PRIVMSG #esolangs :14[[07Tenglish/operations14]]4 M10 02https://esolangs.org/w/index.php?diff=141305&oldid=141297 5* 03PythonshellDebugwindow 5* (+19) 10Back
> 1727544302 700378 PRIVMSG #esolangs :14[[07Tenglish/operations14]]4 M10 02https://esolangs.org/w/index.php?diff=141306&oldid=141305 5* 03PythonshellDebugwindow 5* (+0) 10Lowercase
> 1727544310 869097 PRIVMSG #esolangs :14[[07Tenglish/examples14]]4 M10 02https://esolangs.org/w/index.php?diff=141307&oldid=141290 5* 03PythonshellDebugwindow 5* (+19) 10Back
> 1727544324 899984 PRIVMSG #esolangs :14[[07Tenglish/examples14]]4 M10 02https://esolangs.org/w/index.php?diff=141308&oldid=141307 5* 03PythonshellDebugwindow 5* (+14) 10Lowercase
> 1727544499 490192 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 M10 02https://esolangs.org/w/index.php?diff=141309&oldid=141292 5* 03PythonshellDebugwindow 5* (+174) 10Categories
> 1727544810 677028 PRIVMSG #esolangs :14[[07Bite bytes14]]4 M10 02https://esolangs.org/w/index.php?diff=141310&oldid=141278 5* 03PythonshellDebugwindow 5* (+178) 10Links, categories
> 1727544946 176268 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141311&oldid=141280 5* 03Ractangle 5* (+220) 10/* I have the same born year with you. */
> 1727544971 462316 PRIVMSG #esolangs :14[[07A Language Programmed While Listening to Godspeed You! Black Emperor14]]4 M10 02https://esolangs.org/w/index.php?diff=141312&oldid=141243 5* 03PythonshellDebugwindow 5* (+1) 10/* Commands */ n
< 1727545341 519903 :molson!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net JOIN #esolangs molson :realname
< 1727545529 771962 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727545920 484342 PRIVMSG #esolangs :14[[07User talk:Unname479814]]4 10 02https://esolangs.org/w/index.php?diff=141313&oldid=141103 5* 03Unname4798 5* (+29) 10create the worst grade possible, just like how [[User:tommyaweosme]] did
< 1727547398 318220 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da1:341::53:88 JOIN #esolangs * :[https://web.libera.chat] wwwwwwwwwwwwwlooong
< 1727547403 875252 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da1:341::53:88 PRIVMSG #esolangs :Hallo again
< 1727547537 913908 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname
< 1727547754 455000 :Roy_Mustang!A_D@libera/staff/dragon NICK :A_Dragon
> 1727547828 772918 PRIVMSG #esolangs :14[[072KWLang14]]4 M10 02https://esolangs.org/w/index.php?diff=141314&oldid=140537 5* 03PythonshellDebugwindow 5* (+213) 10/* Infinite looping counter */ Fix
< 1727547971 863725 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da1:341::53:88 QUIT :Quit: Client closed
> 1727548500 134162 PRIVMSG #esolangs :14[[07Brainpocalypse II14]]4 10 02https://esolangs.org/w/index.php?diff=141315&oldid=134110 5* 03ChuckEsoteric08 5* (+101) 10/* External resources */
< 1727548837 318764 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da1:341::53:63 JOIN #esolangs * :[https://web.libera.chat] wwwwwwwwwwwwwlooong
< 1727548915 862456 :mtm!~textual@2600:381:ec08:f9d3:a032:109f:4f73:2f83 JOIN #esolangs mtm :Textual User
< 1727549186 3567 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da1:341::53:63 QUIT :Quit: Client closed
< 1727554377 318901 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da5:341::53:83 JOIN #esolangs * :[https://web.libera.chat] wwwwwwwwwwwwwlooong
< 1727554647 436531 :molson!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net QUIT :Ping timeout: 246 seconds
< 1727555038 182831 :cpressey!~weechat@176.254.119.170 JOIN #esolangs cpressey :weechat
< 1727555157 318644 :wwwwwwwwwwwwwloo!~wwwwwwwww@2a09:bac3:4da5:341::53:83 QUIT :Ping timeout: 256 seconds
> 1727555410 676528 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141316&oldid=141271 5* 03Ractangle 5* (-2) 10/* Syntax */
> 1727555481 378261 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141317&oldid=141316 5* 03Ractangle 5* (+44) 10
< 1727555531 148877 :cpressey!~weechat@176.254.119.170 QUIT :Ping timeout: 252 seconds
> 1727555586 209633 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141318&oldid=141317 5* 03Ractangle 5* (+1) 10/* Syntax */
> 1727555818 612586 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141319&oldid=141318 5* 03Ractangle 5* (+156) 10/* Hello, world! */
> 1727555854 575348 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141320&oldid=141319 5* 03Ractangle 5* (+34) 10/* Syntax */
> 1727555940 218156 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141321&oldid=141320 5* 03Ractangle 5* (+35) 10/* Syntax */
> 1727555969 164630 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141322&oldid=141321 5* 03Ractangle 5* (+5) 10/* Truth-machine */
> 1727556042 567310 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141323&oldid=141322 5* 03Ractangle 5* (+1) 10You can put variables outside the code block
> 1727556074 169895 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141324&oldid=141323 5* 03Ractangle 5* (+6) 10/* Hello, world! */
> 1727556084 959253 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141325&oldid=141324 5* 03Ractangle 5* (+5) 10/* Truth-machine */
< 1727556112 924580 :molson!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net JOIN #esolangs molson :realname
> 1727556162 345363 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141326&oldid=141325 5* 03Ractangle 5* (+32) 10
> 1727556253 45771 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141327&oldid=141326 5* 03Ractangle 5* (+81) 10/* Truth-machine */
> 1727556279 332587 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141328&oldid=141327 5* 03Ractangle 5* (-2) 10/* Truth-machine */
> 1727556350 144679 PRIVMSG #esolangs :14[[07Hello world program in esoteric languages (nonalphabetic and A)14]]4 10 02https://esolangs.org/w/index.php?diff=141329&oldid=138281 5* 03Ractangle 5* (+82) 10/* !@#$%^&*()_+ */
< 1727556593 192347 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
> 1727556753 565160 PRIVMSG #esolangs :14[[072KWLang14]]4 M10 02https://esolangs.org/w/index.php?diff=141330&oldid=141314 5* 03PythonshellDebugwindow 5* (+249) 10/* Finite looping counter */ Fix
> 1727557018 57277 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141331&oldid=141328 5* 03Ractangle 5* (+277) 10/* Examples */
> 1727557037 335307 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141332&oldid=141331 5* 03Ractangle 5* (+11) 10/* A+B Problem */
> 1727557119 375946 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=141333&oldid=139860 5* 03Ractangle 5* (+153) 10/* Implementations */
< 1727557307 147586 :cpressey!~weechat@176.254.119.170 JOIN #esolangs cpressey :weechat
> 1727557714 239822 PRIVMSG #esolangs :14[[07Empty Program14]]4 10 02https://esolangs.org/w/index.php?diff=141334&oldid=138406 5* 03Ractangle 5* (+84) 10/* Brainfuck */
> 1727558163 705789 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141335&oldid=141332 5* 03Ractangle 5* (+0) 10/* A+B Problem */
> 1727558184 299929 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=141336&oldid=141333 5* 03Ractangle 5* (+1) 10/* ! */
< 1727558709 68361 :cpressey!~weechat@176.254.119.170 QUIT :Ping timeout: 248 seconds
< 1727558767 881172 :molson_!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net JOIN #esolangs molson :realname
< 1727558790 291455 :molson_!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net QUIT :Remote host closed the connection
< 1727558952 869833 :molson!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net QUIT :Ping timeout: 272 seconds
< 1727559114 924557 :molson!~molson@2001-48F8-704A-446-34C4-69D3-D27C-8D17-dynamic.midco.net JOIN #esolangs molson :realname
< 1727559545 50620 :cpressey!~weechat@176.254.119.170 JOIN #esolangs * :weechat
< 1727559814 339583 :cpressey!~weechat@176.254.119.170 QUIT :Client Quit
< 1727559895 768508 :X-Scale!~X-Scale@83.223.233.175 JOIN #esolangs X-Scale :[https://web.libera.chat] X-Scale
< 1727561896 411976 :ais523!~ais523@user/ais523 JOIN #esolangs ais523 :(this is obviously not my real name)
< 1727562774 659522 :__monty__!~toonn@user/toonn QUIT :Quit: leaving
> 1727562880 174173 PRIVMSG #esolangs :14[[07Talk:Quine14]]4 10 02https://esolangs.org/w/index.php?diff=141337&oldid=141120 5* 03Ais523 5* (+417) 10/* is this cheating??? */ if you use data from outside the program it isn't really a quine unless you print that too
< 1727565081 421425 :mtm!~textual@2600:381:ec08:f9d3:a032:109f:4f73:2f83 QUIT :Ping timeout: 276 seconds
> 1727565204 435660 PRIVMSG #esolangs :14[[07Empty Program14]]4 10 02https://esolangs.org/w/index.php?diff=141338&oldid=141334 5* 03None1 5* (+40) 10/* Brainfuck */
> 1727566668 430068 PRIVMSG #esolangs :14[[07Special:Log/interwiki14]]4 iw_add10 02 5* 03Ais523 5*  10Ais523 added prefix "bbchallenge" (https://wiki.bbchallenge.org/wiki/$1) (trans: 0; local: 0) to the interwiki table: as a wiki concerned primarily with Turing machines, it covers similar topics to this one and interwiki links between the two are likely