> 1784683650 127303 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=186764&oldid=186725 5* 03Miui 5* (+14) 10/* M */ < 1784684265 687220 :amby!~ambylastn@46.162.147.147.dyn.plus.net QUIT :Remote host closed the connection < 1784685012 253002 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Even if making a programming language or something else for some other use, sometimes you will want to know about the computational class, e.g. I had written Composite Character VM (which is not the same as: composite glyphs, combining characters, etc), which is intended to be deliberately limited but still suitable for the writing of many languages (including conlangs) > 1784686557 507571 PRIVMSG #esolangs :14[[07User:Cycwin14]]4 10 02https://esolangs.org/w/index.php?diff=186765&oldid=161076 5* 03Cycwin 5* (+168) 10 > 1784686997 163444 PRIVMSG #esolangs :14[[07Project Euler/114]]4 10 02https://esolangs.org/w/index.php?diff=186766&oldid=186694 5* 03PrySigneToFry 5* (+1488) 10 > 1784687571 71798 PRIVMSG #esolangs :14[[07Don Giovanni/Implementations14]]4 N10 02https://esolangs.org/w/index.php?oldid=186767 5* 03PrySigneToFry 5* (+31302) 10Created page with "= Python =
 import sys  # ---------------------------------------------------------------------- # 1. Lexer # ----------------------------------------------------------------------  class Token:     def __init__(self, type, value, line):
