stalker mode ↑2026 ↑all
2026-03-21
[...]
03:18:19 <esolangs> [[User:StavWasPlayZ]] N https://esolangs.org/w/index.php?oldid=178023 * Meh2 * (+52) Created page with "Where's the cursed esolang? Made by: [[User:Meh2]]"
03:33:19 <esolangs> [[User:Meh2]] N https://esolangs.org/w/index.php?oldid=178024 * Meh2 * (+28) Created page with "Meh. ==Esolangs:== Not yet!"
04:02:46 <ais523> zzo38: how does it load plain-text files that other operating systems produced?
04:05:14 <zzo38> They can still be loaded as raw files, or as converted files, if using a program (not necessarily the same program that the file is being used with) that can read the disk of that other operating system (such programs will likely be included for compatibility, at least for such things as CDs and DVDs)
04:15:32 -!- somefan has joined.
04:31:11 -!- somefan has quit (Quit: leaving).
04:31:54 <zzo38> (One of the forks is used for if programs (usually emulated programs rather than native programs) expect the file to contain raw data, then it can use that one; however, a proxy capability (or a function in a program) might be used to automatically convert in either direction if needed. This might result in a more limited functionality, such as a more restricted character set.)
04:39:48 <zzo38> (Something similar would be true of directories; you can have a table of links with whatever extra data is appropriate for the file system being converted from. However, many things would be converted to the port of the program for this system instead which would use a different format instead, so that such a thing would be mostly (although not entirely) unnecessary.)
04:40:29 <zzo38> (One of my intentions is to avoid needing to be limited due to what other existing systems do)
05:06:55 -!- impomatic has joined.
05:31:57 <b_jonas> Sgeo: that sounds like something you should do in user-space rather than in an operating system
05:32:08 <b_jonas> I mean the lines thing
05:32:43 <Sgeo> b_jonas, I guess it was before everyone converged on the boring but useful idea of files just being a bunch of bytes
05:33:40 <Sgeo> On IBM mainframe OSes, you tend to need to define whether a dataset (their term for file) is a bunch of fixed length records or variable length records
05:35:50 <ais523> when I first learned programming, record-based files were common enough that most practical programming languages had syntax to access them
05:35:58 <ais523> but I think they've pretty much been abandoned by this point
05:37:03 <zzo38> (Continuing what I mentioned, probably would be better to use separate programs to convert the file and then work with it, rather than doing it "live"; however, emulation might be used if you are modifying files for use with other systems (such as DOS or uxn))
05:37:51 <ais523> fwiw I think it's usually correct for databases to use a record-oriented file internally, even if they're storing it on a byte-oriented filesystem
05:38:13 <zzo38> ais523: I think BASIC does (although you have to specify the record size in your program, since the operating system doesn't know the record size); as far as I know, I have not used other programming languages that do
05:47:09 <ais523> hmm, C has an API that's capable of expressing reads and writes of record-based files (especially with fread and fwrite) but I don't know whether or not that was intentional
05:47:42 <b_jonas> ais523: ins't that because record-based files made sense for magnetic casette tape drives?
05:47:52 <ais523> b_jonas: possibly
05:48:59 <ais523> I never actually used a computer with a tape drive
05:49:16 <ais523> I used a few that were designed for tape drives but they'd been connected to 5¼" floppy drives instead
05:50:08 <b_jonas> I mean disks have fixed-size sectors preallocated during formatting, which makes it easy to not overwrite other sectors on the same track, but a tape doesn't have lots of tracks that it can seek to, so at least some tape drives write and read variable-length blocks
05:50:28 <zzo38> Something I was working recently was to see how I would make a programming language to be better than C, and I suppose it also has a way to work with record-based files even though that feature was not really intended for that use; the "stream" type is a parameterized type so is usually "stream(u8)" but you could specify a different type than "u8" such as "u8[128]"
05:51:28 <ais523> zzo38: hmm, interesting; I came to a similar conclusion but I was thinking about memory allocators rather than file formats
05:52:32 <ais523> the idea of a "typed file" is probably useful even if you aren't storing records, because if the type system is sufficiently powerful, it would mean that you wouldn't have to reverify the file contents (as long as you trusted the file system to not corrupt it)
05:53:01 <ais523> although you would still need to ensure that it was a valid value of its type if you were receiving one as a stream of bytes from an untrusted source, e.g. over the Internet
05:58:08 <korvo> It's because the structure isn't local to the CPU. When we parse a file, we're creating a local structure in the CPU registers which summarizes the file contents.
05:59:12 <korvo> RAM isn't local either, but we trust memory controllers. Quirk of history, I think.
06:01:31 <korvo> Come to think of it, in the 1990s we trusted disks a lot more. Programs would mmap their save files from disk, headers and all.
06:05:03 <ais523> yep
06:05:09 <ais523> NetHack still does that I think
06:06:26 <ais523> I think one reason programs moved away from that is for security against files downloaded from elsewhere that purported to have been created by the program but actually weren't, and another is portability (as programs that are just mmapping their data structures may have those structures defined differently on different platforms)
06:06:48 <ais523> and nowadays, some languages (like Rust) by default allow the compiler to change the memory layout of a structure with every complie
06:07:04 <ais523> (you can request a stable layout but it isn't the default)
06:07:34 <ais523> normally this is just used to provide optimisation opportunities but some people have experimented with doing something ASLRish with it
06:08:06 <ais523> interestingly, executables are still loaded by mmap – I think that's because they're inherently nonportable to different architectures and already unsafe to run if you don't trust them
06:08:47 <ais523> (native executables, that is)
06:10:25 <korvo> Yeah, I was going to say something about how the safety of mmap boils down to treating your loader like an interpreter for the resulting memory layout.
06:10:30 <b_jonas> yeah, programs like msword used to just read and write its internal structures into a file and trust them at first, which made sense when people weren't interchanging files as untrusted between computers much, but then later these had to be changed to actually parse and verify those files and covert them to the currently used internal formats.
06:11:21 <ais523> well, it also caused the problem that Word struggled to read files from its own past versions
06:14:25 <b_jonas> these days we have so much CPU power that I generally want to verify everything I can, even if it's from a trusted source, because this can uncover bugs in the program where I had thought that an assumption was correct but it's not
06:15:30 <b_jonas> not verifying data is like a micro-optimization that you should do only when the verifying would be an actual bottleneck
06:16:34 <b_jonas> this is how my programming style works
06:17:55 <ais523> I'm generally in favour of compile-time proofs of that – we have enough CPU power to verify them – so a runtime verification would only be useful to guard against bugs in the compiler
06:18:28 <ais523> but of course, a compiler can't verify that the disk hasn't been tampered with (perhaps accidentally, e.g. due to power failure)
06:19:16 <b_jonas> that works if you aren't linking your program with other compilation units written by your incompetent co-workers that cause undefined behavior eg. by indexing out of arrays too often
06:20:08 <ais523> guarding against UB doesn't really make sense, UB can do anything after all (including making your guards irrelevant)
06:20:23 <b_jonas> yes, it can
06:20:29 <ais523> unless you're doing it at a lower level than the level the compiler works at
06:21:02 <b_jonas> so the compiler may be able to optimize away some of my checks
06:22:02 <b_jonas> yes, the correct solution is to not link to those co-workers' code until they get competent
06:22:19 <ais523> or use a language which would prevent them doing that sort of thig
06:22:21 <ais523> * thing
06:23:02 <ais523> that said, I can't think of many practical languages which are unable to have UB if you try hard enough
06:23:09 <ais523> there are a number of UB-less esolangs, at least
06:23:32 <b_jonas> to be fair this problem was over 12 years ago, we were all young then, me and my coworkers
06:23:48 <b_jonas> and this was in C++
06:25:04 <korvo> b_jonas: IIRC guarding against bad offsets in slices and other substructures was one of the original items in the Moore's Dividend paper.
06:25:13 <b_jonas> they did get more competent later
06:28:45 <esolangs> [[User talk:StavWasPlayZ]] N https://esolangs.org/w/index.php?oldid=178025 * PkmnQ * (+198) Created page with "Where's the cursed esolang? [[User:Meh2]] ([[User talk:Meh2|talk]]) 03:18, 21 March 2026 :Probably [[Codesh_()]] ~~~~"
06:29:38 <esolangs> [[User:StavWasPlayZ]] https://esolangs.org/w/index.php?diff=178026&oldid=178023 * PkmnQ * (-52) Blanked the page
06:47:29 <Sgeo> Oh, I have a convenient FORTRAN II compiler open right now, what UB-esque shenanigans should I try?
06:52:04 -!- impomatic has quit (Quit: Client closed).
06:52:56 <Sgeo> Actually not sure if it's II
06:53:19 <Sgeo> I'll just say 1401 FORTRAN
07:16:55 -!- ais523 has quit (Quit: quit).
07:24:21 <esolangs> [[Special:Log/delete]] delete * Ais523 * deleted "[[User:StavWasPlayZ]]": not a user page, and not created by the relevant user
07:50:23 -!- svm has joined.
07:50:58 -!- msv has quit (Remote host closed the connection).
07:59:16 -!- impomatic has joined.
08:06:01 -!- shikhin_ has joined.
08:06:21 -!- citrons_ has joined.
08:06:54 -!- mynery has joined.
08:09:56 -!- shikhin has quit (Quit: Quittin'.).
08:09:56 -!- shikhin_ has changed nick to shikhin.
08:10:10 -!- AlsoJAA has quit (Remote host closed the connection).
08:10:10 -!- citrons has quit (Remote host closed the connection).
08:14:11 -!- AlsoJAA has joined.
08:28:24 -!- Sgeo has quit (Read error: Connection reset by peer).
08:30:59 -!- joast has quit (*.net *.split).
08:30:59 -!- myname has quit (*.net *.split).
08:34:39 -!- mynery has changed nick to myname.
08:37:23 <esolangs> [[User:Widuruwana/MainPageModernization]] https://esolangs.org/w/index.php?diff=178027&oldid=177981 * Widuruwana * (+269) Fixed the width issue
08:38:28 -!- impomatic has quit (Ping timeout: 240 seconds).
08:40:57 -!- joast has joined.
10:19:14 -!- svm has changed nick to msv.
10:30:44 -!- shikhin_ has joined.
10:33:07 -!- shikhin has quit (Ping timeout: 268 seconds).
10:33:07 -!- shikhin_ has changed nick to shikhin.
11:54:30 -!- lisbeths has quit (Quit: Connection closed for inactivity).
12:17:01 -!- perlbot has quit (Quit: ZNC 1.9.1+deb2+b3 - https://znc.in).
12:17:01 -!- simcop2387 has quit (Quit: ZNC 1.9.1+deb2+b3 - https://znc.in).
12:27:10 -!- perlbot has joined.
12:28:11 -!- simcop2387 has joined.
12:32:25 <esolangs> [[Prints the name of this language]] N https://esolangs.org/w/index.php?oldid=178028 * None1 * (+673) New funny esolang!
12:36:28 <esolangs> [[Prints the name of this language]] M https://esolangs.org/w/index.php?diff=178029&oldid=178028 * 47 * (-6) None, you failed mirably :sob:
12:37:55 <esolangs> [[Prints the name of this language]] M https://esolangs.org/w/index.php?diff=178030&oldid=178029 * 47 * (-1) /* =Self-interpreter that's not a quine */ ok gen forgot about this unnesesary "="
12:41:36 <esolangs> [[User talk:Widuruwana/MainPageModernization]] https://esolangs.org/w/index.php?diff=178031&oldid=178001 * Widuruwana * (+109) reply
12:42:31 <esolangs> [[Prints the name of this language]] M https://esolangs.org/w/index.php?diff=178032&oldid=178030 * PkmnQ * (+2) /* Self-interpreter that's not a quine */ Level 2 -> 3
12:52:04 <esolangs> [[Prints the name of this language]] M https://esolangs.org/w/index.php?diff=178033&oldid=178032 * None1 * (+13)
12:55:56 <esolangs> [[Joke language list]] https://esolangs.org/w/index.php?diff=178034&oldid=177670 * None1 * (+39) /* Example-based languages */
12:57:50 <esolangs> [[User:None1]] M https://esolangs.org/w/index.php?diff=178035&oldid=177998 * None1 * (+57) /* My Esolangs */
12:58:07 <esolangs> [[User:None1]] M https://esolangs.org/w/index.php?diff=178036&oldid=178035 * None1 * (+1) /* My Esolangs */
13:00:37 <esolangs> [[Grass]] https://esolangs.org/w/index.php?diff=178037&oldid=173164 * Tpaefawzen * (-55) /* Examples */ +1
13:02:04 <esolangs> [[Grass]] https://esolangs.org/w/index.php?diff=178038&oldid=178037 * Tpaefawzen * (-298) /* Examples */ +1
13:14:57 <esolangs> [[Grass]] https://esolangs.org/w/index.php?diff=178039&oldid=178038 * Tpaefawzen * (+86) /* Examples */ +1
13:21:32 <esolangs> [[Grass]] https://esolangs.org/w/index.php?diff=178040&oldid=178039 * Tpaefawzen * (-77) /* Examples */ +1
13:46:46 -!- amby has joined.
16:00:11 <esolangs> [[Staccato]] N https://esolangs.org/w/index.php?oldid=178041 * PrySigneToFry * (+3744) Created page with "Note: This article introduces a programming language, not a performance technique. Staccato is a programming language designed by PSTF. It is a concise, stack-based language where every operation is a single character (or short literal) to minimize code length.
16:02:11 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=178042&oldid=178007 * PrySigneToFry * (+15)
16:54:35 <esolangs> [[User talk:Widuruwana/MainPageModernization]] https://esolangs.org/w/index.php?diff=178043&oldid=178031 * Aadenboy * (+319)
17:09:50 -!- ajal has joined.
17:10:03 -!- amby has quit (Ping timeout: 255 seconds).
17:31:12 <esolangs> [[Prints the name of this language]] https://esolangs.org/w/index.php?diff=178044&oldid=178033 * Dragoneater67 * (+417) /* Interpreter */ add more interpreters
17:32:14 <esolangs> [[Prints the name of this language]] M https://esolangs.org/w/index.php?diff=178045&oldid=178044 * Dragoneater67 * (+8) /* Interpreters */
17:47:11 -!- Sgeo has joined.
17:49:36 <esolangs> [[Prints the name of this language]] https://esolangs.org/w/index.php?diff=178046&oldid=178045 * Aadenboy * (+76)
17:50:11 <Sgeo> I can't seem to reach esolang logs
17:50:23 <Sgeo> n/m
17:50:50 <int-e> looks slow, I assume the usual (crawlers)
17:51:19 <Sgeo> I don't think 1401 FORTRAN allows... subroutines or functions written in FORTRAN. It has functions but they have to be written in Autocoder (the term for assembly on 1401)
17:57:30 <Sgeo> "The function name can be comprised of from 4 to 7 alphameric characters (not special characters). The first character must be alphabetic, and the last character must be the letter F. The first character must be X if and only if the value of the function is to be fixed point."
19:51:48 -!- Lord_of_Life has quit (Ping timeout: 246 seconds).
19:51:59 <esolangs> [[Gora]] M https://esolangs.org/w/index.php?diff=178047&oldid=166885 * Ractangle * (-37)
19:53:33 -!- Lord_of_Life has joined.
20:11:18 <Sgeo> The manual and existing 1401 Fortran copies don't match :(
20:35:15 <esolangs> [[User talk:Widuruwana/MainPageModernization]] https://esolangs.org/w/index.php?diff=178048&oldid=178043 * Ais523 * (+836) feedback
21:36:57 <zzo38> Is there the possibility in TLS for a client to send multiple certificate chains to the server (and if not, can a TLS extension be made to support such a thing)? This might be useful with services that allow multiple people to set up things that require authentication, such as IRC channels (and possibly also cloaks) on a IRC server.
22:12:12 -!- ais523 has joined.
22:18:07 -!- ursa-major has quit (Ping timeout: 244 seconds).
22:20:28 -!- ursa-major has joined.
23:30:54 <esolangs> [[Special:Log/newusers]] create * Gozzie * New user account
23:36:12 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178049&oldid=178022 * Gozzie * (+108) /* Introductions */
2026-03-22
02:06:51 -!- ajal has 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).
03:05:04 -!- op_4 has quit (Remote host closed the connection).
03:05:41 -!- op_4 has joined.
03:30:51 -!- shikhin has changed hostmask to ~shikhin@offtopia/offtopian.
04:27:29 -!- lisbeths has joined.
04:58:01 <esolangs> [[User:RaiseAfloppaFan3925]] M https://esolangs.org/w/index.php?diff=178050&oldid=177420 * RaiseAfloppaFan3925 * (-1681)
06:36:42 -!- lisbeths has quit (Quit: Connection closed for inactivity).
07:38:47 -!- ais523 has quit (Quit: quit).
08:27:21 -!- tromp has quit (Ping timeout: 248 seconds).
08:34:22 -!- Sgeo has quit (Read error: Connection reset by peer).
09:19:07 <esolangs> [[Text]] https://esolangs.org/w/index.php?diff=178051&oldid=177140 * PrySigneToFry * (+89)
10:08:00 <esolangs> [[DVector]] https://esolangs.org/w/index.php?diff=178052&oldid=159716 * None1 * (+14) /* See also */
11:16:45 <esolangs> [[Staccato]] https://esolangs.org/w/index.php?diff=178053&oldid=178041 * PrySigneToFry * (-2)
11:17:22 <esolangs> [[Vector]] https://esolangs.org/w/index.php?diff=178054&oldid=158407 * None1 * (+14) /* See also */
11:45:50 <esolangs> [[ ~\\ ^\]] N https://esolangs.org/w/index.php?oldid=178055 * Meh2 * (+429) My first language
11:48:49 <esolangs> [[ ~\\ ^\]] https://esolangs.org/w/index.php?diff=178056&oldid=178055 * Meh2 * (+26)
11:50:27 <esolangs> [[User:Meh2]] https://esolangs.org/w/index.php?diff=178057&oldid=178024 * Meh2 * (+62) /* Esolangs: */
11:54:55 <esolangs> [[ ~\\ ^\]] https://esolangs.org/w/index.php?diff=178058&oldid=178056 * Meh2 * (+23)
12:12:33 -!- DOS_User_webchat has joined.
12:14:19 -!- amby has joined.
12:18:48 <esolangs> [[Special:Log/upload]] upload * Meh2 * uploaded "[[File:Meh. Logo.png]]"
12:19:37 <esolangs> [[User:Meh2]] https://esolangs.org/w/index.php?diff=178060&oldid=178057 * Meh2 * (+55)
12:23:58 <esolangs> [[ ~\\ ^\]] https://esolangs.org/w/index.php?diff=178061&oldid=178058 * Meh2 * (+2)
12:25:53 <esolangs> [[ ~\\ ^\]] https://esolangs.org/w/index.php?diff=178062&oldid=178061 * Meh2 * (+18)
12:39:03 <esolangs> [[User talk:Yoyolin0409]] https://esolangs.org/w/index.php?diff=178063&oldid=177236 * PrySigneToFry * (+60)
12:40:31 -!- DOS_User_webchat has quit (Quit: Client closed).
12:45:24 <esolangs> [[User talk:Meh2]] N https://esolangs.org/w/index.php?oldid=178064 * Meh2 * (+80) Created page with "What? --~~~~"
12:46:14 <esolangs> [[User:Meh2]] https://esolangs.org/w/index.php?diff=178065&oldid=178060 * Meh2 * (+1)
14:41:19 -!- emery has joined.
14:41:20 -!- ehmry has quit (Read error: Connection reset by peer).
14:43:33 -!- emery has quit (Read error: Connection reset by peer).
15:20:27 <esolangs> [[User:Yayimhere/Fak]] N https://esolangs.org/w/index.php?oldid=178066 * Yayimhere2(school) * (+1475) Created page with "{{WIP}} '''Fak''' is an [[Esoteric programming language]] created by [[User:Yayimhere]], which takes ina set of axioms, an ordered list of functions, and an ordered list of atoms, and returns a (potentially) infinite set of atoms, and axioms for ea
16:46:11 -!- Sgeo has joined.
16:55:36 <esolangs> [[User:Yayimhere]] https://esolangs.org/w/index.php?diff=178067&oldid=176863 * Yayimhere2(school) * (+1) /* things about me */
17:10:31 -!- lisbeths has joined.
17:16:08 -!- emery has joined.
18:13:04 <esolangs> [[]] N https://esolangs.org/w/index.php?oldid=178068 * Meh2 * (+707) Created page with " is a programming language with 2 commands created by [[User:Meh2]]. ==Commands== {| class="wikitable sortable" {| class="wikitable" |+ Caption text |- ! Command !! Description |- | + || Increment |- | F || Print the cell's number as ASCII and Set cell's number to 0 |} |} ==Ex
18:19:37 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178069&oldid=178068 * Meh2 * (-5)
18:20:28 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178070&oldid=178069 * Meh2 * (+0)
18:35:08 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178071&oldid=178066 * Yayimhere2(school) * (+1980) /* Syntax */
18:35:20 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178072&oldid=178071 * Yayimhere2(school) * (-1)
18:59:58 <Sgeo> https://en.wikipedia.org/wiki/Short_Code_(computer_language)
19:16:19 <esolangs> [[Special:Log/newusers]] create * CoolJarreb99 * New user account
19:30:15 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178073&oldid=178049 * CoolJarreb99 * (+146) my introduction
19:42:51 -!- lisbeths has quit (Quit: Connection closed for inactivity).
19:51:21 -!- Lord_of_Life_ has joined.
19:52:30 -!- Lord_of_Life has quit (Ping timeout: 255 seconds).
19:54:15 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
22:33:05 -!- joast has quit (Quit: Leaving.).
23:01:22 -!- joast has joined.
2026-03-23
02:04:49 -!- ais523 has joined.
02:46:48 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178074&oldid=178070 * Meh2 * (-1)
02:47:48 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178075&oldid=178074 * Meh2 * (+3) /* Meh. */
02:51:51 <esolangs> [[User:Meh2]] https://esolangs.org/w/index.php?diff=178076&oldid=178065 * Meh2 * (+62) /* Welcome! */
02:57:53 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178077&oldid=178073 * Meh2 * (-66)
03:07:11 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178078&oldid=178075 * Meh2 * (+53)
03:15:09 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178079&oldid=178078 * Meh2 * (+21)
03:22:14 <esolangs> [[ZecZec]] https://esolangs.org/w/index.php?diff=178080&oldid=177871 * BODOKE2801e * (-159) /* Syntax */ thet is legacy
04:09:07 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178081&oldid=178079 * Meh2 * (+39)
04:42:08 -!- amby has quit (Remote host closed the connection).
05:57:41 -!- lisbeths has joined.
06:29:22 -!- emery has quit (Ping timeout: 268 seconds).
06:49:31 -!- Sgeo has quit (Read error: Connection reset by peer).
08:04:06 -!- b_jonas has quit (Ping timeout: 268 seconds).
08:15:48 -!- ais523 has quit (Quit: quit).
08:23:24 -!- ais523 has joined.
08:43:19 -!- emery has joined.
09:05:18 -!- emery has quit (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.).
09:27:33 -!- b_jonas has joined.
09:28:51 -!- ais523 has quit (Quit: quit).
09:50:11 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178082&oldid=178072 * Yayimhere2(school) * (+155) /* Semantics */
09:51:02 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178083&oldid=178082 * Yayimhere2(school) * (+48) /* Examples */
09:51:40 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178084&oldid=178083 * Yayimhere2(school) * (-1) /* Syntax */
09:51:46 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178085&oldid=178084 * Yayimhere2(school) * (+0) /* Examples */
09:53:15 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178086&oldid=178085 * Yayimhere2(school) * (-8) /* Syntax */
09:53:27 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178087&oldid=178086 * Yayimhere2(school) * (+0) /* Syntax */
09:59:25 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178088&oldid=178087 * Yayimhere2(school) * (+0)
10:21:44 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178089&oldid=178088 * Yayimhere2(school) * (+2) /* Examples */
10:24:41 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178090&oldid=178089 * Yayimhere2(school) * (+292) /* Semantics */
10:27:23 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178091&oldid=178090 * Yayimhere2(school) * (+141) /* Semantics */
10:30:11 <esolangs> [[User:Yayimhere/Fak]] https://esolangs.org/w/index.php?diff=178092&oldid=178091 * Yayimhere2(school) * (+51) /* Examples */
10:31:48 -!- lisbeths has quit (Quit: Connection closed for inactivity).
10:32:21 -!- emery has joined.
10:33:27 <esolangs> [[Special:Log/move]] move * Yayimhere2(school) * moved [[User:Yayimhere/Fak]] to [[Fak]]
10:33:41 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178095&oldid=178093 * Yayimhere2(school) * (-8)
10:34:13 <esolangs> [[User:Yayimhere]] https://esolangs.org/w/index.php?diff=178096&oldid=178067 * Yayimhere2(school) * (+30)
10:37:37 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178097&oldid=178095 * Yayimhere2(school) * (+168) /* Examples */
10:46:57 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178098&oldid=178097 * Yayimhere2(school) * (+36) /* Semantics */
10:47:17 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178099&oldid=178098 * Yayimhere2(school) * (+0) /* Semantics */
10:47:41 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178100&oldid=178099 * Yayimhere2(school) * (-4) /* Syntax */
10:47:50 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178101&oldid=178100 * Yayimhere2(school) * (-2) /* Examples */
10:49:28 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178102&oldid=178101 * Yayimhere2(school) * (-6)
10:50:08 -!- Lord_of_Life has quit (*.net *.split).
10:50:08 -!- msv has quit (*.net *.split).
10:50:08 -!- FireFly has quit (*.net *.split).
10:50:08 -!- rodgort has quit (*.net *.split).
10:51:10 -!- Lord_of_Life has joined.
10:51:10 -!- msv has joined.
10:51:10 -!- FireFly has joined.
10:51:10 -!- rodgort has joined.
10:51:34 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178103&oldid=178102 * Yayimhere2(school) * (+6)
11:09:13 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178104&oldid=178103 * Yayimhere2(school) * (+1) /* Examples */
11:10:49 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178105&oldid=178104 * Yayimhere2(school) * (-50) /* Examples */
11:38:56 <esolangs> [[User:CoolJarreb99]] N https://esolangs.org/w/index.php?oldid=178106 * CoolJarreb99 * (+54) Created page with "Hi, I'm CoolJarreb99. I like esolangs. End of sentence"
11:45:42 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178107&oldid=177877 * None1 * (+226) /* Dialects created in 2026 */
12:43:31 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178108&oldid=178018 * Dragoneater67 * (-97) /* XKCD Random Number */
12:45:44 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178109&oldid=178108 * Dragoneater67 * (-169)
12:46:05 <esolangs> [[]] M https://esolangs.org/w/index.php?diff=178110&oldid=178109 * Dragoneater67 * (+0) /* Overview */ fix
14:25:24 <esolangs> [[XKCD Random Number]] https://esolangs.org/w/index.php?diff=178111&oldid=177961 * Dragoneater67 * (+4) /* */
14:28:43 <esolangs> [[Talk:German]] https://esolangs.org/w/index.php?diff=178112&oldid=40539 * CoolJarreb99 * (+210)
14:29:26 <esolangs> [[Talk:German]] M https://esolangs.org/w/index.php?diff=178113&oldid=178112 * CoolJarreb99 * (+49)
15:17:03 <esolangs> [[Place]] https://esolangs.org/w/index.php?diff=178114&oldid=174610 * Qawtykit * (+18)
15:33:47 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178115&oldid=178110 * Dragoneater67 * (+38) /* Examples */
15:33:56 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178116&oldid=178115 * Dragoneater67 * (+13) /* Infinite loop */
15:41:21 <esolangs> [[]] M https://esolangs.org/w/index.php?diff=178117&oldid=178116 * Dragoneater67 * (+17)
15:42:38 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178118&oldid=178117 * Dragoneater67 * (-37) /* Examples */ it has a side effect of taking input :(
16:10:13 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178119&oldid=178105 * Yayimhere2(school) * (+52) /* Examples */
16:27:38 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178120&oldid=178119 * Yayimhere2(school) * (+100) /* Semantics */
16:39:24 -!- DOS_User_webchat has joined.
16:40:31 -!- DOS_User_webchat has quit (Remote host closed the connection).
17:07:56 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178121&oldid=178120 * Yayimhere2(school) * (+0) /* Semantics */
17:18:45 <esolangs> [[Chair]] N https://esolangs.org/w/index.php?oldid=178122 * CoolJarreb99 * (+11851) Created page with "'''Chair''' is a [[joke language list|joke language]] created by CoolJarreb99, where every variable is a chair, and only one variable can be used at a time, variables have to be deconstructed and reconstructed to be read or modified, etc. {{infobox proglang |name=C
17:20:18 <esolangs> [[Chair]] M https://esolangs.org/w/index.php?diff=178123&oldid=178122 * CoolJarreb99 * (+0) minor spelling mistake
17:24:43 <esolangs> [[User:CoolJarreb99]] https://esolangs.org/w/index.php?diff=178124&oldid=178106 * CoolJarreb99 * (+71) added my chair
17:32:25 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178125&oldid=178121 * Yayimhere2(school) * (+89) /* Syntax */
17:34:47 <esolangs> [[Fak]] https://esolangs.org/w/index.php?diff=178126&oldid=178125 * Yayimhere2(school) * (-15) /* Examples */
17:37:50 -!- svm has joined.
17:42:19 -!- msv has quit (Ping timeout: 264 seconds).
18:49:15 <esolangs> [[Chair]] M https://esolangs.org/w/index.php?diff=178127&oldid=178123 * CoolJarreb99 * (+18) formularte
19:52:38 -!- Lord_of_Life_ has joined.
19:53:07 -!- Lord_of_Life has quit (Ping timeout: 264 seconds).
19:55:29 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
20:42:05 <int-e> b_jonas: Maybe latency isn't *totally* irrelevant in shapez 2... it's worthwhile to have a small, low throughput MAM for early levels. My 12 belt crystal MAM takes ~7.5 minutes to switch shapes. And quite a bit of that is pure travel time.
21:05:05 -!- ais523 has joined.
21:12:31 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178128&oldid=178107 * LEOMOK * (+531)
21:15:35 <esolangs> [[ZecZec]] https://esolangs.org/w/index.php?diff=178129&oldid=178080 * BODOKE2801e * (+1) /* Templates */
21:23:17 <esolangs> [[ZecZec]] https://esolangs.org/w/index.php?diff=178130&oldid=178129 * BODOKE2801e * (+47) /* Templates */
21:30:49 <esolangs> [[ZecZec]] https://esolangs.org/w/index.php?diff=178131&oldid=178130 * BODOKE2801e * (+3) /* Syntax */
21:34:22 <esolangs> [[ZecZec]] M https://esolangs.org/w/index.php?diff=178132&oldid=178131 * BODOKE2801e * (-2) /* Syntax */
22:22:56 -!- Sgeo has joined.
22:39:31 -!- svm has changed nick to msv.
23:22:17 -!- msv has quit (Quit: Leaving).
2026-03-24
00:32:58 -!- msv has joined.
01:13:38 <esolangs> [[User:PkmnQ/qoob derivatives]] https://esolangs.org/w/index.php?diff=178133&oldid=163608 * PkmnQ * (+502)
01:24:43 <esolangs> [[User:Tommyaweosme/my 2026 video storage format]] N https://esolangs.org/w/index.php?oldid=178134 * Tommyaweosme * (+1550) Created page with "every value referred to as a "value" will come in the form of a byte representing how many bytes after it represent the value you want, starting at index zero the number "69784", for example, would be 02069784 (2, convert to
02:37:51 -!- ais523 has quit (Quit: quit).
02:51:20 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
02:52:44 -!- Lord_of_Life has joined.
02:56:47 -!- Lord_of_Life has quit (Client Quit).
02:59:52 -!- Lord_of_Life has joined.
03:12:34 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
03:16:07 -!- Lord_of_Life has joined.
03:23:48 <esolangs> [[TritBitJump]] N https://esolangs.org/w/index.php?oldid=178135 * Squidmanescape * (+2619) Watch this crash and burn.
03:26:13 <esolangs> [[TritBitJump]] https://esolangs.org/w/index.php?diff=178136&oldid=178135 * Squidmanescape * (+91) /* Basics */
04:00:06 -!- ais523 has joined.
04:36:44 <esolangs> [[Gur yvsr]] M https://esolangs.org/w/index.php?diff=178137&oldid=172506 * Placeholding * (+0)
04:45:28 <esolangs> [[Gur yvsr]] M https://esolangs.org/w/index.php?diff=178138&oldid=178137 * Placeholding * (+101)
05:39:54 -!- msv has quit (Remote host closed the connection).
05:40:24 -!- msv has joined.
06:05:34 -!- msv has quit (Remote host closed the connection).
06:05:59 -!- msv has joined.
06:07:12 -!- nitrix_ has joined.
06:07:49 -!- nitrix has quit (Ping timeout: 276 seconds).
06:09:22 -!- zzo38 has quit (Ping timeout: 248 seconds).
06:24:44 <esolangs> [[Chair]] M https://esolangs.org/w/index.php?diff=178139&oldid=178127 * CoolJarreb99 * (-28) i read on joke esolangs
06:26:25 <esolangs> [[Chair]] https://esolangs.org/w/index.php?diff=178140&oldid=178139 * Dragoneater67mobile * (+9)
06:27:37 <esolangs> [[Chair]] https://esolangs.org/w/index.php?diff=178141&oldid=178140 * CoolJarreb99 * (-21)
06:29:22 <esolangs> [[Language list]] M https://esolangs.org/w/index.php?diff=178142&oldid=178042 * CoolJarreb99 * (+12) /* C */
06:30:26 -!- Sgeo has quit (Read error: Connection reset by peer).
06:31:20 <esolangs> [[Chair]] M https://esolangs.org/w/index.php?diff=178143&oldid=178141 * Dragoneater67mobile * (+10) /* Hello World */
06:32:48 <esolangs> [[Chair]] https://esolangs.org/w/index.php?diff=178144&oldid=178143 * Dragoneater67mobile * (-1) is this what you meant?
06:57:19 <esolangs> [[Talk:Black Pentagon]] N https://esolangs.org/w/index.php?oldid=178145 * CoolJarreb99 * (+236) Created page with "This is genuinely what got me into esolangs, best language Ive ever seen. I think its now my mission to write an interpreter for this. ~~~~"
07:03:45 <esolangs> [[TritBitJump]] https://esolangs.org/w/index.php?diff=178146&oldid=178136 * Squidmanescape * (+760)
07:29:26 -!- msv has quit (Remote host closed the connection).
07:31:18 -!- msv has joined.
07:31:34 -!- msv has quit (Remote host closed the connection).
07:31:52 -!- ais523 has quit (Quit: quit).
07:31:58 -!- msv has joined.
08:02:35 <esolangs> [[Special:Log/newusers]] create * KamilMalicki * New user account
08:08:37 <esolangs> [[Amber]] https://esolangs.org/w/index.php?diff=178147&oldid=176830 * Yayimhere2(school) * (+22) /* Matches */
08:09:22 <esolangs> [[Amber]] https://esolangs.org/w/index.php?diff=178148&oldid=178147 * Yayimhere2(school) * (-22) /* Matches */
08:25:16 <esolangs> [[Amber]] https://esolangs.org/w/index.php?diff=178149&oldid=178148 * Yayimhere2(school) * (-1) /* Types */
08:33:11 <esolangs> [[Amber]] https://esolangs.org/w/index.php?diff=178150&oldid=178149 * Yayimhere2(school) * (+69) /* Types */
08:39:31 <esolangs> [[Amber]] https://esolangs.org/w/index.php?diff=178151&oldid=178150 * Yayimhere2(school) * (+147) /* Types */
08:40:01 <esolangs> [[Amber]] https://esolangs.org/w/index.php?diff=178152&oldid=178151 * Yayimhere2(school) * (+3) /* Builtins */
08:51:45 -!- DOS_User_webchat has joined.
08:54:52 -!- DOS_User_webchat has quit (Client Quit).
09:09:16 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
09:27:48 -!- awab-ml has joined.
09:35:29 -!- awab-ml has changed hostmask to ~awab-ml@user/awab-ml.
09:40:23 -!- awab-ml has quit (Quit: Leaving).
09:53:12 -!- Lord_of_Life has joined.
09:53:58 <esolangs> [[]] M https://esolangs.org/w/index.php?diff=178153&oldid=178118 * Dragoneater67 * (+35) better wording
10:21:38 <esolangs> [[Chair]] M https://esolangs.org/w/index.php?diff=178154&oldid=178144 * CoolJarreb99 * (+15) phrasing
10:32:54 <esolangs> [[]] M https://esolangs.org/w/index.php?diff=178155&oldid=178153 * Dragoneater67 * (+0)
10:34:34 <esolangs> [[Chair]] https://esolangs.org/w/index.php?diff=178156&oldid=178154 * CoolJarreb99 * (-167) changed my mind
11:13:43 <esolangs> [[User talk:Yoyolin0409]] https://esolangs.org/w/index.php?diff=178157&oldid=178063 * Yoyolin0409 * (+10) /* */
11:15:04 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178158&oldid=177795 * Yoyolin0409 * (-35) /* By Qazwsxplm */
11:16:27 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178159&oldid=178158 * Yoyolin0409 * (+42) /* math */
11:16:43 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178160&oldid=178159 * Yoyolin0409 * (+0) /* math */
11:21:21 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178161&oldid=178160 * Yoyolin0409 * (+98) /* By Qazwsxplm */
11:21:55 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178162&oldid=178161 * Yoyolin0409 * (+0) /* By Qazwsxplm */
11:23:47 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178163&oldid=178162 * Yoyolin0409 * (+51) /* misc */
11:24:33 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178164&oldid=178163 * Yoyolin0409 * (+9) /* misc */
11:25:52 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178165&oldid=178164 * Yoyolin0409 * (+106) /* Syntax */
11:26:32 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178166&oldid=178165 * Yoyolin0409 * (+5) /* CT interpreter */
11:28:29 <esolangs> [[User:Dragoneater67]] https://esolangs.org/w/index.php?diff=178167&oldid=177899 * Dragoneater67 * (+295)
11:28:52 <esolangs> [[User:Dragoneater67]] M https://esolangs.org/w/index.php?diff=178168&oldid=178167 * Dragoneater67 * (+17) /* owange :3c */
11:31:05 <esolangs> [[Guess]] https://esolangs.org/w/index.php?diff=178169&oldid=160096 * Yoyolin0409 * (+94) /* Programs */
11:31:21 <esolangs> [[User:Dragoneater67]] https://esolangs.org/w/index.php?diff=178170&oldid=178168 * Dragoneater67 * (+75)
11:36:39 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178171&oldid=173583 * Yoyolin0409 * (+98) /* Commands */
11:39:17 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178172&oldid=178171 * Yoyolin0409 * (+122) /* Commands */
11:41:00 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178173&oldid=178172 * Yoyolin0409 * (+71) /* Commands */
11:41:12 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178174&oldid=178173 * Yoyolin0409 * (+0) /* Commands */
11:41:44 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178175&oldid=178174 * Yoyolin0409 * (+43) /* Examples */
11:42:16 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178176&oldid=178175 * Yoyolin0409 * (+27) /* nop */
11:42:57 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178177&oldid=178176 * Yoyolin0409 * (+24)
11:48:14 <esolangs> [[Guess]] https://esolangs.org/w/index.php?diff=178178&oldid=178169 * Yoyolin0409 * (+1) /* = Program 10: 99 bottles of beer (Using No as 0) (asked for by User:Yoyolin0409) */
11:51:31 <esolangs> [[User talk:User:Main page/w/wiki/User:NotPrySigneToFry/what]] https://esolangs.org/w/index.php?diff=178179&oldid=175437 * Yoyolin0409 * (+86) /* Commands */
11:58:38 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178180&oldid=167442 * Yoyolin0409 * (+110)
11:58:47 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178181&oldid=178180 * Yoyolin0409 * (+1)
12:12:06 <esolangs> [[Guesslang]] N https://esolangs.org/w/index.php?oldid=178182 * Yoyolin0409 * (+888) Created page with "Inspired by [[Guess]]'s other Esolang, by [[User:Yoyolin0409]] ==Rule== Here are a few examples to help you guess the usage and syntax of everything ==Example== ===[[Hello, world!]]=== io: nil "Hello, world!" ==Guess Area== Guess Example: ===[[User:YourU
12:12:18 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178183&oldid=178182 * Yoyolin0409 * (+0) /* Reply */
12:18:32 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178184&oldid=178183 * Yoyolin0409 * (+397) /* Example */
12:18:42 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178185&oldid=178184 * Yoyolin0409 * (+1) /* 99 bottles of beer */
12:21:10 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178186&oldid=178185 * Yoyolin0409 * (-19) /* 99 bottles of beer */
12:21:46 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178187&oldid=178186 * Yoyolin0409 * (+42) /* Reply */
12:22:00 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178188&oldid=178181 * Dragoneater67 * (-61) removed forgery
12:22:08 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178189&oldid=178187 * Yoyolin0409 * (-7) /* Reply */
12:22:48 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178190&oldid=178189 * Yoyolin0409 * (+25)
12:23:30 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178191&oldid=178190 * Yoyolin0409 * (-20) /* 99 bottles of beer */
12:24:16 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178192&oldid=178191 * Yoyolin0409 * (+105) /* Rule */
12:26:51 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178193&oldid=178192 * Yoyolin0409 * (+62) /* Example */
12:27:00 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178194&oldid=178193 * Dragoneater67 * (+322) /* Guess Area */
12:32:42 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178195&oldid=178194 * Yoyolin0409 * (+84) /* Example */
12:34:24 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178196&oldid=178195 * Yoyolin0409 * (+68) /* Example */
12:37:36 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178197&oldid=178196 * Yoyolin0409 * (-1) /* Factorials */
12:38:55 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178198&oldid=178197 * Yoyolin0409 * (+52) /* User:Dragoneater67 */
12:39:47 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178199&oldid=178198 * Yoyolin0409 * (+19) /* User:Dragoneater67 */
12:40:04 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178200&oldid=178199 * Yoyolin0409 * (+2) /* Reply */
12:40:42 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178201&oldid=178200 * Yoyolin0409 * (-8) /* User:Dragoneater67 */
12:40:57 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178202&oldid=178201 * Yoyolin0409 * (+11) /* Reply */
12:47:22 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178203&oldid=178202 * Dragoneater67 * (+281) /* User:Dragoneater67 */
12:55:26 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178204&oldid=178203 * Yoyolin0409 * (-7)
12:56:05 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178205&oldid=178177 * Dragoneater67 * (+30) /* Examples */
13:07:46 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178206&oldid=178204 * Yoyolin0409 * (+163) /* Example */
13:09:07 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178207&oldid=178206 * Yoyolin0409 * (+20) /* Fibonacci sequence */
13:09:55 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178208&oldid=178207 * Yoyolin0409 * (+12) /* Quine */
13:11:56 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178209&oldid=178208 * Yoyolin0409 * (+10) /* Sieve of Eratosthenes */
13:14:56 <esolangs> [[Befreege]] https://esolangs.org/w/index.php?diff=178210&oldid=167641 * Yoyolin0409 * (+119) /* Addition by PSTF */
13:16:55 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178211&oldid=178209 * Yoyolin0409 * (+11) /* Example */
13:17:13 -!- svm has joined.
13:17:29 <esolangs> [[Guesslang]] https://esolangs.org/w/index.php?diff=178212&oldid=178211 * Yoyolin0409 * (+13) /* Reply */
13:19:16 <esolangs> [[Befreege]] https://esolangs.org/w/index.php?diff=178213&oldid=178210 * Dragoneater67 * (+207) /* Addition by PSTF */
13:19:53 <esolangs> [[User talk:Dragoneater67]] https://esolangs.org/w/index.php?diff=178214&oldid=176704 * Yoyolin0409 * (+116)
13:20:31 <esolangs> [[User talk:Dragoneater67]] https://esolangs.org/w/index.php?diff=178215&oldid=178214 * Yoyolin0409 * (-11) /* Reply about Guesslang */
13:21:09 -!- msv has quit (Ping timeout: 245 seconds).
13:46:01 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178216&oldid=178205 * PrySigneToFry * (+48)
13:48:25 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178217&oldid=178188 * PrySigneToFry * (+283)
13:50:34 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178218&oldid=178216 * PrySigneToFry * (+38)
14:04:36 <esolangs> [[Final Word Of The Day]] https://esolangs.org/w/index.php?diff=178219&oldid=176924 * Yayimhere2(school) * (-41) /* Properties */
14:24:24 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
14:28:04 -!- Lord_of_Life has joined.
14:32:28 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
14:52:44 -!- Lord_of_Life has joined.
14:56:43 -!- Lord_of_Life has quit (Client Quit).
15:13:20 <esolangs> [[User:Yayimhere/Cyclic quine lang]] N https://esolangs.org/w/index.php?oldid=178220 * Yayimhere2(school) * (+158) Created page with " program: f([x,,d]) output: [x+d,,x] program: f([x,,y]) output: [x-1,,y] program: f([y,,y]) output: [x,,d] f is the evaluation function"
15:22:03 -!- Lord_of_Life has joined.
15:23:40 <esolangs> [[User:Yayimhere/Cyclic quine lang]] https://esolangs.org/w/index.php?diff=178221&oldid=178220 * Yayimhere2(school) * (+154)
15:24:09 -!- Lord_of_Life has quit (Excess Flood).
15:28:34 -!- amby has joined.
15:30:16 -!- Lord_of_Life has joined.
15:31:49 -!- Lord_of_Life has quit (Excess Flood).
15:50:02 -!- nitrix_ has changed nick to nitrix.
15:55:33 -!- Lord_of_Life has joined.
16:00:12 -!- Lord_of_Life has quit (Excess Flood).
16:01:55 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=178222&oldid=178142 * EsolangerII * (+17) /* T */
16:22:12 -!- Lord_of_Life has joined.
16:24:52 -!- Lord_of_Life has quit (Excess Flood).
16:26:40 <esolangs> [[ToFunction]] N https://esolangs.org/w/index.php?oldid=178223 * EsolangerII * (+623) Created page with "ToFunction is a programming language that uses only two commands and only uses a string variable type by [[EsolangerII]] ==Syntax== There are only two syntax in ToFunction. ===Function=== It starts with a "define". and needed a function. define x => x The Firs
16:30:16 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=178224&oldid=178222 * EsolangerII * (+0) /* T */
16:35:52 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178225&oldid=177631 * EsolangerII * (+75)
16:36:50 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178226&oldid=178223 * EsolangerII * (+5)
16:38:17 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178227&oldid=178225 * EsolangerII * (+48)
16:40:55 <esolangs> [[One Command Programming Language(OCPL)]] https://esolangs.org/w/index.php?diff=178228&oldid=177635 * EsolangerII * (+11)
16:43:20 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178229&oldid=178226 * Yayimhere2(school) * (+9) pretty much fully underspecified. {stub}
16:44:26 -!- zzo38 has joined.
16:46:09 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178230&oldid=178227 * EsolangerII * (+91)
16:52:22 -!- Lord_of_Life has joined.
16:55:02 -!- Lord_of_Life has quit (Excess Flood).
17:04:16 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178231&oldid=178229 * EsolangerII * (+580)
17:09:57 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178232&oldid=178231 * EsolangerII * (+55)
17:11:54 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178233&oldid=178232 * EsolangerII * (+64)
17:23:24 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178234&oldid=178233 * EsolangerII * (+88)
17:25:51 -!- Lord_of_Life has joined.
17:29:57 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178235&oldid=178234 * Yayimhere2(school) * (+9) its still very not specified
17:30:05 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178236&oldid=178235 * EsolangerII * (+278)
17:30:12 -!- Lord_of_Life has quit (Read error: Connection reset by peer).
17:30:37 -!- Lord_of_Life_ has joined.
17:33:41 -!- Lord_of_Life_ has quit (Excess Flood).
17:38:46 <esolangs> [[User talk:Yayimhere2(school)]] https://esolangs.org/w/index.php?diff=178237&oldid=172378 * EsolangerII * (+132)
17:39:25 <esolangs> [[User talk:Yayimhere2(school)]] https://esolangs.org/w/index.php?diff=178238&oldid=178237 * EsolangerII * (+20)
17:39:36 <esolangs> [[User talk:Yayimhere2(school)]] M https://esolangs.org/w/index.php?diff=178239&oldid=178238 * EsolangerII * (+1)
17:39:54 -!- svm has quit (Ping timeout: 245 seconds).
17:42:29 <esolangs> [[User talk:Yayimhere2(school)]] https://esolangs.org/w/index.php?diff=178240&oldid=178239 * Yayimhere2(school) * (+144)
17:43:12 -!- tromp has joined.
17:43:16 <esolangs> [[User talk:Yayimhere2(school)]] https://esolangs.org/w/index.php?diff=178241&oldid=178240 * Yayimhere2(school) * (-3666) Replaced content with "{{#REDIRECT: [[User talk:Yayimhere]]}}"
17:43:59 <esolangs> [[User talk:Yayimhere2(school)]] https://esolangs.org/w/index.php?diff=178242&oldid=178241 * Yayimhere2(school) * (-5) Redirected page to [[User talk:Yayimhere]]
17:44:11 <esolangs> [[User talk:Yayimhere]] https://esolangs.org/w/index.php?diff=178243&oldid=176206 * Yayimhere2(school) * (+3706)
17:44:29 <esolangs> [[User talk:Yayimhere]] https://esolangs.org/w/index.php?diff=178244&oldid=178243 * Yayimhere2(school) * (+1) /* i always see you in the school account */
17:44:35 -!- Lord_of_Life has joined.
17:44:37 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178245&oldid=178236 * EsolangerII * (+19)
17:44:51 -!- msv has joined.
17:47:39 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178246&oldid=178245 * EsolangerII * (+24)
17:47:51 -!- Lord_of_Life has quit (Excess Flood).
17:52:15 <esolangs> [[User talk:EsolangerII]] https://esolangs.org/w/index.php?diff=178247&oldid=177633 * EsolangerII * (+78)
17:55:30 -!- msv has quit (Ping timeout: 255 seconds).
17:56:07 -!- msv has joined.
18:04:17 -!- msv has quit (Ping timeout: 244 seconds).
18:12:56 -!- Lord_of_Life has joined.
18:15:05 -!- Lord_of_Life has quit (Excess Flood).
18:18:48 -!- Lord_of_Life has joined.
18:22:46 -!- msv has joined.
18:45:14 <esolangs> [[User:Squidmanescape]] https://esolangs.org/w/index.php?diff=178248&oldid=139531 * Squidmanescape * (+198) /* My Languages */
18:50:43 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178249&oldid=178230 * EsolangerII * (+33)
19:20:08 -!- somefan has joined.
19:20:47 <somefan> hello
19:33:16 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178250&oldid=178246 * EsolangerII * (+1913) Fixed mistake + new syntax to break infinite loop
19:52:18 -!- Lord_of_Life has quit (Ping timeout: 248 seconds).
19:53:20 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178251&oldid=178217 * LEOMOK * (+928)
19:54:14 -!- Lord_of_Life has joined.
19:55:30 -!- Lord_of_Life has quit (Excess Flood).
19:59:10 -!- Lord_of_Life has joined.
20:00:33 -!- Lord_of_Life has quit (Excess Flood).
20:01:11 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178252&oldid=178250 * EsolangerII * (+1) /* addition */
20:01:25 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178253&oldid=178252 * EsolangerII * (+1) /* multiplication */
20:08:07 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178254&oldid=178253 * EsolangerII * (+0) /* multiplication */
20:13:27 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178255&oldid=178254 * EsolangerII * (+32) /* addition */
20:18:26 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178256&oldid=178255 * EsolangerII * (+1) /* multiplication */ Fixed minor bugs
20:19:04 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178257&oldid=178256 * EsolangerII * (+0) /* multiplication */
20:22:49 -!- Lord_of_Life has joined.
20:26:01 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178258&oldid=178257 * Yayimhere2(school) * (-101) /* Function */
20:28:26 -!- Lord_of_Life has quit (Ping timeout: 244 seconds).
20:29:28 -!- Lord_of_Life has joined.
20:30:59 -!- lynndotpy6093627 has quit (Quit: bye bye).
20:32:07 -!- lynndotpy6093627 has joined.
20:32:10 -!- Lord_of_Life has quit (Excess Flood).
20:34:44 -!- Lord_of_Life has joined.
20:55:29 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178259&oldid=178258 * EsolangerII * (-47)
20:57:05 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178260&oldid=178249 * EsolangerII * (+4)
21:28:03 <esolangs> [[Bruzzet]] https://esolangs.org/w/index.php?diff=178261&oldid=171200 * DanielE * (+847)
21:32:51 <esolangs> [[Bruzzet]] M https://esolangs.org/w/index.php?diff=178262&oldid=178261 * DanielE * (+88)
22:52:14 -!- Sgeo has joined.
23:15:33 -!- ais523 has joined.
23:38:57 -!- somefan has quit (Ping timeout: 245 seconds).
23:46:10 -!- somefan has joined.
2026-03-25
00:47:37 -!- tromp has quit (Ping timeout: 248 seconds).
00:48:04 -!- somefan has quit (Remote host closed the connection).
00:48:14 -!- somefan has joined.
00:48:30 -!- somefan has quit (Remote host closed the connection).
01:12:50 -!- somefan has joined.
01:34:32 -!- amby has quit (Remote host closed the connection).
01:54:58 -!- somefan has quit (Quit: i quit).
02:18:49 -!- shachaf has quit (Ping timeout: 248 seconds).
02:18:58 -!- shachaf has joined.
02:37:00 -!- msv has quit (Read error: Connection reset by peer).
02:37:18 -!- msv has joined.
03:33:03 <esolangs> [[@ complete]] https://esolangs.org/w/index.php?diff=178263&oldid=173002 * Tux1 * (+252) why the fuck did you do that
04:18:23 <esolangs> [[User:Corbin/Spring cleaning]] N https://esolangs.org/w/index.php?oldid=178264 * Corbin * (+1088) Created page with "I'd like to make the following recommendations. * Delete [[language list]]. Remove mentions of it from [[esolang:policy]], [[esolang:help]], and any other pages that recommend it. * Delete [[@ complete]], [[Aweosme-complete]], [[C-complete]], [[Conce
04:18:58 <korvo> ^^^ I am once again politely asking that many junk pages, as well as [[language list]], be deleted.
04:21:31 -!- Guest50 has joined.
04:30:52 -!- Guest50 has quit (Quit: Client closed).
04:34:39 -!- somefan has joined.
04:39:20 -!- somefan has quit (Client Quit).
04:47:27 <esolangs> [[@ complete]] https://esolangs.org/w/index.php?diff=178265&oldid=178263 * Yayimhere2(school) * (-252) Undo revision [[Special:Diff/178263|178263]] by [[Special:Contributions/Tux1|Tux1]] ([[User talk:Tux1|talk]]) I deleted it because its not a very good concept. note that I am the one who made the original article.
04:49:31 <esolangs> [[User talk:Corbin/Spring cleaning]] N https://esolangs.org/w/index.php?oldid=178266 * Blashyrkh * (+193) Created page with "+1. I'd ban constant languages too, as well as majority of joke languages. But probably I'm too radical. --~~~~"
04:51:36 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178267&oldid=178266 * Yayimhere2(school) * (+247)
05:23:57 <esolangs> [[User talk:Corbin/Spring cleaning]] M https://esolangs.org/w/index.php?diff=178268&oldid=178267 * Somefan * (+412) blank pages, too
06:19:41 -!- moony has quit (Quit: leaving).
06:20:03 -!- Bowserinator has quit (Quit: Blame iczero something happened).
06:20:03 -!- iovoid has quit (Quit: iovoid has quit!).
06:20:37 -!- Bowserinator has joined.
06:23:14 -!- moony has joined.
06:25:57 -!- iovoid has joined.
06:26:32 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
06:29:34 -!- Lord_of_Life has joined.
06:36:44 <esolangs> [[Shape-complete]] M https://esolangs.org/w/index.php?diff=178269&oldid=135033 * Ractangle * (-143)
06:57:51 -!- Sgeo has quit (Read error: Connection reset by peer).
07:02:46 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178270&oldid=178268 * Dragoneater67 * (+342)
07:16:05 <esolangs> [[User:Dragoneater67/issue]] https://esolangs.org/w/index.php?diff=178271&oldid=176049 * Dragoneater67 * (-288) Replaced content with "{{Delete|useless}}"
07:16:35 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178272&oldid=176012 * Dragoneater67 * (-2019) Replaced content with "{{Delete|dead}}"
07:17:03 <esolangs> [[User:Dragoneater67]] https://esolangs.org/w/index.php?diff=178273&oldid=178170 * Dragoneater67 * (-71) /* but really... */
07:22:28 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178274&oldid=178270 * Dragoneater67 * (+339)
07:23:05 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178275&oldid=178274 * Dragoneater67 * (+1)
07:31:56 <esolangs> [[User:Dragoneater67/*$@(^$)! solver]] https://esolangs.org/w/index.php?diff=178276&oldid=176376 * Dragoneater67 * (-2081) Replaced content with "{{Delete}}"
07:32:17 <esolangs> [[User:Dragoneater67/*$(^$)! solver]] https://esolangs.org/w/index.php?diff=178277&oldid=176377 * Dragoneater67 * (-38) Removed redirect to [[User:Dragoneater67/*$@(^$)! solver]]
07:32:28 <esolangs> [[User:Dragoneater67/monobook.js(deleteme)]] https://esolangs.org/w/index.php?diff=178278&oldid=173898 * Dragoneater67 * (-17)
07:32:40 <esolangs> [[User:Dragoneater67/monobook.js]] https://esolangs.org/w/index.php?diff=178279&oldid=176364 * Dragoneater67 * (+10)
07:36:50 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178280&oldid=177296 * Dragoneater67 * (-835) Replaced content with "{{Delete|dead}}"
07:37:04 <esolangs> [[User:Dragoneater67]] https://esolangs.org/w/index.php?diff=178281&oldid=178273 * Dragoneater67 * (-70)
08:28:47 <esolangs> [[User talk:Yayimhere]] https://esolangs.org/w/index.php?diff=178282&oldid=178244 * Dragoneater67 * (+345) /* Bring to another appears twice on your list! */ new section
08:49:38 <esolangs> [[Pathana]] https://esolangs.org/w/index.php?diff=178283&oldid=139534 * Dragoneater67 * (+56) /* Turing-Complete */
08:49:54 <esolangs> [[Pathana]] M https://esolangs.org/w/index.php?diff=178284&oldid=178283 * Dragoneater67 * (+0) /* Computational class */
09:34:02 -!- tromp has joined.
09:43:25 <esolangs> [[NANDNZ]] N https://esolangs.org/w/index.php?oldid=178285 * Dragoneater67 * (+1632) Created page with "'''NANDNZ''' is an [[OISC]] inspired by [[Subleq]]. == Overview == NANDNZ takes 3 arguments: A B C It NANDs values at <code>A</code> and <code>B</code>, stores the result in <code>A</code>, then jumps to <code>C</code> if the result is not 0, otherwise, it proceed
09:44:15 <esolangs> [[NANDNZ]] M https://esolangs.org/w/index.php?diff=178286&oldid=178285 * Dragoneater67 * (+0)
09:44:42 -!- Lord_of_Life has quit (Excess Flood).
10:04:24 -!- Lord_of_Life has joined.
10:10:30 <esolangs> [[User talk:Yayimhere]] https://esolangs.org/w/index.php?diff=178287&oldid=178282 * Yayimhere2(school) * (+181) /* Bring to another appears twice on your list! */
10:10:50 <esolangs> [[User:Yayimhere]] https://esolangs.org/w/index.php?diff=178288&oldid=178096 * Yayimhere2(school) * (-67) /* esolangs */
11:03:12 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178289&oldid=178155 * Dragoneater67 * (+117) better wording & formatting
11:04:09 -!- tromp has quit (Read error: Connection reset by peer).
12:18:49 <esolangs> [[Il]] N https://esolangs.org/w/index.php?oldid=178290 * Meh2 * (+741) Created page with "Il is like [[Il]], but outputs it and made by [[User:Meh2]]. ===Commands=== {| class="wikitable sortable" |+ Caption text |- ! Command !! Description |- | I || Increment |- | l || Decrement |- | || Output |} ==Examples== ===Hello, World!=== <pre> IIIIIIIIIIIIIIIIIIIIIIII
12:19:21 <esolangs> [[@ complete]] https://esolangs.org/w/index.php?diff=178291&oldid=178265 * Dragoneater67 * (+16)
12:19:54 <esolangs> [[Il]] https://esolangs.org/w/index.php?diff=178292&oldid=178290 * Meh2 * (+0)
12:21:27 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178293&oldid=178251 * PrySigneToFry * (+174)
12:22:09 <esolangs> [[User guessed]] https://esolangs.org/w/index.php?diff=178294&oldid=178218 * PrySigneToFry * (+0)
12:22:24 <esolangs> [[User:Meh2]] https://esolangs.org/w/index.php?diff=178295&oldid=178076 * Meh2 * (+53)
12:26:32 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178296&oldid=178259 * EsolangerII * (+93)
12:41:30 <esolangs> [[Malbolge programming]] M https://esolangs.org/w/index.php?diff=178297&oldid=65586 * Dragoneater67 * (+3) /* Putting all together */
12:58:35 -!- tromp has joined.
13:42:08 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178298&oldid=178275 * Aadenboy * (+620)
14:33:09 <esolangs> [[%^&78]] https://esolangs.org/w/index.php?diff=178299&oldid=175902 * Yoyolin0409 * (+19)
14:41:03 <esolangs> [[Https://esolangs.org]] https://esolangs.org/w/index.php?diff=178300&oldid=177886 * Yoyolin0409 * (+10) /* Instructions */
14:43:09 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178301&oldid=177720 * Yoyolin0409 * (+15) /* Data */
14:44:25 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178302&oldid=178301 * Yoyolin0409 * (+10) /* Hello, World! */
14:52:57 <esolangs> [[Wiki/wiki/wiki/wiki/wiki/wiki/]] https://esolangs.org/w/index.php?diff=178303&oldid=173631 * Yoyolin0409 * (+0) /* HQ9+ Interpreter */
15:13:21 <esolangs> [[Wiki/wiki/wiki/wiki/wiki/wiki/]] https://esolangs.org/w/index.php?diff=178304&oldid=178303 * Aadenboy * (+85) see also
15:13:43 <esolangs> [[Esolangs]] https://esolangs.org/w/index.php?diff=178305&oldid=177892 * Aadenboy * (+37) /* See also */ add [[Wiki/wiki/wiki/wiki/wiki/wiki/]]
15:14:01 <esolangs> [[Esolangs.org]] https://esolangs.org/w/index.php?diff=178306&oldid=177890 * Aadenboy * (+37) /* See also */ add [[Wiki/wiki/wiki/wiki/wiki/wiki/]]
15:14:17 <esolangs> [[Https://esolangs.org]] https://esolangs.org/w/index.php?diff=178307&oldid=178300 * Aadenboy * (+37) /* See also */ add [[Wiki/wiki/wiki/wiki/wiki/wiki/]]
15:25:46 <esolangs> [[User:Aadenboy/wikipiss]] https://esolangs.org/w/index.php?diff=178308&oldid=169688 * Aadenboy * (+432) more shiz
15:50:51 <esolangs> [[User talk:Aadenboy/wikipiss]] N https://esolangs.org/w/index.php?oldid=178309 * Yayimhere2(school) * (+128) Created page with "I love this! --~~~~"
16:11:56 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178310&oldid=178298 * Corbin * (+344)
16:51:12 <esolangs> [[Special:Log/newusers]] create * Esolang lover123 * New user account
16:51:48 -!- Lord_of_Life has quit (Remote host closed the connection).
16:56:00 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178311&oldid=178296 * EsolangerII * (+81) /* Looper */
16:56:20 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178312&oldid=178311 * EsolangerII * (-88) /* addition */
16:56:35 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178313&oldid=178312 * EsolangerII * (+8) /* Looper */
16:57:22 -!- Lord_of_Life has joined.
17:02:12 -!- Lord_of_Life has quit (Ping timeout: 256 seconds).
17:06:10 <esolangs> [[CollaborativePL]] https://esolangs.org/w/index.php?diff=178314&oldid=178293 * LEOMOK * (+557)
17:08:28 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178315&oldid=178313 * EsolangerII * (+2442)
17:21:10 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178316&oldid=178077 * Esolang lover123 * (+187)
17:37:54 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178317&oldid=178310 * Aadenboy * (+465)
17:38:23 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178318&oldid=178317 * Aadenboy * (+61)
17:42:23 -!- Lord_of_Life has joined.
17:42:48 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178319&oldid=178315 * EsolangerII * (-85)
17:43:08 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178320&oldid=178319 * EsolangerII * (-20) /* reverser(bin) */
17:44:52 -!- Lord_of_Life has quit (Excess Flood).
17:50:25 -!- Lord_of_Life has joined.
17:51:09 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178321&oldid=178320 * Aadenboy * (-14) /* Looper */ golfed if I understand this correctly
17:53:04 -!- Lord_of_Life has quit (Excess Flood).
17:56:25 -!- Lord_of_Life has joined.
17:58:47 -!- Lord_of_Life has quit (Excess Flood).
17:59:35 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178322&oldid=178321 * EsolangerII * (+1) /* Python */
18:03:18 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178323&oldid=178322 * EsolangerII * (+28) /* Looper */ yep. thats true
18:06:34 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178324&oldid=178260 * EsolangerII * (-152)
18:08:28 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178325&oldid=178323 * EsolangerII * (+178)
18:12:49 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178326&oldid=178325 * EsolangerII * (+248) /* Examples */
18:13:55 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178327&oldid=178326 * EsolangerII * (-1) /* Examples */
18:19:13 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178328&oldid=178327 * EsolangerII * (+0) /* Examples */
18:22:26 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178329&oldid=178328 * EsolangerII * (+63) Categorized
18:25:22 <esolangs> [[Triple-U]] N https://esolangs.org/w/index.php?oldid=178330 * LEOMOK * (+2522) Created page with "'''Triple-U''' is a programming language which uses only three characters: <code>u</code>, <code>w</code> (double <code>u</code>) and (triple <code>u</code>). == Overview == Triple-U operates on an infinite tape of data strings, each starting empty. There is also a
18:28:45 -!- Lord_of_Life has joined.
18:30:08 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178331&oldid=178329 * EsolangerII * (+21) /* Reverser(bin) */
18:31:50 -!- Lord_of_Life has quit (Excess Flood).
18:36:36 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178332&oldid=178331 * EsolangerII * (-361) /* Reverser(bin) */ there is error
18:48:05 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178333&oldid=178332 * EsolangerII * (-1875) /* Interpreters/Compilers */
18:48:15 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178334&oldid=178333 * EsolangerII * (+1) /* Interpreters/Compilers */
19:00:54 -!- Lord_of_Life has joined.
19:09:05 <esolangs> [[User:Salpynx/Going to Zagreb to buy a pony]] M https://esolangs.org/w/index.php?diff=178335&oldid=145061 * Salpynx * (-61) /* Syntax */
19:17:33 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
19:18:36 -!- Lord_of_Life has joined.
19:34:39 -!- somefan has joined.
19:37:31 -!- Lord_of_Life has quit (Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine).
20:02:29 -!- svm has joined.
20:04:54 -!- msv has quit (Ping timeout: 245 seconds).
20:11:04 <esolangs> [[User:/esolangs?action=edit]] https://esolangs.org/w/index.php?diff=178336&oldid=174378 * * (+178)
20:14:15 <esolangs> [[Yesno]] N https://esolangs.org/w/index.php?oldid=178337 * * (+273) Created page with "{{Stub}} '''Yesno''' is an esolang made by [[User:]]. == Commands == {{cd|Yes}}: Adds, and goes to the next item if this item was smaller than 0 {{cd|No}}: Subtracts, and goes to the previous item if this item was smaller than 0 [[Category:Languages]] [[Category:2026]]"
20:14:45 <esolangs> [[User:/esolangs]] https://esolangs.org/w/index.php?diff=178338&oldid=172303 * * (+11) Added Yesno
20:17:34 -!- Lord_of_Life has joined.
20:21:03 -!- Lord_of_Life has quit (Excess Flood).
20:23:34 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178339&oldid=178334 * Aadenboy * (+126) implement in Lua
20:23:57 <esolangs> [[User:Aadenboy]] https://esolangs.org/w/index.php?diff=178340&oldid=178016 * Aadenboy * (+31) /* interpreters */ add [[ToFunction]]
20:33:13 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178341&oldid=178339 * Aadenboy * (+143)
20:41:13 -!- ais523 has quit (Quit: quit).
20:42:48 -!- Lord_of_Life has joined.
20:43:19 <int-e> Uh. Isn't this circular? https://html.spec.whatwg.org/multipage/scripting.html#the-script-element says (among other things) that it can be used in contexts where script-supporting elements are expected. Which includes <script>...
20:45:25 -!- Lord_of_Life has quit (Excess Flood).
20:49:25 -!- Lord_of_Life has joined.
20:53:51 <zzo38> Do they mean that it will mention which contexts can have script-supporting elements, and that it means it includes this one?
21:02:25 -!- lisbeths has joined.
21:02:35 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178342&oldid=178318 * Hotcrystal0 * (+630) /* I do not like this idea */ new section
21:04:20 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178343&oldid=178342 * Hotcrystal0 * (+87)
21:04:45 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178344&oldid=178343 * Hotcrystal0 * (+46)
21:07:24 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178345&oldid=178344 * Hotcrystal0 * (+125)
21:08:13 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178346&oldid=178345 * Hotcrystal0 * (+0) rephrase
21:11:32 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178347&oldid=178346 * Hotcrystal0 * (+77) rephrase again and add more
21:14:43 -!- rodgort has quit (Ping timeout: 264 seconds).
21:15:36 <esolangs> [[Special:Log/newusers]] create * Azerty * New user account
21:16:32 <int-e> Got an answer elsewhere: It is circular, but it's not normative; you have to check the Content Model for each potential parent instead.
21:18:27 <esolangs> [[User talk:Hotcrystal0]] https://esolangs.org/w/index.php?diff=178348&oldid=163735 * Hotcrystal0 * (-428) spring cleaning
21:19:44 <esolangs> [[User:PrySigneToFry/Silicon dioxide in a polypropylene box/Four-player-chess]] https://esolangs.org/w/index.php?diff=178349&oldid=169702 * Hotcrystal0 * (-23) more spring cleaning
21:21:19 <esolangs> [[User:Hotcrystal0/Colon three]] https://esolangs.org/w/index.php?diff=178350&oldid=154297 * Hotcrystal0 * (-224) Im reworking this one
21:25:13 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178351&oldid=178316 * Azerty * (+149) /* Introductions */
21:26:28 <esolangs> [[User:Aadenboy]] https://esolangs.org/w/index.php?diff=178352&oldid=178340 * Aadenboy * (+87) add my inbox + make tables collapsible
21:30:20 -!- rodgort has joined.
21:57:24 -!- somefan has quit (Ping timeout: 246 seconds).
22:03:19 -!- somefan has joined.
22:13:07 -!- somefan has quit (Quit: i quit).
22:13:53 -!- Sgeo has joined.
22:51:43 <esolangs> [[Color Scheme]] https://esolangs.org/w/index.php?diff=178353&oldid=107865 * Yoyolin0409 * (+8)
23:11:41 -!- lisbeths has quit (Quit: Connection closed for inactivity).
23:25:57 <esolangs> [[Special:Log/newusers]] create * NinjaPizza15 * New user account
23:33:21 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178354&oldid=178351 * NinjaPizza15 * (+202)
23:59:27 <esolangs> [[Rainbow Assembly]] N https://esolangs.org/w/index.php?oldid=178355 * NinjaPizza15 * (+1496) Created page with "Rainbow Assembly is a Turing complete tiny assembly language with only 8 instructions.<br> The earliest version is Rainbow-1, which was created on 03/25/2026 (MM/DD/YYYY) <h1>Rainbow-1 Assembly</h1> Here is the instruction set for Rainbow-1 Assembly: ''''
23:59:50 <esolangs> [[Rainbow Assembly]] M https://esolangs.org/w/index.php?diff=178356&oldid=178355 * NinjaPizza15 * (+0)
2026-03-26
00:37:53 <esolangs> [[Rainbow Assembly]] https://esolangs.org/w/index.php?diff=178357&oldid=178356 * Aadenboy * (-44)
00:50:19 <esolangs> [[TritBitJump]] https://esolangs.org/w/index.php?diff=178358&oldid=178146 * Squidmanescape * (+1816) /* Basics */
01:18:07 <esolangs> [[Yakl]] N https://esolangs.org/w/index.php?oldid=178359 * BestCoder * (+29131) Created page with "Yakl is a expression based object oriented interpreted language. == Interpreter (yakl.py) == from yakl_objects import * import importlib.util import sys def import_python_file(path): name = path.replace("/", "_").replace("\", "_") spec = importlib.util.s
01:19:56 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178360&oldid=178359 * BestCoder * (+117)
01:21:43 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178361&oldid=178360 * BestCoder * (+23)
01:48:29 <esolangs> [[User:Redisnotblue]] https://esolangs.org/w/index.php?diff=178362&oldid=119924 * Redisnotblue * (-111) Blanked the page
01:54:23 <esolangs> [[English+]] https://esolangs.org/w/index.php?diff=178363&oldid=120016 * Redisnotblue * (-1461) Blanked the page
02:38:27 <esolangs> [[Codesh ()]] https://esolangs.org/w/index.php?diff=178364&oldid=177992 * StavWasPlayZ * (-42)
02:48:41 <esolangs> [[Codesh ()]] M https://esolangs.org/w/index.php?diff=178365&oldid=178364 * StavWasPlayZ * (+1)
02:56:37 <esolangs> [[Ima gte. Ima dana]] https://esolangs.org/w/index.php?diff=178366&oldid=177797 * BODOKE2801e * (+74) /* Complex */
03:00:51 <esolangs> [[Pathana]] https://esolangs.org/w/index.php?diff=178367&oldid=178284 * Squidmanescape * (+152)
03:45:46 -!- msv has joined.
03:46:02 -!- msv has quit (Remote host closed the connection).
03:46:31 -!- svm has quit (Ping timeout: 244 seconds).
03:46:33 -!- msv has joined.
03:47:33 <esolangs> [[User:Tpaefawzen]] https://esolangs.org/w/index.php?diff=178368&oldid=172112 * Tpaefawzen * (-639) /* Notes */ -99
03:56:55 -!- tromp has quit (Ping timeout: 272 seconds).
05:34:21 -!- Hooloovoo has quit (Ping timeout: 265 seconds).
05:34:42 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178369&oldid=178347 * Corbin * (+1138) /* I do not like this idea */
05:39:37 -!- Hooloovoo has joined.
05:48:58 <esolangs> [[ToFunction]] M https://esolangs.org/w/index.php?diff=178370&oldid=178341 * EsolangerII * (-13) /* Interpreters/Compilers */
05:59:06 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178371&oldid=178370 * EsolangerII * (+149) /* Examples */ added swapper
06:01:17 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178372&oldid=178371 * EsolangerII * (+120) /* Swapper(binary) */
06:05:50 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178373&oldid=178372 * EsolangerII * (+61) /* Output */ added more definition of the ouput
06:06:04 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178374&oldid=178373 * EsolangerII * (-135) /* Swapper(binary) */
06:12:29 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178375&oldid=178324 * EsolangerII * (+36)
06:12:52 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178376&oldid=178375 * EsolangerII * (+4) /* Now working on... */
06:27:46 <esolangs> [[Ring-around-the-Rosie]] M https://esolangs.org/w/index.php?diff=178377&oldid=177602 * Salpynx * (-21) /* Branchless: */
06:45:48 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178378&oldid=178374 * EsolangerII * (+992) /* Examples */
06:50:52 <esolangs> [[99 bottles of beer]] https://esolangs.org/w/index.php?diff=178379&oldid=174888 * EsolangerII * (+982) /* List of implementations */
06:52:13 <esolangs> [[99 bottles of beer]] https://esolangs.org/w/index.php?diff=178380&oldid=178379 * EsolangerII * (+2) /* ToFunction */
06:52:43 <esolangs> [[99 bottles of beer]] https://esolangs.org/w/index.php?diff=178381&oldid=178380 * EsolangerII * (+5) /* ToFunction */
06:55:21 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=178382&oldid=178224 * EsolangerII * (+26) /* T */
06:57:43 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=178383&oldid=178382 * EsolangerII * (-26) /* T */
07:00:12 <esolangs> [[Ring-around-the-Rosie]] M https://esolangs.org/w/index.php?diff=178384&oldid=178377 * Salpynx * (+0) /* Branchless: */ fix transpose-o
07:04:24 -!- Sgeo has quit (Read error: Connection reset by peer).
07:27:51 <esolangs> [[Ring-around-the-Rosie]] M https://esolangs.org/w/index.php?diff=178385&oldid=178384 * Salpynx * (+4) /* Branchless: */ fix flipped divide logic
07:45:21 <esolangs> [[Ring-around-the-Rosie]] https://esolangs.org/w/index.php?diff=178386&oldid=178385 * Salpynx * (+28) /* Branchless: */ I think this is what is needed ...
08:39:51 -!- Lord_of_Life has quit (Excess Flood).
08:43:44 -!- Lord_of_Life has joined.
08:47:23 -!- Lord_of_Life has quit (Excess Flood).
08:51:31 -!- Lord_of_Life has joined.
08:53:33 -!- Lord_of_Life has quit (Excess Flood).
08:59:57 -!- Lord_of_Life has joined.
09:24:11 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178387&oldid=178361 * Dragoneater67 * (+9)
09:39:29 -!- chloetax5 has joined.
09:39:31 -!- chloetax has quit (Read error: Connection reset by peer).
09:39:31 -!- chloetax5 has changed nick to chloetax.
10:12:17 <esolangs> [[User:Yoyolin0409]] https://esolangs.org/w/index.php?diff=178388&oldid=176481 * Yoyolin0409 * (+15) /* Not Done */
10:30:39 <esolangs> [[Mathlang]] N https://esolangs.org/w/index.php?oldid=178389 * Esolang lover123 * (+1632) the worst esolang known to man
10:31:22 -!- msv has quit (Remote host closed the connection).
10:32:14 <esolangs> [[User:Esolang lover123]] N https://esolangs.org/w/index.php?oldid=178390 * Esolang lover123 * (+53) i like esolangs
10:50:26 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178391&oldid=178389 * Esolang lover123 * (+67)
10:57:29 <esolangs> [[Language list]] M https://esolangs.org/w/index.php?diff=178392&oldid=178383 * Esolang lover123 * (+15)
11:00:15 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178393&oldid=178391 * Esolang lover123 * (+123)
11:09:54 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178394&oldid=178387 * BestCoder * (+413)
11:10:21 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178395&oldid=178394 * BestCoder * (+2) /* Functions */
11:11:24 <esolangs> [[Talk:Yakl]] N https://esolangs.org/w/index.php?oldid=178396 * BestCoder * (+82) Created page with "Put Python/Yakl libraries in this page == Python Libraries == == Yakl Libraries =="
11:12:24 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178397&oldid=178395 * BestCoder * (+85) /* Syntax */
11:16:18 <esolangs> [[Super-Easy-Lang]] N https://esolangs.org/w/index.php?oldid=178398 * Esolang lover123 * (+520) SUPER-EASY
11:26:10 <esolangs> [[Joke language list]] M https://esolangs.org/w/index.php?diff=178399&oldid=178034 * Esolang lover123 * (+36)
11:38:29 <esolangs> [[Talk:Yakl]] https://esolangs.org/w/index.php?diff=178400&oldid=178396 * Dragoneater67 * (+153)
11:47:10 -!- cactushead has quit (Quit: Leaving).
11:47:21 <esolangs> [[Super-Easy-Lang]] https://esolangs.org/w/index.php?diff=178401&oldid=178398 * Esolang lover123 * (+101) better syntax
11:47:57 <esolangs> [[((()))(((())))=5]] M https://esolangs.org/w/index.php?diff=178402&oldid=177425 * Dragoneater67 * (-2)
11:48:52 -!- cactushead has joined.
12:01:44 <esolangs> [[]] M https://esolangs.org/w/index.php?diff=178403&oldid=178289 * Dragoneater67 * (+26) /* Phase 2 */
12:02:17 <esolangs> [[]] M https://esolangs.org/w/index.php?diff=178404&oldid=178403 * Dragoneater67 * (+0) /* Phase 2 */
12:04:44 <esolangs> [[Codesh ()]] M https://esolangs.org/w/index.php?diff=178405&oldid=178365 * StavWasPlayZ * (-2)
12:11:20 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178406&oldid=178393 * Esolang lover123 * (+0) it's meant to be a number not an ascii
12:20:14 -!- Hooloovoo has quit (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in).
12:21:07 -!- Hooloovoo has joined.
12:27:00 <esolangs> [[]] https://esolangs.org/w/index.php?diff=178407&oldid=177626 * Qpx5997 * (+2) /* Etymology and name */
12:40:24 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178408&oldid=178369 * Hotcrystal0 * (+343)
13:10:13 <esolangs> [[Ink]] N https://esolangs.org/w/index.php?oldid=178409 * Esolang lover123 * (+695) Created page with "this esolang is very cool ==What is [[Ink]]== ink is an esolang based off of colors and the creator [me] will keep adding new symbols and commands until the language is proven to be [[turing complete]] ==SYNTAX TABLE== {| class=wikitable ! symbol !! function !! ex
13:10:21 <esolangs> [[User:RaiseAfloppaFan3925]] M https://esolangs.org/w/index.php?diff=178410&oldid=178050 * RaiseAfloppaFan3925 * (+0)
13:17:57 <esolangs> [[Language list]] M https://esolangs.org/w/index.php?diff=178411&oldid=178392 * Esolang lover123 * (+10)
13:23:36 <esolangs> [[WAFE]] https://esolangs.org/w/index.php?diff=178412&oldid=171867 * Yoyolin0409 * (-1185) Replaced content with "Cleared! A free page!"
13:23:59 <esolangs> [[User:Yoyolin0409]] https://esolangs.org/w/index.php?diff=178413&oldid=178388 * Yoyolin0409 * (-35) /* Done */
13:26:29 <esolangs> [[User:Esolang lover123]] https://esolangs.org/w/index.php?diff=178414&oldid=178390 * Esolang lover123 * (+36)
13:30:34 <esolangs> [[Septem Lingua]] https://esolangs.org/w/index.php?diff=178415&oldid=178166 * Yoyolin0409 * (-43) /* math */ tree
13:32:08 <esolangs> [[User:Esolang lover123]] https://esolangs.org/w/index.php?diff=178416&oldid=178414 * Esolang lover123 * (+215)
13:32:17 <esolangs> [[User:Hotcrystal0/Hc0's spring cleaning proposal]] N https://esolangs.org/w/index.php?oldid=178417 * Hotcrystal0 * (+605) Created page with "[[User:Corbin]] has a spring cleaning proposal at [[User:Corbin/Spring cleaning]], however I found it to be too extreme. Thus, I am presenting my own proposal here. * Alter site policy to explicitly disallow AI-generated articl
13:32:57 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178418&oldid=178408 * RaiseAfloppaFan3925 * (+605) about user-edited languages, they should probably be moved to an external host instead of existing only on this wiki
13:33:04 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178419&oldid=178418 * Hotcrystal0 * (+321) proposal
13:35:08 -!- Hooloovoo has quit (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in).
13:37:00 -!- Hooloovoo has joined.
13:50:05 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178420&oldid=178406 * Esolang lover123 * (+255)
14:05:22 -!- cactushead has quit (Quit: Leaving).
14:06:49 -!- msv has joined.
14:07:05 -!- msv has quit (Remote host closed the connection).
14:07:29 -!- msv has joined.
14:08:01 -!- Hooloovoo has quit (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in).
14:09:23 -!- Hooloovoo has joined.
14:12:17 -!- cactushead has joined.
14:48:43 -!- amby has joined.
14:54:53 -!- Lord_of_Life has quit (Excess Flood).
14:58:22 -!- Lord_of_Life has joined.
15:00:13 -!- Lord_of_Life has quit (Excess Flood).
15:00:26 -!- DOS_User_webchat has joined.
15:07:03 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178421&oldid=178419 * Dragoneater67 * (+54)
15:09:35 -!- DOS_User_webchat has quit (Remote host closed the connection).
15:10:16 <esolangs> [[User talk:Hotcrystal0/Hc0's spring cleaning proposal]] N https://esolangs.org/w/index.php?oldid=178422 * Dragoneater67 * (+337) Created page with "i think that ai-generated esolangs in general should be banned ~~~~"
15:15:14 <esolangs> [[Erase]] https://esolangs.org/w/index.php?diff=178423&oldid=166033 * Kaveh Yousefi * (+1579) Reformatted the documentation, rectified the 100 10 1 program, added a hyperlink to my interpreter implementation, and supplemented further page category tags.
15:23:27 -!- Hooloovoo has quit (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in).
15:23:48 -!- Hooloovoo has joined.
15:25:10 -!- Lord_of_Life has joined.
15:28:36 <esolangs> [[Revapp]] https://esolangs.org/w/index.php?diff=178424&oldid=119384 * Abo-Junghichi * (+9) /* Example */ reflect changes of IO methods which is done among most implementations.
15:51:54 <esolangs> [[CFCK]] M https://esolangs.org/w/index.php?diff=178425&oldid=169838 * Somefan * (+14) fix cat
15:55:14 <esolangs> [[BooleanFunge/Interpreter]] M https://esolangs.org/w/index.php?diff=178426&oldid=157332 * Somefan * (-21) remove unwanted cat
16:09:52 <esolangs> [[Revapp]] https://esolangs.org/w/index.php?diff=178427&oldid=178424 * Abo-Junghichi * (+428) /* revapp-interpreter */ bytecode tools!
16:29:14 <esolangs> [[Truth-machine]] https://esolangs.org/w/index.php?diff=178428&oldid=177359 * Abo-Junghichi * (-128) /* Revapp */ reflect change of IO method.
17:05:24 <esolangs> [[Special:Log/newusers]] create * 0centimeter * New user account
17:07:16 <esolangs> [[Ink]] https://esolangs.org/w/index.php?diff=178429&oldid=178409 * Esolang lover123 * (+361)
17:15:31 -!- Thelie has joined.
17:16:06 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178430&oldid=178420 * Esolang lover123 * (-3)
17:29:25 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178431&oldid=178354 * 0centimeter * (+210)
17:35:11 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178432&oldid=178430 * Esolang lover123 * (+407)
17:36:52 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178433&oldid=178432 * Esolang lover123 * (+0)
17:37:35 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178434&oldid=178433 * Esolang lover123 * (+0) /* Deadfish */ its was in the wrong order
17:41:31 -!- Thelie has quit (Quit: Leaving.).
17:42:03 -!- Thelie has joined.
17:50:40 -!- Thelie has quit (Remote host closed the connection).
18:37:06 <esolangs> [[Codesh ()]] https://esolangs.org/w/index.php?diff=178435&oldid=178405 * StavWasPlayZ * (+51)
19:10:53 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178436&oldid=178378 * EsolangerII * (-992) /* 99 bottles of beer */
19:35:55 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178437&oldid=178436 * EsolangerII * (+929) Added basic info
19:40:03 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178438&oldid=178437 * EsolangerII * (+30) /* Step vs Term */
19:41:38 -!- Sgeo has joined.
19:41:47 <Sgeo> `olist 1341
19:41:49 <HackEso> olist <https://www.giantitp.com/comics/oots1341.html>: shachaf oerjan Sgeo boily nortti b_jonas Noisytoot
19:42:20 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178439&oldid=178438 * EsolangerII * (+32) /* Step-By-Step Exmaples */
19:46:54 <esolangs> [[Ordinal numbers]] https://esolangs.org/w/index.php?diff=178440&oldid=177642 * Aadenboy * (+327) implement in [[Countable]]
19:52:41 -!- Lord_of_Life has quit (Ping timeout: 244 seconds).
20:13:10 -!- Lord_of_Life has joined.
20:15:45 -!- Lord_of_Life has quit (Excess Flood).
20:19:26 -!- Lord_of_Life has joined.
20:57:18 -!- Hooloovoo has quit (Ping timeout: 255 seconds).
20:58:18 -!- Hooloovoo has joined.
21:21:17 <esolangs> [[Brainfuck]] M https://esolangs.org/w/index.php?diff=178441&oldid=176552 * Azerty * (+56)
21:26:24 <esolangs> [[GnomeLang]] M https://esolangs.org/w/index.php?diff=178442&oldid=162972 * Azerty * (+0)
21:38:56 -!- Hooloovoo has quit (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in).
21:39:50 <esolangs> [[CounterScript]] N https://esolangs.org/w/index.php?oldid=178443 * Azerty * (+955) Created page with "==Description== '''CounterScript''' is an esolang created in March 2026 by Azerty. It has an unbounded number of variables that can store any nonnegative integer. Each program has 3 instructions: - Increment ''var'' by 1 - If ''var'' is above 0 then decrement ''v
21:40:24 -!- Hooloovoo has joined.
21:40:30 <esolangs> [[CounterScript]] https://esolangs.org/w/index.php?diff=178444&oldid=178443 * Azerty * (+9)
21:49:18 <esolangs> [[CounterScript]] https://esolangs.org/w/index.php?diff=178445&oldid=178444 * Aadenboy * (+182)
21:49:25 <esolangs> [[CounterScript]] https://esolangs.org/w/index.php?diff=178446&oldid=178445 * Aadenboy * (+3) whoops
21:49:57 <esolangs> [[CounterScript]] https://esolangs.org/w/index.php?diff=178447&oldid=178446 * Aadenboy * (-65) remove cats
21:50:19 <esolangs> [[CounterScript]] https://esolangs.org/w/index.php?diff=178448&oldid=178447 * Aadenboy * (-34) remove another cat
21:57:18 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178449&oldid=178397 * BestCoder * (-29120) Replaced content with "Yakl is a expression based object oriented interpreted language. == Syntax == === Function calls === function(param1, param2, param3...) === Assignment === something = value === Program === returns last line line1; line2; line3; ... === Functions ==
21:57:29 <esolangs> [[Yakl]] https://esolangs.org/w/index.php?diff=178450&oldid=178449 * BestCoder * (-10)
21:58:48 <esolangs> [[Talk:Yakl]] https://esolangs.org/w/index.php?diff=178451&oldid=178400 * BestCoder * (+73) /* I think that the interpreter should be hosted somewhere else */
22:10:54 -!- ajal has joined.
22:11:57 -!- moony4 has joined.
22:13:45 -!- nitrix_ has joined.
22:14:42 -!- shachaf_ has joined.
22:15:18 -!- Effilry has joined.
22:16:50 -!- FireFly has quit (Killed (zinc.libera.chat (Nickname regained by services))).
22:16:50 -!- Effilry has changed nick to FireFly.
22:17:21 -!- nitrix has quit (Remote host closed the connection).
22:17:21 -!- shachaf has quit (Ping timeout: 264 seconds).
22:17:22 -!- moony has quit (Ping timeout: 264 seconds).
22:17:22 -!- amby has quit (Ping timeout: 264 seconds).
22:17:23 -!- moony4 has changed nick to moony.
22:22:26 -!- nitrix_ has changed nick to nitrix.
22:24:07 <esolangs> [[Special:Log/newusers]] create * Dichrone91 * New user account
22:29:39 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178452&oldid=178431 * Dichrone91 * (+249) Added my introduction to the page.
22:30:26 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178453&oldid=178452 * Dichrone91 * (+90) Forgot my signature so I just added it.
22:31:51 <esolangs> [[MikuLang]] M https://esolangs.org/w/index.php?diff=178454&oldid=177492 * Dichrone91 * (-1) Changed a word which was in the wrong place.
22:46:18 <esolangs> [[User talk:Dichrone91]] N https://esolangs.org/w/index.php?oldid=178455 * Dichrone91 * (+441) Created page with "Hello! I'm Dichrone91 and this is my Esolang talk page! I enjoy esolangs and have created a couple ideas myself, though right now they're not full-fledged; for that, I would want them to at least be Turing complete. I also enjoy conlangs, notably Toki Pon
22:49:42 -!- cactushead has quit (Quit: Leaving).
22:53:52 -!- cactushead has joined.
22:56:27 <esolangs> [[User talk:Hotcrystal0/Hc0's spring cleaning proposal]] https://esolangs.org/w/index.php?diff=178456&oldid=178422 * Hotcrystal0 * (+232)
23:04:22 <esolangs> [[User talk:Dichrone91]] https://esolangs.org/w/index.php?diff=178457&oldid=178455 * Dichrone91 * (+540) /* Opener */ new section
23:05:00 <esolangs> [[User talk:Dichrone91]] https://esolangs.org/w/index.php?diff=178458&oldid=178457 * Dichrone91 * (-540)
23:05:52 <esolangs> [[User talk:Dichrone91]] https://esolangs.org/w/index.php?diff=178459&oldid=178458 * Dichrone91 * (+495) /* Re: Opener */ new section
23:06:35 <esolangs> [[User talk:Dichrone91]] https://esolangs.org/w/index.php?diff=178460&oldid=178459 * Dichrone91 * (-4) /* Re: Opener */
23:12:12 <esolangs> [[!I!M!P!O!S!S!I!B!L!E!]] M https://esolangs.org/w/index.php?diff=178461&oldid=149716 * Dichrone91 * (+1)
23:20:43 <esolangs> [[User talk:Dichrone91]] M https://esolangs.org/w/index.php?diff=178462&oldid=178460 * Dichrone91 * (+0)
23:41:55 <esolangs> [[User talk:Dichrone91]] https://esolangs.org/w/index.php?diff=178463&oldid=178462 * Dichrone91 * (+1053)
23:42:24 <esolangs> [[User talk:Dichrone91]] https://esolangs.org/w/index.php?diff=178464&oldid=178463 * Dichrone91 * (-72)
2026-03-27
00:23:16 -!- ajal has 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).
00:54:36 <esolangs> [[WeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeBasic]] https://esolangs.org/w/index.php?diff=178465&oldid=122089 * Hotcrystal0 * (+0) fix typo
02:59:22 -!- Melvar has quit (Ping timeout: 268 seconds).
03:12:06 -!- Melvar has joined.
03:17:25 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178466&oldid=178434 * Esolang lover123 * (+83)
03:23:20 <esolangs> [[Mathlang]] M https://esolangs.org/w/index.php?diff=178467&oldid=178466 * Esolang lover123 * (-9) its numbered now
03:42:04 -!- sprout has quit (Ping timeout: 265 seconds).
03:43:56 <esolangs> [[Deadplushie]] N https://esolangs.org/w/index.php?oldid=178468 * Esolang lover123 * (+489) wow new esolang
03:48:46 -!- sprout has joined.
04:09:52 <esolangs> [[User:Esolang lover123]] M https://esolangs.org/w/index.php?diff=178469&oldid=178416 * Esolang lover123 * (+20)
04:22:00 <esolangs> [[User talk:Corbin/Spring cleaning]] https://esolangs.org/w/index.php?diff=178470&oldid=178421 * RaiseAfloppaFan3925 * (+573) but what joke languages
04:24:27 <esolangs> [[Quine-Lang]] N https://esolangs.org/w/index.php?oldid=178471 * Esolang lover123 * (+415) Created page with "==What is Quine-Lang?== it's an esolang based on [[Quine]]. Quine-Lang Prints it's source code. ==Programs== ===Quine=== Esolangs ===Name Printer=== this program prints the name of the name of the esolang. Quine it's also a Quine program! ==Implemen
04:25:05 <esolangs> [[User:Esolang lover123]] M https://esolangs.org/w/index.php?diff=178472&oldid=178469 * Esolang lover123 * (+19) Quine
04:28:31 <esolangs> [[Joke language list]] M https://esolangs.org/w/index.php?diff=178473&oldid=178399 * Esolang lover123 * (+101)
04:45:45 -!- msv has quit (Quit: Leaving).
04:48:38 -!- msv has joined.
05:07:19 -!- msv has quit (Quit: Leaving).
05:22:21 <esolangs> [[Mathlang]] M https://esolangs.org/w/index.php?diff=178474&oldid=178467 * Esolang lover123 * (-108)
05:24:04 <esolangs> [[Mathlang]] M https://esolangs.org/w/index.php?diff=178475&oldid=178474 * Esolang lover123 * (+2)
05:30:46 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178476&oldid=178475 * Esolang lover123 * (+12)
05:42:40 -!- msv has joined.
05:47:20 <esolangs> [[Special:Log/newusers]] create * Caveat * New user account
05:51:35 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178477&oldid=178453 * Caveat * (+212)
06:05:35 -!- chloetax has quit (Ping timeout: 245 seconds).
06:31:13 -!- chloetax has joined.
06:41:56 <esolangs> [[User:RaiseAfloppaFan3925/Sandbox]] M https://esolangs.org/w/index.php?diff=178478&oldid=175905 * RaiseAfloppaFan3925 * (+442) test signature
07:10:08 -!- Sgeo has quit (Read error: Connection reset by peer).
07:24:19 <esolangs> [[Tc2]] https://esolangs.org/w/index.php?diff=178479&oldid=153124 * Caveat * (+92) Add External resources section with Rust interpreter
07:26:09 <esolangs> [[Tc2]] https://esolangs.org/w/index.php?diff=178480&oldid=178479 * Caveat * (+20) Update categories
07:27:12 <esolangs> [[Tc2]] https://esolangs.org/w/index.php?diff=178481&oldid=178480 * Caveat * (+1) Fix broken tag
07:43:02 -!- ais523 has joined.
07:47:27 -!- cactushead has quit (Quit: Leaving).
07:49:03 -!- cactushead has joined.
08:07:38 -!- cactushead has quit (Quit: Leaving).
08:13:55 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178482&oldid=178439 * EsolangerII * (+48) /* Step-By-Step Exmaples */
08:16:15 <esolangs> [[Hello world program in esoteric languages (T-Z)]] https://esolangs.org/w/index.php?diff=178483&oldid=173571 * EsolangerII * (+68)
08:18:52 <esolangs> [[ToFunction]] https://esolangs.org/w/index.php?diff=178484&oldid=178482 * EsolangerII * (+79) /* Function */
08:32:08 <esolangs> [[L.H.O.O.Q.]] M https://esolangs.org/w/index.php?diff=178485&oldid=139744 * Salpynx * (-231)
08:34:36 -!- cactushead has joined.
08:38:05 -!- Lord_of_Life has quit (Excess Flood).
08:59:30 -!- Lord_of_Life has joined.
09:03:26 -!- Lord_of_Life has quit (Excess Flood).
09:29:13 <esolangs> [[Mathlang]] https://esolangs.org/w/index.php?diff=178486&oldid=178476 * Dragoneater67 * (+1)
09:30:33 <esolangs> [[Talk:Quine-Lang]] N https://esolangs.org/w/index.php?oldid=178487 * Dragoneater67 * (+370) Created page with "this is the same thing as [[Text]] and [[Cate program (language)]], not very originial honestly ~~~~"
09:30:43 <esolangs> [[Talk:Quine-Lang]] M https://esolangs.org/w/index.php?diff=178488&oldid=178487 * Dragoneater67 * (-1)
09:31:01 <esolangs> [[Talk:Quine-Lang]] M https://esolangs.org/w/index.php?diff=178489&oldid=178488 * Dragoneater67 * (+0)
10:21:44 -!- Lord_of_Life has joined.
10:23:50 -!- Lord_of_Life has quit (Excess Flood).
10:43:32 -!- Lord_of_Life has joined.
10:46:57 <esolangs> [[Special:Log/newusers]] create * Ako * New user account
10:48:52 <esolangs> [[Special:Log/newusers]] create * Bandori * New user account
10:52:16 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178490&oldid=178477 * Bandori * (+217) /* Introductions */
10:54:40 -!- Lord_of_Life has quit (Excess Flood).
10:56:11 -!- Lord_of_Life has joined.
11:10:20 <esolangs> [[Deadplushie]] https://esolangs.org/w/index.php?diff=178491&oldid=178468 * Dragoneater67 * (+397) /* Implementations */
11:11:11 <esolangs> [[Deadplushie]] https://esolangs.org/w/index.php?diff=178492&oldid=178491 * Dragoneater67 * (+29)
11:15:52 <esolangs> [[Ako's Simple Coding Language]] N https://esolangs.org/w/index.php?oldid=178493 * Bandori * (+5023) '''Akos Simple Coding Language''' (ASCL) is a 3D memory-based esoteric language where execution moves across a grid and each line defines its own behavior. It is designed to be impossible to use without being a professional at everything code.
11:16:39 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178494&oldid=178493 * Bandori * (+20)
11:23:40 -!- Thelie has joined.
11:25:27 -!- Thelie has quit (Remote host closed the connection).
11:27:36 -!- Thelie has joined.
11:30:40 <esolangs> [[Ako's Simple Coding Language]] M https://esolangs.org/w/index.php?diff=178495&oldid=178494 * Bandori * (+137)
11:32:44 -!- Thelie has quit (Remote host closed the connection).
11:36:43 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178496&oldid=178495 * Dragoneater67 * (+6) formatting pt.1
11:46:13 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178497&oldid=178496 * Dragoneater67 * (+355) formatting pt.2
11:48:52 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178498&oldid=178497 * Bandori * (+473)
11:56:46 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178499&oldid=178498 * Dragoneater67 * (+270) /* Teleport math and character cipher */ formatting pt.3
11:57:41 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178500&oldid=178499 * Dragoneater67 * (+28) /* Debug mode */
12:06:50 -!- DOS_User_webchat has joined.
12:14:50 <esolangs> [[Ako's Simple Coding Language]] M https://esolangs.org/w/index.php?diff=178501&oldid=178500 * Dragoneater67 * (+26) /* Chain pointer */
12:21:09 -!- Melvar has quit (Ping timeout: 255 seconds).
12:23:08 -!- DOS_User_webchat has quit (Quit: Client closed).
12:27:31 <esolangs> [[Ms]] N https://esolangs.org/w/index.php?oldid=178502 * 0centimeter * (+2870) Created page with "'''Ms''' is esoteric language. not suitable for programming at all. The main function of Ms is a one-way counter, just with a large number of command options for incrementing, and a small number for outputting. Developed by [[User:0centimeter]] ==Commands== <code>"add","
12:34:53 -!- Melvar has joined.
12:35:29 <esolangs> [[Esolang talk:Community portal]] M https://esolangs.org/w/index.php?diff=178503&oldid=177897 * Qazwsxplm * (+92) /* Site not loading */
12:35:49 <esolangs> [[Esolang talk:Community portal]] M https://esolangs.org/w/index.php?diff=178504&oldid=178503 * Qazwsxplm * (+1) /* Site not loading */ fixed typo
12:36:05 <esolangs> [[User:0centimeter]] N https://esolangs.org/w/index.php?oldid=178505 * 0centimeter * (+127) Created page with "==esotric languages== 1. [[Ms]] = = My page is too empty, so I want to say that my favorite music genre is extreme hyperpop."
14:13:52 -!- amby has joined.
14:54:05 -!- Lord_of_Life has quit (Remote host closed the connection).
14:55:23 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178506&oldid=178501 * Aadenboy * (+17) cat
14:57:50 <esolangs> [[Ms]] https://esolangs.org/w/index.php?diff=178507&oldid=178502 * Aadenboy * (-17)
15:16:10 -!- Lord_of_Life has joined.
15:23:41 -!- Lord_of_Life has quit (Ping timeout: 268 seconds).
15:24:45 -!- Lord_of_Life has joined.
16:09:50 -!- Sgeo has joined.
16:39:44 <esolangs> [[Streamlang]] N https://esolangs.org/w/index.php?oldid=178508 * Thebarra * (+3142) created streamlang page
16:53:40 <esolangs> [[User:Aadenboy/Self-equaling squares/Oscillators]] https://esolangs.org/w/index.php?diff=178509&oldid=170267 * Aadenboy * (+447) introduction
16:54:12 <esolangs> [[Streamlang]] https://esolangs.org/w/index.php?diff=178510&oldid=178508 * Aadenboy * (+41)
17:02:50 <esolangs> [[Special:Log/newusers]] create * XXGuy142857 * New user account
17:05:33 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178511&oldid=178490 * XXGuy142857 * (+209)
17:16:42 <esolangs> [[Special:Log/newusers]] create * 58823UltraX * New user account
17:20:43 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178512&oldid=178511 * 58823UltraX * (+220)
17:38:59 <esolangs> [[/\]] N https://esolangs.org/w/index.php?oldid=178513 * Dragoneater67 * (+1046) Created page with "'''/\''' is an [[Esoteric programming language|esoteric programming language]] that uses balanced trinary. == Overview == All memory stored in 2 unbounded integer accumulators: <code>A</code> and <code>B</code> and a queue of unbounded integers. The program is compose
17:51:49 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178514&oldid=178513 * Dragoneater67 * (-64)
17:52:32 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178515&oldid=178514 * Dragoneater67 * (-31)
17:53:45 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178516&oldid=178515 * Dragoneater67 * (-2)
17:55:07 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178517&oldid=178516 * Dragoneater67 * (+4)
17:55:55 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178518&oldid=178517 * Dragoneater67 * (+7)
17:57:30 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178519&oldid=178518 * Dragoneater67 * (+56)
17:58:36 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=178520&oldid=178411 * EsolangerII * (+17) /* K */
18:00:28 <esolangs> [[User:Dragoneater67]] https://esolangs.org/w/index.php?diff=178521&oldid=178281 * Dragoneater67 * (+34)
18:00:55 <esolangs> [[User:Dragoneater67]] https://esolangs.org/w/index.php?diff=178522&oldid=178521 * Dragoneater67 * (+1) /* but really... */
18:19:31 -!- ais523 has quit (Quit: quit).
18:25:16 -!- ais523 has joined.
18:26:16 <esolangs> [[Ako's Simple Coding Language]] https://esolangs.org/w/index.php?diff=178523&oldid=178506 * Bandori * (-496)
18:31:38 <esolangs> [[Eco]] N https://esolangs.org/w/index.php?oldid=178524 * Notxnorand * (+1906) Created page with "= Eco = Eco is a stack-based esoteric programming language that was made by '''Notxnorand''' on '''March 27 2026''' == Commands == The Eco command list contains the following:<br><br> * '''PUSH X''' Pushes a specified value onto the stack.<br><br> * '''POP''' P
18:32:13 <esolangs> [[Eco]] https://esolangs.org/w/index.php?diff=178525&oldid=178524 * Notxnorand * (+12)
18:42:55 <esolangs> [[Kei-Kreaps]] N https://esolangs.org/w/index.php?oldid=178526 * EsolangerII * (+430) Created page with "Kei-kreaps <Ki krps> is programming language that was made by [[User:EsolangerII]]. Inspired by Gdel number ==Syntax== {| class="wikitable" |+ |- ! numbers !! definitintions |- | 1 || 0 |- | 2 || Succseccor of |- | 3 || Is equal to |- | 4 || Not |- | 5 || Is g
18:48:49 <esolangs> [[Kei-Kreaps]] https://esolangs.org/w/index.php?diff=178527&oldid=178526 * EsolangerII * (+129)
18:49:14 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178528&oldid=178376 * EsolangerII * (+17) /* Now working on... */
18:51:07 <esolangs> [[User:EsolangerII]] https://esolangs.org/w/index.php?diff=178529&oldid=178528 * EsolangerII * (+32) /* My Projects(Esolangs) */
19:09:55 -!- ais523 has quit (Quit: quit).
19:22:13 <zzo38> Did the people who invented INTERCAL aware of any prior uses of the bit interleave and bit select operators of INTERCAL (or of any other of its featuers)?
19:31:14 <esolangs> [[Conti]] M https://esolangs.org/w/index.php?diff=178530&oldid=177862 * Hakerh400 * (+1)
19:39:43 <esolangs> [[Eco]] https://esolangs.org/w/index.php?diff=178531&oldid=178525 * Aadenboy * (+138)
19:39:51 <esolangs> [[Eco]] https://esolangs.org/w/index.php?diff=178532&oldid=178531 * Aadenboy * (+25)
19:47:33 -!- shachaf_ has changed nick to shachaf.
19:47:51 -!- shachaf has changed hostmask to ~shachaf@user/shachaf.
19:53:27 -!- Lord_of_Life has quit (Ping timeout: 272 seconds).
19:54:41 -!- Lord_of_Life has joined.
19:57:53 -!- Lord_of_Life has quit (Excess Flood).
20:19:30 -!- Lord_of_Life has joined.
20:21:01 -!- Lord_of_Life has quit (Excess Flood).
20:41:16 -!- Lord_of_Life has joined.
22:38:02 -!- ais523 has joined.
23:43:04 -!- somefan has joined.
2026-03-28
00:53:36 -!- korvo has quit (Ping timeout: 246 seconds).
01:54:16 -!- somefan_ has joined.
01:55:45 -!- Deepfriedice has joined.
01:58:53 -!- somefan has quit (Ping timeout: 272 seconds).
01:59:48 -!- somefan_ has quit (Quit: i quit).
02:33:31 -!- Deepfriedice has quit (Ping timeout: 264 seconds).
02:36:34 <esolangs> [[Quine-Lang]] https://esolangs.org/w/index.php?diff=178533&oldid=178471 * PrySigneToFry * (+28)
02:36:50 -!- amby has 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).
03:40:13 -!- Deepfriedice has joined.
03:43:21 <esolangs> [[Cf]] N https://esolangs.org/w/index.php?oldid=178534 * Qazwsxplm * (+946) Created page with "Cf is [[Chef]], but shorter. Made in 2026 by [[User:Qazwsxplm]]. ==Hello, World! in Cf== <pre> name:Hello World Cake with Chocolate sauce type:chocolate_cake ingredients: 33 g chocolate chips(1) 100 g butter(2) 54 ml double cream(3) 2 pinches baking powder(4) 114 g sugar(
03:45:27 <esolangs> [[Cf]] https://esolangs.org/w/index.php?diff=178535&oldid=178534 * Qazwsxplm * (+25)
03:46:24 <esolangs> [[Bobotw]] M https://esolangs.org/w/index.php?diff=178536&oldid=177316 * Qazwsxplm * (+8)
03:46:52 <esolangs> [[Illegal command]] M https://esolangs.org/w/index.php?diff=178537&oldid=177683 * Qazwsxplm * (+8)
03:55:29 <esolangs> [[Ook!]] M https://esolangs.org/w/index.php?diff=178538&oldid=176240 * Qazwsxplm * (+10)
04:00:42 <esolangs> [[!?.]] N https://esolangs.org/w/index.php?oldid=178539 * Qazwsxplm * (+1562) Created page with "'''!?.''' is [[Ook!]] without the "ook". Made in 2026 by [[User:Qazwsxplm]]. ==Commands== {| class="wikitable" !Brainfuck !! !Description |- |> |. ? |Move the pointer to the right |- |< |? . |Move the pointer to the left |- |<nowiki>+</nowiki> |. . |Increment the memo
04:03:08 <esolangs> [[Ook!]] M https://esolangs.org/w/index.php?diff=178540&oldid=178538 * Qazwsxplm * (+11) /* See also */
04:04:51 <esolangs> [[!?.+]] N https://esolangs.org/w/index.php?oldid=178541 * Qazwsxplm * (+1742) Created page with "'''!?.+''' is [[Ook!+]] but we still don't need the "ook". Made in 2026 by [[User:Qazwsxplm]]. ==Examples== ===Dice from 1 to 6=== <pre class="rectwrap">? ? . ? . . . . . . . . . . . . ? . ! ? ! ! . ? ! ! ! ? . ? . . . ? ? ! . ? ! ? . . ! ? ! ! ? . . . . ? ? ! . ? . ? ?
04:14:05 <esolangs> [[(cleverxia)]] M https://esolangs.org/w/index.php?diff=178542&oldid=176548 * Qazwsxplm * (+8)
04:17:17 <esolangs> [[Talk:]] https://esolangs.org/w/index.php?diff=178543&oldid=175339 * Qazwsxplm * (+1332) /* National Anthem of USSR */ new section
04:18:39 <esolangs> [[Talk:]] M https://esolangs.org/w/index.php?diff=178544&oldid=178543 * Qazwsxplm * (-1332)
04:21:53 <esolangs> [[Schacalic]] M https://esolangs.org/w/index.php?diff=178545&oldid=133402 * Qazwsxplm * (+15) /* OTHER */
04:23:51 <esolangs> [[Talk:Fontmess]] M https://esolangs.org/w/index.php?diff=178546&oldid=153870 * Qazwsxplm * (+152)
04:26:56 <esolangs> [[I Wanna Be the Esolang]] M https://esolangs.org/w/index.php?diff=178547&oldid=93114 * Qazwsxplm * (-26)
04:27:21 <esolangs> [[I Wanna Be the Esolang]] M https://esolangs.org/w/index.php?diff=178548&oldid=178547 * Qazwsxplm * (-1) oops wrong template
04:28:47 <esolangs> [[V]] M https://esolangs.org/w/index.php?diff=178549&oldid=81152 * Qazwsxplm * (+9)
04:31:17 <esolangs> [[Talk:Fontmess]] https://esolangs.org/w/index.php?diff=178550&oldid=178546 * Aadenboy * (+335)
04:31:27 <esolangs> [[Schacalic]] https://esolangs.org/w/index.php?diff=178551&oldid=178545 * Aadenboy * (-15) Undo revision [[Special:Diff/178545|178545]] by [[Special:Contributions/Qazwsxplm|Qazwsxplm]] ([[User talk:Qazwsxplm|talk]])
04:45:32 <esolangs> [[Talk:aBBa]] https://esolangs.org/w/index.php?diff=178552&oldid=152966 * Qazwsxplm * (+133) /* holy hell */ new section
04:49:34 <esolangs> [[LSCEF]] M https://esolangs.org/w/index.php?diff=178553&oldid=146804 * Qazwsxplm * (+6) /* Encoding */
05:00:09 <esolangs> [[LSCEF]] M https://esolangs.org/w/index.php?diff=178554&oldid=178553 * Qazwsxplm * (+126) /* Encoding */
05:09:02 -!- ais523 has quit (Quit: quit).
05:13:14 <esolangs> [[Special:Log/newusers]] create * Salagata * New user account
05:17:55 -!- korvo has joined.
05:18:39 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=178555&oldid=178512 * Salagata * (+265)
07:02:03 -!- Deepfriedice has quit (Ping timeout: 272 seconds).
07:38:24 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178556&oldid=178519 * Dragoneater67 * (+940)
07:39:05 <esolangs> [[/\]] https://esolangs.org/w/index.php?diff=178557&oldid=178556 * Dragoneater67 * (-2)
07:56:58 <esolangs> [[Quine-Lang]] https://esolangs.org/w/index.php?diff=178558&oldid=178533 * Dragoneater67 * (+33)
08:04:53 <esolangs> [[(cleverxia)]] https://esolangs.org/w/index.php?diff=178559&oldid=178542 * Dragoneater67 * (-8) Undo revision [[Special:Diff/178542|178542]] by [[Special:Contributions/Qazwsxplm|Qazwsxplm]] ([[User talk:Qazwsxplm|talk]])
08:10:34 <esolangs> [[User talk:Qazwsxplm]] https://esolangs.org/w/index.php?diff=178560&oldid=177794 * Blashyrkh * (+214) /* What are you going to achieve with your mass edits? */ new section
To update automatically, stalker mode requires a reasonably modern browser with scripts enabled. If this message does not disappear, it's either because of that or a bug. Feel free to get in touch on channel for debugging. Or just work around the issue by manually reloading.