< 1727568127 782589 :Sgeo!~Sgeo@user/sgeo PRIVMSG #esolangs :Ooh, neat way to learn about other neat wikis > 1727568477 391134 PRIVMSG #esolangs :14[[07Feed the Chaos14]]4 N10 02https://esolangs.org/w/index.php?oldid=141339 5* 03Ais523 5* (+8098) 10new language! < 1727568526 498855 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :Sgeo: I think the ability to change the interwiki table is very new, as in the last month or so < 1727568639 522763 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :meanwhile, for the first time in ages I have written a language with BF-style comments (i.e. every noncommand is a comment), but the command list is different from BF and it is hard to get out of the habit of avoiding BF commands specifically when writing that sort of comment < 1727568672 642723 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I get full stop! and parentheses! but not slashes, which I normally use as a universal punctuation mark when commenting BF < 1727568690 819045 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :well, slashes and semicolons, semicolons replace commands and slashes replace parentheses < 1727568704 536452 :Sgeo!~Sgeo@user/sgeo PRIVMSG #esolangs :Are "program counter" and "control counter" synonyms? < 1727568722 380252 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :no, I just used the wrong word > 1727568733 128416 PRIVMSG #esolangs :14[[07Feed the Chaos14]]4 10 02https://esolangs.org/w/index.php?diff=141340&oldid=141339 5* 03Ais523 5* (+0) 10/* Specification */ fix use of the wrong word < 1727568747 871936 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it was right everywhere else, I'm not sure how I did that > 1727568812 685445 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=141341&oldid=141160 5* 03Ais523 5* (+21) 10/* F */ +[[Feed the Chaos]] > 1727568843 848284 PRIVMSG #esolangs :14[[07User:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141342&oldid=140556 5* 03Ais523 5* (+20) 10+[[Feed the Chaos]] < 1727568968 540420 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :well, you can also ensure to have a spare cell that you can zero and then put the comment into brackets whose body doesn't run < 1727568996 66779 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :that also works in underload and consumer society < 1727569014 513297 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :and dc < 1727569563 324775 :Thelie!~Thelie@2a03:9b40:21f4:5300:93eb:22b1:63b4:67c3 QUIT :Quit: Leaving. > 1727569719 214315 PRIVMSG #esolangs :14[[07Feed the Chaos14]]4 10 02https://esolangs.org/w/index.php?diff=141343&oldid=141340 5* 03Ais523 5* (+0) 10/* Computational class */ move a misplaced parenthetical to the right place < 1727569763 972138 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :b_jonas: not in Feed the Chaos, it has no control flow, not even if statements < 1727569806 530004 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I find languages with no explicit control flow interesting because most of the TCness problems for languages with general control flow have been solved already < 1727569845 458886 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :also, most of the time when I was commenting BF, it was actually BF Joust, where you can't rely on a cell still being 0 after you've zeroed it and where {} don't work as parentheses because they mean something else < 1727570089 141958 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :A lot of concurrency memory models have a problem with "out-of-thin-air values", where it's not strictly forbidden for memory to be set to a value that didn't come from any thread. < 1727570109 547198 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Are there any sorts of wacky languages where this kind of behavior could actually happen? < 1727570234 670082 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it can happen on hardware quite easily with simultaneous nonatomic writes, e.g. thread A writes half the value, thread B writes the whole value, then thread A wries the other half < 1727570241 278728 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and now the value is half from A and half from B < 1727570291 561863 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Sure, but I mean with atomic writes. < 1727570296 708201 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in a way it's harder to see it happening in an esoteric system than a practical one, esoteric concurrency usually has a lot more things as atomic than real-world hardware < 1727570335 139087 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the lowest atomicity level most languages have is relaxed atomicity, and in that the value stored in the variable must necessarily come from some thread < 1727570351 258640 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :are there models with less atomicity than that (but still nonzero amounts)? < 1727570362 501224 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :https://hboehm.info/c++mm/thin_air.html is one discussion of this. < 1727570383 901342 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :My understanding is that this is surprisingly tricky to rule out in many memory models. < 1727570420 802536 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :oh, I see, it just needs a basic causality paradox, which the definitions often don't disallow < 1727570432 421352 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Right. < 1727570457 796124 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :I guess there are more plausibly wacky languages that have some sort of time travel semantics that could allow for this, but don't have it come up specifically with concurrency. < 1727570465 369527 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and this is "allowed" with relaxed atomics as they don't require the loads to be ordered with respect to other threads > 1727570599 294918 PRIVMSG #esolangs :14[[07Feed the Chaos14]]4 M10 02https://esolangs.org/w/index.php?diff=141344&oldid=141343 5* 03PythonshellDebugwindow 5* (+9) 10/* Interpreter */ Nowiki < 1727570819 86653 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Are there esoteric languages with other wackadoodle memory ordering things? < 1727570954 322428 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it wouldn't surprise me if there aren't, most esolangs aren't concurrent, and most of the ones that aren't are very atomic < 1727571005 908999 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the concurrent programming category on Esolang has 79 languages in it < 1727571120 609099 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :also, many concurrent esolangs use a form of concurrency other than shared-memory concurrency < 1727571162 582462 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Hmm, you can still maybe have interesting ordering issues in other worlds. < 1727571167 966291 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :But I wonder what they'd be like. < 1727572019 949786 :mtm!~textual@2600:381:c30d:fba4:c0b0:8c24:1095:341f JOIN #esolangs * :Textual User < 1727572394 834006 :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 > 1727572402 844513 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5* 10deleted "[[02Specil:DoubleRedirects10]]": cross-namespace redirect; also, abusive use of mixed-script words > 1727573117 69974 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141345&oldid=141263 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+63) 10 < 1727574246 945366 :X-Scale!~X-Scale@83.223.233.175 QUIT :Quit: Client closed < 1727575483 329357 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :oh sure, in Bgjoust that doesn't work < 1727575501 672650 :op_4!~tslil@2a01:4f8:c0c:7952::1 QUIT :Remote host closed the connection < 1727575530 976320 :op_4!~tslil@user/op-4/x-9116473 JOIN #esolangs op_4 :op_4 > 1727576366 961547 PRIVMSG #esolangs :14[[07DIVSPL14]]4 10 02https://esolangs.org/w/index.php?diff=141346&oldid=129428 5* 03Corbin 5* (+94) 10/* Implementations */ I've actually written an RPython version of this as well! I won't say whether mine is faster than Dustin's. > 1727576826 461593 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141347&oldid=141345 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (-39) 10 < 1727577080 410693 :X-Scale!~X-Scale@83.223.233.164 JOIN #esolangs X-Scale :[https://web.libera.chat] X-Scale < 1727579616 687792 :mtm_!~textual@c-71-228-84-213.hsd1.fl.comcast.net JOIN #esolangs * :Textual User < 1727579779 949958 :mtm!~textual@2600:381:c30d:fba4:c0b0:8c24:1095:341f QUIT :Ping timeout: 260 seconds < 1727580567 596458 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ais523: Bfjoust has abbreviations though, so you can write (...anything...)*0 for a comment < 1727580622 533847 :X-Scale!~X-Scale@83.223.233.164 QUIT :Quit: Client closed < 1727581057 154164 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :b_jonas: that isn't very golfy though < 1727581095 674190 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :which matters for some of my programs ­– there was one where I had to go and delete a substantial portion of the code that wasn't used against any machine currently on the hill in order to fit it into the size limit < 1727581291 874350 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 264 seconds < 1727581316 952988 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1727581618 547149 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I see < 1727582170 917211 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1727582226 260390 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Client Quit < 1727582334 191821 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Excess Flood < 1727582548 328633 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron < 1727582697 242974 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Remote host closed the connection > 1727582784 417899 PRIVMSG #esolangs :14[[07Esoteric programming language14]]4 M10 02https://esolangs.org/w/index.php?diff=141348&oldid=122980 5* 03Iddi01 5* (+32) 10/* See also */ I don't want to change the main page > 1727582908 832817 PRIVMSG #esolangs :14[[07Joke language list14]]4 M10 02https://esolangs.org/w/index.php?diff=141349&oldid=141149 5* 03Iddi01 5* (+33) 10/* See also */ < 1727583212 907408 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron > 1727583323 424701 PRIVMSG #esolangs :14[[07Genetic14]]4 M10 02https://esolangs.org/w/index.php?diff=141350&oldid=141032 5* 03Iddi01 5* (+64) 10/* Modifications */ Explain it more clearly < 1727583526 811774 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Remote host closed the connection < 1727583601 231505 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron < 1727584930 813597 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Remote host closed the connection < 1727585230 167317 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron < 1727585463 947979 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Remote host closed the connection < 1727585554 94805 :craigo!~craigo@user/craigo QUIT :Quit: Leaving > 1727585936 738412 PRIVMSG #esolangs :14[[07A Question of Protocol14]]4 10 02https://esolangs.org/w/index.php?diff=141351&oldid=137283 5* 03Gggfr 5* (+81) 10/* syntax */ > 1727585960 418460 PRIVMSG #esolangs :14[[07Empty Program14]]4 10 02https://esolangs.org/w/index.php?diff=141352&oldid=141338 5* 03Ractangle 5* (-84) 10/* ! */ > 1727586096 919481 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141353&oldid=141335 5* 03Ractangle 5* (+23) 10/* Syntax */ > 1727586194 978171 PRIVMSG #esolangs :14[[07BF Joust strategies14]]4 M10 02https://esolangs.org/w/index.php?diff=141354&oldid=54984 5* 03Ais523 5* (-1) 10/* Reconnaissance */ fix typo > 1727586199 844743 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141355&oldid=141353 5* 03Ractangle 5* (-13) 10/* Truth-machine */ > 1727586206 842086 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141356&oldid=141309 5* 03Gggfr 5* (+1) 10/* commands */ < 1727586229 319009 :ipadwwwww!~ipadwwwww@213.239.88.180 JOIN #esolangs * :[https://web.libera.chat] ipadwwwww > 1727586246 242480 PRIVMSG #esolangs :14[[07!14]]4 10 02https://esolangs.org/w/index.php?diff=141357&oldid=141355 5* 03Ractangle 5* (-45) 10/* A+B Problem */ < 1727586678 24855 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :hey ais523 if you can answer here, is this esolang properly defined(underload related): https://esolangs.org/wiki/P→P%27 < 1727586742 375440 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ipadwwwww: I find the definition hard to understand, at least < 1727586756 618643 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :what part specifically > 1727586784 721142 PRIVMSG #esolangs :14[[07PP'14]]4 10 02https://esolangs.org/w/index.php?diff=141358&oldid=141101 5* 03Gggfr 5* (+5) 10 < 1727586788 242018 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :normally I try to make esolang pages self-contained, if I can, i.e. even if something is documented elsewhere I try to make it so that it's possible to understand the esolang just from its own page < 1727586823 788733 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yea but it would be veyry hard because how the notation is explained < 1727586828 813631 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the superscript L and R aren't actually part of Underload at all, for example, they're part of a Turing-completeness proof for it < 1727586879 962022 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and I don't have the proof memorised < 1727586886 201865 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes. but as of what i know it looks like it creates programs for underload(am i wrong there?) so here thats what we use it for < 1727586943 137133 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :well, L and R are functions that take a subset of Underload code as argument, and generate Underload code < 1727586948 737095 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :but they aren't defined on all possible code < 1727586954 745678 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron < 1727586956 838026 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :so P is a program? < 1727586988 422330 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :but them how have some of the, generated underload code without an input program < 1727587048 643963 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :RL is a separate operation from L and R < 1727587073 502389 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes but you can still write it with L and R so you just do that < 1727587272 863882 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :anyway, a bigger problem is that L and R aren't actually defined for programs that contain any characters other than ():^ and aren't defined for all of those either < 1727587337 905312 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wut. then how…wut < 1727587369 363187 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ah, that's not quite right, they're defined for S as well < 1727587403 226359 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :lol < 1727587411 685535 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wait why i that funny to me < 1727587416 973789 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :anyway, P is not a command at all – it is a placeholder used to define L and R < 1727587433 423802 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :im solving it rn < 1727587480 462452 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :L and R are (partial) functions, and P is the name that was given to their argument when defining them < 1727587501 545721 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :e.g. : is defined as mapping (x) to (x) (x), that doesn't mean that x is an Underload character < 1727587519 766884 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it's just a placeholder used to explain how the command works > 1727587558 71228 PRIVMSG #esolangs :14[[07PP'14]]4 10 02https://esolangs.org/w/index.php?diff=141359&oldid=141358 5* 03Gggfr 5* (+219) 10/* syntax */ < 1727587582 244204 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes makes sense < 1727587689 865588 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I think the more interesting way to think about this is to imagine what would happen if you added an Underload combinator that took one argument and tried to return its L and R (you have to have one combinator that returns both because there is more than one possible choice of return value, but the choice has to match between the L and the R) < 1727587719 985162 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i could do or add that < 1727587726 43801 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :unfortunately I suspect that if you try to generalise L and R to all of Underload, you end up with an uncomputable combinator (basically because it doesn't work on nonhalting programs but you can't figure out which ones are halting) < 1727587752 450942 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes < 1727587754 23431 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ooh! but you could define it to go into an infinite loop if run on a nonhalting program, and solve the problem that way < 1727587763 283846 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it's not like it has a sensible return value anyway < 1727587775 16799 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :? < 1727587783 642066 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :if run on a nonhalting program, so an infinite loop is an obvious choice for the thing to do instead < 1727587805 556712 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :because a) it's a reasonable error value and b) it means that you can do the halting test computably < 1727587808 99036 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes but still how would you know? < 1727587835 623714 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :you just run it and see if it halts < 1727587843 781839 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :if it doesn't, you get an infinite loop < 1727587848 333973 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :that still wouldnt work < 1727587856 247263 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :you would have to do it for infinite time < 1727587859 591737 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :to check < 1727587868 96834 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :well, if it halts, it'll halt eventually < 1727587868 430992 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :if its actually loops forever < 1727587878 469084 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes < 1727587879 993502 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and if it doesn't then you get an infinite loop, which was defined as the behaviour if given an onhalting program < 1727587886 22773 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :but if it … < 1727587889 792288 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :ooooooooooooh < 1727587890 829740 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so you get the right behaviour in both cases < 1727587906 953973 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I am pretty sure I have used this trick before, but can't remember where < 1727587921 772705 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :cool < 1727587933 25897 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wait < 1727587938 606215 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :anyway, the other problem with this idea is that L and R are only interesting in a version of Underload that doesn't have ! < 1727587947 840418 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :couldnt you use the lambda calculus stuff to do this combinator < 1727587956 13565 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :or, hmm, maybe they can be interesting even with it < 1727587969 696558 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :R is uninteresting, it just becomes a lot of !, but L is still interesting < 1727587979 787274 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it's basically a question of "what can be put on the stack to make this program halt?" < 1727587981 341716 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes < 1727588018 255679 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wait < 1727588026 653330 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs : can you push the result to stack? < 1727588030 973762 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and if there's any input that can do that, it is possible to find it by brute force via running the program on all possible inputs in parallel until one of them halts (starting the parallel runs one at a time so that you can actually get started) < 1727588047 246751 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :yes, the result would be a function that pushes the desired stack state when executed < 1727588066 621482 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wait…oh < 1727588075 453987 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :e.g. take the program (:^)*:^, that halts if given the input ()(!), so the result would be (()(!)) < 1727588089 536930 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :^ul ()(!)(:^)*:^ < 1727588095 94140 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :^ul ()(!)(:^)*:^(finished)S < 1727588099 833940 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :fungot isn't here < 1727588101 67897 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :but in what format < 1727588108 235319 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :just push all the elements needed? < 1727588110 144290 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :`! ul ()(!)(:^)*:^ < 1727588113 49869 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :​/hackenv/bin/!: line 4: /hackenv/ibin/ul: No such file or directory < 1727588128 739287 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :yes, assuming you want it to work like L from the proof < 1727588139 625638 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :`ls hackenv/ibin < 1727588141 5583 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :ls: cannot access 'hackenv/ibin': No such file or directory < 1727588144 598758 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :`ls /hackenv/ibin < 1727588145 797409 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :1l \ 2l \ 7 \ adjust \ asm \ asmbf \ axo \ bch \ befunge \ befunge98 \ bf \ bf16 \ bf32 \ bf8 \ bf_txtgen \ boolfuck \ brachylog \ c \ cintercal \ clcintercal \ cxx \ dimensifuck \ forth \ glass \ glypho \ haskell \ help \ java \ k \ kipple \ lambda \ lazyk \ linguine \ lua \ malbolge \ pbrain \ perl \ qbf \ rail \ rhotor \ sadol \ sceql \ sh \ slashes \ trigger \ udage01 \ underload \ unlambda \ whirl < 1727588148 704774 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :well i do < 1727588152 175521 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :`! underload ()(!)(:^)*:^ < 1727588153 578229 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :No output. < 1727588181 354199 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I picked (:^)*:^ as an example because it cannot be made to halt with only empty elements < 1727588195 342107 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :interesting < 1727588209 214108 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :but yea < 1727588373 133523 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :what condition do you need for R in this combinator < 1727588414 552411 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so basically L produces a stack state from which the argument halts, and R pops the elements that it produced while running < 1727588431 949905 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :R is only interesting in Underload-without-! because if you have !, popping elements is easy < 1727588446 953694 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes < 1727588485 507930 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :can i het help when im done wi5 editing < 1727588486 606846 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and the output of R depends on the output of L because there can be more than one input that lets it halt, producing a stack of different depth > 1727588576 256055 PRIVMSG #esolangs :14[[07PP'14]]4 10 02https://esolangs.org/w/index.php?diff=141360&oldid=141359 5* 03Gggfr 5* (+329) 10/* syntax */ < 1727588586 899340 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes < 1727588646 750300 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i did it! i think > 1727588746 844021 PRIVMSG #esolangs :14[[07Why tho14]]4 10 02https://esolangs.org/w/index.php?diff=141361&oldid=140325 5* 03Gggfr 5* (+77) 10/* computational class */ < 1727588788 743972 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :anyway, I think I wouldn't use a language like that – it is basically Underload without `a`, with different syntax, and with a few extra commands that I'm not sure why I'd use them < 1727588808 824906 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :true < 1727588809 701782 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I would be more likely to just write in Underload-without-`a` directly, if I had a reason to do that < 1727588831 604159 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :or, well, without `a` and `~` < 1727588841 264946 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :without `a` you don't get `~` for free < 1727588857 557835 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes > 1727588860 161061 PRIVMSG #esolangs :14[[07Kwert14]]4 10 02https://esolangs.org/w/index.php?diff=141362&oldid=107539 5* 03Arctenik 5* (+885) 10Add halt command < 1727588873 887509 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :whatwas the esolang logo name agian < 1727588881 223245 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :"trilime"? < 1727588889 456374 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :oh k < 1727588907 463733 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I don't know if it has an official name, but the wiki's logo is called a trilime sometimes, because it has three slices of lime in it > 1727588916 949051 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=141363&oldid=141336 5* 03Ractangle 5* (+88) 10/* ! */ < 1727588928 978217 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :it is on the page about it < 1727588934 300328 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the image was originally a placeholder, but we liked it so it stayed around < 1727588960 859806 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i hope it does forever < 1727588975 432936 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :ok i got an esolang idea from the trilime < 1727588979 646167 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :somehow < 1727589015 408925 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :can i get feedback for it maybe? < 1727589080 247277 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I need to go to bed soon, but there may still be time < 1727589084 350063 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :k < 1727589087 273583 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I am trying to figure out an esolang idea myself at hte moment < 1727589088 51835 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :idea: < 1727589096 576272 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :you have 3 weeks < 1727589101 646311 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :*weels < 1727589114 317636 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :with symbols that can be changed < 1727589116 765041 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :which I started working on in 2018 but couldn't figure it out < 1727589119 323021 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs : and you also have a string < 1727589142 363130 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :there is an operation < 1727589162 18364 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :that takes the three symbols currently pointed to < 1727589169 342179 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :and append it to string < 1727589178 209601 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :you can also append this string to the program < 1727589180 568319 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :and < 1727589193 207014 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :dlete a char pf string < 1727589239 315178 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :*delete chat of string < 1727589274 24531 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the basic idea was "a continuous version of The Waterfall Model", and I think you make it work by a) getting rid of the steady decrement, b) having zeroing triggers instead be velocities that are applied to the other counters while a counter is zero (counters don't change themeselves away from zero), c) allow two counters to be simultaneously zero only if one decreases the other and the other increases the original (in which case it's the increasing trigger < 1727589275 503915 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :that runs) < 1727589312 499201 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in order to make that esolang work you will have to find an interesting way to make the wheels matter < 1727589326 201133 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i dont understand waterfall model < 1727589328 546950 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :what prevents people just leaving them in place and changing the current symbol < 1727589335 92193 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :effect of the, being < 1727589341 450072 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :smartly written < 1727589353 853776 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :you don't understand the "rules"/semantics of The Waterfall Model? or how to write in it? < 1727589366 539650 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :both < 1727589377 432843 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :well writing is only possible with the semantics < 1727589387 755505 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :*whell < 1727589392 589376 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wutever < 1727589392 866822 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :The Waterfall Model Online might help < 1727589443 331950 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :k < 1727589448 542652 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :ill look at it < 1727589454 336352 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :although it might still be a bit hard to understand, it has a few tools to help, such as an example program that gives you explanation when you hover over the cells (probably doesn't work well on an ipad) and an interpreter/bugger < 1727589497 926492 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :as of now i understand < 1727589546 56171 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :* interpreter/debugger < 1727589576 624334 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :a tool for putting bugs *into* programs would be nicely esoteric, but probably not very useful (it is easy enough to do by hand if you want to) < 1727589614 282522 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :what about an esolang < 1727589618 525891 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :that works on errors < 1727589628 997929 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :computation would be like looking for errors < 1727589655 905235 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :there's at least one great "naturally occuring" esolang like that < 1727589686 179809 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :using page faults, which are a type of error-like thing that occurs when a program tries to access a memory address that doesn't correspond to physical memory < 1727589719 304489 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :normally that causes a segmentation fault, but it can sometimes happen legitimately because the kernel swapped the memory out to disk, or because it's a memory-mapped file that hasn't been read from disk yet < 1727589722 161944 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i understand waterfall now < 1727589727 733915 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i wanna make my own synax tho < 1727589733 769914 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :*syntax < 1727589782 966372 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :someone found a way to make pagefaults continuously trigger each other in a way that was Turing-complete-up-to-memory-restrictions, allowing programs to be run on a typical computer despite no CPU instructions running < 1727589798 860320 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :cool < 1727589811 25864 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :but more “modern” errors < 1727589815 634051 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :like python errors < 1727589937 216848 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :anyway ill make a waterfall model syntax < 1727589992 103419 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :found it: https://github.com/jbangert/trapcc < 1727589998 846937 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :we should probably have an article about that? < 1727590002 681647 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :cool < 1727590056 593814 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes we should < 1727590060 750787 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :i wont write it tho < 1727590300 466977 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :I'll do it. We already have a page [[Mov]] covering the Movfuscator, a similar vibe. < 1727590326 176053 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :cool korvo! < 1727590466 546184 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :ais523: Is [[Category:Esoteric subset]] alright for this? Ideally we'd have [[Category:Weird machines]], which is for the more general situation of an esoteric set with a weird superset of semantics. < 1727590506 247520 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :korvo: the esoteric subset category is a mess, putting the article there until we figure out the best place for it won't make more of a mess < 1727590538 402758 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :yes < 1727590550 912452 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it would technically fit in the implementations category, but I'm not sure that that would actually be a useful categorisation (it's interesting not because of the implemented language but because of the implementing language) < 1727590619 511954 :ipadwwwww!~ipadwwwww@213.239.88.180 QUIT :Quit: Client closed < 1727590659 319290 :ipadwwwww!~ipadwwwww@213.239.88.180 JOIN #esolangs * :[https://web.libera.chat] ipadwwwww < 1727590799 925720 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :true < 1727590945 882291 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :ais523 does the limit of waterclock values needed? < 1727591176 998106 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1727591200 413868 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ipadwwwww: could you rephrase the question? I think it may have been mistranslated < 1727591240 342462 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :does there need to be a limit of the waterclocks < 1727591255 564614 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :korvo: hmm, now I look at trapcc again, it says the instructions are "move, branch if zero, decrement" which become an LBA if generalized to infinite memory rather than Turing-complete (unless you have indirect addressing and arbitrarily many negative addresses) < 1727591286 724183 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ipadwwwww: the waterclocks can store any positive integer, that's the only way the language has access to infinite memory < 1727591308 776788 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :but on the online thing it says it needs a limit < 1727591310 334759 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :hmmm < 1727591311 404272 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :in practice, when a program needs to be able to store arbitrary amounts of data, it normally stores them by using the digits of a number like a stack < 1727591312 80247 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :wutever < 1727591337 854108 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :oh, the limit is to tell the interpreter the largest number in the original program, not the largest number that might be reached during execution < 1727591353 897847 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :oh but is that needed? < 1727591399 314511 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it's partly to allow it to know how much memory to allocate when reading the program in, and partly so that a particular implementation would work correctly (it needed a number in the top-left corner that was bigger than the other numbers on the top row) < 1727591421 194334 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :neither of these are really good reasons, but that was the mood I was in at the time – I probably wouldn't do that nowadays < 1727591421 253259 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :k < 1727591512 812473 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :your rlly good at esolang. i wish i was too < 1727591529 137279 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I've had a lot of practice < 1727591539 913701 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :my first esolang was so bad I didn't even post it on the wiki < 1727591540 269710 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :ive had too < 1727591590 980104 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :bye for now i think < 1727591603 786101 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I can't remember exactly how it worked, but memory was a hex grid where each grid element was made out of four ASCII characters, and I think there was an instruction pointer, but commands only read and wrote to grid elements adjacent to the comand itself < 1727591606 825015 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :bye < 1727591610 317579 :ipadwwwww!~ipadwwwww@213.239.88.180 QUIT :Quit: Client closed < 1727591629 224230 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I was intending to make some sort of point about the wire-crossing problem, but the language didn't really make the point I wanted to make and also I wasn't entirely sure what it was < 1727591775 788460 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :Underload was a lot more successful, but I kind-of created that one by accident (it's a subset of a terrible language called Overload I was working on but never worked out most of the details for – Overload would probably be considered in the "golfing language" genre in today's terminology) < 1727591778 318638 :ipadwwwww!~ipadwwwww@213.239.88.180 JOIN #esolangs * :[https://web.libera.chat] ipadwwwww < 1727591786 950074 :ipadwwwww!~ipadwwwww@213.239.88.180 PRIVMSG #esolangs :cool idea < 1727591796 907159 :ipadwwwww!~ipadwwwww@213.239.88.180 QUIT :Client Quit > 1727591829 962404 PRIVMSG #esolangs :14[[07Page fault14]]4 N10 02https://esolangs.org/w/index.php?oldid=141364 5* 03Corbin 5* (+952) 10Hack out a stub. Need to think for a few more minutes before writing an intro. < 1727591870 373905 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the vast majority of Overload was never finished or specified – it had pointers to other parts of the data/program, which acted like goto statements if you tried to execute them, and they could be navigated through the sexp tree using A and D for car and cdr, and a and d to do the inverse movements < 1727591889 427232 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and those were overloaded to work on lists too, which is how the `a` command from Underload got its name < 1727591919 657332 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :pointers were intended to use identifiers in square brackets to show the source and target (I think the pointer target was [name] and the pointer itself was ]name[?), which is why you can't put square brackets in an Underload program < 1727591939 701349 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Actually, I'm not gonna write an intro paragraph. The WP page does a decent job of explaining how a healthy MMU should work. < 1727591945 776682 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(I can no longer remember why you can't put angle brackeys there) < 1727591987 571144 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the category is just "Concepts" rather than "Esoteric concepts", IIRC < 1727592581 115751 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Ah, yeah, I suppose only that one section is esoteric. > 1727592639 924803 PRIVMSG #esolangs :14[[07Page fault14]]4 M10 02https://esolangs.org/w/index.php?diff=141365&oldid=141364 5* 03Corbin 5* (-9) 10 < 1727593653 63636 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Excess Flood < 1727593666 102085 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1727593859 844164 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron < 1727594418 398170 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1727596221 857206 PRIVMSG #esolangs :14[[07S*bleq14]]4 N10 02https://esolangs.org/w/index.php?oldid=141366 5* 03ChuckEsoteric08 5* (+981) 10Created page with "'''S*bleq''' is a derivative of [[Subleq]] by [[User:ChuckEsoteric08]] ==Differences== Now the command a b c Would subtract memory address b from memory address a, storing result in later, and then go to memory address mem[c] 1727596363 324399 PRIVMSG #esolangs :14[[07OISC14]]4 10 02https://esolangs.org/w/index.php?diff=141367&oldid=134200 5* 03ChuckEsoteric08 5* (+83) 10/* List of OISCs */ > 1727596398 489233 PRIVMSG #esolangs :14[[07S*bleq14]]4 10 02https://esolangs.org/w/index.php?diff=141368&oldid=141366 5* 03ChuckEsoteric08 5* (+44) 10/* Differences */ > 1727596467 345033 PRIVMSG #esolangs :14[[07S*bleq14]]4 10 02https://esolangs.org/w/index.php?diff=141369&oldid=141368 5* 03ChuckEsoteric08 5* (+28) 10 > 1727596710 813468 PRIVMSG #esolangs :14[[07EsoInterpreters14]]4 10 02https://esolangs.org/w/index.php?diff=141370&oldid=141244 5* 03ChuckEsoteric08 5* (+44) 10Updated some other links > 1727596719 652972 PRIVMSG #esolangs :14[[07Translated ZhongWen/Mihai Again414]]4 N10 02https://esolangs.org/w/index.php?oldid=141371 5* 03MihaiEso 5* (+4141) 10Created page with "[[Translated ZhongWen/None1 again]] is not crazy enough, so let's be crazier! ~~~~ 1. Take that shitty file:
  Distans, (gen.), Distantis      10    interficointerficereintereciinterfectus ..."
