All public logs

Jump to navigation Jump to search

Combined display of all available logs of Esolang. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 08:34, 13 April 2026 None1 talk contribs created page Pinyin (Created page with "'''Pinyin''' is a fungeoid invented by User:None1 that uses Chinese characters and Pinyin (a way of representing the pronounciation of Chinese characters using Latin letters). To avoid ambiguity, "this esolang" instead of "Pinyin" is used when referring to the esolang. ==Memory== This esolang has a stack with unbounded signed integers. Popping from it returns 0. The upper edge and left edge of the grid is solid, like Nopfunge Solid. ==Syntax== ===Parts of a...")
  • 12:32, 21 March 2026 None1 talk contribs created page Prints the name of this language (New funny esolang!)
  • 12:06, 15 March 2026 None1 talk contribs created page Translator (Created page with "{{lang|i=User:None1}} ==Memory== It operates on the input. It has no other memory storage other than that. ==Syntax== <pre> ''a'' -> ''b'' </pre> ''a'' and ''b'' are strings. Replaces ''a'' with ''b''. Note that replacements do ''not'' loop explicitly or implicitly, so this is not the same as Thue nor Markov algorithm. ==Examples== ===cat=== {{n}} ===Pseudo Truth Machine=== 1 -> 1111111111111111111111111111111111111111111111111111111111111111111111......")
  • 12:10, 11 March 2026 None1 talk contribs created page ChangeFuck (Created page with "{{lang|a=User:None1|i=brainfuck and Malbolge. It's brainfuck but every command has a wierd side effects on the memory or program, in order to make programs hard to be written. ==Commands== {{Unf}}")
  • 12:07, 11 March 2026 None1 talk contribs created page Template:Unf (Used when the page is not finished, but the language is)
  • 13:24, 24 February 2026 None1 talk contribs created page ActionLang (Add esolang)
  • 06:51, 15 February 2026 None1 talk contribs created page SeedFuck Improved (Created page with "{{lang|a=User:None1}} It is SeedFuck, but applied with the improvements suggested by User:Blashyrkh. Programs are like this: <seed1> <seed2> ... SeedFuck Improved uses Python 3.11's random generator, it generates numbers within [0,8)∩Z inclusive and translates the numbers into brainfuck code. Generation for each seed stops at an unmatched {{cd|]}}. After generation of all the seeds, each seed will then be executed in order. Category:Languages Catego...")
  • 08:50, 9 February 2026 None1 talk contribs created page Esolang spec (Created page with "'''Esolang spec''' is an esolang invented by User:None1. Programs in this esolang are like specifications of esolangs. ==Program structure== A program must be like this: <pre> (header) ==Memory== (variable definition) ==Commands== (command 1) (command 2) ... </pre> This esolang is case-insensitive. All whitespaces are ''mandatory''. ===Section 1: header=== It must be like this: ''esolang name'' is an esolang invented by ''name''. For example: ABCD is an esolang inv...")
  • 01:10, 4 February 2026 None1 talk contribs created page UBX (Created page with ":{{Distinguish/Confusion|text=Bx because they're completely different esolangs although invented by the same author}} '''UBX''' ('''U'''ltimate '''B'''rainfuck e'''X'''tension) is an esolang invented by User:None1. It is brainfuck but equipped with almost all the extensions mentioned in Brainfuck extensions (as of 2026/1/17 13:00 UTC). ==Memory== There are two 2-dimensional tapes. Each tape is unbounded on 2 sides, and cells contain unbounded unsigned int...")
  • 05:32, 3 February 2026 None1 talk contribs created page Talk:Brainfuck extensions (Created page with "==Why is Motherf object oriented?== The table says that Motherf is object oriented, but I didn't see a command with something to do with objects or types. --~~~~")
  • 05:53, 2 February 2026 None1 talk contribs created page BCTp (Redirected page to Bitwise Cyclic Teap) Tag: New redirect
  • 08:52, 1 February 2026 None1 talk contribs created page Bitwise Cyclic Teap (Created page with "{{lang|a=User:None1|n=Bitwise Cyclic Teap (BCTp)|f=a derivative of BCT where data is stored in a heap (a.k.a: priority queue) instead of a queue}} ==Commands== {| class="wikitable" |- ! Command !! Execution |- | 0 || Delete the ''smallest'' data-bit. |- | 1 || Goto the next command (say x). If the ''smallest'' data-bit is 1, insert x into the data-heap. |} ==Interpreter== ===Python=== <pre> from time import sleep from heapq import * class CyclicList(list):...")
  • 08:47, 1 February 2026 None1 talk contribs created page BCTk (Redirected page to Bitwise Cyclic Tack) Tag: New redirect
  • 06:41, 11 January 2026 None1 talk contribs created page 1=0+1 (Created page with "{{lang|a=User:None1}} ==Variables== 1=0+1 has ''n'' variables, where ''n'' is the number of lines. The variables are named 0 to ''n''-1. Initially, the value of each variable is the same as its name. ==Lines== Each line must be like this: ''x''=''y1''+''y2''+...+''ym'' ''x'' and ''yi'' are variable names. ''x'' must be equal to the line number (0-indexed). This command makes variable ''x'' the sum of variables ''y1'', ''y2'',...,''ym''. ==Control flow== All lines are e...")
  • 12:08, 6 January 2026 None1 talk contribs created page Quineless I cannot understand that. (Created page with "'''Quineless I cannot understand that.''' is I cannot understand that. but there's no (non-empty) quine, it's invented by User:None1. ==Commands== Every ''line'' is a command which prints: I cannot understand that. I cannot understand that. ==Interpreter== ===Python=== while 1: x=input() print('I cannot understand that.\nI cannot understand that.') Category:Languages Category:Joke languages Category:Unusable for programming Cate...")
  • 06:15, 1 January 2026 None1 talk contribs created page First (Created page with "{{lang|a=User:None1}} It's the author's first esolang invented in the first day of 2026, thus the name. It's also the first esolang with a full specification invented in 2026. ==Memory== There's an integer set. Integers are unbounded. ==Commands== ''x'' and ''y'' are integer literals. * {{cd|F ''x''}}: '''F'''lip the existence of ''x'' in the set (i.e.: Delete ''x'' if it exists, otherwise insert ''x''}}). * {{cd|I ''x''}}: '''I'''nsert ''x''. * {{cd|R}}: '''R'''ead int...")
  • 15:22, 15 December 2025 None1 talk contribs created page Deadfib (Created page with "{{lang|a=User:None1}} It uses Deadfish commands, but has nothing to do with Deadfish. ==Commands== {| class="wikitable" |+ Command table |- ! Command !! Meaning |- | i || Read a str'''i'''ng from user input and interpret it in brainfuck. |- | d || Rea'''d''' a string from user input and interpret it in brainfuck. |- | s || Read a '''s'''tring from user input and interpret it in brainfuck. |- | o || Read a string fr'''o'''m user input and interpret it in [...")
  • 11:05, 5 December 2025 None1 talk contribs created page XOR Machine (Redirected page to XOṘ Mạchịne) Tag: New redirect
  • 13:36, 2 December 2025 None1 talk contribs created page Load (Created page with "{{lowercase}} '''load''' is yet another 4-instruction esolang invented by User:None1, this time a real Turing tarpit. ==Memory== Seven accumulators: A-G are used. They contain unbounded ''signed'' integers. At first, A is 1 and others are 0. ==Commands== load has the following 4 commands (case sensitive). {| class="wikitable" |- ! Command !! Meaning |- | {{cd|l}} || Bitwise '''l'''eft shift A by 1 bit and store the result into B. Then, cyclic shift all t...")
  • 13:42, 28 November 2025 None1 talk contribs created page Oxen (Created page with "{{lowercase}} '''oxen''' is an esolang invented by User:None1. ==Memory== Three accumulators: A, B and C are used. They contain unbounded unsigned integers. At first, A is 1, B and C are 0. ==Commands== oxen has the following 4 commands (case sensitive). {| class="wikitable" |- ! Command !! Meaning |- | {{cd|o}} || Bitwise '''o'''r B and A and store the result into B. Then, cyclic shift all three accumulators (A,B,C=B,C,A). |- | {{cd|x}} || Bitwise '''x'''or B and A...")
  • 12:19, 27 November 2025 None1 talk contribs created page Oddjump (Add Oddjump esolang)
  • 14:08, 25 November 2025 None1 talk contribs created page None1/BCT Python (Created page with "BCT interpreter in Python, prints debug information since it has no I/O. <pre> from time import sleep class CyclicList(list): def __getitem__(self, x): return super().__getitem__(x % self.__len__()) code = CyclicList(map(int, input("Code: "))) data = list(map(int, input("Data-string: "))) ip = 0 while 1: print(f'IP: {ip%len(code)}\t Data-string: {"".join(map(str,data))}') if not code or not data: print("Halt!") break op...")
  • 14:01, 25 November 2025 None1 talk contribs created page Bitwise Cyclic Tack (Created page with "'''Bitwise Cyclic Tack (BCTk)''' is an esolang invented by User:None1. It is a variation of BCT where the data-string is operated like a stack instead of a queue. ==Commands== {| class="wikitable" |- ! Command !! Execution |- | 0 || Delete the ''rightmost'' data-bit. |- | 1 || Goto the next command (say x). If the ''rightmost'' data-bit is 1, copy x to the right end of the data-string. |} ==Example== Program: 00111 Initial Data-string: 101 System evolu...")
  • 12:16, 23 November 2025 None1 talk contribs created page APLD (Redirected page to Anti-Plushie language DIY) Tag: New redirect
  • 12:12, 23 November 2025 None1 talk contribs created page Anti-Plushie language DIY (Created page with "'''Anti-Plushie language DIY''' ('''APLD''' for short) is an esolang invented by User:None1. It's Anti-Plushie language, but it's you ''who'' decide the restrictions! ==Syntax== It's Deadfish, but you can add restrictions: * <code>''x'' ''"errmsg"''</code>: If the accumulator will be ''x'' after a command, print "errmsg" (without quotes) and terminate. ==Examples== ===Anto-Plushie language interpreter=== 4 "Fuck off!" 31 "Cut it out!" 3 "Fuck you!" 2...")
  • 11:47, 23 November 2025 None1 talk contribs created page Meow/libs (Created page with "The following are the supported standard libraries in the Meow esolang: * {{Sub|Meow/libs|logic.meow}} * {{Sub|Meow/libs|math.meow}} * {{Sub|Meow/libs|rand.meow}} * {{Sub|Meow/libs|time.meow}} * {{Sub|Meow/libs|meowlib.meow}} These libraries should be put in the path <code>C:\meow</code>.")
  • 11:45, 23 November 2025 None1 talk contribs created page Meow/libs/meowlib.meow (Created page with "meowlib.meow: Imports all other standard libraries (Just like <code>bits/stdc++.h</code> in C++) <pre> library math library logic library rand library time </pre>")
  • 11:41, 23 November 2025 None1 talk contribs created page Meow/libs/rand.meow (Created page with "rand.meow: RNGs. <pre> func rint mul rintseed 37 rintseed add rintseed 2017 rintseed mod rintseed 65537 rintseed addret rintseed endf func rflt mul rfltseed 1.61803339887 rfltseed add rfltseed 0.61803339887 rfltseed mod rfltseed 1 rfltseed addret rfltseed endf </pre> Functions: * <code>rint()</code>: Random integer within <code>[0,65537)</code>. * <code>rflt()</code>: Random real within <code>[0,1)</code>. Variables: * <code>rintseed</code>: Seed used by <code>rint</code...")
  • 11:38, 23 November 2025 None1 talk contribs created page Meow/libs/math.meow (Created page with "math.meow: Math functions. <pre> func pow poparg arg1 poparg arg2 equal arg2 0 addret 1 end big arg2 0 sub arg2 1 arg2 run pow popret ret mul ret arg1 ret addret ret add arg2 1 arg2 end endf add 0 1 fby func fb poparg arg1 add fbx fby temp add 0 fby fbx add 0 temp fby equal arg1 0 addret 0 end equal arg1 1 addret fbx end big arg1 1 sub arg1 1 arg1 run fb end endf func fbclear del fbx add 0 1 fby endf func fpow poparg arg1 poparg arg2 equal arg2 0 addret 1 end big arg2 0...")
  • 11:32, 23 November 2025 None1 talk contribs created page Meow/libs/time.meow (Created page with "time.meow: Functions for sleeping. <pre> func slp run clock popret t sub t u g small g l run slp end endf func wait poparg h run clock popret u add 0 h l run slp endf </pre> Functions: * <code>wait</code>: wait for given time (in milliseconds). Helper functions: * <code>slp</code>")
  • 11:24, 23 November 2025 None1 talk contribs created page Meow/libs/logic.meow (Created page with "logic.meow: Logic gates. <pre> func and poparg arg1 poparg arg2 addret 0 big arg1 0 big arg2 0 addret 1 end end endf func or poparg arg1 poparg arg2 addret 1 small arg1 1 small arg2 1 addret 0 end end endf func not poparg arg1 sub 1 arg1 ret endf add 0 1 TRUE </pre> Functions: * <code>and</code>: AND gate. * <code>or</code>: OR gate. * <code>not</code>: NOT gate. Variables: * <code>TRUE=1</code> * <code>FALSE=0</code> (Not in source code because variables in meow are 0 b...")
  • 10:27, 21 November 2025 None1 talk contribs created page Brainterpart (Created page with " {{lang|a=User:None1|i=brainfuck|f=the counterpart of brainfuck without comments}} ==Definitions== Define the ''brainfuck charset'' (BC for short) as {{cd|+,-.<>[]}}. Define the ''non-brainfuck charset'' (NBC for short) as the charset which contains characters that aren't in BC with ASCII values between 33 and 126 ({{cd|!}} to {{cd|~}}, inclusive). Define ''brainfuck string'' as a string that only consists of characters in BC. Define ''non-brainfuck string''...")
  • 12:35, 20 November 2025 None1 talk contribs created page Kolakoski (Redirected page to Kolakoski sequence) Tag: New redirect
  • 09:24, 19 November 2025 None1 talk contribs created page Template:Sub (Created page with "<includeonly>[[{{{1}}}/{{{2}}}|{{{2}}}]]</includeonly><noinclude>==Usage== <nowiki>{{Sub|Deadfish|Constants}}</nowiki> Results in: {{Sub|Deadfish|Constants}}</noinclude>")
  • 09:17, 19 November 2025 None1 talk contribs created page Readable/ASCII Readable (Created page with ":{{Back|Readable}} It's a dialect of Readable that uses {{cd|=}} instead of {{cd|−}} (U+2212). ==Implementations== The author's implementation of Readable actually interprets ASCII Readable as well.")
  • 07:28, 19 November 2025 None1 talk contribs created page File:Readable.png (Logo of the Readable esolang)
  • 07:28, 19 November 2025 None1 talk contribs uploaded File:Readable.png (Logo of the Readable esolang)
  • 00:54, 18 November 2025 None1 talk contribs created page ALEFL (Created page with " '''ALEFL''' ('''A'''lpha-'''L'''ess '''E'''xception&'''F'''unction '''L'''anguage) is an esolang invented by User:None1. Just like its name, it uses no letters and control flow is done by exception and functions. ==Features== ===Type system=== There are only 2 types in ALEFL: integers and functions. ===Function definition=== To define a function, use: $''function_name''(''arg1,arg2,...''){''CODE''} Note that function names and argument names ''must not'' contain le...")
  • 12:38, 23 October 2025 None1 talk contribs created page Exec (Created page with "{{lowercase}}'''exec'', an esolang invented by User:None1, is similar to Python. ==Type system== Unlike Python, there's only one type in exec: {{cd|str}}. This type is way more powerful than the one in Python in the following ways: * Character codes: Character codes in Python strs must be within range(0x110000), but "character" codes in exec strs can be any signed integer. * Subscript modification: Python strs don't support subscript modfication, but exec strs do...")
  • 05:22, 11 October 2025 None1 talk contribs created page ExGates (Redirected page to LogicGates/exGates) Tag: New redirect
  • 05:16, 11 October 2025 None1 talk contribs created page LogicGates/exGates (Created page with ":{{Back|LogicGates}} :''Note: exGates uses numbers as commands instead of letters, so exGates-2 is incompatible with LogicGates.'' exGates is a family of LogicGates dialects. There are an infinite number of languages in exGates: exGates-2, exGates-3, etc. exGates-''n'' uses bits in base-''n''. Nonzero numbers represent base-''n'' logic gates. The n<sup>n<sup>2</sup></sup> logic gates are ordered by the results when the operands are (0,0), (0,1),...,(0,''n''),(1,0), ....")
  • 11:02, 6 October 2025 None1 talk contribs created page LogicGates (Created page with "{{lang|a=User:None1}} ==Memory== It uses a bit accmulator, an unbounded bit tape and a pointer. All bits are initially 0. ==Commands== * {{cd|<}}/{{cd|>}}: Move the pointer to the left/right. * {{cd|[''CODE'']}}: While accmulator isn't 0, do ''CODE''. * Logic gates represented by uppercase and lowercase letters. <pre> Gate (0,0) (0,1) (1,0) (1,1) A 0 0 0 0 B 0 0 0 1 C 0 0 1 0 D 0 0 1 1 E 0 1 0 0 F...")
  • 05:38, 29 September 2025 None1 talk contribs created page Siyu (Created page with "'''Siyu''' (Pinyin of Chinese word 死鱼 meaning dead fish) is an esolang invented by User:None1. It is a deadfish derivative. ==Commands== {| class="wikitable" |- ! Command !! Corresponding Chinese word !! Meaning |- | z || zeng jia 增加 (increase) || Increment the accumulator |- | j || jian shao 减少 (decrease) || Decrement the accumulator |- | p || ping fang 平方 (square) || Square the accumulator |- | s || shu chu 输出 (output) || Output the accumul...")
  • 05:23, 18 September 2025 None1 talk contribs created page Hate (Created page with "{{infobox proglang |name=Love |author=User:None1 |year=2025 |majorimpl=Python }} '''Hate''' is esoteric programming language using commands <code>h</code>,<code>a</code>, <code>t</code>, and <code>e</code>. ==Language description== Love is a useless language for outputting "I hate you!", for outputting ASCII, for incrementing/decrementing, and optional quine. Love using commands: {| class="wikitable" !Command !Description |- | style="tex...")
  • 10:17, 9 September 2025 None1 talk contribs created page LongJump (Created page with "'''LongJump''' is a 2D fungeoid invented by User:None1. ==Memory== It has 2 unbounded signed accumulators: A and B, both initialized with 0. ==Grid== A Nopfunge-styled grid is used. Both line numbers and column numbers are 0-indexed. Execution starts at (0,0) and direction is initially right. ==Commands== * {{cd|+}}: Increment A. * {{cd|=}}: Increment B. * {{cd|-}}: Decrement A. * {{cd|_}}: Decrement B. * {{cd|!}}: Long jump, decreases current line number...")
  • 03:46, 28 August 2025 None1 talk contribs created page Brainfucking (Created page with "{{lang|a=User:None1}} It ignores the code and always executes a brainfuck interpreter. Since it ignores the code, it is a no-code esolang. ==Examples== ===brainfuck interpreter=== Any text can go here. ===Self-interpreter=== Any text can go here. ==Interpreters== Any brainfuck interpreter is also a brainfucking interpreter if you let it interpret the user input instead of the code. ==Computational class== Turing-complete, because it can interpr...")
  • 02:52, 24 August 2025 None1 talk contribs created page ABrainloller (Created page with "{{lang|a=User:None1}} It is Brainloller but uses only English letters. {|style="text-align:center;" !Color !RGB !Function !ABrainloller |- |style="background:#ff0000;"|red |(255,0,0) |<code>></code> |A |- |style="background:#800000;"|darkred |(128,0,0) |<code><</code> |B |- |style="background:#00ff00;"|green |(0,255,0) |<code>+</code> |C |- |style="background:#008000;"|darkgreen |(0,128,0) |<code>-</code> |D |- |style="background:#0000ff;"|blue |(0,0,255) |<co...")
  • 10:15, 15 August 2025 None1 talk contribs created page Ccc:cc (Redirected page to Chicken chicken chicken: chicken chicken) Tag: New redirect
  • 08:50, 15 August 2025 None1 talk contribs created page Chicken chicken chicken: chicken chicken (Created page with "{{WIP}} {{lang|a=User:None1|i=Chicken}} It's also known as ccc:cc. Everyone knows that Chicken is inspired by [http://isotropic.org/papers/chicken.pdf the article with only Chicken and punctuations]. This language is more similar to that article since punctuations are added. ==Syntax== The only valid tokens in this esolang are ''chicken'' and punctuations. Uppercase italic letters in this section represent variables, while lowercase ones represent expressions. =...")
  • 04:00, 11 July 2025 None1 talk contribs created page FSA (Redirected page to Finite-state automaton) Tag: New redirect
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)