We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 22:04, 23 June 2026
 
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

23 June 2026

     16:02  Combinatory logic‎‎ 3 changes history +25 [Bobby Jacobs‎; Blashyrkh‎ (2×)]
     
16:02 (cur | prev) −43 Blashyrkh talk contribs (→‎Table of combinators: Both Ê versions - canonical and shortest)
 m   
15:47 (cur | prev) +67 Blashyrkh talk contribs (Hide shorter BCKW expression for Ê in a comment)
     
14:48 (cur | prev) +1 Bobby Jacobs talk contribs (The traditional expression for a bald eagle is EE=B(BBB)(B(BBB)). The other composition birds just use B, so it is best to be consistent.)
     15:49  Talk:Combinatory logic‎‎ 2 changes history +350 [Bobby Jacobs‎; Blashyrkh‎]
     
15:49 (cur | prev) +190 Blashyrkh talk contribs (→‎Affine bases: Conversation continues....)
     
14:53 (cur | prev) +160 Bobby Jacobs talk contribs
     15:30 User creation log User account Whakamiharo talk contribs was created ‎
N    12:28  Don Giovanni‎‎ 2 changes history +33,349 [PrySigneToFry‎ (2×)]
 m   
12:28 (cur | prev) +3 PrySigneToFry talk contribs (Oops!)
N    
11:49 (cur | prev) +33,346 PrySigneToFry talk contribs (Created page with ":''This entry is not about Mozart's opera *Don Giovanni*.'' Don Giovanni is designed by PSTF and his AI assistant. It is a Turing-complete language, that may be helpful to the design of Lingua Indeterminatum. = Syntax Overview = <pre> // Factorial (recursion) fn factorial(n) { if n <= 1 { return 1; } else { return n * factorial(n - 1); } } // Fibonacci (double recursion) fn fib(n) { if n <= 1 { return n; } else {...")
     11:51  Language list‎‎ 3 changes history +37 [PrySigneToFry‎; Win7HE‎ (2×)]
     
11:51 (cur | prev) +19 PrySigneToFry talk contribs
     
08:55 (cur | prev) −1 Win7HE talk contribs (→‎M)
     
08:54 (cur | prev) +19 Win7HE talk contribs
N    09:42  Methemetics‎‎ 6 changes history +1,296 [Win7HE‎ (6×)]
     
09:42 (cur | prev) +1 Win7HE talk contribs (→‎Cat)
     
06:13 (cur | prev) 0 Win7HE talk contribs (→‎Examples)
     
06:10 (cur | prev) 0 Win7HE talk contribs
     
06:10 (cur | prev) +73 Win7HE talk contribs
 m   
06:09 (cur | prev) +47 Win7HE talk contribs (equation text)
N    
06:07 (cur | prev) +1,175 Win7HE talk contribs (Created page with "Methemetics is an esoteric programming language by User:Win7HE. It uses the four basic math functions as a base. As well as != (not equal), > (greater-than), < (less-than), and == (equal). It has variables too. == Instructions == <code>_o = ...</code> prints the character of the result of <code>...</code> <code>_i = ...</code> sets the instruction number to the result of <code>...</code> <code>_p</code> is the unicode of the input's character #<code>_z + 1</code>....")
     09:26  Lingua Indeterminatum‎‎ 2 changes history +26 [Ractangle‎; PrySigneToFry‎]
     
09:26 (cur | prev) +46 PrySigneToFry talk contribs
 m   