> 1727596818 854169 PRIVMSG #esolangs :14[[07Translated ZhongWen/None1 again14]]4 10 02https://esolangs.org/w/index.php?diff=141372&oldid=141206 5* 03MihaiEso 5* (+46) 10
> 1727596939 194508 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=141373&oldid=141349 5* 03MihaiEso 5* (+100) 10/* Horribly translated variants */
> 1727597387 166647 PRIVMSG #esolangs :14[[07EsoInterpreters14]]4 10 02https://esolangs.org/w/index.php?diff=141374&oldid=141370 5* 03ChuckEsoteric08 5* (-498) 10That "Self interpreter" is just ()^
< 1727598673 872657 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer
> 1727598770 716929 PRIVMSG #esolangs :14[[07Fish14]]4 10 02https://esolangs.org/w/index.php?diff=141375&oldid=132992 5* 03MihaiEso 5* (+92) 10/* Hello, world! */
> 1727598846 849114 PRIVMSG #esolangs :14[[07Beatnik Extended14]]4 N10 02https://esolangs.org/w/index.php?oldid=141376 5* 03ChuckEsoteric08 5* (+639) 10Created page with "{{Stub}} '''Beatnik Extended''' is two seperate [[Turing complete]] extensions of [[Beatnik]] created by [[User:ChuckEsoteric08]] ==Additions== ===Infinite Beatnik=== This version is only different from Beatnik by having unbounded non-negative integers i
> 1727599109 432582 PRIVMSG #esolangs :14[[07Beatnik Extended14]]4 10 02https://esolangs.org/w/index.php?diff=141377&oldid=141376 5* 03ChuckEsoteric08 5* (+160) 10/* Additions */
> 1727599167 325829 PRIVMSG #esolangs :14[[07!English/Examples14]]4 10 02https://esolangs.org/w/index.php?diff=141378&oldid=141151 5* 03MihaiEso 5* (+86) 10
> 1727599176 890675 PRIVMSG #esolangs :14[[07!English/Examples14]]4 10 02https://esolangs.org/w/index.php?diff=141379&oldid=141378 5* 03MihaiEso 5* (+0) 10/* Cheating quine */
> 1727599301 574306 PRIVMSG #esolangs :14[[07Talk:PUBERTY14]]4 N10 02https://esolangs.org/w/index.php?oldid=141380 5* 03Emelang 5* (+42) 10Created page with "holy fuck this esolang sucks shit "
> 1727599686 95997 PRIVMSG #esolangs :14[[07Beatnik Extended14]]4 10 02https://esolangs.org/w/index.php?diff=141381&oldid=141377 5* 03ChuckEsoteric08 5* (+391) 10
> 1727599807 386579 PRIVMSG #esolangs :14[[07While true (cat)14]]4 10 02https://esolangs.org/w/index.php?diff=141382&oldid=141023 5* 03Ractangle 5* (-38) 10
> 1727599904 855748 PRIVMSG #esolangs :14[[07Beatnik Extended14]]4 10 02https://esolangs.org/w/index.php?diff=141383&oldid=141381 5* 03ChuckEsoteric08 5* (+0) 10/* Assembly notation */
> 1727600442 973519 PRIVMSG #esolangs :14[[07(1)14]]4 N10 02https://esolangs.org/w/index.php?oldid=141384 5* 03Ractangle 5* (+96) 10Created page with "{{WIP}} {{wrongtitle|title=[1]}} '''[1]''' is an array [[esolang]] created by [[User:Ractangle]]"
> 1727600536 595861 PRIVMSG #esolangs :14[[07Lingua abstrusa14]]4 10 02https://esolangs.org/w/index.php?diff=141385&oldid=140502 5* 03Ractangle 5* (+1) 10
> 1727600971 889705 PRIVMSG #esolangs :14[[07Hum14]]4 10 02https://esolangs.org/w/index.php?diff=141386&oldid=141285 5* 03Ractangle 5* (+136) 10/* Interpriter */
> 1727601418 199343 PRIVMSG #esolangs :14[[07Hum14]]4 10 02https://esolangs.org/w/index.php?diff=141387&oldid=141386 5* 03Ractangle 5* (-605) 10
> 1727602418 455747 PRIVMSG #esolangs :14[[07 without a Quine14]]4 M10 02https://esolangs.org/w/index.php?diff=141388&oldid=140985 5* 03None1 5* (-1) 10/* Commands */
> 1727602442 759294 PRIVMSG #esolangs :14[[07 without a Quine14]]4 10 02https://esolangs.org/w/index.php?diff=141389&oldid=141388 5* 03None1 5* (+0) 10/* Commands */
> 1727602509 320367 PRIVMSG #esolangs :14[[07 without a Quine14]]4 10 02https://esolangs.org/w/index.php?diff=141390&oldid=141389 5* 03None1 5* (+90) 10/* Examples */
> 1727603605 214833 PRIVMSG #esolangs :14[[07(1)14]]4 10 02https://esolangs.org/w/index.php?diff=141391&oldid=141384 5* 03Ractangle 5* (+64) 10
> 1727603709 554447 PRIVMSG #esolangs :14[[07(1)14]]4 10 02https://esolangs.org/w/index.php?diff=141392&oldid=141391 5* 03Ractangle 5* (+17) 10/* Start */
> 1727603947 604462 PRIVMSG #esolangs :14[[07Path (Ractangle)14]]4 10 02https://esolangs.org/w/index.php?diff=141393&oldid=141212 5* 03Ractangle 5* (-297) 10/* Implementation */
< 1727604460 105488 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Quit: ZNC 1.9.1 - https://znc.in
< 1727604485 405770 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron
< 1727604546 200977 :amby!~ambylastn@ward-15-b2-v4wan-167229-cust809.vm18.cable.virginm.net JOIN #esolangs amby :realname
< 1727605020 936095 :impomatic!~impomatic@2a00:23c7:5fbd:8001:643a:2d9a:9024:909c QUIT :Quit: Client closed
> 1727605405 926883 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141394&oldid=141176 5* 03None1 5* (+104) 10/* Request category deletion */ new section
> 1727605418 234296 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141395&oldid=141394 5* 03None1 5* (+236) 10/* Request category deletion */
< 1727605606 147723 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
> 1727605634 111095 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5*  10deleted "[[02Category:Usable10]]": undiscussed category; and categories that would have to contain most of the languages on the site aren't useful
> 1727605678 141238 PRIVMSG #esolangs :14[[07User:None1/common.css14]]4 N10 02https://esolangs.org/w/index.php?oldid=141396 5* 03None1 5* (+65) 10Try out (I'll probably not go to esolang wiki in national day anyway)
> 1727605838 38155 PRIVMSG #esolangs :14[[07User:None1/common.css14]]4 M10 02https://esolangs.org/w/index.php?diff=141397&oldid=141396 5* 03None1 5* (+28) 10Change links to blue so that i can distinguish them
< 1727606660 929245 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown
> 1727606693 792126 PRIVMSG #esolangs :14[[07!Romanian14]]4 10 02https://esolangs.org/w/index.php?diff=141398&oldid=141185 5* 03MihaiEso 5* (+2) 10/* Commands */
> 1727607109 268357 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141399&oldid=141254 5* 03Ractangle 5* (-1) 10
> 1727607173 875462 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141400&oldid=141399 5* 03Ractangle 5* (-11) 10
> 1727607236 762541 PRIVMSG #esolangs :14[[07User:None1/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141401&oldid=141397 5* 03None1 5* (+0) 10
> 1727607281 586099 PRIVMSG #esolangs :14[[07User:None1/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141402&oldid=141401 5* 03None1 5* (-93) 10It's going too crazy
> 1727607405 483118 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141403&oldid=141395 5* 03None1 5* (+280) 10/* 1 */
> 1727607446 210023 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141404&oldid=141403 5* 03None1 5* (+288) 10/* I seem to think you're a decent admin */
> 1727607747 460670 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141405&oldid=141400 5* 03Ractangle 5* (-1) 10
> 1727607855 342774 PRIVMSG #esolangs :14[[07WhatLang14]]4 M10 02https://esolangs.org/w/index.php?diff=141406&oldid=138925 5* 03DGCK81LNN 5* (+3) 10
> 1727608044 357229 PRIVMSG #esolangs :14[[07Trapcc14]]4 N10 02https://esolangs.org/w/index.php?oldid=141407 5* 03B jonas 5* (+24) 10Redirected page to [[Page fault]]
> 1727608383 256159 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141408&oldid=141405 5* 03Ractangle 5* (+18) 10
< 1727608394 381674 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :for categorizing trapcc, it should go to the same category into which we put the article about construction to run computations on M:tG
< 1727608418 940244 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :the problem is, that article isn't on the wiki
> 1727608485 505560 PRIVMSG #esolangs :14[[07User:Ractangle/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141409&oldid=141408 5* 03Ractangle 5* (-1) 10
> 1727608556 141948 PRIVMSG #esolangs :14[[07WhatLang14]]4 M10 02https://esolangs.org/w/index.php?diff=141410&oldid=141406 5* 03DGCK81LNN 5* (-997) 10some interpreter quirk fixes are now official
> 1727608584 977146 PRIVMSG #esolangs :14[[07WhatLang14]]4 M10 02https://esolangs.org/w/index.php?diff=141411&oldid=141410 5* 03DGCK81LNN 5* (+9) 10/* Instructions */
< 1727608640 887964 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :do I understand that The Waterfall Model is known to be TC with 6 counters? because I don't see https://esolangs.org/wiki/The_Waterfall_Model mentioning this explicitly, and it would be interesting to know
> 1727608681 199802 PRIVMSG #esolangs :14[[07User talk:Ractangle14]]4 10 02https://esolangs.org/w/index.php?diff=141412&oldid=139083 5* 03Ractangle 5* (+319) 10/* i think i need a help */ new section
> 1727608710 419631 PRIVMSG #esolangs :14[[07User talk:Ractangle14]]4 10 02https://esolangs.org/w/index.php?diff=141413&oldid=141412 5* 03Ractangle 5* (-8) 10/* Don't fucking go too far */
> 1727608724 865286 PRIVMSG #esolangs :14[[07Python But WORST14]]4 10 02https://esolangs.org/w/index.php?diff=141414&oldid=141273 5* 03PrySigneToFry 5* (+33) 10
< 1727608728 624775 :int-e!~noone@int-e.eu PRIVMSG #esolangs :b_jonas: https://logs.esolangs.org/libera-esolangs/2024-09-28.html#lC
> 1727608801 104116 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141415&oldid=141404 5* 03Ractangle 5* (+238) 10/* Some more questions */
< 1727608813 868194 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ais523 "an LBA if generalized to infinite memory … unless you have … arbitrarily many negative addresses" => x86 supports negative addresses almost as easily as positive addresses, so I think the correct generalization to infinite memory would have arbitrarily many infinite addresses.
< 1727608867 320751 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :of course it's hard to tell what that generalization is, since the addresses are just 64-bit integers, but you could at least have 2**54 bytes or so memory, more than most computers have RAM
< 1727608903 932607 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :int-e: ok
< 1727608921 254258 :int-e!~noone@int-e.eu PRIVMSG #esolangs :...related: the A20 gate
> 1727609357 661816 PRIVMSG #esolangs :14[[07Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141416&oldid=140136 5* 03Ractangle 5* (+4) 10
> 1727609517 611255 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141417&oldid=141415 5* 03Ractangle 5* (+177) 10/* Delete blank pages */
> 1727609534 409815 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141418&oldid=141417 5* 03Ractangle 5* (+0) 10/* Delete blank pages */
> 1727609582 967844 PRIVMSG #esolangs :14[[07Translated ZhongWen/PSTF Again414]]4 N10 02https://esolangs.org/w/index.php?oldid=141419 5* 03PrySigneToFry 5* (+3153) 10Created page with "[[Translated ZhongWen/Mihai Again4]] is not crazy enough, so let's be crazier!(from PSTF)  1. Take this completely smashed file 
 SS NSMAe LDFCNAAANLSID  CNE   Scmnlsdaei5 Bobbinltaalaa Klindlfhark  BBNLTALtfdl BLBL Ud,n DinnaiiennnltU,
