Abuse filter log

Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to navigation Jump to search
Details for log entry 7,490

16:40, 18 June 2020: SirFelixDelazar (talk | contribs) triggered filter 9, performing the action "edit" on GORBITSA. Actions taken: Warn; Filter description: require new users to introduce themselves (examine)

Changes made in edit

   
 
S255 O255 r0 R s255 I1 A0 T
 
S255 O255 r0 R s255 I1 A0 T
  +
  +
===Multiplication===
  +
r201 R B17 I255 B16 O0 G201 O202 G202 i201 G0 I255 O0 B16 S0 B8 G201 T
   
 
===Modulus===
 
===Modulus===

Action parameters

VariableValue
Edit count of the user (user_editcount)
0
Name of the user account (user_name)
'SirFelixDelazar'
Age of the user account (user_age)
287
Page ID (page_id)
13390
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'GORBITSA'
Full page title (page_prefixedtitle)
'GORBITSA'
Action (action)
'edit'
Edit summary/reason (summary)
'/* Programs */ '
Old content model (old_content_model)
'wikitext'
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
'{{infobox proglang |name=GORBITSA |paradigms=imperative |author=David Barr |year=[[:Category:2020|2020]] |memsys=[[:Category:Cell-based|Cell-based]] |class=[[:Category:Unknown computational class|Unknown computational class]] |files=<code>.gbt</code>, <code>.bgbt</code> }} '''GORBITSA''' is a novelty [[esoteric programming language]] created by David Barr (aka javidx9) as a programming challenge for One Lone Coder community. It's jokingly named after one of community moderators Gorbit. It first appeared in OLC Discord server on 17th June 2020. ==Complete description of the language as initially provided== Memory = 256 unsigned 8-bit cells X = unsigned 8-bit register Program counter starts at 0 256 program "instruction" slots G = GRAB X, N // Read X from mem[N] O = OFFER X, N // Write X to mem[N] R = RECEIVE X // Reads from input stream into X B = BRANCH X == 0, N // If X == 0, goto instruction N I = INCREASE X, N // Adds N to X register T = TRANSMIT X // Writes X to output stream S = SET X <- N // Set X explicitly to N A = ADD X, N // Adds mem[N] to X register g = GRAB X, [N] // Read X from mem[mem[N]] o = OFFER X, [N] // Write X to mem[mem[N]] r = RECEIVE [N] // Reads from input stream into mem[N] b = BRANCH X == 0, [N] // If X == 0, goto instruction mem[N] i = INCREASE [N], X // mem[N] = mem[N] + X t = TRANSMIT [N] // Writes to output stream mem[N] s = SET X <- X XOR [N] // Performs logic X XOR mem[N], stores in X a = ADD X, [N] // Adds mem[mem[N]] to X register GORBIT-ROM - Program stream is in external memory GORBIT-RAM - Program stream is in memory, each instruction is 2 bytes, therefore PC+=2 per op Example syntax R O201 R O202 S0 O203 G202 A202 O202 G201 I255 O201 B6 G202 T First implementation will likely appear in coming days and will be linked here. ==Language overview== GORBITSA operates on array of 256 8-bit cells (Memory) and single 8-bit register (X).<br> Instruction are provided in linear format, up to 256 instructions (slots 0-255). Current instruction is tracked by instruction counter (IC). At the beginning IC is 0. In each step instruction pointed by IC is read and executed. If instruction doesn't modify IC, the IC is incremented.<br> If IC points after last instruction, it is implementation-defined whether execution halts or continues.<br> If IC increments from 255, it is implementation-defined whether execution halts, or IC rolls over to 0. Whether input and/or output are in a form of a number or ascii character is implementation-defined. All instructions are made out of single-letter command code and up to 1 number parameter. {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>G</code> |Yes: N |X = Memory[N] |- | style="text-align:center"| <code>O</code> |Yes: N |Memory[N] = X |- | style="text-align:center"| <code>R</code> |No |Read input into X |- | style="text-align:center"| <code>B</code> |Yes: N |if X == 0, IC = N |- | style="text-align:center"| <code>I</code> |Yes: N |X += N |- | style="text-align:center"| <code>T</code> |No |Write X into output |- | style="text-align:center"| <code>S</code> |Yes: N |X = N |- | style="text-align:center"| <code>A</code> |Yes: N |X += Memory[N] |} ==Expansions== ===gorbitsa=== After limitations of base language were recognized, the instruction set was expanded to lower case letters.<br> New set allows direct I/O with memory, runtime computed goto destination and XOR. {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>g</code> |Yes: N |X = Memory[Memory[N]] |- | style="text-align:center"| <code>o</code> |Yes: N |Memory[Memory[N]] = X |- | style="text-align:center"| <code>r</code> |Yes: N |Read input into Memory[N] |- | style="text-align:center"| <code>b</code> |Yes: N |if X == 0, IC = Memory[N] |- | style="text-align:center"| <code>i</code> |Yes: N |Memory[N] += X |- | style="text-align:center"| <code>t</code> |Yes: N |Write Memory[N] into output |- | style="text-align:center"| <code>s</code> |Yes: N |X = X xor Memory[N] |- | style="text-align:center"| <code>a</code> |Yes: N |X += Memory[Memory[N]] |} ==Computational class== Due to limited amount of cells and limited possible values in cells and register, it's assumed to be [[finite-state automaton]]. ==Programs== Here are a few example programs that can be written in the GORBITSA language ===[[Cat program]]=== R T ===[[Truth-machine]]=== R O0 I255 O1 G0 T G1 B4 R B6 S1 T S0 B2 T R T B255 S1 T S0 B3 ===[[Quine]] (by [[User: ZippyMagician]])=== Runs in '''GORBITSA-RAM''' mode S0 O255 g255 B11 g255 T G255 I1 O255 S0 B2 G255 I1 O240 g240 B18 S0 B5 B200 ===Subtraction=== R O0 R O1 G0 I255 O0 G1 I255 O1 B13 S0 B4 G0 T S255 O255 r0 R s255 I1 A0 T ===Modulus=== Runs on '''GORBITSA-ROM''' with '''int output''' and '''int input''' R O0 O1 R O2 O3 S255 O255 S0 B11 B19 G3 s255 I1 A1 O1 O5 S0 B10 G2 O10 G5 A10 B35 G5 B37 G10 B35 I255 O10 G5 I255 O5 S0 B21 S0 B8 G1 T ===Byte Swap=== XOR Swap (by [[Sir Felix Delazar]]). It swaps the values of Memory[0] and Memory[1]: G0 s1 O0 G1 s0 O1 G0 s1 O0 ===For loop=== '''The first parameter'''(In this program, 5) is the number of times the loop will be executed S5 O0 S35 T G0 I255 O0 B10 S0 B2 S0 T ===Hello World=== S72 T S101 T S108 T T S111 T S32 T S87 T S111 T S114 T S108 T S100 T ===Guessing Game (by [[User:Geek Joystick]])=== Runs on '''GORBITSA-ROM''' with '''char output''' and '''int input''' (the python interpreter by [[User:Geek Joystick]] & TwistedLlama works for this program) S0 S252 O0 S71 T S117 T S101 T S115 T T S32 T S40 T S48 T S45 T S57 T S41 T S63 T S32 T R O1 I48 T S12 T G0 A1 B50 S87 T S114 T S111 T S110 T S103 T S12 T S0 B0 S82 T S105 T S103 T S104 T S116 T S33 T =Implementations= {| class="wikitable sortable" !Language !ROM-Mode !RAM-Mode !Authors !Link |- | Python |bgcolor="#99ff99"| Yes |bgcolor="#ff9999"| No | * [[User:Geek_Joystick]] * TwistedLlama | https://py3.codeskulptor.org/#user305_jVW4bJkLBXz9HE9.py |- | Node.JS |bgcolor="#99ff99"| Yes |bgcolor="#99ff99"| Yes | * [[User:ZippyMagician]] | https://repl.it/@ZippyMagician/GORBITSA |- | JavaScript |bgcolor="#99ff99"| Yes |bgcolor="#ff9999"| No | * Sir Felix Delazar | https://sirfelixdelazar.github.io/GORBITSA/ |- | C |bgcolor="#99ff99"| Yes |bgcolor="#99ff99"| Yes | * [[User:X39]] | https://repl.it/@killerx29/EsoLang-GORBITSA#main.c |} [[Category:Languages]] [[Category:2020]] [[Category:Implemented]] [[Category:Low-level]] [[Category:Unknown computational class]]'
New page wikitext, after the edit (new_wikitext)
'{{infobox proglang |name=GORBITSA |paradigms=imperative |author=David Barr |year=[[:Category:2020|2020]] |memsys=[[:Category:Cell-based|Cell-based]] |class=[[:Category:Unknown computational class|Unknown computational class]] |files=<code>.gbt</code>, <code>.bgbt</code> }} '''GORBITSA''' is a novelty [[esoteric programming language]] created by David Barr (aka javidx9) as a programming challenge for One Lone Coder community. It's jokingly named after one of community moderators Gorbit. It first appeared in OLC Discord server on 17th June 2020. ==Complete description of the language as initially provided== Memory = 256 unsigned 8-bit cells X = unsigned 8-bit register Program counter starts at 0 256 program "instruction" slots G = GRAB X, N // Read X from mem[N] O = OFFER X, N // Write X to mem[N] R = RECEIVE X // Reads from input stream into X B = BRANCH X == 0, N // If X == 0, goto instruction N I = INCREASE X, N // Adds N to X register T = TRANSMIT X // Writes X to output stream S = SET X <- N // Set X explicitly to N A = ADD X, N // Adds mem[N] to X register g = GRAB X, [N] // Read X from mem[mem[N]] o = OFFER X, [N] // Write X to mem[mem[N]] r = RECEIVE [N] // Reads from input stream into mem[N] b = BRANCH X == 0, [N] // If X == 0, goto instruction mem[N] i = INCREASE [N], X // mem[N] = mem[N] + X t = TRANSMIT [N] // Writes to output stream mem[N] s = SET X <- X XOR [N] // Performs logic X XOR mem[N], stores in X a = ADD X, [N] // Adds mem[mem[N]] to X register GORBIT-ROM - Program stream is in external memory GORBIT-RAM - Program stream is in memory, each instruction is 2 bytes, therefore PC+=2 per op Example syntax R O201 R O202 S0 O203 G202 A202 O202 G201 I255 O201 B6 G202 T First implementation will likely appear in coming days and will be linked here. ==Language overview== GORBITSA operates on array of 256 8-bit cells (Memory) and single 8-bit register (X).<br> Instruction are provided in linear format, up to 256 instructions (slots 0-255). Current instruction is tracked by instruction counter (IC). At the beginning IC is 0. In each step instruction pointed by IC is read and executed. If instruction doesn't modify IC, the IC is incremented.<br> If IC points after last instruction, it is implementation-defined whether execution halts or continues.<br> If IC increments from 255, it is implementation-defined whether execution halts, or IC rolls over to 0. Whether input and/or output are in a form of a number or ascii character is implementation-defined. All instructions are made out of single-letter command code and up to 1 number parameter. {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>G</code> |Yes: N |X = Memory[N] |- | style="text-align:center"| <code>O</code> |Yes: N |Memory[N] = X |- | style="text-align:center"| <code>R</code> |No |Read input into X |- | style="text-align:center"| <code>B</code> |Yes: N |if X == 0, IC = N |- | style="text-align:center"| <code>I</code> |Yes: N |X += N |- | style="text-align:center"| <code>T</code> |No |Write X into output |- | style="text-align:center"| <code>S</code> |Yes: N |X = N |- | style="text-align:center"| <code>A</code> |Yes: N |X += Memory[N] |} ==Expansions== ===gorbitsa=== After limitations of base language were recognized, the instruction set was expanded to lower case letters.<br> New set allows direct I/O with memory, runtime computed goto destination and XOR. {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>g</code> |Yes: N |X = Memory[Memory[N]] |- | style="text-align:center"| <code>o</code> |Yes: N |Memory[Memory[N]] = X |- | style="text-align:center"| <code>r</code> |Yes: N |Read input into Memory[N] |- | style="text-align:center"| <code>b</code> |Yes: N |if X == 0, IC = Memory[N] |- | style="text-align:center"| <code>i</code> |Yes: N |Memory[N] += X |- | style="text-align:center"| <code>t</code> |Yes: N |Write Memory[N] into output |- | style="text-align:center"| <code>s</code> |Yes: N |X = X xor Memory[N] |- | style="text-align:center"| <code>a</code> |Yes: N |X += Memory[Memory[N]] |} ==Computational class== Due to limited amount of cells and limited possible values in cells and register, it's assumed to be [[finite-state automaton]]. ==Programs== Here are a few example programs that can be written in the GORBITSA language ===[[Cat program]]=== R T ===[[Truth-machine]]=== R O0 I255 O1 G0 T G1 B4 R B6 S1 T S0 B2 T R T B255 S1 T S0 B3 ===[[Quine]] (by [[User: ZippyMagician]])=== Runs in '''GORBITSA-RAM''' mode S0 O255 g255 B11 g255 T G255 I1 O255 S0 B2 G255 I1 O240 g240 B18 S0 B5 B200 ===Subtraction=== R O0 R O1 G0 I255 O0 G1 I255 O1 B13 S0 B4 G0 T S255 O255 r0 R s255 I1 A0 T ===Multiplication=== r201 R B17 I255 B16 O0 G201 O202 G202 i201 G0 I255 O0 B16 S0 B8 G201 T ===Modulus=== Runs on '''GORBITSA-ROM''' with '''int output''' and '''int input''' R O0 O1 R O2 O3 S255 O255 S0 B11 B19 G3 s255 I1 A1 O1 O5 S0 B10 G2 O10 G5 A10 B35 G5 B37 G10 B35 I255 O10 G5 I255 O5 S0 B21 S0 B8 G1 T ===Byte Swap=== XOR Swap (by [[Sir Felix Delazar]]). It swaps the values of Memory[0] and Memory[1]: G0 s1 O0 G1 s0 O1 G0 s1 O0 ===For loop=== '''The first parameter'''(In this program, 5) is the number of times the loop will be executed S5 O0 S35 T G0 I255 O0 B10 S0 B2 S0 T ===Hello World=== S72 T S101 T S108 T T S111 T S32 T S87 T S111 T S114 T S108 T S100 T ===Guessing Game (by [[User:Geek Joystick]])=== Runs on '''GORBITSA-ROM''' with '''char output''' and '''int input''' (the python interpreter by [[User:Geek Joystick]] & TwistedLlama works for this program) S0 S252 O0 S71 T S117 T S101 T S115 T T S32 T S40 T S48 T S45 T S57 T S41 T S63 T S32 T R O1 I48 T S12 T G0 A1 B50 S87 T S114 T S111 T S110 T S103 T S12 T S0 B0 S82 T S105 T S103 T S104 T S116 T S33 T =Implementations= {| class="wikitable sortable" !Language !ROM-Mode !RAM-Mode !Authors !Link |- | Python |bgcolor="#99ff99"| Yes |bgcolor="#ff9999"| No | * [[User:Geek_Joystick]] * TwistedLlama | https://py3.codeskulptor.org/#user305_jVW4bJkLBXz9HE9.py |- | Node.JS |bgcolor="#99ff99"| Yes |bgcolor="#99ff99"| Yes | * [[User:ZippyMagician]] | https://repl.it/@ZippyMagician/GORBITSA |- | JavaScript |bgcolor="#99ff99"| Yes |bgcolor="#ff9999"| No | * Sir Felix Delazar | https://sirfelixdelazar.github.io/GORBITSA/ |- | C |bgcolor="#99ff99"| Yes |bgcolor="#99ff99"| Yes | * [[User:X39]] | https://repl.it/@killerx29/EsoLang-GORBITSA#main.c |} [[Category:Languages]] [[Category:2020]] [[Category:Implemented]] [[Category:Low-level]] [[Category:Unknown computational class]]'
Unified diff of changes made by edit (edit_diff)
'@@ -162,4 +162,7 @@ S255 O255 r0 R s255 I1 A0 T + +===Multiplication=== + r201 R B17 I255 B16 O0 G201 O202 G202 i201 G0 I255 O0 B16 S0 B8 G201 T ===Modulus=== '
New page size (new_size)
6786
Old page size (old_size)
6692
Lines added in edit (added_lines)
[ 0 => '', 1 => '===Multiplication===', 2 => ' r201 R B17 I255 B16 O0 G201 O202 G202 i201 G0 I255 O0 B16 S0 B8 G201 T' ]
Unix timestamp of change (timestamp)
1592498443