08:31 (cur | prev) −20 Ractangle talk contribs (→‎Development Team: i didn't agree to be a part of the team??????)
     09:12  Talk:Lingua Indeterminatum‎‎ 3 changes history +1,140 [I am islptng‎; PrySigneToFry‎ (2×)]
     
09:12 (cur | prev) +407 PrySigneToFry talk contribs (→‎Keyword List: new section)
     
09:03 (cur | prev) +248 I am islptng talk contribs
     
04:08 (cur | prev) +485 PrySigneToFry talk contribs
 m   09:03  User:Ractangle/Sandbox/Comments diffhist −453 Ractangle talk contribs
 m   08:44  User:Ractangle diffhist +19 Ractangle talk contribs
     08:43  (Upload log) [Ractangle‎; Miui‎ (4×)]
     
08:43 Ractangle talk contribs uploaded a new version of File:Ractangle.png(up to date noe)
     
04:44 Miui talk contribs uploaded a new version of File:Dafne27.gif(resize)
     
04:44 Miui talk contribs uploaded a new version of File:34D Triadic.png
     
04:30 Miui talk contribs uploaded File:Dafne27.gif
     
03:51 Miui talk contribs uploaded File:34D Triadic.png
     08:39  User:Win7HE diffhist −120 Win7HE talk contribs
     08:27  User talk:I am islptng/On PSTF's Plagiarism diffhist +416 Ractangle talk contribs (→‎Another thing!: new section)
     08:07  Machine‎‎ 2 changes history +305 [3angle‎ (2×)]
 m   
08:07 (cur | prev) −23 3angle talk contribs
     
00:06 (cur | prev) +328 3angle talk contribs
N    06:23  Methemetics/Interpreter‎‎ 4 changes history +2,359 [Win7HE‎ (4×)]
     
06:23 (cur | prev) +5 Win7HE talk contribs
     
06:22 (cur | prev) +227 Win7HE talk contribs
     
06:13 (cur | prev) +1 Win7HE talk contribs
N    
06:08 (cur | prev) +2,126 Win7HE talk contribs (Created page with " DEBUG = 0 import re from sys import argv matchregex=r"(_?\w|[a-zA-Z]{2,}) ?= ?(-?\d+|_?\w|[a-zA-Z]{2,})( ?(!=|>|<|==|-|\+|\*|\/|%) ?(-?\d+|_?\w|[a-zA-Z]{2,}))?;"; try: input = argv[2] except: input = '' txt = open(argv[1],'r').read() _i = '_i' v = {'_i':0,'_z':0} x = re.findall(matchregex, txt) if DEBUG: print(x) for i in range(len(x)): if x[i][2] == '': x[i] = (x[i][0],x[i][1],''...")
     04:54  Machine-language diffhist +44 PrySigneToFry talk contribs
     04:48  Dafne‎‎ 4 changes history +120 [Miui‎ (4×)]
     
04:48 (cur | prev) +56 Miui talk contribs (→‎4D expansion)
     
04:45 (cur | prev) −10 Miui talk contribs (→‎4D expansion)
     
04:30 (cur | prev) +35 Miui talk contribs (→‎4D expansion)
     
03:52 (cur | prev) +39 Miui talk contribs (→‎4D expansion)
     04:10  9 bytes :I diffhist +135 PrySigneToFry talk contribs
 m   03:50  BOREDOM diffhist +296 PrySigneToFry talk contribs
N    03:46  Storm-incomplete diffhist +1,181 PrySigneToFry talk contribs (Created page with "Storm-incomplete is designed by PSTF, and is to against the definition of Storm-complete. = Definition = Note: This content is purely for parody. Before reading, please make sure you are neutral in information technology. Generally speaking, if you want to seriously design a programming language, this page isn't much of a reference and it's not recommended to visit it, to avoid potential mental distress. <div class="mw-collapsible mw-collapsed" style="overflow: hid...")
     01:17  User talk:I am islptng diffhist +250 I am islptng talk contribs

22 June 2026

     23:48  User:Blashyrkh/The Church diffhist −38 Blashyrkh talk contribs (Shorter SKI expressions for 5,6 and 7. Update todo list)
     23:33  Combinatory logic diffhist +33 Blashyrkh talk contribs (→‎Table of combinators: SKI expression for C**)
     22:27  (Deletion log) [Ais523‎ (2×)]
     
22:27 Ais523 talk contribs deleted page PopFuck/Rickroll(derivative of copyrighted lyrics)
     
22:27 Ais523 talk contribs deleted page Never Gonna Fuck You Up/Rickroll(Copyright violation: derivative of copyrighted lyrics (and compressed base64ed text is not suitable for wikis anyway))