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)
  • 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
  • 01:54, 11 July 2025 None1 talk contribs created page Trigbf (Created page with "{{lang|a=User:None1|i=brainfuck}} Trigbf is also known as Trigbf7, you'll know why in the Dialects section. ==Memory== Trigbf uses an unbounded tape which contains signed unbounded infinite-precision real numbers. Initially, every cell is zero. ==Commands== Trigbf has these commands: * <code>,.><[]</code>: The same as bf, except <code>.</code>, which rounds before printing as ASCII. * <code>s</code>: Let current cell value be <code>x</code>. <code>x</code> becomes...")
  • 01:59, 27 June 2025 None1 talk contribs created page Brainforever (Created page with "Brainforever is an esolang invented by User:None1. It is bf, but <code>[...]</code> is an infinite loop. ==Examples== ===Infinite loop=== [] ===Print <code>A</code> infinitely=== +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++[.]")
  • 01:55, 15 June 2025 None1 talk contribs created page MinusIntPlus (Redirected page to MinusOrPlus#MinusIntPlus) Tag: New redirect
  • 01:41, 15 June 2025 None1 talk contribs created page MinusOrPlus (Created page with "{{lang|a=User:None1|f=opposite of PlusOrMinus}} ==Commands== {| class="wikitable sortable" ! Commands !! Meaning |- | <code>-</code> || Decrement the accumulator |- | <code>+</code> || Output the Unicode character whose code point is the value of the accumulator, then increment the accumulator |} All other characters are treated as comments. ==MinusIntPlus== '''MinusIntPlus''' is an extension of MinusOrPlus which extends the functionality of the <code>+</code> comm...")
  • 05:12, 12 June 2025 None1 talk contribs created page DVector (Created page with "{{lowercase}} '''dVector''' is an OISC invented by User:None1 and inspired by Vector, it uses a 3-dimensional vector. ==Data== As said above, Vector uses a 3D vector called ''A'', it is initially (0,0,0). A vector literal is represented by 3 real numbers separated by spaces. ==Command== ''V2'' ''V3'' ''c'' ''D'' ''B'' and ''D'' are 3D vectors, ''c'' is a real number. The command means: If ''det[A,V2,V3]'' equals to ''c'', then (add ''A'' by ''D'' and jump...")
  • 08:49, 6 June 2025 None1 talk contribs created page File:Pocketfuckp xkcd.png
  • 08:49, 6 June 2025 None1 talk contribs uploaded File:Pocketfuckp xkcd.png
  • 08:48, 6 June 2025 None1 talk contribs created page File:Pocketfuckp nope.png
  • 08:48, 6 June 2025 None1 talk contribs uploaded File:Pocketfuckp nope.png
  • 08:48, 6 June 2025 None1 talk contribs created page File:Pocketfuckp hello.png
  • 08:48, 6 June 2025 None1 talk contribs uploaded File:Pocketfuckp hello.png
  • 08:47, 6 June 2025 None1 talk contribs reverted File:Pocketfuckp cat.png to an old version (Reverted to version as of 08:47, 6 June 2025 (UTC))
  • 08:47, 6 June 2025 None1 talk contribs uploaded a new version of File:Pocketfuckp cat.png
  • 08:47, 6 June 2025 None1 talk contribs created page File:Pocketfuckp cat.png
  • 08:47, 6 June 2025 None1 talk contribs uploaded File:Pocketfuckp cat.png
  • 02:33, 1 June 2025 None1 talk contribs created page PocketFuck+ (Created page with "PocketFuck is an improved version of PocketFuck by User:None1. Programs in this esolang are small enough to be put in your pocket! ==How to write Programs== To write a program in PocketFuck, first write a program in brainfuck, then convert every instruction into 3 binary bits using the table below. {| class="wikitable" |+ Binary Conversion |- ! Binary Conversion !! brainfuck |- | 000 || + |- | 001 || - |- | 010 || > |- | 011 || < |- | 100 || , |- | 101 ||...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)