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).
- 18:03, 2 June 2025 TenBillionPlusOne talk contribs created page Smejl.txt (Created page with "{{lowercase}} When searching their old drive, User:TBPO found an old file called '''smejl.txt'''. The following text was inside... <pre> Truth machine ₫Å1≷ʠʆĈɷ₰⨊ʠɷĈ Amogus ₫≷⨢₾ʯ₰≷ʨᾄɷ₰ʩĈ </pre> They do remember a little about the esolang. They remember only that it had two queues. TBPO asks for help.")
- 17:19, 2 June 2025 TenBillionPlusOne talk contribs created page Plankalkül (Created page with "Plankalkül (German pronunciation: [ˈplaːnkalkyːl]) is a programming language designed for engineering purposes by Konrad Zuse between 1942 and 1945. It was the first high-level programming language to be designed for a computer. Zuse never implemented Plankalkül on any of his Z-series machines. Kalkül (from Latin calculus) is the German term for a formal system—as in Hilbert-Kalkül, the original name for the Hilbert-style deduction system—so Plankalkül refer...")
- 17:09, 2 June 2025 TenBillionPlusOne talk contribs created page File:Plankalkül-Potenzen.png
- 17:09, 2 June 2025 TenBillionPlusOne talk contribs uploaded File:Plankalkül-Potenzen.png
- 17:06, 2 June 2025 TenBillionPlusOne talk contribs created page File:Ergibt-Zeichen.png
- 17:06, 2 June 2025 TenBillionPlusOne talk contribs uploaded File:Ergibt-Zeichen.png
- 16:46, 2 June 2025 TenBillionPlusOne talk contribs created page File:Plankalkül variable index.png
- 16:46, 2 June 2025 TenBillionPlusOne talk contribs uploaded File:Plankalkül variable index.png
- 13:09, 1 June 2025 TenBillionPlusOne talk contribs moved page User:TenBillionPlusOne/Draft to Goto machine (I finished the draft. :))
- 11:24, 1 June 2025 TenBillionPlusOne talk contribs created page Transformation is complete/readable (Created page with "This is dialect of Transformation is complete that is less beautiful but more readable. == Data types == * Set is a map that maps each non-set to a boolean. * Function is a map that transforms value(s) into a value. * Atom is atom. Simple. * Boolean can be true, false or NaV (Not a Value). The reason the sets are not functions is that a Turing machine must be able to compare two sets. Note that there are two separate methods of application - A(B,C,...) for functi...")
- 16:58, 31 May 2025 TenBillionPlusOne talk contribs created page Candidates for deletion (Created page with "This page is for pages that should be deleted. If you see the page that should be deleted, please add it here. User:ais523, if you see this page, please delete all pages that are listed here. == Candidates for deletion == * (mark * (top,height) where (coord,value) * Afefoj")
- 19:22, 20 May 2025 TenBillionPlusOne talk contribs moved page User:TenBillionPlusOne/Draft to Transformation is complete (Finished the esolang)
- 13:39, 16 May 2025 TenBillionPlusOne talk contribs created page User:TenBillionPlusOne/Draft (Created page with "'''Transformation is complete''' is esolang by former User:TBPO, now a clone of User:Hakerh400. I made a timestamp to mark when my transformation became complete: (( I'll insert later ))")
- 10:35, 15 May 2025 TenBillionPlusOne talk contribs created page Hakerh (Created page with "{{WIP}} '''Hakerh''' is an esolang by User:TBPO that imitates User:Hakerh400's esolangs. I made a timestamp below to mark where my transformation into Hakerh400 begun: ~~~ == Syntax == The program consists of function definitions: f(X) = Y Where uppercase letters (except T, F and N) are any expressions. T, F and N are built-in functions that return themselves. f returns a function with name f. X(Y) calls function X with argument Y. === Syntactic sugar ===...")
- 17:53, 14 May 2025 TenBillionPlusOne talk contribs created page User talk:Hakerh400/How to write quines (Created page with "Thank you, User:Hakerh400! I made my first quine using your manual! ~~~~")
- 13:31, 13 May 2025 TenBillionPlusOne talk contribs created page Codesick (Created page with "{{WIP}} '''Codesick''' (''COncatenate, DEreference and StrIng-cheCK'') is an esolang by User:TBPO when they was sick from coding too long. It's an OISC, but instead of bits or numbers, there are... strings. == Memory == There is an infinie namespace of "variables", where each string points to an another string. All strings initially point to themselves. == Instruction == There is only one instruction with the following syntax: S codesick A B C D E; Where arg...")
- 19:25, 12 May 2025 TenBillionPlusOne talk contribs created page Talk:Transfinity (Created page with "Why it's classified as uncomputable? ~~~~")
- 19:10, 12 May 2025 TenBillionPlusOne talk contribs moved page User talk:TenBillionPlusOne/Sandbox to Talk:Underchaos
- 19:10, 12 May 2025 TenBillionPlusOne talk contribs moved page User:TenBillionPlusOne/Sandbox to Underchaos
- 19:27, 8 May 2025 TenBillionPlusOne talk contribs moved page Interpreter modification to Interpreter-modifying (Misspelled title)
- 19:20, 8 May 2025 TenBillionPlusOne talk contribs created page Interpreter modification (Created page with "'''Interpreter-modifying''' is a concept invented by User:TBPO, through it was used a few times before. An interpreter-modifying esoteric programming language is an esolang that can modify the way it interprets the code in runtime. A basic interpreter-modifying esolang is Emmental, that has a command that redefines an instruction to mean different thing. More advanced interpreter-modifying esolang is Mascarpone, which manipulates interpreters as normal dat...")
- 12:56, 7 May 2025 TenBillionPlusOne talk contribs created page BooleanFunge/Interpreter (Created page with "Python implementation, without input: <pre> from random import randint import os.path import sys # GLOBAL VARIABLES grid = [] x = 0 # X COORDINATE OF POINTER y = 0 # Y COORDINATE OF POINTER direction = "right" # CURRENT DIRECTION OF MOTION stack = [] # LIFO NUMBER STORAGE directions = ["left", "up", "right", "down"] # ALL POSSIBLE DIRECTIONS def main(): """Read file and repeatedly traverse grid""" grid = readFile() while grid[y][x] != "@" or True in grid:...")
- 11:54, 7 May 2025 TenBillionPlusOne talk contribs moved page User:TenBillionPlusOne/Sandbox to Interpreterion
- 10:33, 7 May 2025 TenBillionPlusOne talk contribs moved page User:KapitanGamer/Sandbox to User:TenBillionPlusOne/Sandbox (Moving o)
- 19:31, 5 May 2025 TenBillionPlusOne talk contribs created page ;;;*++ (Created page with "{{WIP}} ''';;;*++''' (pronounced "counting") is a functional/stack-based esolang by User:TBPO. == Execution == ;;;*++ has a tape of cells indexed from 1, each starting at 1, and a stack. {| class="wikitable" |+ Instructions |- | ! || Push 1 to the stack. |- | * || Pop x and return a value under the cell number x. |- | + || Pop x and y. Set the value under the cell number y to x. Return x. |} When the program reaches the EOF, the stack is cleared and IP returns t...")
- 16:52, 5 May 2025 TenBillionPlusOne talk contribs created page Talk:Forthrooms (Created page with "Can someone make a Forthrooms interpreter? ~~~~")
- 19:31, 2 May 2025 TenBillionPlusOne talk contribs created page Parenthesys (Created page with "{{WIP}} '''Parenthesys''' is an esolang by User:TBPO. It's name is very misleading because it rarely uses parentheses. == Structure, literals and concatention == There are two data types: number and string. A number is a floating point number with arbitrary but finite precision and arbitrary size. It must match regular expresion <code>-?[0123456789]+(\.[0123456789]+)?</code>. Data types are completely interchangeable, but a <tt>TypeError</tt> is raised is the stri...")
- 16:22, 1 May 2025 TenBillionPlusOne talk contribs created page User talk:I am islptng/TCP1 (Created page with "How User:Cycwin proved TCP1 to be Turing-complete? How ability to arbitrary increment and decrement three registers and make loops proves to be TC? ~~~~")
- 19:00, 29 April 2025 TenBillionPlusOne talk contribs created page Forthrooms (Work in progress)
- 18:00, 27 April 2025 TenBillionPlusOne talk contribs created page User talk:Quintopia (Created page with "==ResPlicate is the Best== Can you make more ResPlicate derivatives? I '''love''' that esolang and I'm a big fan! :) ~~~~")
- 14:54, 27 April 2025 TenBillionPlusOne talk contribs created page I/M Machine (Created page with "'''I/M Machine''' is an esoteric programming language made by User:TBPO. ==Overview== The only memory I/M Machine uses is onle accumulator, which is set initially to 1. The program consists of natural numbers of natural numbers separated by whitespace. All other instructions are ignored. The command described below is called until the program halts: * The first number of the program is removed; * [removed number - 1 l] is added t the accumulator; * If accumulator...")
- 11:50, 27 April 2025 TenBillionPlusOne talk contribs created page Atemlanguage (Created page with "'''Atemlanguage''' is a concept invented by User:TenBillionPlusOne dual to the concept of metalanguage. Generally speaking, metalanguage of L is a language that has a program that takes an input and executes it as in L. However, ''atemlanguage'' of program P is a language that simulates P and its instructions are input(s) taken by P. ''Simprogram'' is a program than an atemlanguage simulates. For example, let's take the following BF program: ,[.,] this is...")
- 16:40, 16 April 2025 TenBillionPlusOne talk contribs created page User:TenBillionPlusOne (Created page with "Good afternoon! I am TenBillionPlusOne, also known as TBPO, PiSpaceships or KapitanGamer. == My esolangs == * BooleanFunge is Befunge but operating on bits. * !/* is a totally uninteresting total esolang unusable for programming.")
- 17:30, 14 April 2025 TenBillionPlusOne talk contribs created page !/* (Created page with "'''''WARNING: THIS PAGE IS WORK IN PROGRESS.''''' {{infobox proglang |name=<text> |paradigms=Imperative |author=User:TenBillionPlusOne |year=2025 |class=Total |files=.islst }} '''!/*''' or ''islst'' is a total language that is Category:Unusable_for_programming. It has three numeric operations: incrementation, division by two and multiplication by three. ==Memory== It has one floating-point accumulator, sometimes referred to as <code>x</code>. ''Digit'' is...")
- 09:20, 10 April 2025 User account TenBillionPlusOne talk contribs was created