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).
- 05:11, 24 March 2025 I am islptng talk contribs created page 8 bits, 6 bytes (Created page with "It was designed for a 8-bit computer which has 6 registers. You can write 256 instructions at 1 time. <pre> 0~63: reg[0] = instruction 64-127 64+a: reg[3] = reg[2] [NAND,OR,AND,NOR,+,-][a] reg[1] 128~191 128+8a+b: reg[b] = reg[a] 192~255 192+a: if reg[3] [False,True,=,!=,<,>=,<=,>][a] 0 then goto reg[0] </pre>")
- 04:43, 24 March 2025 I am islptng talk contribs created page StackBBQ2+ (Created page with "<b>StackBBQ2+</b> is a language designed by islptng to compile to StackBBQ. == Commands == {|class="wikitable" ! Command !! Compile into !! Explanation |- | 1 || 1 || Push 1 |- | 0 || 1110 || Push 0 |}")
- 20:29, 20 March 2025 I am islptng talk contribs created page User talk:Hotcrystal0/CGoL+ (Created page with "Will it be text-based, or running on a grid and use state 2-5 to perform I/O?<br> i.e. Does it need a Golly script to implement it? --~~~~")
- 08:09, 20 March 2025 I am islptng talk contribs created page Talk:PAL (Created page with "I spend 2 days making this... [https://tio.run/##1Vlbb9s2FH62fsWpuqBW7CR2t@4i1Ck2oG9FNxR7M4yAkmiHqUy5EtU567q/np3Di@5OmiJtsZc6Is/l43cOeQ7ZKGdCrsv47c1N4Huev0gknwZ8nKti6odvfn/z5qU/VlLku9HI81kSbVkKeQY5j7alBJVJmKpCpJDwXJTveO7DAjiExgRIAT5PI5ZzJbRwgT8xv4oyH9aCTGrljkHr5rDJJyl7z58AV2UkcqUYkGV22TFdo9VOtGnr5rDpDa4V/2TAI1Qrt6Ak35abnEFAPDjbhXFFxotK4nJTZpIjGGvW5xvJclgjgDKDPU/QAUHB6QVYn8ZcItl2m8WIqxByk8U8l6UzknAp1jxx9D0RuPAtkz0jIUcOQGZC7Xi8fwn6h4@8RlyDMRF3GpPSrgprEI81Va/QYWy@@d9C8reZsi...")
- 04:16, 20 March 2025 I am islptng talk contribs created page PAL (Created page with "PAL is an esolang created by islptng. It is designed to have no flow control. == Data types == There are 3 data types. * <b>Number</b>, which stores a fraction. * <b>List</b>, which stores a list of objects. * <b>Lambda</b>, which is a monadic lambda function == Syntax == In this esolang, a program is a single expression. They're written in Polish(Prefix) notation. Like @ and XENBLN, expressions are made of trees of function calls. Each character represents a f...")
- 06:45, 12 March 2025 I am islptng talk contribs created page NOR machine (I'm sure this is Turing-Complete. Need an interpreter.)
- 01:51, 12 March 2025 I am islptng talk contribs created page User:I am islptng/My ideas (Created page with "Feel free to steal them! # An esolang that is based on AsciiDots but has universal contruction. # An esolang where every program is a long word that is pronounceable in English.")
- 06:42, 11 March 2025 I am islptng talk contribs created page 2 digits, 50 digytes (Created page with "This language has 99 5-digit number memory, numbered 00-98. (99 is used for I/O.) Instruction set: 0 let f t: f = t 1 add f t: f += t 2 sub f t: f -= t 3 mul f t: f *= t (mod 10<sup>5</sup>) 4 div f t: f /= t 5 mod f t: f %= t 6 ant f t: f &= ~t 7 jez f i: if(f==0) goto i 8 jnz f i: if(f!=0) goto i 9 jlz f i: if(f<0) goto i Instructions are written in memory, this means, you can write 99 instructions at most. Take the instruction "09999" for example: opcod...")
- 04:29, 11 March 2025 I am islptng talk contribs created page StackBBQ2 (Created page with "StackBBQ2 is a computation model / esolang created by islptng. It has a stack that holds bits, a queue Q that holds bits, and a stack P that holds queues. == Instructions == <code>1</code> push True to stack. <br> <code>0</code> pops a, pops b, and pops c if !(a&&b), pops d if !(a||b),<br> then does the special commands: abcd 11 invert top bit of stack 101 if the stack has 2 or more values, pop the top two, OR them, and push result. - if it has one, pop it....")
- 03:05, 11 March 2025 I am islptng talk contribs created page User:I am islptng/Draft for Esolang² (Created page with "<b>Esolang²</b> is a language designed by islptng.")
- 03:01, 11 March 2025 I am islptng talk contribs created page User talk:Hotcrystal0/Deep🕳️ (Created page with "I hope it'll be Turing-Complete. --~~~~")
- 00:11, 10 March 2025 I am islptng talk contribs created page Decorat (Created page with "<b>Decorat</b> is a type of assembly language designed by islptng. == Syntax == Each line is: keyword argument For example: put 15 To define a label, write labelname: put 15 To use a label, enclose it in <> : jnz <labelname> Comment, like other assembly, is a semicolon. nop 0 ; This line does nothing! === How it works === It has a register to store a value. The arguments are just part of the memory (and thus we can modify them).<br> For example: get <con...")
- 04:59, 7 March 2025 I am islptng talk contribs created page User talk:Stkptr (Created page with "Alright. Help me rewrite it. --~~~~")
- 02:40, 7 March 2025 I am islptng talk contribs created page Pentagon says bitwise shift right a by b and bitwise andnot c, negate the result and add d, store it to e, if it is less than or equal to zero, goto line f. (Created page with "It's inspired by Hexagon says, but it's sranbsleq. The only command is a line number followed by a dot and the title. <br> Note that "cell" can be added before a number.")
- 20:59, 6 March 2025 I am islptng talk contribs created page User talk:Hotcrystal0/Sandbox (Created page with "trans-what? "Girl" is definitely not an object in CGoL. conlay's game of wife?")
- 09:44, 6 March 2025 I am islptng talk contribs created page User talk:PrySigneToFry/Cellular Automaton related thingy (Created page with "你要是没事把这个分个类 <div class="mw-collapsible mw-collapsed"> 点击Expand查看RLE <div class="mw-collapsible-content"> <pre> x = 2079, y = 2546, rule = B2e3air4ijwz/S12-in3k4r5i 974bo43bo42bo43bo41bo43bo$513bo43bo42bo43bo41bo43bo243bo43bo42bo43bo41b o43bo$513bo43bo42bo43bo41bo43bo242bo43bo42bo43bo41bo43bo$512bo43bo42b o43bo41bo43bo6$512bo44bo43bo44bo42bo44bo238bo44bo43bo44bo42bo44bo$513b o44bo43bo44bo42bo44bo238bo44bo43bo44bo42bo44bo$513bo44bo43bo44bo42bo...")
- 00:41, 6 March 2025 I am islptng talk contribs moved page Afefoj to Afefoj-Flak
- 00:29, 6 March 2025 I am islptng talk contribs created page Afefoj (Created page with "{{lowercase}} {{wrongtitle|title=''<span style="display:inline-block;transform:rotate(170deg);">rotate</span>}} <b><span style="display:inline-block;transform:rotate(170deg);">rotate</span></b> is an esolang made by islptng. The structure of the program are expressed by rotations. == Syntax == {|class=wikitable It's just Brain-Flak, but brackets are replaced with <code>- ... -</code> rotated. ! Command !! rotation |- | <code>()</code> || 13<sup>o</sup> |- | <code>[...")
- 06:20, 5 March 2025 I am islptng talk contribs created page Talk:Fun 2 code (Created page with "<pre> tr-uck pl-uck d-uck f-un 2 rhyme~ s-ick, st-ick, t-ick, d-inner time~ sp-it, spl-it, sm-it, sh-ut your eyes~ w-itch st-itch s-itch b-ig surprise~ </pre>")
- 06:12, 5 March 2025 I am islptng talk contribs created page User talk:Hotcrystal0/CAPI (Created page with "Is it gonna be islp-complete Lv.1, Lv.2 or Lv.3? You forget that islp-complete has 3 levels. Also I suggest the name to be "pica" instead of "capi". ~~~~")
- 02:55, 4 March 2025 I am islptng talk contribs created page 坑Q9+ (Created page with "It's 🕳️Q9+ but 坑 instead of 🕳️. 坑Q9+ is a joke language created by islptng. ==Commands== 坑Q9+ has these commands: {| class="wikitable" !Command !Description !Derived from |- |<code>坑</code> or <code>[KENG]</code> |Get user input and output the input. |坑 |- |<code>叹</code> or <code>[TAN]</code> |Get user input in string form and return it. |坑 |- |<code>警[''input'']</code> or <code>[JING][''input'']</code> |Reverse ''input'' and re...")
- 02:46, 4 March 2025 I am islptng talk contribs created page User:I am islptng/Islp-Complete (Created page with "A programming language is considered Islp-complete if it meets all the following criteria: <b>Level 1</b>: * It should be able to implement Fractran. * It should be able to print one of "Hello, world!", "问天地好在", "問天地好在", "你好,世界!" * It should be able to calculate Pi with the following algorithm: <pre> a <- 2 b <- 0 c <- 1 i <- 1 digits <- 100 while i < 4 * digits { t <- i * 2 + 1 b <- (a + b) * t c <- c * t a <- a * i i...")
- 08:46, 3 March 2025 I am islptng talk contribs created page StormScript (Created page with "{{Distinguish/Confusion|StormLang}} {{WIP}} This esolang is created by islptng. It'll be high-level but stack-based. Document will be written later. However, it is simply a calculator now. ==Implementation== <pre><nowiki> def tokenize(s): tokens = [] current = "" for i in list(s): if i in "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789": current += i else: if current: tokens.append(current) current = "" if i not in "\n\t\r ":...")
- 07:12, 1 March 2025 I am islptng talk contribs created page Talk:Mutzerium (Created page with "Some mistake: # You can completely remove "pair" since you have "tuple". # You have got one "reveal" from original SLet, which is the combination of your additional command "randrange" and "choice". Please remove one of them. <br />~~~~")
- 06:01, 1 March 2025 I am islptng talk contribs created page File:SLetIcon.jpg (Icon for SLet)
- 06:01, 1 March 2025 I am islptng talk contribs uploaded File:SLetIcon.jpg (Icon for SLet)
- 21:15, 25 February 2025 I am islptng talk contribs created page HQ9Sharp (Created page with "{{wrongtitle|title=HQ9#}} HQ9# is an esolang created by islptng. It is designed to be more usable than HQ9+. ==Commands== <pre> H prints Hello World Hw prints Hello world HW prints HELLO WORLD hw prints hello world H, prints Hello, World H! prints Hello World! can be nested: Hw,! prints Hello, world! 9 prints 99 bottles of beer with "1 bottles" and "0 bottles" 9s prints 99 bottles of beer with "1 bottle" 9m prints 99 bottles of beer with "1 bottles" and "Go to stor...")
- 04:35, 24 February 2025 I am islptng talk contribs moved page Talk:SLet to Talk:SLet (Old 3) (Surprise! SLet 4 is here!)
- 04:35, 24 February 2025 I am islptng talk contribs moved page SLet to SLet (Old 3) (Surprise! SLet 4 is here!)
- 16:07, 21 February 2025 I am islptng talk contribs created page User:I am islptng/Draft for SLet 4 (Created page with "{{SUBST::SLet}}")
- 03:42, 21 February 2025 I am islptng talk contribs created page Talk:OIIAOIIA (Created page with "<blockquote>o, i i a, i o i i i i a, i<br /> ::::::- a spinning cat</blockquote>")
- 07:03, 16 February 2025 I am islptng talk contribs created page Fucktion (Created page with "'''Fucktion''' is an esolang created by islptng. == Intro == We have only parenthesis. Other characters are considered as comments.<br> Each program are computed by calling function f(). Arguments are passed without punctuation or spaces.<br> Example: (()(())(()())) Calls: f(f(),f(f()),f(f(),f())) Depending on the number of arguments, f() performs differently. We have a dictionary to store variables. Like some of my other esolangs, numbers are fractions.<br> Writting...")
- 01:47, 15 February 2025 I am islptng talk contribs created page User talk:Hotcrystal0 (Created page with "Please help contribute to User:I am islptng/List of the users that is also in conwaylife.com Thanks! ~~~~")
- 02:22, 14 February 2025 I am islptng talk contribs created page User:I am islptng/Game:Nonsense (Created page with "I personally think that spaghetti should be mixed with #42 concrete, because the length of screws can easily affect the excavator's torque. When you strike it in, it will instantly produce a large amount of high-energy proteins, known as UFOs, which will seriously impact economic development and even cause certain nuclear pollution to the Pacific Ocean and chargers. In addition, according to the Pythagorean theorem, you can easily deduce that the artificial raising Hidec...")
- 09:15, 13 February 2025 I am islptng talk contribs created page Translated ZhongWen/islptng Zwei (Created page with "Translated ZhongWen/PSTF Again Chapter IX|<span style='font-family:Unifont;'>You computer has a severe err彁蕢L$D3蓨h$禤&奌%玲 ?禤'玲 蕢L$H3蓨h(禤*奌)玲 ?禤+玲 蕢L$L3蓨h,禤.奌-玲 ?禤/玲 蕢L$P3蓨h0禤2奌1玲 ?禤3玲 ?禤6塋$T3蓨h4奌5玲 ?禤7玲 ?禤:塋$X3蓨h8奌9玲 ?禤;玲 ?見p<奝=禓?菱 琢? 袐F 媈媬嬭另拎 ?~#?~n龐D孁缐l$溜 鴭帕?铃 ?\$#\$ 3\$?貗D$崉檡俍媗$H塂$婦$ 嬝凌零 貗??D$03D$(嬭懒? 鑻D$塴$(嬭拎另...")
- 07:38, 12 February 2025 I am islptng talk contribs created page Translated ZhongWen/islptng (Created page with "1. 把这个圣经玩意儿取出来 <pre> 呸。 1696 年,Tnt 准备就绪。年底的爱情是 1709 年的第一天。 呸。 呸。 n4m,又一次,Easy Some 开始搜索了! 呸。 N4M,又是 CRF。 呸。 哦,哦! 1696 年 1 月,2 月。 1696 年,Tnt 准备就绪。 呸。 呸。 这很简单。 n4m ,再说一次,我喜欢 crf。 1696 年,Tnt 准备就绪。 n4m ,再次,歌曲 DN 1709 crf。 </...")
- 10:38, 11 February 2025 I am islptng talk contribs created page User talk:PrySigneToFry/Sandbox/Some useless code (Created page with " ++c=c++ + ++c; warning: multiple unsequenced modifications to 'C' 最终结果:C=C*2+6")
- 09:07, 5 February 2025 I am islptng talk contribs created page Alphabetack (Created page with "{{WIP}} '''Alphabetack''' is an esolang created by islptng. It's plan is to use all 26 characters.<br> It has a stack and a box. The box can hold any rational. == Commands == <pre> a add (box += pop()) b break c continue d divide (box /= pop()) e else (used for if) f function (define a function, the name will be the box) g get (box = pop()) h i input (box = ord(input())) j judge (if box != 0:) k l less (if box < 0:) m modulo (box %= pop()) n negate (box *= -1) o output...")
- 16:26, 3 February 2025 I am islptng talk contribs moved page User:I am islptng/Sandbox to 高尔夫 (I want it to move out!)
- 12:47, 3 February 2025 I am islptng talk contribs created page User talk:Cycwin (Created page with "<big><big><big><big><big><big>你好!</big></big></big></big></big></big> ~~~~")
- 07:16, 3 February 2025 I am islptng talk contribs created page Frackit (Created page with "<b>Frackit</b> is an esolang created by islptng. It operates on fractions. It has a stack. == Commands == {|class=wikitable ! Command !! Meaning |- | #<i>n</i> || push(n) (n is a positive integer) |- | / || push(1/pop()) |- | ! || pop() |- | < || insert(0,pop()) |- | > || push(pop(0)) |- | ^ || push(pop().denominator) |- | [<i>code</i>] || execute code infinitely |- | (<i>code1</i><nowiki>|</nowiki><i>code2</i>) || pop, if equal to 1, execute code1, else execute code2 |...")
- 17:00, 1 February 2025 I am islptng talk contribs created page User talk:Calculus is fun (Created page with "Do you think MMRPN can do anything? ~~~~")
- 16:54, 1 February 2025 I am islptng talk contribs created page User talk:Hsxiaobai (Created page with "Are you chinese? If so, what's your name (*小白?) ~~~~")
- 16:17, 30 January 2025 I am islptng talk contribs created page Stackfish (Created page with " i increment TOS d decrement TOS s square TOS o output TOS z push 0 r push a number read from stdin n put TOS to the bottom of stack p...q Same as bf [] but TOS instead")
- 05:43, 28 January 2025 I am islptng talk contribs created page User:I am islptng/SingleOperandAssembly (Created page with "== Instructions == The RISC has 16 instructions, each of them has exactly 1 operand. The computer has a register to store the result of calculations. {|class=wikitable ! Hex !! Keyword !! Meaning |- | 0 || imd x || reg = x |- | 1 || jmp x || pc = x |- | 2 || jnz x || if(reg != 0) pc = x |- | 3 || jlz x || if(reg < 0) pc = x |- | 4 || get x || reg = ram[x] |- | 5 || put x || ram[x] = reg |- | 6 || rget x || reg = ram[ram[x]] |- | 7 || rput x || ram[ram[x]] = reg |- | 8...")
- 06:28, 15 January 2025 I am islptng talk contribs created page BitTurn (Created page with "<b>BitTurn</b> is an esolang that operates on a 2D bitmap. The pointer can read/write the bits on the map and move. ==Commands== {|class=wikitable ! Command !! Meaning |- | <code><nowiki>|</nowiki></code> || Flip the current bit pointing and move forward. |- | <code>G</code> || Rotate counterclockwise. |- | <code>[</code> || If the current bit is 0, go to the matching <code>]</code>. |- | <code>]</code> || If the current bit is not 0, go to the matching <code>[</code>. |}")
- 15:59, 12 January 2025 I am islptng talk contribs created page Talk:元旦 (Created page with "How to use library Kitten4接口? By the way I'm still a fan of Kitten4. ~~~~")
- 15:37, 12 January 2025 I am islptng talk contribs created page Talk:Translated 脑子爆掉/Mihai Again! (Created page with "<blockquote>100000 liters of liquid nitrogen at -999999999999 degrees Celsius</blockquote> Fun fact: Nitrogen at -273.15 degree Celsius (or below) is solid. Also, everybody actually can't freeze something to -273.16 degree Celsius. <blockquote>-273.16 degrees Celsius (3.141592653589793238462643383 degrees Kelvin)</blockquote> Fun fact: 0 degree Kelvin equals to -273.15 degree Celsius. -273.16 Celsius equals to -1 Kelvin. ~~~~")
- 13:32, 12 January 2025 I am islptng talk contribs created page Titin (Created page with "{{wrongtitle|title=Methionylthreonylthreonylalanylprolyl...leucylarginylthreonylserylvalylis}}<br> This is a trivial brainstack substitution. ==Syntax== Every program starts with the first 9999 letters of titin: methionylthreonylthreonylglutaminylalanylprolylthreonylphenylalanylthreonylglutaminylprolylleucylglutaminylserylvalylvalylvalylleucylglutamylglycylserylthreonylalanylthreonylphenylalanyl...")
- 13:04, 12 January 2025 I am islptng talk contribs created page User:I am islptng/Sandbox/Titin (Created page with "<pre> mttgaptftgplgsvvvluystatfuahisyfpvpuvsrfndygviststlpyvgisfsdynakltipavtkaqsynoslkatqysygatstaullvkautappqfvgnlgsmtvngysgvnlgvnvtyipqpvvkfondyauigssldfgisguydloslliauaopudsytosvqatqsvynatstaullvgyuuuvpakktktivstagisusngtniukkiuahfdansiatvumvidyaaygglphktppnippkpksnsptppsiaakaglanggspspinhspspvnhvnaptpspvnsvspaanistspinsvnspllmnktgastvatypuvppprkguyovasssuaumnuttlttstgintuunruynoyvgugvtisyaayaaasvsasasoaauavatyakuvkgdadksaavatvvaavdmanvnupvisavugtagnttttavhigpagugvnk...")