> 1727609622 262587 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=141420&oldid=141373 5* 03PrySigneToFry 5* (+51) 10
> 1727609645 86401 PRIVMSG #esolangs :14[[07StupidStackLanguage/Examples14]]4 10 02https://esolangs.org/w/index.php?diff=141421&oldid=137802 5* 03Ractangle 5* (+34) 10
> 1727609647 114787 PRIVMSG #esolangs :14[[07Translated ZhongWen/Mihai Again414]]4 10 02https://esolangs.org/w/index.php?diff=141422&oldid=141371 5* 03PrySigneToFry 5* (+48) 10
> 1727609659 998227 PRIVMSG #esolangs :14[[07StupidStackLanguage/Examples14]]4 10 02https://esolangs.org/w/index.php?diff=141423&oldid=141421 5* 03Ractangle 5* (-1) 10Redirected page to [[StupidStackLanguage]]
> 1727609678 909849 PRIVMSG #esolangs :14[[07User:B jonas14]]4 10 02https://esolangs.org/w/index.php?diff=141424&oldid=139437 5* 03B jonas 5* (+63) 10/* Todo */
> 1727609682 217915 PRIVMSG #esolangs :14[[07Translated ZhongWen/PSTF Again414]]4 M10 02https://esolangs.org/w/index.php?diff=141425&oldid=141419 5* 03PrySigneToFry 5* (+39) 10
> 1727609700 592105 PRIVMSG #esolangs :14[[07StupidStackLanguage14]]4 10 02https://esolangs.org/w/index.php?diff=141426&oldid=135313 5* 03Ractangle 5* (+0) 10/* Hello World */
> 1727609714 62410 PRIVMSG #esolangs :14[[07StupidStackLanguage14]]4 10 02https://esolangs.org/w/index.php?diff=141427&oldid=141426 5* 03Ractangle 5* (+4) 10/* Hello World */
< 1727609750 786417 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ais523 "memory was a hex grid where each grid element was made out of four ASCII characters, and I think there was an instruction pointer, but commands only read and wrote to grid elements adjacent to the comand itself" => that sounds like the ICFP 2004 language, but the description for that doesn't seem to credit you so it's not likely
> 1727609794 798989 PRIVMSG #esolangs :14[[07User:Unname479814]]4 M10 02https://esolangs.org/w/index.php?diff=141428&oldid=138876 5* 03PrySigneToFry 5* (+1) 10
> 1727609859 761480 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141429&oldid=141418 5* 03Ractangle 5* (+0) 10/* Delete blank pages */
> 1727610180 140550 PRIVMSG #esolangs :14[[07Special:Log/upload14]]4 overwrite10 02 5* 03Ractangle 5*  10uploaded a new version of "[[02File:The dark reader at home.jpg10]]"
> 1727610199 985177 PRIVMSG #esolangs :14[[07User:Ractangle14]]4 10 02https://esolangs.org/w/index.php?diff=141431&oldid=141269 5* 03Ractangle 5* (-1) 10
> 1727610217 310273 PRIVMSG #esolangs :14[[07Translated !Romanian14]]4 N10 02https://esolangs.org/w/index.php?oldid=141432 5* 03None1 5* (+1596) 10Created page with "Translated !Romanian is an esolang invented by [[User:None1]], it is [[!Romanian]] but horribly translated with Baidu.  ==Steps== 1. Original program 
 Program truth, intare, ieire nceput     Citete truth     Dac truth = 0 atunci         Scrie 0     Ct ti
