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).
- 13:45, 19 January 2024 Kiken talk contribs created page Operation (Created page with "'''Operation''' is an esoteric programming language that relies on folder metadata, created by kiken. ==Overview== ===Memory=== Memory in Operation consists of a stack. Each item is a single byte. The memory starts with {{cd|00000000}} pushed onto the stack. Once the stack is empty, program halts. ==Execution== Executing programs in Operation is done in this order: * First, the interpreter takes in the file's inode and preforms a [[#Splitting|split]...")
- 09:49, 17 January 2024 Kiken talk contribs created page User:Kiken/Construction Site/Implementations/Operation (Created page with "<pre> import os # takes in a file name as input def operation(filename): data = '' with open(filename) as f: stat = os.stat(filename) inode = stat.st_ino for char in inode: if int(char) % 2 == 0: data += 0 else: data += 1 </pre>")
- 03:43, 14 January 2024 Kiken talk contribs moved page User:Kiken/Construction Site/Descriptions/email to User:Kiken/Construction Site/Descriptions/Operation (decided to change name)
- 03:39, 14 January 2024 Kiken talk contribs created page User:Kiken/Construction Site/Descriptions/email (Created blank page)
- 11:18, 7 January 2024 Kiken talk contribs created page Train (Created page with "{{Distinguish/Confusion|TRAIN!}} '''Train''' is a two-dimensional esoteric programming language created by User:kiken. ==Overview== Train consists of a single train (the instruction pointer) that is moving across a track. It is constantly moving forwards, and once the train is no longer on the track, it is ''derailed'' and the program halts - note that if a train comes across a 90° turn, then it won't turn and will also be derailed. The trail begins at the top...")
- 11:17, 7 January 2024 Kiken talk contribs created page User:Kiken/Construction Site/Descriptions/Current (Created page with "This page is a draft for my esolang, '''Current'''.")
- 06:17, 7 January 2024 Kiken talk contribs created page User:Kiken/Construction Site/Descriptions/Train (Created page with "This page is a draft for my esolang, '''Train'''.")
- 09:30, 3 January 2024 Kiken talk contribs moved page You can fuck without a brain to B̶r̶a̶i̶n̶fuck over redirect (adding strikes into the title, like the author probably wanted)
- 09:30, 3 January 2024 Kiken talk contribs deleted redirect B̶r̶a̶i̶n̶fuck by overwriting (Deleted to make way for move from "You can fuck without a brain")
- 10:43, 2 January 2024 Kiken talk contribs moved page User:Kiken/Construction Site/Descriptions/Grub to User:Kiken/Construction Site/Descriptions/grub (Subpages was meant to be lowercased)
- 10:42, 2 January 2024 Kiken talk contribs created page User:Kiken/Construction Site/Descriptions/Grub (Created page with "{{lowercase}} This page is a draft for my esolang, '''grub'''.")
- 10:20, 2 January 2024 Kiken talk contribs created page 横/Implementations (Redirected page to User:Kiken/Construction Site/Implementations/横) Tag: New redirect
- 10:19, 2 January 2024 Kiken talk contribs created page 横 (Created page with "'''横''' (Chinese for '''horizontal''') is a two-dimensional esoteric programming language made by User:kiken. It is based on so-called 'generic platformers' that are usually seen on [https://scratch.mit.edu Scratch]. ==Overview== The IP starts at the top-left of the grid and by default does not go in any direction. '''横''' also has an accumulator and a stack. ===Gravity=== The instruction pointer in '''横''' is affected by gravity (the IP will constantly f...")
- 09:45, 30 December 2023 Kiken talk contribs created page Heng (Redirected page to 横) Tag: New redirect
- 10:38, 29 December 2023 Kiken talk contribs created page User:Kiken/Construction Site/Implementations/横 (Created blank page)
- 10:37, 29 December 2023 Kiken talk contribs created page User:Kiken/Construction Site/Implementations/morse code (Created page with "<pre class="rectwrap"> from sys import argv # assuming file is in main.py, execute with: python3 main.py [filename] def morse_code(code): yield_ = code index = 0 morsetochar = {'.-': 'A', '-...': 'B', '-.-.': 'C', '-..': 'D', '.': 'E', '..-.': 'F', '--.': 'G', '....': 'H', '..': 'I', '.---': 'J', '-.-': 'K', '.-..': 'L', '--': 'M', '-.': 'N', '---': 'O', '.--.': 'P', '--.-': 'Q', '.-.': 'R', '...': 'S', '-': 'T', '..-': 'U', '...-': 'V', '.--': 'W', '-..-'...")
- 10:35, 29 December 2023 Kiken talk contribs created page User:Kiken/Construction Site/Implementations/Sōap (Created page with "<pre> import re class SooapError(SyntaxError): pass def sooap(code): functions = {} vars = {} result = '' lineno = 0 code = code.split('\n') for line in code: if code[line][len(code[line])] != ':' raise SooapError('expected \':\'') if re.sub('\s', '', code[line+1]) == '': raise SooapError('expected description') if re.sub('\s', '', code[line+2]) == '': raise SooapError('description...")
- 20:39, 28 December 2023 Kiken talk contribs created page User:Kiken/Construction Site/Descriptions/横 (Created blank page)
- 21:02, 27 December 2023 Kiken talk contribs created page User:Kiken/Construction Site/Descriptions (Created page with "This page is where I develop my esolangs' descriptions before posting them onto Esolang.")
- 20:59, 27 December 2023 Kiken talk contribs moved page User:Kiken/Implementations to User:Kiken/Construction Site/Implementations (organization of user subpages)
- 20:57, 27 December 2023 Kiken talk contribs created page User:Kiken/Construction Site (Created blank page)
- 15:30, 20 December 2023 Kiken talk contribs created page Sooap (Redirected page to Sōap) Tag: New redirect
- 14:28, 20 December 2023 Kiken talk contribs created page Brainfk (redirect) Tag: New redirect
- 14:21, 20 December 2023 Kiken talk contribs created page Sōap (Created page with "{{Distinguish/Confusion|SOAP}} {{WIP}} '''Sōap''' (pronounced /soʊp/) is a thematic esoteric language made by kiken. It is based around the text at the back of the container of the liquid soaps. (yes, I made many trips to the bathroom to see my soap for this) ==Overview== ===Titles=== Sōap consists of different titles. Titles consist of the following: * Ingredients * Warning * Directions for use * [the name of your soap] ====[t...")
- 08:42, 19 December 2023 Kiken talk contribs created page User:Kiken/Implementations (Created page with "This page is where I create my implementations before posting them on Esolang wiki.")
- 13:40, 15 December 2023 Kiken talk contribs created page Informal (Created page with "{{WIP}} '''Informal''' is a pseudo-natural language that uses informal English as an attempt to make an esoteric language, created by kiken. {{infobox proglang |name=Informal |author=kiken |year=2023 |class=Unknown |files=<code>.informal</code>, <code>.infm</code> }} ==Overview== An Informal statement is part of an English sentence. Informal statements may end with {{cd|.}}, {{...")
- 07:33, 15 December 2023 Kiken talk contribs created page Template:3 (Created blank page)
- 09:16, 14 December 2023 Kiken talk contribs created page User:Kiken/vector.js (Created page with "btn = document.createElement('button'); btn.style.position = 'fixed'; btn.style.left = '19em'; btn.style.top = '19em'; btn.innerText = 'the button of annoyance'; btn.onclick = 'alert("yaáæãäåâāãæá")'; document.body.appendChild(btn);")
- 08:42, 14 December 2023 Kiken talk contribs created page Morse-code (redirect to morse code, hyphen is optional) Tag: New redirect
- 07:42, 14 December 2023 Kiken talk contribs created page Morse code (Created page with "{{lowercase}} '''morse code''' is an esolang created by kiken in 2023 (sort of) based on [https://en.wikipedia.org/wiki/Morse_code morse code]. {{infobox proglang |name=morse code |author=User:kiken |paradigms=String-rewriting paradigm |year=2023 |class=Unknown |refimpl=here |files=<code>.mos</code> }} ==Overview== '''morse c...")
- 04:08, 10 December 2023 Kiken talk contribs created page FunctionaI (Created page with "{{lowercase}} {{Distinguish/Confusion|Functional}} {{infobox proglang |name=FunctionaI |paradigms=Functional |author=User:kiken |year=2014 |class=Turing complete |refimpl=Unimplemented |files=<code>.functionai</code>, <code>.functlon</code> }} '''functional''' (with a capital I) is an esolang made by kiken that uses nameless functions. The capital ''...")
- 12:53, 9 December 2023 Kiken talk contribs created page User:Kiken (Created page with "{{lowercase}} I'm '''kiken'''.")
- 12:49, 9 December 2023 User account Kiken talk contribs was created