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)
  • 09:39, 3 May 2025 None1 talk contribs created page Fungraph (Created page with "'''Fungraph''' is an esolang invented by User:None1. It is Befunge, but the code is not a grid but a graph. ==Graph== The graph in Fungraph has labeled and weighted nodes, which contain commands and node id (1-indexed) formatted like ''nodeid''-''command''. It also contains weighted directed edges, which contain directions (unique integers between 0 and the out-degree of the start node of the edge minus one). ''Every node in the graph must have an out-degree of...")
  • 09:36, 16 April 2025 None1 talk contribs created page FooProg (Created page with "'''FooProg''' is a high-level, bytecode-compiled esolang invented by User:None1 in 2023. Like its name, its author doesn't consider it important. In 2023, the compiler, disassembler and IDE written in Python (3.10+) and the bytecode interpreter written in Python and C++ are coded. But the author thought it was a rubbish and decided not to develop it more or put them into the public. In 2025, the author became interested in it again and decided to develop it more....")
  • 11:05, 9 April 2025 None1 talk contribs created page Talk:Vector (Created page with "==Translation from Nopfunge Solid== By the time I wrote this article I found a way to translate Nopfunge Solid to it, but I have no time to write it. --~~~~")
  • 12:14, 6 April 2025 None1 talk contribs created page Bftree (Created page with "{{lowercase}} '''bftree''' is an esolang invented by User:None1, which uses an unrooted tree instead of a tape. ==Tree== The tree has nodes, which contain a node number and value. The node number is only used for pointer movement. The tree is defined using this syntax, at the start of the program: The first line contains a number, which is the number of nodes (node are numbered from 1 to node number), and the next lines contain two numbers: edges. ==Commands== The...")
  • 12:49, 18 March 2025 None1 talk contribs created page RandomText (Created page with "'''RandomText''' is a joke, no-code esolang invented User:None1, it prints random ASCII text by selecting a random integer within [31,127] and stops at 31.")
  • 12:48, 28 February 2025 None1 talk contribs created page Vector (Created page with "'''Vector''' is an OISC invented by User:None1, 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== ''B'' ''c'' ''D'' ''B'' and ''D'' are 3D vectors, ''c'' is a real number. The command means: If ''A''·''B'' equals to ''c'', then (add ''A'' by ''D'' and jump to the start of program). There is an output command,...")
  • 02:28, 23 February 2025 None1 talk contribs created page ORS (Created page with "'''ORS''' (Objects R Succinct), designed by User:None1 in 2025, is an object-oriented language that has a very succinct syntax, like most other esoteric programming languages. ==Examples== ===Hello, world!=== p: sc Writer; Writer.write("Hello, world!"); ===Cat=== o mouse; f mouse.be_eaten(); wo status; sc voice; in input; f mouse.be_eaten(): wo squeaky sound; in.rO squeaky sound; i.do()?status="eaten"; voice.w(sque...")
  • 02:14, 9 February 2025 None1 talk contribs moved page TM to TM (I am islptng) (There are 2 languages named TM now)
  • 04:32, 3 February 2025 None1 talk contribs created page GeoFuck (Created page with "{{lang|a=User:None1|i=PoeticFuck}} What a program does only depends on where you are and the length of the program. ==Translation== GeoFuck first takes your exact latitude and longitude as a pair of real numbers (north and east are positive, south and west are negative). For example, 12.34°N 56.78°W becomes (12.34,-56.78). Then add 90 to the latitude and divide by 180. For example, 12.34 becomes 0.5685555555555556 (there are an infinite number of digits that are...")
  • 05:04, 1 February 2025 None1 talk contribs created page NB (Created page with "NB is an esolang invented by User:None1, that uses only 2 non-whitespace characters: N and B. It is case-insensitive. ==Syntax== ===Number constant=== NB uses unary for number constants, but instead of zeros or ones, NB is used: NBNBNBNBNB represents 5 ===Output=== N <value> ASCII character output. NBN <value> Integer output. ===Variable=== Variables must have only N's and B's, too. Variables must start with NN: NNNBNBN and NN are valid, but: BBNBBN is not. =...")
  • 11:06, 30 January 2025 None1 talk contribs created page SeedFuck (Created page with "'''SeedFuck''' is an esolang invented by User:None1, it is seed but for brainfuck. Programs are like this: <length> <seed> ==Random Generator== SeedFuck uses Python 3.11's random generator, it generates numbers from 0-8 and translates the numbers into brainfuck code. For more information, see implementation. ==Interpreter in Python== <pre> from random import * k,l=input().split() k,l=int(k),int(l) seed(l) for i in range(k): print('+-,.[]><'[randint(0,7...")
  • 03:10, 19 January 2025 None1 talk contribs created page Obfunge (Created page with "'''Obfunge''' is a Befunge-93 derivative invented by User:None1, it is Befunge-93 but obfuscated. ==Instructions== Befunge-93 has the following commands: {| class="wikitable" !Cmd !Description |- |<code>!</code> |Addition: Pop two values a and b, then push the result of a+b |- |<code>"</code> |Subtraction: Pop two values a and b, then push the result of b-a |- |<code>#</code> |Multiplication: Pop two values a and b, then push the result of a*b |- |<code>$</code...")
  • 06:49, 17 January 2025 None1 talk contribs created page 彳亍 (Created page with "彳亍 is an esolang invented by User:None1 that uses Chinese characters, what a Chinese character does depends on the radical of it. It has a stack that stores unbounded signed integers ==Commands== {| class="wikitable" ! Radical !! Meaning !! Example of Chinese characters |- | ⺅ || Increment stack top || 你 他 |- | 口 || Decrement stack top || 吃 吵 |- | 彳 || Swap top stack values || 行 衡 |- | ⺨ || Output stack top as Unicode character || 猫 猪 |-...")
  • 12:29, 14 January 2025 None1 talk contribs created page Beunfunge (Created page with "'''Beunfunge''' is an esolang invented by User:None1. It is Befunge, but there's no self modifying. ==Examples== Many examples in Befunge work in Beunfunge too, but some do not. Category:Two-dimensional languages Category:Languages Category:2025")
  • 12:50, 8 January 2025 None1 talk contribs created page Whole (Created page with "'''Whole''' is an esolang invented by User:None1. It is a version of 🕳️ that uses English letters. ==Commands== <pre> Whole 🕳️ Corresponding word _______________________________ h 🕳️ hole q ❓ question e ❗ exclamation w ⚠️ warning </pre> ==Examples== ===Cat=== {h} ===Hello World=== q*Hello World!*")
  • 10:15, 6 January 2025 None1 talk contribs created page Void (Created page with "'''Void''' is User:None1's first esolang (that isn't a dialect of an old esolang) invented in 2025. ==Types== This esolang is an untyped one as it has only 1 type: '''void'''. Unlike the type with the same name in most practical languages, this type can not only store empty value but also store a lambda function. We'll use '''none''' to represent a void type that contains no value in the rest of the article. ==Features== ==Code== Commands are separated by semicolons,...")
  • 14:39, 24 December 2024 None1 talk contribs created page File talk:HelloWorldByRFPeit.png (Created page with "Do you mean Piet? --~~~~")
  • 13:12, 24 December 2024 None1 talk contribs created page GS (Created page with "'''GS''' is an esolang invented by User:None1, it is C#, but changed to be suitable for golfing. ==Features== ===using=== All the namespaces are automatically <code>using</code>-ed, so you don't have to do that explicitly, if two namespaces have the same identifiers, the one in the lexicographically smaller namespace is chosen. ===if statements=== In normal C#, if statements doesn't support types other than boolean, but in GS, other types are automatically converted...")
  • 13:23, 23 December 2024 None1 talk contribs created page Talk:Delete this page (Created page with "For unknown reasons, displaytitle doesn't work if the new title is not equivalent to the old one. --~~~~")
  • 14:29, 17 December 2024 None1 talk contribs created page License plate language (Created page with "{{WIP}} '''License plate language''' is an esolang invented by User:None1. Programs are concatenations of first 2 characters in Chinese (inland) license plates. ==Commands== They are like this: ''command'' ''argument'' The command is a Chinese character, which is one of the 31 characters used for license plates. The argument is an uppercase letter.")
  • 10:52, 16 December 2024 None1 talk contribs created page Talk:Poetic (Mihai Popa) (Created page with "==Ambiguity== An 11-letter word can be interpreted as both 1 1 and 11. --~~~~")
  • 01:56, 14 December 2024 None1 talk contribs uploaded a new version of File:Ifunge 99.png
  • 01:45, 14 December 2024 None1 talk contribs uploaded a new version of File:Ifunge 99.png (new 99 bottles of beer)
  • 08:09, 11 December 2024 None1 talk contribs created page BINRATNOACFSFOOPCTSOTNOIAPWIVTTPICATA (Redirected page to Brainfuck is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.) Tag: New redirect
  • 08:09, 11 December 2024 None1 talk contribs created page Brainfuck is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. (Created page with "'''Brainfuck is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.''' (name should always be capitalized) or '''BINRATNOACFSFOOPCTSOTNOIAPWIVTTPICATA''' is an esolang invented by User:None1. It is TheLang but instead of <code>the</code>'s, you write <code>is not recognized as the name of a cmdlet, function, script file, or ope...")
  • 07:47, 11 December 2024 None1 talk contribs created page Computable (Created page with "{{stub}} '''Computable''' languages are languages that can be simulated by Turing machines. ==Examples of uncomputable languages== * Some languages that are able to solve the halting problem are uncomputable, like ^ and Oracle. * Ambiguous languages are uncomputable, like Brain:D. * Many joke languages are uncomputable because they have crazy commands, like Ifthen and User talk:/w/wiki/index.php/Talk:index.php/Main page. ==See also== * :Category...")
  • 07:47, 11 December 2024 None1 talk contribs created page The craziest esolang (Redirected page to User talk:/w/wiki/index.php/Talk:index.php/Main page) Tag: New redirect
  • 13:13, 10 December 2024 None1 talk contribs created page (Created page with "'''诗''' is an esolang invented by User:None1, it is based on Poetic. Programs in this esolang are like abstract Chinese poetry. ==Overview== The sole form of data storage in Poetic is the unsigned byte (i.e. an integer in the range 0-255). 诗 has a "tape" of 30,000 of these unsigned bytes, and a memory pointer to keep track of which value is currently being accessed. Source code for 诗 is entered in the form of lines. Words are considered to consist of any...")
  • 06:01, 10 December 2024 None1 talk contribs created page Reversed (Created page with "'''Reversed''' is an esolang invented by User:None1. It doesn't have jumps, but its control flow can be reversed. ==Commands== It has these commands: R: reverse control flow direction other characters: print the character If the instruction pointer goes to the left of the first character, it moves to the last character, but not vice versa. ==Examples== ===Hello, World!=== Hello, World! ===Quine=== quine ===Print 123321=== 123R ===Interpreter in [[Python]...")
  • 14:21, 3 December 2024 None1 talk contribs created page Peste mort+ (Redirected page to Pește mort+) Tag: New redirect
  • 14:07, 3 December 2024 None1 talk contribs created page Pește mort+ (Created page with "'''Pește mort+''' (Romanian for Dead fish) is an esolang invented by User:None1. It is a deadfish derivative and an extension Pește mort. It can print ASCII characters. ==Commands== {| class="wikitable" |- ! Command !! Corresponding Romanian word !! Meaning |- | c || creștere (increase) || Increment the accumulator |- | s || scădere (decrease) || Decrement the accumulator |- | p || pătrat (square) || Square the accumulator |- | i || ieșire (output) ||...")
  • 11:40, 20 November 2024 None1 talk contribs created page Talk:Empty Program (Created page with "This is the same as NOP, isn't it.")
  • 11:08, 20 November 2024 None1 talk contribs created page EchoLang (None1) (Created page with "'''EchoLang''' is an esolang prompted by User:None1 and invented by Cursor AI: ==Commands== + : Increment the current memory cell. - : Decrement the current memory cell. > : Move the memory pointer to the right. < : Move the memory pointer to the left. . : Output the ASCII character corresponding to the value in the current memory cell. , : Input a character and store its ASCII value in the current memory cell. ==Interpreter in Python== <pre> def interpret_echola...")
  • 14:44, 15 November 2024 None1 talk contribs created page Brain操 (Created page with "{{lowercase}} brain操 is brainfuck but commands are swear words in different languages. ==Commands== +: 操 (Chinese) -: fuck (English) ,: pula (Romanian) .: P3RKELE (Finnish) >: ебать (Russian) <: ficken (German) [: chết tiệt (Vietnamese) ]: ファック (Japanese) Commands are separated by ''line feeds''. ==Examples== ===Cat program=== pula chết tiệt P3RKELE pula ファック Category:Languages Category:CJK Category:2024")
  • 04:33, 13 November 2024 None1 talk contribs created page Talk:Nythop (Question about language name and potential copyright violation)
  • 13:39, 7 November 2024 None1 talk contribs created page Pick (Created page with "'''Pick''' is an esolang invented by User:None1. It is based on randomly picking stuff. ==Data storage== Pick has a set of unbounded unsigned integers, and three unbounded unsigned accmulators A, B and C. Initially, the set is empty, and the accumulators are zero. ===C=== C is a special accumulator that acts like a clock. After an instruction is executed, C is decremented by one, unless it is zero. ==Commands== Commands and arguments are case-insensitive. ===PICK===...")
  • 14:46, 6 November 2024 None1 talk contribs created page TxeT (Created page with "''txeT''' is a language which constantly output its reversed source code. This language seems in the same computational class as Text. Btw, a program is a quine iff it is palindrome. The file extension of its source code is '''.txt''' since '''txt''' is the reversed version of preferred file extension for Text source code. === Hello, World! === !dlroW ,olleH Text outputing in Befunge be like === 99 bottles of beer on the wall === <pre> .llaw eht no reeb fo sel...")
  • 13:49, 5 November 2024 None1 talk contribs created page Talk:Look! (Created page with "==Look! online interpreter== Since I've deleted the REPL hosting the Look! online interpreter, I plan to create another using Vercel. It will probably be done in a month, but it won't be reachable in inland China. --~~~~")
  • 13:46, 31 October 2024 None1 talk contribs uploaded a new version of File:Ternlsb bf.png (the brainfuck logo taken from daniel b cristofani's brainfuck page had no license with it so it is not public domain after all. any admin who sees this please delete the original image, new image is a screenshot of the title of the brainfuck page in esolangs wiki)
  • 13:43, 31 October 2024 None1 talk contribs uploaded a new version of File:Brainfuck stegfuck.png (the brainfuck logo taken from daniel b cristofani's brainfuck page had no license with it so it is not public domain after all. any admin who sees this please delete the original image, new image is a screenshot of the title of the brainfuck page in esolangs wiki)
  • 13:24, 31 October 2024 None1 talk contribs created page PyStr (Redirected page to PyFuck (ShirAko)) Tag: New redirect
  • 13:22, 31 October 2024 None1 talk contribs moved page Talk:PyFuck to Talk:PyFuck (ShirAko)
  • 13:22, 31 October 2024 None1 talk contribs moved page PyFuck to PyFuck (ShirAko)
  • 13:21, 31 October 2024 None1 talk contribs created page PyFuck (kuangkzh) (Created page with "'''PyFuck''' is an esolang invented by [https://github.com/kuangkzh GitHub user kuangkzh] in 2022 (according to the edit time of codegolf stackexchange answer and GitHub repo) that uses only 8 characters: <code>exc('%x)</code>, but it can run any Python program. ==External Resources== * [https://github.com/kuangkzh/PyFuck GitHub repository] * [https://codegolf.stackexchange.com/a/250500/120119 codegolf stackexchange answer related to PyFuck] ==See also== * JSFuck, Ja...")
  • 11:02, 31 October 2024 None1 talk contribs created page Talk:PyFuck (Created page with "==8 characters for interpreting any code== On the fewest character for turing completeness question on codegolf stackexchange, there's an answer that shows Python only needs 8 characters to interpret any Python code: exc('%0), there is a link in the answer to a repo named PyFuck, shall we document, or at least leave an external link for it? For some unknown reason i can't access codegolf stackexchange now so i can't get the link. --~~~~")
  • 08:27, 25 October 2024 None1 talk contribs created page Peste mort (Redirected page to Pește mort) Tag: New redirect
  • 08:26, 25 October 2024 None1 talk contribs created page Pește mort (Created page with "'''Pește mort''' (Romanian for Dead fish) is an esolang invented by User:None1. It is a deadfish derivative. ==Commands== {| class="wikitable" |- ! Command !! Corresponding Romanian word !! Meaning |- | c || creștere (increase) || Increment the accumulator |- | s || scădere (decrease) || Decrement the accumulator |- | p || pătrat (square) || Square the accumulator |- | i || ieșire (output) || Output the accumulator |- | o || oprire (stop) || Halt |} ==Examples=...")
  • 07:27, 25 October 2024 None1 talk contribs created page Translated ZhongWen/None1 again3 (Created page with "Make Translated ZhongWen/Mihai Again8 crazier! 1. Take that program <pre> 不。 我喜歡他。 天道不夠 15:13 他們就大聲疾呼,厭惡他,把他釘在十字架上。 不。 不。 但是,在羅慕倫, 說 幹得好! 不。 但是,在羅慕倫, 不。 不。 幹得好!我喜歡。 我喜歡他。 不。 不。 聽你說,先生; 但是,在羅慕倫, 天道不夠 不。 我喜歡他。 但是,在羅慕倫, 我的妻子, 不。 </...")
  • 06:56, 25 October 2024 None1 talk contribs created page Translated ORK/None1 again9 (Created page with "1. Take that Translated_ORK/PSTF_Again19|愩嗭滣嗹妫厗洀弩勝憌栃伩凶侰伕灏婥嘒儾恩嘪椸獝橧澕後堸堧溜其瑵帶椢櫁庨擸殥汏乔壜岚崔炼另横叫寷倈熈梉喥巠沌哙坶旈涾桨劅佖瓄彐灘壮儨共峈琂呗嫜夈勣旱懑暿嵧抄漩剝剬娳瑉導堮哾呓媏挹槈曈媎啼塾忁尾底泥堹挮伏庙瑗忀岊月焙栍杙栣嬇椝犒捦婇擜崓瀚楳獁甁尦拆柃暜瓚廮嘄揯喣孲寯慘忘傡焧沭悞攺倖咧熳仲呪僱...")
  • 00:59, 20 October 2024 None1 talk contribs created page Translated !한국어/None1 (Created page with "1. Take that sh*t <pre> 사용자를 사용하여 거리를 입력하고 전수산C를 교부한다. 계, 이튿날 공정은 다음과 같이 말했다. 12299 왕은 말을 타야 합니까 아니면 세차를 해야 합니까? ○ 비행기가 공중에서 착륙하다 강한 사람은 시작이다. 변경 중요 몰라요.기계가 말하길, 네가 10살이면 제대로 된 동작이 없어. 2. 내가 과거에 읽었던 책. 자루를 병원에서 꺼내다. 변환...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)