< 1727610331 6099 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I mean the grid elements aren't *explicitly* represented as four ascii characters in that. each grid element that isn't rocky contains 6 bits of red ant pheromones, 6 bits of black ant pheromones, possibly one of 182 ants with a numbered identity (the numbers are important because they give the order that they execute their instructions) with their finite control in one of 10000 states and an 
< 1727610337 30499 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :orientation that can be facing any of the 6 neighbors, and an amount of food with 480 total food around the board. that's a bit too much state for four ascii characters, but it's not unreasonable to store the state of the 182 ants separately, and perhaps even an overflow list for the cells with lots of food (there can't be many such cells) separately. if you go radical and even the position of the 182 
< 1727610343 37359 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ants is separate then the rest would fit in four ascii characters, but you don't want that because you probably want to be able to look up the ant from its position because of how ants interact. still, it could be a precursor language for ICFP 2004.
< 1727610462 860278 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :my first esolang was psz, I should at some point write about its story a little bit and explain what bad decision I made developing it that ruined it.
> 1727610709 545753 PRIVMSG #esolangs :14[[07User talk:Unname4798/common.css14]]4 N10 02https://esolangs.org/w/index.php?oldid=141433 5* 03Unname4798 5* (+31) 10Created page with "a {  color: black !important; }"
> 1727610777 876448 PRIVMSG #esolangs :14[[07User talk:Unname4798/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141434&oldid=141433 5* 03Unname4798 5* (+0) 10Unname4798 changed the content model of the page [[User talk:Unname4798/common.css]] from "wikitext" to "CSS"
> 1727610777 894239 PRIVMSG #esolangs :14[[07Special:Log/contentmodel14]]4 change10 02 5* 03Unname4798 5*  10Unname4798 changed the content model of the page [[02User talk:Unname4798/common.css10]] from "wikitext" to "CSS"
> 1727610805 435283 PRIVMSG #esolangs :14[[07Special:Log/move14]]4 move10 02 5* 03Unname4798 5*  10moved [[02User talk:Unname4798/common.css10]] to [[User:Unname4798/common.css]]
> 1727610948 544235 PRIVMSG #esolangs :14[[07Special:Log/move14]]4 move_redir10 02 5* 03Unname4798 5*  10moved [[02User:Unname4798/common.css10]] to [[User talk:Unname4798/common.css]] over redirect
> 1727610948 565348 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete_redir10 02 5* 03Unname4798 5*  10Unname4798 deleted redirect [[02User talk:Unname4798/common.css10]] by overwriting: Deleted to make way for move from "[[User:Unname4798/common.css]]"
< 1727610972 412176 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :a larger language called Overload => indeed, that explains why most of the commands have strange names. I can understand * and ^ , and : could be from Befunge, but ! and ~ and a and S seem strange
> 1727611014 189374 PRIVMSG #esolangs :14[[07f14]]4 10 02https://esolangs.org/w/index.php?diff=141439&oldid=140533 5* 03Ractangle 5* (+20) 10/* Syntax */
> 1727611056 553065 PRIVMSG #esolangs :14[[076 bytes of useless element14]]4 10 02https://esolangs.org/w/index.php?diff=141440&oldid=140601 5* 03Ractangle 5* (-2) 10
> 1727611086 990849 PRIVMSG #esolangs :14[[07f14]]4 10 02https://esolangs.org/w/index.php?diff=141441&oldid=141439 5* 03Ractangle 5* (+0) 10/* Cat program */
< 1727611147 332307 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :although now I wonder if that's any later language that uses ! or ~ or a or S for similar things because the notation is inspired by Underload
> 1727611234 171104 PRIVMSG #esolangs :14[[07User talk:Unname4798/common.css14]]4 10 02https://esolangs.org/w/index.php?diff=141442&oldid=141437 5* 03Unname4798 5* (+0) 10Unname4798 changed the content model of the page [[User talk:Unname4798/common.css]] from "CSS" to "plain text"
> 1727611234 187265 PRIVMSG #esolangs :14[[07Special:Log/contentmodel14]]4 change10 02 5* 03Unname4798 5*  10Unname4798 changed the content model of the page [[02User talk:Unname4798/common.css10]] from "CSS" to "plain text"
> 1727611352 29145 PRIVMSG #esolangs :14[[07OISC14]]4 10 02https://esolangs.org/w/index.php?diff=141443&oldid=141367 5* 03ChuckEsoteric08 5* (+1) 10
< 1727611375 976613 :mtm_!~textual@c-71-228-84-213.hsd1.fl.comcast.net QUIT :Ping timeout: 265 seconds
< 1727611529 600519 :mtm!~textual@c-71-228-84-213.hsd1.fl.comcast.net JOIN #esolangs * :Textual User
> 1727611611 636227 PRIVMSG #esolangs :14[[07Beatnik Extended14]]4 10 02https://esolangs.org/w/index.php?diff=141444&oldid=141383 5* 03ChuckEsoteric08 5* (+83) 10/* Assembly notation */
< 1727612496 328527 :impomatic!~impomatic@2a00:23c7:5fbd:8001:643a:2d9a:9024:909c JOIN #esolangs * :[https://web.libera.chat] impomatic
> 1727612751 419130 PRIVMSG #esolangs :14[[076 bytes of useless element14]]4 10 02https://esolangs.org/w/index.php?diff=141445&oldid=141440 5* 03PkmnQ 5* (+93) 10/* Example Programs */
> 1727613403 636871 PRIVMSG #esolangs :14[[07User:ChuckEsoteric0814]]4 10 02https://esolangs.org/w/index.php?diff=141446&oldid=141300 5* 03ChuckEsoteric08 5* (+126) 10/* TODO list */
> 1727614109 511004 PRIVMSG #esolangs :14[[07!HOR14]]4 N10 02https://esolangs.org/w/index.php?oldid=141447 5* 03Ractangle 5* (+187) 10Created page with "This is basically [[!]] but horribly translated ==Codes ig== Truth-machine  (An introduction).  Start with your hand.  (I = "0") please {"0"; stop}  (I = "1") {repeat (1) {"1";}}."
> 1727614308 629383 PRIVMSG #esolangs :14[[07GolfScratch14]]4 10 02https://esolangs.org/w/index.php?diff=141448&oldid=109033 5* 03Ractangle 5* (+2) 10/* Commands */
> 1727614333 119253 PRIVMSG #esolangs :14[[07GolfScratch14]]4 10 02https://esolangs.org/w/index.php?diff=141449&oldid=141448 5* 03Ractangle 5* (+3) 10/* Hello World */
< 1727614445 319106 :wWwwW!~wWwwW@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] wWwwW
< 1727615396 6389 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :hey ais523 if you see this, how do you come up with esolang names?
< 1727615421 680726 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it can be difficult, normally I don't try too hard
< 1727615448 400080 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :many of them are references to vaguely programming-related things that I think would be funny to reference
< 1727615469 920040 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :how did you come up with incidents time
< 1727615472 709366 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and the rest are just descriptive, e.g. Bouncy Counters is an esolang formed of counters that bounce back to -1 if you put them to 0
< 1727615473 642589 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :*name
< 1727615502 495730 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :if I think an esolang deserves a particularly good name I try harder, I had several days to think about Incident and to name it
< 1727615518 906681 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :that one was made for a competition so I put additional effort into it
< 1727615520 239791 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :but where does it "come from"
< 1727615541 36657 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I can't remember – I remember where I was at the time, but not what I was thinking
< 1727615574 922993 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :sometimes it is just a case of figuring out a meaning you want for the name, and going through all the possible synonyms until you find one with a fun seond meaning
< 1727615588 960021 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :*second
< 1727615592 516283 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :with that one, I had enough time that I might just have seen the word "incident" somewhere and realised it was a good fit for the language
< 1727615593 940460 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :why did i do that lol
< 1727615605 589019 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :wiki editor's instinct :-)
< 1727615617 761077 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :lol
< 1727615633 5764 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I am not sure whether the "incident report" pun came before or after the language's name, or simultaneously
< 1727615653 903338 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :i came up with a stupid esolang concept
< 1727615664 559059 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :maybe I should keep records of these things
< 1727615672 152502 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :yes
< 1727615686 446864 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :Esimpl is a great name, that was originally just an abbreviation and then I spotted the second possible etymology
< 1727615702 457638 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :Esmipl?
< 1727615723 146812 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :esimpl's designed as an efficient assembly language for compiling into esolangs, https://esolangs.org/wiki/Esimpl
< 1727615732 111440 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :but I haven't gotten around to actually doing much with it
< 1727615737 344078 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :nice
< 1727615747 9290 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :there's an interpreter, and a BF implementation I wrote to check that the interpreter worked and that the language worked
< 1727615753 606804 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and that's about it
< 1727615804 755920 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the next step is probably to write a self-interpreter, the entire syntax was designed to make that efficient, but I haven't even got that far
< 1727615816 864143 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :lol
< 1727615825 465801 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :the language I'm currently working on, I spent a few hours trying to come up with a good name
< 1727615841 326181 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :can i try for you?
< 1727615872 342254 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :a stereotypical waterfall is discrete because all the water falls down in one single vertical step, so a more continuous version would be just a steep river
< 1727615875 716609 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :my current plan is "Delta Relay" – I decided I wanted "relay" in the name because it has two meanings that both fit the language, and I wanted (for this language) a name that sounds cool – "delta" sounds cool whilst also fitting the way the language worked
< 1727615906 219270 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I did try variations on "waterfall" but decided it didn't fit the way the language works, because waterfalls don't flow upwards
< 1727615930 167426 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :waterjump(lol)
< 1727615933 185204 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :turn the river in its bed?
< 1727615962 188137 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I vaguely remember seeing a garden on the TV which had a water feature that was an optical illusion and appeared to flow upwards, even though it actually didn't
< 1727615975 416120 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :but that wasn't directly upwards, it looked slightly above horizontal (when in fact it was slightly below horizontal)
< 1727615979 84696 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :nice
< 1727615981 885669 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :yeah, there's already a Homespring with salmon swimming upstream
< 1727616024 903993 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :ooh, I haven't thought about Homespring in a while
< 1727616076 950359 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it is one of the classic esolangs; my main criticism is that "snowmelt" is too blunt an instrument and doesn't compose nicely with other features of the language (or indeed wiht anything really) and basically just exists as half a halt signal
< 1727616093 120120 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :but it's good for advertising the language at least
< 1727616108 200385 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :what is the f'ing chance
< 1727616114 359393 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :you talk about homespring
< 1727616115 949325 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :then
< 1727616118 99519 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(also, the syntax is bizarre, which is mostly fine, but the multiple-word command names that need their internal spaces to be escaped are ugly)
< 1727616121 942349 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :i click random page
< 1727616129 608653 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :and go TO HOMESPRING PAGE
< 1727616132 362184 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :...
< 1727616132 915954 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ais523: can you edit https://esolangs.org/wiki/The_Waterfall_Model to explicitly say that it's Turing-complete with seven clocks, rather than just link to https://esolangs.org/wiki/Spiral_Rise which gives the construction
< 1727616142 593459 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :wWwwW: 1 in 5987
< 1727616151 680293 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :higher if you clicked the button more than once
< 1727616156 432370 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :I DID
< 1727616158 943373 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :*i did
< 1727616190 950982 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :b_jonas: I'm not comfortable with doing that until the whole thing is better-tested
< 1727616192 259169 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :whats a good place to write esolang
< 1727616200 88535 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :while not
< 1727616204 270136 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :uploading it to wiki
< 1727616207 814315 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ah I see
< 1727616214 629817 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :wWwwW: I use a text editor for that
< 1727616224 9342 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and save in a file on my own computer
< 1727616227 46588 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :yeah, text editor with local file
< 1727616244 716951 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :i use hackMD usually
< 1727616348 533864 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :anyway, I need to go
< 1727616353 54953 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :night everyone
< 1727616362 193345 :ais523!~ais523@user/ais523 QUIT :Quit: quit
< 1727616404 647087 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :good night!
< 1727616611 982726 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I still find the upside down Piet draft funny
< 1727616627 573716 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :?
< 1727616718 21494 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :https://esolangs.org/wiki/Piet#Notes
< 1727616733 351391 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :(and not very much related https://www.sandraandwoo.com/2012/08/23/0405-the-archer/ )
< 1727616790 98768 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :oh thats rlly funny
> 1727616829 872511 PRIVMSG #esolangs :14[[07Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141450&oldid=141416 5* 03Tommyaweosme 5* (+4) 10Undo revision [[Special:Diff/141416|141416]] by [[Special:Contributions/Ractangle|Ractangle]] ([[User talk:Ractangle|talk]])
> 1727616873 782507 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141451&oldid=141295 5* 03Tommyaweosme 5* (+29) 10stop labeling memorials as jokes its not funny [[user:ractangle]]
< 1727616889 64211 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :wanna make an esolang with me idk? im bored and i wanna make an esolang. i have *an idea* but its not close to completion
< 1727617812 121370 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :b_jonas?
> 1727618221 683647 PRIVMSG #esolangs :14[[07Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141452&oldid=141450 5* 03None1 5* (-4) 10Undo revision [[Special:Diff/141450|141450]] by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]])
> 1727618600 182590 PRIVMSG #esolangs :14[[07User:None114]]4 10 02https://esolangs.org/w/index.php?diff=141453&oldid=140855 5* 03None1 5* (+80) 10
> 1727618616 720026 PRIVMSG #esolangs :14[[07User:None114]]4 10 02https://esolangs.org/w/index.php?diff=141454&oldid=141453 5* 03None1 5* (+0) 10/* My Esolangs */
> 1727618756 349266 PRIVMSG #esolangs :14[[07Talk:Brainfuckconsole7414]]4 10 02https://esolangs.org/w/index.php?diff=141455&oldid=140280 5* 03None1 5* (+292) 10
> 1727619249 269426 PRIVMSG #esolangs :14[[07Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141456&oldid=141452 5* 03Tommyaweosme 5* (+156) 10
> 1727619299 135975 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141457&oldid=141451 5* 03Tommyaweosme 5* (-1) 10none1 did the same atrocities that ractangle commited
> 1727619340 905925 PRIVMSG #esolangs :14[[07!HOR14]]4 10 02https://esolangs.org/w/index.php?diff=141458&oldid=141447 5* 03Ractangle 5* (+23) 10
> 1727619398 36036 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=141459&oldid=141420 5* 03Tommyaweosme 5* (+151) 10
> 1727619418 149686 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141460&oldid=130497 5* 03None1 5* (+343) 10
< 1727620206 408854 :X-Scale!~X-Scale@83.223.250.45 JOIN #esolangs X-Scale :[https://web.libera.chat] X-Scale
> 1727620326 436142 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141461&oldid=141460 5* 03None1 5* (+212) 10
> 1727620447 771124 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141462&oldid=141461 5* 03Tommyaweosme 5* (+651) 10
> 1727620479 588083 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141463&oldid=141457 5* 03Tommyaweosme 5* (+0) 10wow none1's in deep shit now
> 1727620601 338599 PRIVMSG #esolangs :14[[07User talk:None114]]4 10 02https://esolangs.org/w/index.php?diff=141464&oldid=140301 5* 03PrySigneToFry 5* (+651) 10/*  */ new section
> 1727620698 971524 PRIVMSG #esolangs :14[[07List of ideas14]]4 10 02https://esolangs.org/w/index.php?diff=141465&oldid=140106 5* 03YetAnotherAccount 5* (+24) 10/* Derivative Ideas */ :(
> 1727620740 498320 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 M10 02https://esolangs.org/w/index.php?diff=141466&oldid=141311 5* 03PrySigneToFry 5* (+27) 102+0.01=6.2931853
> 1727620889 905460 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141467&oldid=141466 5* 03PrySigneToFry 5* (+634) 10
> 1727620932 512358 PRIVMSG #esolangs :14[[07User:Yayimhere14]]4 10 02https://esolangs.org/w/index.php?diff=141468&oldid=141298 5* 03Yayimhere 5* (+203) 10/* things about me */
> 1727621267 874164 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141469&oldid=141429 5* 03None1 5* (+387) 10/* Delete page */ new section
> 1727621727 42511 PRIVMSG #esolangs :14[[07Talk:Memorial language list14]]4 N10 02https://esolangs.org/w/index.php?oldid=141470 5* 03Yayimhere 5* (+145) 10Created page with "this is just an excuse to promote BBTOS [!~~~~"
> 1727623698 477502 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141471&oldid=141462 5* 03PkmnQ 5* (+144) 10
> 1727623732 528840 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141472&oldid=141463 5* 03PkmnQ 5* (+0) 10
< 1727624143 325974 :X-Scale!~X-Scale@83.223.250.45 QUIT :Ping timeout: 256 seconds
> 1727624570 442745 PRIVMSG #esolangs :14[[07Normalcalc14]]4 10 02https://esolangs.org/w/index.php?diff=141473&oldid=140527 5* 03Itoh Shimon 5* (+30) 10/* Specifications */
> 1727625134 149613 PRIVMSG #esolangs :14[[07Talk:Memorial language list14]]4 10 02https://esolangs.org/w/index.php?diff=141474&oldid=141470 5* 03Ractangle 5* (+177) 10
> 1727625514 455200 PRIVMSG #esolangs :14[[07(1)14]]4 10 02https://esolangs.org/w/index.php?diff=141475&oldid=141392 5* 03Ractangle 5* (+30) 10
> 1727625583 83195 PRIVMSG #esolangs :14[[07Looping counter14]]4 10 02https://esolangs.org/w/index.php?diff=141476&oldid=138794 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+50) 10/* Examples */
< 1727625714 935589 :joes!~joes@hardfought/member/joes JOIN #esolangs joes :realname
> 1727625949 399509 PRIVMSG #esolangs :14[[07(1)14]]4 10 02https://esolangs.org/w/index.php?diff=141477&oldid=141475 5* 03Ractangle 5* (+20) 10
< 1727625991 920168 :joes!~joes@hardfought/member/joes QUIT :Ping timeout: 265 seconds
> 1727626067 269989 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141478&oldid=141356 5* 03ChuckEsoteric08 5* (+233) 10
> 1727626098 368752 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141479&oldid=141478 5* 03ChuckEsoteric08 5* (-233) 10Undo revision [[Special:Diff/141478|141478]] by [[Special:Contributions/ChuckEsoteric08|ChuckEsoteric08]] ([[User talk:ChuckEsoteric08|talk]])
> 1727626195 30743 PRIVMSG #esolangs :14[[07Talk:(ch34t) c0d314]]4 N10 02https://esolangs.org/w/index.php?oldid=141480 5* 03Yayimhere 5* (+241) 10Created page with "what about the actual cheat codes. if you pop without and elemnt TO pop you get an error(ned to write that) ill also add more comamnds [!~~~~]"
> 1727626267 306509 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141481&oldid=141479 5* 03ChuckEsoteric08 5* (+260) 10Undo revision [[Special:Diff/141479|141479]] by [[Special:Contributions/ChuckEsoteric08|ChuckEsoteric08]] ([[User talk:ChuckEsoteric08|talk]])
> 1727626278 398357 PRIVMSG #esolangs :14[[07514]]4 10 02https://esolangs.org/w/index.php?diff=141482&oldid=141347 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+20) 10
> 1727626327 743781 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141483&oldid=141471 5* 03Tommyaweosme 5* (+347) 10
> 1727626376 79242 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141484&oldid=141472 5* 03Tommyaweosme 5* (+1) 10omfg hes so nice infiltrating the other side 4 us :D
> 1727626420 873198 PRIVMSG #esolangs :14[[07Talk:Memorial language list14]]4 10 02https://esolangs.org/w/index.php?diff=141485&oldid=141474 5* 03Tommyaweosme 5* (+288) 10
> 1727626457 213701 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141486&oldid=141481 5* 03Yayimhere 5* (+179) 10/* commands */
> 1727626467 988179 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141487&oldid=141484 5* 03Tommyaweosme 5* (-1) 10for those who hate me, i show no mercy. >:3
> 1727626534 828096 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 N10 02https://esolangs.org/w/index.php?oldid=141488 5* 03Yayimhere 5* (+199) 10Created page with "ok thx now im one some stupid list so i have a reason to call this stupid and not needed ^^^>~~~~^>"
> 1727626543 891677 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141489&oldid=141488 5* 03Yayimhere 5* (-1) 10
> 1727626559 467197 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141490&oldid=141469 5* 03Tommyaweosme 5* (+248) 10/* Delete page */
> 1727626571 558862 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141491&oldid=141486 5* 03ChuckEsoteric08 5* (+74) 10
> 1727626586 131815 PRIVMSG #esolangs :14[[07(ch34t) c0d314]]4 10 02https://esolangs.org/w/index.php?diff=141492&oldid=141491 5* 03ChuckEsoteric08 5* (+4) 10/* Computational class */
> 1727626704 346972 PRIVMSG #esolangs :14[[07Nine-hundred-eleven14]]4 N10 02https://esolangs.org/w/index.php?oldid=141493 5* 03Tommyaweosme 5* (+411) 10Created page with "{{lowercase}}nine-hundred-eleven is a memorial language of 9/11. it was made on 9/11/2024, but uploaded to esolangs on 9/29/2024 == commands ==  food and water - increments cell at pointer by one  tower 1 - moves pointer backwards  tower 2 - moves pointe
> 1727626722 88780 PRIVMSG #esolangs :14[[07Memorial language list14]]4 10 02https://esolangs.org/w/index.php?diff=141494&oldid=140776 5* 03Tommyaweosme 5* (+24) 10
> 1727626790 303165 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141495&oldid=141487 5* 03Tommyaweosme 5* (+0) 10i never thought none1 could be worse. disrespecting the thousands who died in 9/11 *sob* the hundreds hurt in the sandbox attacks *sob* the millions dead in world war 2
> 1727626850 780501 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141496&oldid=141489 5* 03Tommyaweosme 5* (+288) 10
> 1727626869 486941 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141497&oldid=141495 5* 03Tommyaweosme 5* (+0) 10
> 1727626883 757826 PRIVMSG #esolangs :14[[07Talk:Memorial language list14]]4 10 02https://esolangs.org/w/index.php?diff=141498&oldid=141485 5* 03Yayimhere 5* (+156) 10
> 1727626884 6870 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 M10 02https://esolangs.org/w/index.php?diff=141499&oldid=141497 5* 03Tommyaweosme 5* (+0) 10
> 1727626960 391859 PRIVMSG #esolangs :14[[07Talk:Memorial language list14]]4 10 02https://esolangs.org/w/index.php?diff=141500&oldid=141498 5* 03Tommyaweosme 5* (+411) 10
> 1727627021 646289 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141501&oldid=141496 5* 03Yayimhere 5* (+215) 10
< 1727627090 160208 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :ill send ye a maessage. if you decline then yea
> 1727627141 140630 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141502&oldid=141501 5* 03Ractangle 5* (+238) 10/* okay what the fuck does this even mean? */ new section
> 1727627176 130063 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141503&oldid=141502 5* 03Tommyaweosme 5* (-140) 10auto-deleted, sory \_()_/
> 1727627228 903689 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141504&oldid=141503 5* 03Tommyaweosme 5* (+312) 10
> 1727627278 57077 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141505&oldid=141504 5* 03Yayimhere 5* (+189) 10/* okay what the fuck does this even mean? */
> 1727627308 809902 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141506&oldid=141505 5* 03Ractangle 5* (+4) 10
> 1727627409 535792 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 M10 02https://esolangs.org/w/index.php?diff=141507&oldid=141506 5* 03Tommyaweosme 5* (-115) 10auto-deleted, sory \_()_/
> 1727627456 963483 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141508&oldid=141490 5* 03Ractangle 5* (+39) 10/* Delete page */
> 1727627480 758392 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141509&oldid=141508 5* 03Ractangle 5* (+170) 10/* Delete page */
> 1727627576 74175 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141510&oldid=141507 5* 03Unname4798 5* (+36) 10
> 1727627610 629266 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141511&oldid=141510 5* 03Yayimhere 5* (+115) 10Undo revision [[Special:Diff/141507|141507]] by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]])
> 1727627635 474526 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141512&oldid=141511 5* 03Yayimhere 5* (+140) 10Undo revision [[Special:Diff/141503|141503]] by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]])
< 1727627645 918693 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727628051 500087 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141513&oldid=141512 5* 03Tommyaweosme 5* (-212) 10
> 1727628069 375100 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141514&oldid=141499 5* 03Tommyaweosme 5* (+0) 10
> 1727628375 165697 PRIVMSG #esolangs :14[[07Special:Log/move14]]4 move10 02 5* 03Unname4798 5*  10moved [[02User:Tommyaweosme/warsides10]] to [[Tommyaweosme/warsides]]: Unname can't edit user pages
> 1727628410 182216 PRIVMSG #esolangs :14[[07Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141517&oldid=141515 5* 03Unname4798 5* (+0) 10yayimhere, not unname calls this list stupid
> 1727628431 823161 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141518&oldid=141509 5* 03ChuckEsoteric08 5* (+125) 10/* Delete page */
> 1727629042 692857 PRIVMSG #esolangs :14[[07Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141519&oldid=141517 5* 03Unname4798 5* (+0) 10Swap two items, since they were out of order
> 1727629101 59105 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141520&oldid=141513 5* 03Unname4798 5* (-43) 10
> 1727629369 957932 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141521&oldid=141520 5* 03Unname4798 5* (+255) 10Reverted to the revision by [[User:Yayimhere]] ([[User talk:Yayimhere|talk]])
> 1727629484 72788 PRIVMSG #esolangs :14[[07Nine-hundred-eleven14]]4 10 02https://esolangs.org/w/index.php?diff=141522&oldid=141493 5* 03ChuckEsoteric08 5* (-32) 10Removed nonexistent category
> 1727629535 499411 PRIVMSG #esolangs :14[[07Bbtos14]]4 M10 02https://esolangs.org/w/index.php?diff=141523&oldid=141456 5* 03PythonshellDebugwindow 5* (-10) 10/* Interpreter */
> 1727629954 262463 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141524&oldid=141521 5* 03ChuckEsoteric08 5* (+57) 10/* Why */ new section
> 1727630023 312833 PRIVMSG #esolangs :14[[07Nine-hundred-eleven14]]4 M10 02https://esolangs.org/w/index.php?diff=141525&oldid=141522 5* 03PythonshellDebugwindow 5* (+292) 10See also, categories
< 1727630039 967605 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Ping timeout: 260 seconds
> 1727630100 967001 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141526&oldid=141524 5* 03ChuckEsoteric08 5* (+111) 10
> 1727630145 391487 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 M10 02https://esolangs.org/w/index.php?diff=141527&oldid=141526 5* 03Tommyaweosme 5* (-376) 10auto-deleted, sory \_()_/
< 1727630216 319021 :wWwwW94!~wWwwW@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] wWwwW
> 1727630216 877400 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141528&oldid=141527 5* 03Unname4798 5* (+376) 10Undo revision [[Special:Diff/141527|141527]] by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]])
< 1727630229 331047 :wWwwW!~wWwwW@94.147.203.75 QUIT :Ping timeout: 256 seconds
> 1727630237 815847 PRIVMSG #esolangs :14[[07Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141529&oldid=141519 5* 03Tommyaweosme 5* (-1) 10BRO IS CIRCUMVENTING THE WHOLE USERPAGE BAN @ais523 @ais523 @ais523
> 1727630239 691335 PRIVMSG #esolangs :14[[07!HOR14]]4 M10 02https://esolangs.org/w/index.php?diff=141530&oldid=141458 5* 03PythonshellDebugwindow 5* (+55) 10Stub, categories
> 1727630273 985315 PRIVMSG #esolangs :14[[07Special:Log/move14]]4 move10 02 5* 03Tommyaweosme 5*  10moved [[02Tommyaweosme/warsides10]] to [[User:User:Tommyaweosme/warsides]]: Misspelled title: UNNAME4798 UNLAWFULLY MOVING ''MY'' PAGES AGAIN
> 1727630288 756409 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141533&oldid=141528 5* 03Unname4798 5* (+185) 10
> 1727630301 595682 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141534&oldid=141533 5* 03Unname4798 5* (+173) 10
> 1727630321 388819 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141535&oldid=141534 5* 03Unname4798 5* (+2) 10
> 1727630352 924098 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141536&oldid=141535 5* 03Unname4798 5* (+0) 10
> 1727630373 641116 PRIVMSG #esolangs :14[[07Beatnik14]]4 M10 02https://esolangs.org/w/index.php?diff=141537&oldid=122694 5* 03PythonshellDebugwindow 5* (+37) 10See also
> 1727630450 703697 PRIVMSG #esolangs :14[[07Beatnik Extended14]]4 M10 02https://esolangs.org/w/index.php?diff=141538&oldid=141444 5* 03PythonshellDebugwindow 5* (+93) 10Categories
> 1727630478 913155 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141539&oldid=141536 5* 03Unname4798 5* (+26) 10
< 1727630518 480607 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
> 1727630522 904563 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141540&oldid=141539 5* 03Yayimhere 5* (+5) 10/* Why */ include user part of link
> 1727630527 477154 PRIVMSG #esolangs :14[[07(1)14]]4 M10 02https://esolangs.org/w/index.php?diff=141541&oldid=141477 5* 03PythonshellDebugwindow 5* (+66) 10Categories
> 1727630566 574581 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141542&oldid=141540 5* 03Yayimhere 5* (+153) 10/* Why */
< 1727630621 428650 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Ping timeout: 260 seconds
< 1727630726 257740 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse
> 1727630743 82539 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141543&oldid=141542 5* 03Tommyaweosme 5* (+213) 10you have no free spech yayimhere \_()_/
> 1727630790 384649 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141544&oldid=141543 5* 03Tommyaweosme 5* (-290) 10auto-deleted, sory \_()_/
< 1727630807 318683 :wWwwW94!~wWwwW@94.147.203.75 QUIT :Ping timeout: 256 seconds
> 1727630835 706976 PRIVMSG #esolangs :14[[07Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141545&oldid=141532 5* 03Tommyaweosme 5* (-45) 10Blanked the page
> 1727630861 626083 PRIVMSG #esolangs :14[[07Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141546&oldid=141545 5* 03Tommyaweosme 5* (+1257) 10
> 1727630873 472295 PRIVMSG #esolangs :14[[07Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141547&oldid=141546 5* 03Tommyaweosme 5* (-1257) 10Blanked the page
> 1727630883 632265 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141548&oldid=141516 5* 03Tommyaweosme 5* (+1222) 10Removed redirect to [[Tommyaweosme/warsides]]
> 1727630886 38951 PRIVMSG #esolangs :14[[07User:User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141549&oldid=141531 5* 03Tommyaweosme 5* (-1257) 10Blanked the page
> 1727631052 846152 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141550&oldid=141518 5* 03Tommyaweosme 5* (+98) 10no free spech on esolang, sory \_()_/
> 1727631099 542051 PRIVMSG #esolangs :14[[07User:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141551&oldid=140784 5* 03Tommyaweosme 5* (-1457) 10Replaced content with "dont try to mesage against me  i edit ur message and eat ur signature, replace with mine"
> 1727631127 286577 PRIVMSG #esolangs :14[[07User talk:Vulture00114]]4 N10 02https://esolangs.org/w/index.php?oldid=141552 5* 03Yayimhere 5* (+183) 10Created page with "can you plz make a logo for my esolang: [[ch34t) c0d3|my esolang]]. you make rlly cool logos ~~~~"
> 1727631148 692820 PRIVMSG #esolangs :14[[07User talk:Vulture00114]]4 10 02https://esolangs.org/w/index.php?diff=141553&oldid=141552 5* 03Yayimhere 5* (+1) 10
> 1727631192 523781 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141554&oldid=141467 5* 03Unname4798 5* (+257) 10
> 1727631237 257497 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 M10 02https://esolangs.org/w/index.php?diff=141555&oldid=141554 5* 03Tommyaweosme 5* (+30) 10no free spech on esolang, sory \_()_/
< 1727631330 318474 :wWwwW!~wWwwW@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] wWwwW
> 1727631355 334865 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141556&oldid=141555 5* 03Unname4798 5* (+261) 10
> 1727631373 996272 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141557&oldid=141556 5* 03Unname4798 5* (+17) 10
> 1727631391 373426 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141558&oldid=141557 5* 03Unname4798 5* (-4) 10
> 1727631404 189020 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme14]]4 10 02https://esolangs.org/w/index.php?diff=141559&oldid=141558 5* 03Tommyaweosme 5* (+297) 10/* Grade 11 */
> 1727631434 625299 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141560&oldid=141548 5* 03Tommyaweosme 5* (+1) 10
> 1727631556 283644 PRIVMSG #esolangs :14[[07User talk:PkmnQ14]]4 10 02https://esolangs.org/w/index.php?diff=141561&oldid=137830 5* 03Tommyaweosme 5* (+388) 10
> 1727631684 520441 PRIVMSG #esolangs :14[[07User talk:PkmnQ14]]4 10 02https://esolangs.org/w/index.php?diff=141562&oldid=141561 5* 03Yayimhere 5* (+15) 10
< 1727631913 800096 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727631981 379173 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03IntGrah 5*  10New user account
> 1727632162 429188 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 M10 02https://esolangs.org/w/index.php?diff=141563&oldid=140999 5* 03IntGrah 5* (+104) 10Introduction
> 1727632176 878126 PRIVMSG #esolangs :14[[07User:IntGrah14]]4 N10 02https://esolangs.org/w/index.php?oldid=141564 5* 03IntGrah 5* (+7) 10Create user page
< 1727632241 979040 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron
> 1727632413 747169 PRIVMSG #esolangs :14[[07Talk: but with only plausible commands14]]4 N10 02https://esolangs.org/w/index.php?oldid=141565 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+37) 10Created page with "a language can be turing complete tho"
> 1727633176 55752 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141566&oldid=141550 5* 03ChuckEsoteric08 5* (-98) 10Undo revision [[Special:Diff/141550|141550]] by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]]) no free speech to you too :3
> 1727633329 794316 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141567&oldid=141566 5* 03Tommyaweosme 5* (-125) 10no free spech on esolang, sory \_()_/
> 1727633551 985402 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141568&oldid=141544 5* 03ChuckEsoteric08 5* (-213) 10
> 1727633654 876806 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141569&oldid=141568 5* 03ChuckEsoteric08 5* (-145) 10
< 1727633697 318573 :wWwwW!~wWwwW@94.147.203.75 QUIT :Ping timeout: 256 seconds
> 1727634146 367607 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141570&oldid=141567 5* 03ChuckEsoteric08 5* (+125) 10Undo revision [[Special:Diff/141567|141567]] by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]])
< 1727634150 317872 :wWwwW!~wWwwW@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] wWwwW
> 1727634357 818165 PRIVMSG #esolangs :14[[07Talk:Jail system makes no sense14]]4 10 02https://esolangs.org/w/index.php?diff=141571&oldid=132664 5* 03ChuckEsoteric08 5* (+123) 10/* Deletion? */
> 1727634360 100151 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=141572&oldid=141563 5* 03Coffeeenjoyer 5* (+192) 10
> 1727634363 842309 PRIVMSG #esolangs :14[[07Obscure14]]4 10 02https://esolangs.org/w/index.php?diff=141573&oldid=140700 5* 03Coffeeenjoyer 5* (+735) 10example programs
> 1727634613 596333 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141574&oldid=141483 5* 03ChuckEsoteric08 5* (-651) 10Accidentally deleted it
< 1727635023 319466 :wWwwW!~wWwwW@94.147.203.75 QUIT :Ping timeout: 256 seconds
< 1727637061 108536 :impomatic!~impomatic@2a00:23c7:5fbd:8001:643a:2d9a:9024:909c QUIT :Quit: Client closed
> 1727639646 436050 PRIVMSG #esolangs :14[[07PIO14]]4 N10 02https://esolangs.org/w/index.php?oldid=141575 5* 03PlaceReporter99 5* (+377) 10Created page with "{{stub}} [https://tio.run/##ZU/BaoQwFLz7FaMnhd56Kyw9FAteNtJ@Qaova8DNC88E9OttokspLA/yGN7MZMZvYWL3uu8jGZh6aN4KGBassA5DArAmgcsFVVdliCDbsRPbOh9D3TQZ0jqQD2jVZyvCclK8WBfqqsOkA@Ggg/J5KausovnPXZ3uD4WaMJKWEldGXMjEOV34Jvq@YCKhJ3l/ykXbhfC9uaDXI0dd9UTW3cAOYSKYmVne8WVHO8SZ41LiYyb
> 1727641091 84287 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141576&oldid=141569 5* 03Tommyaweosme 5* (+358) 10redo
> 1727642051 688472 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141577&oldid=141560 5* 03Tommyaweosme 5* (+177) 10
> 1727642063 269253 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141578&oldid=141577 5* 03Tommyaweosme 5* (+1) 10
> 1727643190 631547 PRIVMSG #esolangs :14[[07Talk:Jail system makes no sense14]]4 M10 02https://esolangs.org/w/index.php?diff=141579&oldid=141571 5* 03Tommyaweosme 5* (-806) 10
< 1727644796 673147 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I have a ASN.1 file containing a UUID. Why does the "dumpasn1" program list the UUID twice and then says "Error: OID has invalid encoding"? The file looks like OK to me.
> 1727644934 788264 PRIVMSG #esolangs :14[[07Talk:Memorial language list14]]4 10 02https://esolangs.org/w/index.php?diff=141580&oldid=141500 5* 03Ais523 5* (+1362) 10/* Deletion discussion about this page that was posted on User talk:ais523 */ new section
> 1727644990 42565 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5*  10deleted "[[02Memorial language list10]]": deleted per deletion discussion (see talk)
> 1727645102 102854 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141581&oldid=141570 5* 03Ais523 5* (+379) 10mark a couple of entries as done
> 1727645298 776842 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=141582&oldid=141581 5* 03Ais523 5* (-48431) 10archiving
> 1727645313 836304 PRIVMSG #esolangs :14[[07User talk:Ais523/Archive114]]4 N10 02https://esolangs.org/w/index.php?oldid=141583 5* 03Ais523 5* (+48566) 10archiving
> 1727646438 536480 PRIVMSG #esolangs :14[[07Talk:Bbtos14]]4 10 02https://esolangs.org/w/index.php?diff=141584&oldid=141574 5* 03Tommyaweosme 5* (+651) 10
< 1727647263 338520 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
< 1727647646 731606 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User
> 1727647873 127172 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5*  10deleted "[[02(1)10]]": Author request
> 1727648163 613817 PRIVMSG #esolangs :14[[07Talk:Jail system makes no sense14]]4 M10 02https://esolangs.org/w/index.php?diff=141585&oldid=141579 5* 03Ais523 5* (+806) 10Reverted edit by [[Special:Contributions/Tommyaweosme|Tommyaweosme]] ([[User talk:Tommyaweosme|talk]]) to last revision by [[User:ChuckEsoteric08|ChuckEsoteric08]]
< 1727648182 201521 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz…
> 1727648300 972446 PRIVMSG #esolangs :14[[07Special:Log/move14]]4 move10 02 5* 03Ais523 5*  10moved [[02Tommyaweosme/warsides10]] to [[User:Tommyaweosme/warsides]]: history merge
> 1727648300 989791 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5*  10deleted "[[02User:Tommyaweosme/warsides10]]": Deleted to make way for move from "[[Tommyaweosme/warsides]]"
> 1727648331 555277 PRIVMSG #esolangs :14[[07Special:Log/move14]]4 move10 02 5* 03Ais523 5*  10moved [[02User:User:Tommyaweosme/warsides10]] to [[User:Tommyaweosme/warsides]]: history merge
> 1727648331 571543 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5*  10deleted "[[02User:Tommyaweosme/warsides10]]": Deleted to make way for move from "[[User:User:Tommyaweosme/warsides]]"
> 1727648351 855594 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 restore10 02 5* 03Ais523 5*  10undeleted "[[02User:Tommyaweosme/warsides10]]": history merge
> 1727648378 984012 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141589&oldid=141588 5* 03Ais523 5* (+1436) 10set top revision after history merge
> 1727648407 565537 PRIVMSG #esolangs :14[[07Special:Log/delete14]]4 delete10 02 5* 03Ais523 5*  10deleted "[[02Tommyaweosme/warsides10]]": cross-namespace redirect left over after a page was moved to the correct namespace
> 1727648693 774286 PRIVMSG #esolangs :14[[07User talk:Unname479814]]4 10 02https://esolangs.org/w/index.php?diff=141590&oldid=141313 5* 03Ais523 5* (+832) 10/* Stop trying to circumvent the block on editing other people's userspace */ new section
> 1727648922 164079 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141591&oldid=141576 5* 03Ais523 5* (+560) 10/* Why */ some thoughts
> 1727649012 613616 PRIVMSG #esolangs :14[[07User talk:PkmnQ14]]4 10 02https://esolangs.org/w/index.php?diff=141592&oldid=141562 5* 03PkmnQ 5* (-403) 10that's not staying there
> 1727650627 601914 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03Ellos 5*  10New user account
< 1727651725 268457 :SGautam!uid286066@id-286066.ilkley.irccloud.com JOIN #esolangs SGautam :Siddharth Gautam
> 1727651834 357720 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141593&oldid=141591 5* 03None1 5* (+344) 10/* Why */
> 1727653288 969670 PRIVMSG #esolangs :14[[07User talk:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141594&oldid=141593 5* 03Tommyaweosme 5* (-1) 10no free spech on esolang, sory \_()_/
> 1727653390 479475 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 10 02https://esolangs.org/w/index.php?diff=141595&oldid=141589 5* 03Tommyaweosme 5* (-1) 10"thats not staying there"
> 1727653411 384176 PRIVMSG #esolangs :14[[07User:Tommyaweosme/warsides14]]4 M10 02https://esolangs.org/w/index.php?diff=141596&oldid=141595 5* 03Tommyaweosme 5* (+0) 10oops wrong person
> 1727654236 146245 PRIVMSG #esolangs :14[[0713 bytes :D14]]4 10 02https://esolangs.org/w/index.php?diff=141597&oldid=127002 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+85) 10/* Examples */