> 1784687583 15643 PRIVMSG #esolangs :14[[07Don Giovanni14]]4 10 02https://esolangs.org/w/index.php?diff=186768&oldid=184561 5* 03PrySigneToFry 5* (-31265) 10
< 1784687790 773980 :MizMahem_!uid296354@id-296354.helmsley.irccloud.com QUIT :Quit: Connection closed for inactivity
< 1784689454 186372 :lisbeths!uid135845@id-135845.lymington.irccloud.com JOIN #esolangs lisbeths :lisbeths
< 1784695673 260372 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :ICFP contest starts in a bit more than two days
< 1784695710 5263 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Will more information be available at that time?
< 1784695794 863239 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :there's a teaser at https://icfpcontest2026.com/textbook
< 1784695877 400540 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :zzo38: yes, the first version of the task specification is always revealed right as the contest starts. in many of the recent years, there was a twist, a modified version of the task specification that is revealed a day or half a day (I don't remember) after the start of the contest, with a separate scoring category for solving the first version well quickly within a day or half a day
< 1784696117 514646 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :The description there is not very elaborate but I expect would be explained more when the contest is started.
< 1784696183 82497 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :What kind of data structure implementation for in memory data might be useful for: http://pb1n.de/?684ca7
< 1784696978 478514 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :zzo38: yes, it's just a teaser, the goal is that you shouldn't be able to guess anything important about the task description from it so it doesn't help you prepare for the task before the contest starts. (this doesn't mean that you can't prepare, obviously you can do general preparation for programming contests, only that the teaser doesn't help)
< 1784698166 937074 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :zzo38: you want one of the balanced search trees with nodes sorted by key like a B-tree, red-black tree, or one of the many other variants. You can find an implementation in the C++ standard library as std::map, or the Rust standard library as std::collections::BTreeMap, or the Haskell ghc standard library in the Data.Map package. These have most of the operations that you're asking for, except that I 
< 1784698173 238217 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :don't quite understand what Last, Next and Prev are, the triplet seems confusing. You can iterate on the records (key-value) pairs in increasing or decreasing order from any starting point, but likely only if you don't modify the data structure during iteration, if you do modify it that invalidates your iterator and you'll have to look up the key again.
< 1784698283 778982 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :As a personal note, reading about the algorithms for these balanced tree structured in TAOCP 6.2.3 was one of the main reason why I got interested in algorithms and programming when I was around 11 years old. TAOCP was the most interesting book in the school library.
< 1784698393 377501 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :I might have made some mistakes, e.g. Last should be less or equal key, and that Next/Prev are supposed to return a error code if there is no such record.
< 1784698855 261779 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Also, one thing that I missed is changing the keys of existing records such that the new key does not change the order of the records when sorted by key (this can probably be done with many implementations just by changing the key stored in the record without making other changes).
< 1784698904 83668 :azul_!~azul@90.166.156.7 JOIN #esolangs azul :realname
< 1784699021 793490 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Do you think Arne Andersson's tree (or a variant of that) is suitable?
< 1784699069 253484 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :zzo38: in the C++ std::map API, the std::map::lower_bound api lets you find the record with the least key greater than or equal to a key argument. If you want the least key strictly greater than a key argument then there are two solutions. The traditional one (which works in C++03) is that you call lower_bound, then compare the key, then if they're equal then increment the iterator with the ++ operator 
< 1784699075 258884 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :to find the next record, but compare the incremented key to end both before and after the increment to make sure that such a record exists. The newer is to call lower_bound with a different type than the key, one that compares as if it was between two valid keys, or it has an extra 1 bit at the end of the string.
< 1784699088 555362 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :"changing the keys of existing records such that the new key does not change the order of the records when sorted by key" => I don't think any implementation supports this
< 1784699114 622743 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :"Arne Andersson's tree" => I don't know which one that is
< 1784699308 618176 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :By changing the keys, I mean that the new keys of several records are known to be the same order (relative to each other and all of the other records) as before, by something external, that the order would not need to be adjusted (it would also be known that nobody else is accessing the table at this time)
< 1784699321 677792 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :one more possibility for this is sqlite, which can handle a database stored either in a temporary file or purely in the memory of the process. you create a table where you can either have the key and value in separate columns, or they can be in the same column with the key first if you know how to separate them, eg. in your case the key is fixed size. then you create an index on this key column and 
< 1784699324 750623 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Arne Andersson's tree is described at https://user.it.uu.se/~arneande/ps/simp.pdf
< 1784699327 685729 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :possibly the other column. sqlite then lets you search by key with any comparison operator with WHERE, or iterate up or down from anywhere with WHERE ... ORDER BY
< 1784699493 866033 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :I have to amend what I said above about modifying a key. The C++ library's std::map has methods where you give an iterator to a node of the same map as a hint for where to insert. So if you already have an iterator to the node that you want to modify then you can insert the modified values to a new node close to it using those methods, then erase the old node.
< 1784699675 218054 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Adding SQLite might more than double the size of my existing program, so it might be better not to do that.
< 1784699935 407874 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :Also I think Chris Okasaki's book, or maybe some other source, describes some variant of splay trees where even the semantically constant operations modify the representation of the tree, this modification is essential to guarantee the amortized time guarantees, and this has the side effect that inserting or deleting a node close to the node that you just looked up is very fast because the lookup 
< 1784699941 810846 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :rotates it to the root. So the haskell implementation of that one would let you modify keys efficiently. But if you don't want sqlite because it would double the size of the program then probably any non-esoteric Haskell implementation would be even worse.
< 1784700037 682924 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :So I recommend either the C++ standard library or rust standard library implementation, whichever is more convenient. Possibly the implementation in the Boost Container library, but I don't think it has advantages over the C++ standard library one here.
< 1784700094 568093 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :The advantage of the Boost Container comes up if you have other weird requests that you haven't mentioned, because it's probably easier to convince the boost library to do unusual things.
< 1784700432 946930 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :I also considered to not use a library (unless I can copy the relevant parts into my program), in order to change it according to what is suitable for this specific program.
< 1784700491 235615 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :zzo38: anotehr possibility is APR (Apache Portable Runtime Project https://apr.apache.org/ ) library skip lists ( https://apr.apache.org/docs/apr/1.7/group__apr__skiplist.html ). I'm not completely sure but I think this can do the operations that you want, and I think it would result in a smaller program size than the other libraries that I mentioned. 
< 1784700536 644159 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :I will look at that
< 1784700686 367415 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :(The article I linked to written by Andersson also mentions skip lists, and compares the speed with using a tree, although I should think that speed should not be the only consideration but it is one of them)
< 1784700699 341556 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :zzo38: if you want to copy the relevant parts into your program and a C++ implementation is okay then the Boost Container library is probably the best. That one is header only, and you can copy just the relevant headers into your program. It depends on a few other header-only boost libraries, so you have to copy some dependencies, but I think it doesn't depend on any of the very large libraries.
< 1784700748 819904 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :I've done this with some other header-only libraries of Boost, copying just some headers, though I haven't tried it with Container.
< 1784700782 160796 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :the whole Boost is a very big collection, but you can take just the few directories of headers that you need and they're small
< 1784700959 506118 :potter!~potter@user/potter QUIT :Quit: Should be back momentarily
> 1784700964 256455 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186769&oldid=186130 5* 03Im bad at naming 5* (+0) 10/* Guessing Area */
< 1784701309 688293 :potter!~potter@user/potter JOIN #esolangs potter :potter
< 1784701593 268802 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :If I write the program carefully then the implementation of the tables can be changed without having to rewrite the rest of the program
< 1784701957 955153 :tromp!~textual@2001:1c00:340e:2700:75cb:e304:2582:276c JOIN #esolangs * :Textual User
< 1784702140 735563 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :I looked at the source code for the skip list as well, and also the Wikipedia article about skip list; it requires random numbers and a node has many more fields than a tree would (although it might be possible to change so that some might become unnecessary)
< 1784703326 186679 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :sure, I don't particularly like skip lists, and if you want to use randomness then I'd prefer a treap, but you wanted smaller code size and I think APR might help in that and it happens to have skip list as its implementation
< 1784703390 583745 :zzo38!~zzo38@host-24-207-46-238.public.eastlink.ca PRIVMSG #esolangs :Yes, and I am looking at it, to see whether or not it can be used and to learn it
< 1784703407 205176 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :but I'm not sure in this so you'll have to double-check that
< 1784703636 360048 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :also ais523 may have an implementation of one of the balanced trees in the future that might work and isn't esoteric
< 1784703690 125141 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :and I think it's more likely to eventually exist than feather the language or scapegoat the version control system.
< 1784703745 70492 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I have spent the past approximately a week getting annoyed at Rust's standard library btree implementation
< 1784703772 818205 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it uses a lot of unsafe that doesn't seem necessary and subsequently turned out to be unsound
< 1784703803 553724 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so it's strongly motivating me to try to improve safe Rust to the extent that it could be written safely
< 1784703818 253323 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :ais523: is the unsoundness with or without an incorrect comparison function?
< 1784703842 141717 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it's exception-safety, it involves catching a panic by the comparison function or a panic by the allocator
< 1784703851 706602 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :ah!
< 1784703863 237761 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(although a panicking comparison function isn't always necessarily "incorrect")
< 1784703968 620119 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :no, I don't think panicking makes the comparison function incorrect. what makes it incorrect is if it can give different results on the same inputs, or isn't antisymmetric, or isn't transitive.
< 1784704008 504273 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer
< 1784704204 423821 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :as for recovering from catching a panic from the allocator or comparison function, libraries have to support this and it's indeed some of the hardest parts to implement correctly. even just implementing the container in safe rust needn't be enough for all the guarantees.
< 1784704281 419719 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :I don't think I'll ever to use that feature in practice, i.e. trying to recover from a panic in the allocator or comparison function, but I also understand that it can be important for some programs 
< 1784704384 566570 :lisbeths!uid135845@id-135845.lymington.irccloud.com QUIT :Quit: Connection closed for inactivity
> 1784704980 585828 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186770&oldid=186769 5* 03Miui 5* (+88) 10/* miui's guess */
> 1784705072 231854 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 M10 02https://esolangs.org/w/index.php?diff=186771&oldid=186770 5* 03Miui 5* (+23) 10/* miui's guess */
< 1784705901 257061 :ais523!~ais523@user/ais523 QUIT :Quit: quit
< 1784706069 40016 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord
< 1784706098 795895 :tromp!~textual@2001:1c00:340e:2700:75cb:e304:2582:276c QUIT :Quit: Textual IRC Client: www.textualapp.com
> 1784706563 184926 PRIVMSG #esolangs :14[[07Stexmix14]]4 10 02https://esolangs.org/w/index.php?diff=186772&oldid=186560 5* 03Miui 5* (+34) 10link secret lang hellion mode for more context
> 1784707484 881646 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186773&oldid=186771 5* 03Miui 5* (+147) 10/* miui's guess */
< 1784708280 759804 :b_jonas!~x@catv-80-98-84-202.catv.fixed.one.hu PRIVMSG #esolangs :oren: my browser claims that https://www.orenwatson.be/fontdemo.htm has a TLS problem, possibly an expired certificate
> 1784708440 665784 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03135yshr 5*  10New user account
> 1784709185 162427 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=186774&oldid=186751 5* 03135yshr 5* (+239) 10/* Introductions */
> 1784709270 244616 PRIVMSG #esolangs :14[[07User:135yshr14]]4 N10 02https://esolangs.org/w/index.php?oldid=186775 5* 03135yshr 5* (+551) 10Created page with "Hi, I'm '''135yshr''', a software developer from Japan.  I'm the creator of [[Meow (135yshr)|Meow]], a cat-themed functional programming language in which every keyword is a cat word (nyan, meow, purr, ...). Source files use th
> 1784709288 701730 PRIVMSG #esolangs :14[[07Meow (135yshr)14]]4 N10 02https://esolangs.org/w/index.php?oldid=186776 5* 03135yshr 5* (+4330) 10Created page with "{{infobox proglang |name=Meow |paradigms=functional |author=[https://github.com/135yshr 135yshr] |year=[[:Category:2026|2026]] |typesys=gradual, static |class=[[:Category:Turing complete|Turing complete]] |refimpl=[https://github.com/135yshr/meow GitHub] |influen
< 1784709430 337596 :cactus-head!~cactus_he@2403-580d-b040-0-1942-774d-f8a8-6392.ip6.aussiebb.net QUIT :Quit: Leaving
> 1784709439 867155 PRIVMSG #esolangs :14[[07Meow14]]4 10 02https://esolangs.org/w/index.php?diff=186777&oldid=134918 5* 03135yshr 5* (+22) 10
< 1784709462 137937 :cactushead!~cactus_he@2403-580d-b040-0-1942-774d-f8a8-6392.ip6.aussiebb.net JOIN #esolangs cactushead :cactus head
< 1784709957 171219 :lisbeths!uid135845@id-135845.lymington.irccloud.com JOIN #esolangs lisbeths :lisbeths
> 1784711768 620741 PRIVMSG #esolangs :14[[07Talk:Aheui14]]4 10 02https://esolangs.org/w/index.php?diff=186778&oldid=91480 5* 03Miui 5* (+82) 10/* Project Euler 844 (Markov Numbers) */ new section
> 1784712367 252743 PRIVMSG #esolangs :14[[07Brainturn14]]4 10 02https://esolangs.org/w/index.php?diff=186779&oldid=167385 5* 03Win7HE 5* (+203) 10/* Hello world */
> 1784712397 150551 PRIVMSG #esolangs :14[[07Brainturn14]]4 10 02https://esolangs.org/w/index.php?diff=186780&oldid=186779 5* 03Win7HE 5* (+11) 10/* Hello world */
> 1784712543 371309 PRIVMSG #esolangs :14[[07Brainturn14]]4 M10 02https://esolangs.org/w/index.php?diff=186781&oldid=186780 5* 03Win7HE 5* (+2) 10/* Hello world */
> 1784713203 487841 PRIVMSG #esolangs :14[[07Methemetics14]]4 10 02https://esolangs.org/w/index.php?diff=186782&oldid=185722 5* 03Win7HE 5* (+12) 10/*  */
> 1784713299 611754 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=186783&oldid=186774 5* 03Jan Ala 5* (+170) 10/* Introductions */
> 1784713340 828961 PRIVMSG #esolangs :14[[07User:Win7HE14]]4 10 02https://esolangs.org/w/index.php?diff=186784&oldid=184460 5* 03Win7HE 5* (-18) 10/* Outinp (hello world-able) */
> 1784713351 282518 PRIVMSG #esolangs :14[[07User:Win7HE14]]4 10 02https://esolangs.org/w/index.php?diff=186785&oldid=186784 5* 03Win7HE 5* (-15) 10/* Hyperinotoidion (joke language) */
> 1784713366 147493 PRIVMSG #esolangs :14[[07User:Win7HE14]]4 10 02https://esolangs.org/w/index.php?diff=186786&oldid=186785 5* 03Win7HE 5* (+17) 10/* Deadshark */
> 1784713381 855162 PRIVMSG #esolangs :14[[07User:Win7HE14]]4 10 02https://esolangs.org/w/index.php?diff=186787&oldid=186786 5* 03Win7HE 5* (+17) 10/* Deadman */
> 1784713413 731367 PRIVMSG #esolangs :14[[07ABCLang14]]4 N10 02https://esolangs.org/w/index.php?oldid=186788 5* 03Jan Ala 5* (+5296) 10Created page with "ABCLang is a minimalistic, Turing-complete esoteric programming language created by [[User:Jan Ala]]. It uses only three characters: a, b, and c.  ==Overview== ABCLang is a stack-based virtual machine language with: * 3 characters (a, b, c) * 26 instructions (encoded as
> 1784713436 138950 PRIVMSG #esolangs :14[[07Deadman14]]4 10 02https://esolangs.org/w/index.php?diff=186789&oldid=152269 5* 03Win7HE 5* (-9) 10/* Commands */
> 1784713501 504167 PRIVMSG #esolangs :14[[07Deadman14]]4 10 02https://esolangs.org/w/index.php?diff=186790&oldid=186789 5* 03Win7HE 5* (-4) 10
> 1784713643 779025 PRIVMSG #esolangs :14[[07Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=186791&oldid=183145 5* 03Win7HE 5* (+20) 10
> 1784713668 700027 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186792&oldid=186773 5* 03PrySigneToFry 5* (+89) 10/* miui's guess */
> 1784714781 761485 PRIVMSG #esolangs :14[[07Aheui14]]4 10 02https://esolangs.org/w/index.php?diff=186793&oldid=186763 5* 03Miui 5* (+123) 10/* External resources */ bf->Aheui compiler (untested)
< 1784714976 198997 :DOS_User_webchat!~DOS_User_@user/DOS-User:11249 JOIN #esolangs DOS_User :[https://web.libera.chat] DOS_User_webchat
< 1784715205 985203 :DOS_User_webchat!~DOS_User_@user/DOS-User:11249 QUIT :Client Quit
< 1784715217 189889 :DOS_User_webchat!~DOS_User_@user/DOS-User:11249 JOIN #esolangs DOS_User :[https://web.libera.chat] DOS_User_webchat
> 1784715369 151316 PRIVMSG #esolangs :14[[07Deadfish/Implementations (nonalphabetic and A-L)14]]4 10 02https://esolangs.org/w/index.php?diff=186794&oldid=174583 5* 03Win7HE 5* (+2573) 10/* Brainfuck */
> 1784715439 513921 PRIVMSG #esolangs :14[[07Deadfish/Implementations (nonalphabetic and A-L)14]]4 M10 02https://esolangs.org/w/index.php?diff=186795&oldid=186794 5* 03Win7HE 5* (-8) 10/* Brainfuck */
< 1784715562 624645 :DOS_User_webchat!~DOS_User_@user/DOS-User:11249 QUIT :Ping timeout: 245 seconds
> 1784716037 392306 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186796&oldid=186788 5* 03Jan Ala 5* (-492) 10
> 1784716713 296529 PRIVMSG #esolangs :14[[0719 edons, 19 octons14]]4 10 02https://esolangs.org/w/index.php?diff=186797&oldid=186621 5* 03Miui 5* (+182) 10added .lua
> 1784716905 808833 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186798&oldid=186792 5* 03Miui 5* (+46) 10/* miui's guess */
> 1784717067 233609 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186799&oldid=186798 5* 03PrySigneToFry 5* (+29) 10
> 1784717589 660861 PRIVMSG #esolangs :14[[07BrainFuck++14]]4 10 02https://esolangs.org/w/index.php?diff=186800&oldid=95914 5* 03Win7HE 5* (-7695) 10Replaced content with "[[#REDIRECT|BrainFuck+]]"
> 1784717629 769287 PRIVMSG #esolangs :14[[07BrainFuck++14]]4 10 02https://esolangs.org/w/index.php?diff=186801&oldid=186800 5* 03Win7HE 5* (+0) 10Redirected page to [[BrainFuck+]]
> 1784717868 991287 PRIVMSG #esolangs :14[[07Rubik's Cube14]]4 10 02https://esolangs.org/w/index.php?diff=186802&oldid=142482 5* 03Win7HE 5* (+4) 10/* Checker pattern */
< 1784718476 590467 :APic!apic@chiptune.apic.name PRIVMSG #esolangs :Hi
> 1784718736 653624 PRIVMSG #esolangs :14[[07Jezik14]]4 10 02https://esolangs.org/w/index.php?diff=186803&oldid=186689 5* 03Zopium 5* (+13) 10
> 1784718776 455658 PRIVMSG #esolangs :14[[07Bosnian14]]4 N10 02https://esolangs.org/w/index.php?oldid=186804 5* 03Zopium 5* (+19) 10Redirected page to [[Jezik]]
> 1784718937 847970 PRIVMSG #esolangs :14[[07SGA14]]4 M10 02https://esolangs.org/w/index.php?diff=186805&oldid=186707 5* 03OfficialWatchOS7Alt 5* (+12) 10lol
> 1784719129 279594 PRIVMSG #esolangs :14[[07Truth-machine14]]4 10 02https://esolangs.org/w/index.php?diff=186806&oldid=182937 5* 03Zopium 5* (+237) 10/* Implementations */
> 1784719593 282577 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/My Rate to the user that I know14]]4 10 02https://esolangs.org/w/index.php?diff=186807&oldid=185191 5* 03PrySigneToFry 5* (-203) 10
> 1784719631 17858 PRIVMSG #esolangs :14[[07User:PrySigneToFry/Sandbox/Users that is also on other place14]]4 10 02https://esolangs.org/w/index.php?diff=186808&oldid=185194 5* 03PrySigneToFry 5* (+38) 10
> 1784719695 810137 PRIVMSG #esolangs :14[[07Talk:SecretLang (Hellion Mode)14]]4 10 02https://esolangs.org/w/index.php?diff=186809&oldid=186799 5* 03PrySigneToFry 5* (+90) 10
> 1784719728 470176 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186810&oldid=186796 5* 03Jan Ala 5* (-48) 10/* Fibonacci */
> 1784719737 230772 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186811&oldid=186810 5* 03Jan Ala 5* (+1) 10/* Fibonacci */
< 1784719838 913520 :amby!~ambylastn@46.162.147.147.dyn.plus.net JOIN #esolangs * :realname
> 1784719861 294997 PRIVMSG #esolangs :14[[07Talk: Meaoiu14]]4 10 02https://esolangs.org/w/index.php?diff=186812&oldid=186628 5* 03PrySigneToFry 5* (+106) 10/* Program Requestation */ new section
> 1784719895 902575 PRIVMSG #esolangs :14[[07User talk:Miui14]]4 10 02https://esolangs.org/w/index.php?diff=186813&oldid=186736 5* 03Miui 5* (+114) 10/* as a homeless person */ new section
> 1784719918 972612 PRIVMSG #esolangs :14[[07User talk:Miui14]]4 10 02https://esolangs.org/w/index.php?diff=186814&oldid=186813 5* 03Miui 5* (+20) 10/* as a homeless person */
> 1784720299 689369 PRIVMSG #esolangs :14[[07User talk:Miui14]]4 10 02https://esolangs.org/w/index.php?diff=186815&oldid=186814 5* 03Miui 5* (+241) 10/* On indigestibility */ new section
> 1784720649 172144 PRIVMSG #esolangs :14[[07XYScript14]]4 10 02https://esolangs.org/w/index.php?diff=186816&oldid=186562 5* 03PrySigneToFry 5* (+341) 10
> 1784720919 663874 PRIVMSG #esolangs :14[[07Brain-Flak14]]4 10 02https://esolangs.org/w/index.php?diff=186817&oldid=155526 5* 03None1 5* (+59) 10/* Interpreters */
> 1784720976 784674 PRIVMSG #esolangs :14[[07User talk:Miui14]]4 10 02https://esolangs.org/w/index.php?diff=186818&oldid=186815 5* 03Miui 5* (+44) 10/* On indigestibility */
> 1784721162 414752 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186819&oldid=186811 5* 03Jan Ala 5* (-21) 10/* Instruction Set */
> 1784721229 993572 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186820&oldid=186819 5* 03Jan Ala 5* (+8) 10/* Instruction Set */
> 1784721345 979977 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186821&oldid=186820 5* 03Jan Ala 5* (+333) 10/* Instruction Set */
> 1784722066 830362 PRIVMSG #esolangs :14[[07Interpret Esolangs Online14]]4 10 02https://esolangs.org/w/index.php?diff=186822&oldid=185425 5* 03None1 5* (+17) 10/* Introduction */
> 1784722124 123362 PRIVMSG #esolangs :14[[07Special:Log/upload14]]4 upload10 02 5* 03Miui 5*  10uploaded "[[02File:Dafne growth fractal..gif10]]"
> 1784722157 489614 PRIVMSG #esolangs :14[[07Dafne14]]4 10 02https://esolangs.org/w/index.php?diff=186824&oldid=186064 5* 03Miui 5* (+113) 10/* Escape-time */ growth cycle fractal (dies at 5 generations)
> 1784724369 641463 PRIVMSG #esolangs :14[[07Brain-Flak14]]4 10 02https://esolangs.org/w/index.php?diff=186825&oldid=186817 5* 03None1 5* (+39) 10/* Interpreters */
> 1784724820 110875 PRIVMSG #esolangs :14[[07Category:Generated by AI14]]4 10 02https://esolangs.org/w/index.php?diff=186826&oldid=181844 5* 03Win7HE 5* (+2) 10
> 1784725338 139986 PRIVMSG #esolangs :14[[07User talk:Miui14]]4 10 02https://esolangs.org/w/index.php?diff=186827&oldid=186818 5* 03Miui 5* (+99) 10/* English users are stupid */ new section
< 1784725579 133268 :sftp!~sftp@user/sftp QUIT :Ping timeout: 264 seconds
> 1784726697 247964 PRIVMSG #esolangs :14[[07Talk: Meaoiu14]]4 10 02https://esolangs.org/w/index.php?diff=186828&oldid=186812 5* 03I am islptng 5* (+616) 10
> 1784727280 794697 PRIVMSG #esolangs :14[[07Talk:Trigbf14]]4 10 02https://esolangs.org/w/index.php?diff=186829&oldid=186720 5* 03Blashyrkh 5* (+332) 10/* Original examples do not work */ new section
< 1784727316 480645 :lisbeths!uid135845@id-135845.lymington.irccloud.com QUIT :Quit: Connection closed for inactivity
> 1784727408 578650 PRIVMSG #esolangs :14[[07Talk:Trigbf14]]4 M10 02https://esolangs.org/w/index.php?diff=186830&oldid=186829 5* 03Blashyrkh 5* (+13) 10/* Original examples do not work */
> 1784727774 417411 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186831&oldid=186821 5* 03Jan Ala 5* (+3418) 10
> 1784727789 564151 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186832&oldid=186831 5* 03Jan Ala 5* (+2) 10/* External Resources */
> 1784728268 672437 PRIVMSG #esolangs :14[[07FizzBuzz14]]4 10 02https://esolangs.org/w/index.php?diff=186833&oldid=173227 5* 03PrySigneToFry 5* (+1989) 10Add more interpreters
> 1784728612 326271 PRIVMSG #esolangs :14[[07FizzLang14]]4 10 02https://esolangs.org/w/index.php?diff=186834&oldid=160445 5* 03PrySigneToFry 5* (+163) 10
> 1784729991 819039 PRIVMSG #esolangs :14[[07Talk:ABCLang14]]4 N10 02https://esolangs.org/w/index.php?oldid=186835 5* 03Miui 5* (+110) 10Created page with "Finally a stack that makes sense to me! ~~~~"
< 1784730204 463127 :Lykaina!~lykaina@user/lykaina QUIT :Quit: ZNC 1.9.1+deb2+b3 - https://znc.in
> 1784730239 385322 PRIVMSG #esolangs :14[[07FizzLang14]]4 10 02https://esolangs.org/w/index.php?diff=186836&oldid=186834 5* 03Hammy 5* (+84) 10added hello world
< 1784730266 178516 :Lykaina!~lykaina@user/lykaina JOIN #esolangs Lykaina :Lykaina Wolfe
> 1784730447 34398 PRIVMSG #esolangs :14[[07!4warning14]]4 10 02https://esolangs.org/w/index.php?diff=186837&oldid=186531 5* 03Miui 5* (+787) 10link See Two and define a valid ruler obt
> 1784731039 670315 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186838&oldid=186616 5* 03Splot-dev 5* (+85) 10Added note that I forgot to previously add regarding selecting logic.
< 1784731061 560757 :myname!~myname@152.53.22.209 QUIT :Quit: WeeChat 4.9.2
> 1784732216 405610 PRIVMSG #esolangs :14[[07Lost And Found: Kingdom of Hangul14]]4 N10 02https://esolangs.org/w/index.php?oldid=186839 5* 03Miui 5* (+793) 10Created page with "'''Lost And Found: Kingdom of Hangul''' is a joke output only language that takes the source of of Jon Ripley's Lost Kingdom and compiles it to [[Aheui]] and then ''illegally'' (it is illegal to mod Jon Ripley's Lost Kingdom and change the License)
> 1784732304 835255 PRIVMSG #esolangs :14[[07King In Yellow14]]4 10 02https://esolangs.org/w/index.php?diff=186840&oldid=186505 5* 03Yayimhere2(school) 5* (+112) 10/* Commands */
> 1784732351 504298 PRIVMSG #esolangs :14[[07Whizz14]]4 10 02https://esolangs.org/w/index.php?diff=186841&oldid=186838 5* 03Splot-dev 5* (+509) 10Added Turing-Completeness proof
> 1784732419 651990 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186842&oldid=186841 5* 03Splot-dev 5* (+1) 10Fixed syntax error
> 1784732468 435618 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186843&oldid=186842 5* 03Splot-dev 5* (+0) 10Moved section for readability
> 1784732630 240726 PRIVMSG #esolangs :14[[07ABCLang14]]4 10 02https://esolangs.org/w/index.php?diff=186844&oldid=186832 5* 03Aadenboy 5* (+88) 10formatting; cats
> 1784733224 524023 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186845&oldid=186843 5* 03Splot-dev 5* (+21) 10Added negative/positive int clarification
> 1784733257 419310 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186846&oldid=186845 5* 03Splot-dev 5* (-7) 10Definitely identifies as a Turing tarpit, now.
< 1784739800 363408 :joast!~joast@2603:90d8:500:31cf:5e0f:3f4b:1cfe:5060 QUIT :Quit: Leaving.
> 1784739802 330519 PRIVMSG #esolangs :14[[07TetraBit14]]4 10 02https://esolangs.org/w/index.php?diff=186847&oldid=184820 5* 03CodePentuplets48 5* (+25) 10
< 1784740072 295612 :azul_!~azul@90.166.156.7 QUIT :Ping timeout: 254 seconds
> 1784749907 699848 PRIVMSG #esolangs :14[[07User:Aadenboy/Justec14]]4 N10 02https://esolangs.org/w/index.php?oldid=186848 5* 03Aadenboy 5* (+1374) 10Created page with "'''Justec''' is an esolang made for GMTK's 2026 Game Jam.  == Structure == A Justec program is a directed tree of nodes. Each node may also point to a register. Nodes may point to several other nodes, creating new program pointers as necessary, which execu
> 1784749984 226810 PRIVMSG #esolangs :14[[07User:Aadenboy/randomuserpage14]]4 10 02https://esolangs.org/w/index.php?diff=186849&oldid=177106 5* 03Aadenboy 5* (+25) 10
> 1784750011 910563 PRIVMSG #esolangs :14[[07User:Aadenboy14]]4 10 02https://esolangs.org/w/index.php?diff=186850&oldid=182045 5* 03Aadenboy 5* (+48) 10/* just some drafts */
< 1784752499 895554 :joast!~joast@2603:90d8:500:31cf:5e0f:3f4b:1cfe:5060 JOIN #esolangs joast :joast
> 1784752593 403288 PRIVMSG #esolangs :14[[07Kitchen14]]4 10 02https://esolangs.org/w/index.php?diff=186851&oldid=186446 5* 03AndrewBayly 5* (+850) 10
> 1784752852 117649 PRIVMSG #esolangs :14[[07Kitchen14]]4 10 02https://esolangs.org/w/index.php?diff=186852&oldid=186851 5* 03AndrewBayly 5* (+1296) 10
> 1784753368 497951 PRIVMSG #esolangs :14[[07Kitchen14]]4 10 02https://esolangs.org/w/index.php?diff=186853&oldid=186852 5* 03AndrewBayly 5* (+2579) 10
> 1784753688 854635 PRIVMSG #esolangs :14[[07Kitchen14]]4 10 02https://esolangs.org/w/index.php?diff=186854&oldid=186853 5* 03AndrewBayly 5* (+807) 10
> 1784753809 423833 PRIVMSG #esolangs :14[[07Kitchen14]]4 10 02https://esolangs.org/w/index.php?diff=186855&oldid=186854 5* 03AndrewBayly 5* (+454) 10revised content
< 1784754696 14422 :APic!apic@chiptune.apic.name PRIVMSG #esolangs :cu
> 1784754751 51001 PRIVMSG #esolangs :14[[07Fun214]]4 10 02https://esolangs.org/w/index.php?diff=186856&oldid=186447 5* 03AndrewBayly 5* (+1371) 10rewrite
> 1784755270 321796 PRIVMSG #esolangs :14[[07PrimeScript14]]4 10 02https://esolangs.org/w/index.php?diff=186857&oldid=186448 5* 03AndrewBayly 5* (+2213) 10rewrite
> 1784755306 619325 PRIVMSG #esolangs :14[[07PrimeScript14]]4 M10 02https://esolangs.org/w/index.php?diff=186858&oldid=186857 5* 03AndrewBayly 5* (+0) 10
> 1784755839 320505 PRIVMSG #esolangs :14[[07Trapdoor14]]4 10 02https://esolangs.org/w/index.php?diff=186859&oldid=186449 5* 03AndrewBayly 5* (+1432) 10rewrite
> 1784755902 168680 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186860&oldid=186846 5* 03Splot-dev 5* (+55) 10Improved infobox
> 1784756118 767866 PRIVMSG #esolangs :14[[07Square14]]4 10 02https://esolangs.org/w/index.php?diff=186861&oldid=186450 5* 03AndrewBayly 5* (+1969) 10rewrite
> 1784756172 886119 PRIVMSG #esolangs :14[[07Square14]]4 M10 02https://esolangs.org/w/index.php?diff=186862&oldid=186861 5* 03AndrewBayly 5* (+0) 10
> 1784756228 786663 PRIVMSG #esolangs :14[[07Square14]]4 M10 02https://esolangs.org/w/index.php?diff=186863&oldid=186862 5* 03AndrewBayly 5* (+0) 10
> 1784756250 713167 PRIVMSG #esolangs :14[[07Trapdoor14]]4 M10 02https://esolangs.org/w/index.php?diff=186864&oldid=186859 5* 03AndrewBayly 5* (+0) 10
> 1784756277 765039 PRIVMSG #esolangs :14[[07Fun214]]4 M10 02https://esolangs.org/w/index.php?diff=186865&oldid=186856 5* 03AndrewBayly 5* (+0) 10
> 1784756521 746546 PRIVMSG #esolangs :14[[07BrainFreeze14]]4 10 02https://esolangs.org/w/index.php?diff=186866&oldid=186451 5* 03AndrewBayly 5* (+858) 10rewrite
> 1784756540 466037 PRIVMSG #esolangs :14[[07BrainFreeze14]]4 M10 02https://esolangs.org/w/index.php?diff=186867&oldid=186866 5* 03AndrewBayly 5* (-29) 10
> 1784756735 77131 PRIVMSG #esolangs :14[[07Talk:Trapdoor14]]4 N10 02https://esolangs.org/w/index.php?oldid=186868 5* 03Blashyrkh 5* (+260) 10Created page with "Existence of two (the more - the better) valid programs reveals the secret prime factor (using GCD). Try something ECDSA-like with one-time nonce if you want true security. --~~~~"
> 1784756818 635654 PRIVMSG #esolangs :14[[07Talk:Trapdoor14]]4 M10 02https://esolangs.org/w/index.php?diff=186869&oldid=186868 5* 03Blashyrkh 5* (+4) 10
> 1784756922 654347 PRIVMSG #esolangs :14[[07Whizz14]]4 10 02https://esolangs.org/w/index.php?diff=186870&oldid=186860 5* 03Splot-dev 5* (+789) 10Added code structures
> 1784756940 427272 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186871&oldid=186870 5* 03Splot-dev 5* (+2) 10This should be a mini-section!
> 1784756988 706002 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186872&oldid=186871 5* 03Splot-dev 5* (+13) 10Clarified things
> 1784757001 772798 PRIVMSG #esolangs :14[[07BrainSwitch14]]4 10 02https://esolangs.org/w/index.php?diff=186873&oldid=186452 5* 03AndrewBayly 5* (+2202) 10
> 1784757014 919135 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186874&oldid=186872 5* 03Splot-dev 5* (+15) 10Clarified title
> 1784757059 838709 PRIVMSG #esolangs :14[[07Whizz14]]4 M10 02https://esolangs.org/w/index.php?diff=186875&oldid=186874 5* 03Splot-dev 5* (+50) 10Added depth limit
> 1784757369 883462 PRIVMSG #esolangs :14[[07Fun314]]4 10 02https://esolangs.org/w/index.php?diff=186876&oldid=186453 5* 03AndrewBayly 5* (+2581) 10rewrite
> 1784757605 339436 PRIVMSG #esolangs :14[[07Hard14]]4 10 02https://esolangs.org/w/index.php?diff=186877&oldid=186454 5* 03AndrewBayly 5* (+2515) 10
> 1784757773 701753 PRIVMSG #esolangs :14[[07Nonce14]]4 10 02https://esolangs.org/w/index.php?diff=186878&oldid=186455 5* 03AndrewBayly 5* (+1028) 10
< 1784758079 46850 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname
> 1784758190 473493 PRIVMSG #esolangs :14[[07Normal14]]4 10 02https://esolangs.org/w/index.php?diff=186879&oldid=186456 5* 03AndrewBayly 5* (+2618) 10
> 1784758508 192082 PRIVMSG #esolangs :14[[07PrimeIndex14]]4 10 02https://esolangs.org/w/index.php?diff=186880&oldid=186457 5* 03AndrewBayly 5* (+2483) 10
> 1784759739 166589 PRIVMSG #esolangs :14[[07Lost And Found: Kingdom of Hangul14]]4 10 02https://esolangs.org/w/index.php?diff=186881&oldid=186839 5* 03Miui 5* (+102) 10
> 1784759765 285612 PRIVMSG #esolangs :14[[07Lost And Found: Kingdom of Hangul14]]4 10 02https://esolangs.org/w/index.php?diff=186882&oldid=186881 5* 03Miui 5* (+12) 10
> 1784759834 244497 PRIVMSG #esolangs :14[[07Lost And Found: Kingdom of Hangul14]]4 10 02https://esolangs.org/w/index.php?diff=186883&oldid=186882 5* 03Miui 5* (+75) 10
> 1784759945 71243 PRIVMSG #esolangs :14[[07User talk:Miui14]]4 10 02https://esolangs.org/w/index.php?diff=186884&oldid=186827 5* 03Miui 5* (+39) 10jk
> 1784761675 973384 PRIVMSG #esolangs :14[[07Deadfish but in english14]]4 N10 02https://esolangs.org/w/index.php?oldid=186885 5* 03Zopium 5* (+1895) 10Created page with "'''Deadfish but in english''' is [[Deadfish]], but instead of these yucky single character commands, it's sentences.  {| class="wikitable" |+ Instructions |- ! What it says !! What it does |- | Increment the accumulator || Increments the accu
< 1784761908 727388 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Not sure whether Andrew Bayly is using a chatbot or just not imaginative. His Web apps look vibe-coded.
> 1784761983 342210 PRIVMSG #esolangs :14[[07Deadfish but in english14]]4 10 02https://esolangs.org/w/index.php?diff=186886&oldid=186885 5* 03Zopium 5* (+248) 10
> 1784762304 404617 PRIVMSG #esolangs :14[[07XKCD Random Number14]]4 10 02https://esolangs.org/w/index.php?diff=186887&oldid=185799 5* 03Zopium 5* (+200) 10/* Implementations */
> 1784762729 417681 PRIVMSG #esolangs :14[[07Deadfish but in english14]]4 10 02https://esolangs.org/w/index.php?diff=186888&oldid=186886 5* 03Zopium 5* (+103) 10
> 1784762785 36752 PRIVMSG #esolangs :14[[07Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=186889&oldid=186791 5* 03Zopium 5* (+66) 10/* Variants of deadfish */
> 1784762887 832461 PRIVMSG #esolangs :14[[07User:Zopium14]]4 10 02https://esolangs.org/w/index.php?diff=186890&oldid=186274 5* 03Zopium 5* (+30) 10/* Esolangs I made */
> 1784762953 497481 PRIVMSG #esolangs :14[[07User:Zopium14]]4 10 02https://esolangs.org/w/index.php?diff=186891&oldid=186890 5* 03Zopium 5* (+0) 10
> 1784763090 227321 PRIVMSG #esolangs :14[[07User:Zopium14]]4 10 02https://esolangs.org/w/index.php?diff=186892&oldid=186891 5* 03Zopium 5* (+89) 10
> 1784763217 662099 PRIVMSG #esolangs :14[[07Talk:Trapdoor14]]4 10 02https://esolangs.org/w/index.php?diff=186893&oldid=186869 5* 03Corbin 5* (+117) 10
> 1784764081 499603 PRIVMSG #esolangs :14[[07Nonce14]]4 10 02https://esolangs.org/w/index.php?diff=186894&oldid=186878 5* 03Corbin 5* (+9) 10Clean up prose. Use similar categories to [[Bubblegum]]; we don't know whether this is actually hard!