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,652

20:46, 17 June 2021: CodyNinja1 (talk | contribs) triggered filter 9, performing the action "edit" on UToober. Actions taken: Warn; Filter description: require new users to introduce themselves (examine)

Changes made in edit

  +
<h1>UToober</h1>
  +
UToober is a [[Brainfuck|Brainfrain]]-like programming language created by [[User:CodyNinja1|CodyNinja1]]
  +
  +
<h1>Usage and Commands</h1>
  +
{| class="wikitable"
  +
|+ List of commands
  +
|-
  +
! Command !! Brainfrain or description
  +
|-
  +
| <code>LOOKATTHECARDINTHEUPPERRIGHTCORNER</code> || <code>&#62;</code>
  +
|-
  +
| <code>LOOKATTHECARDINTHEUPPERLEFTCORNER</code> || <code>&#60;</code>
  +
|-
  +
| <code>GOTOTHEDESCRIPTION</code> || <code>.</code>
  +
|-
  +
| <code>GOTOTHEDESCRIPTIONN</code> || Outputs number as-is.
  +
|-
  +
| <code>THX4WATCHING</code> || Ends the program, when not used the program will repeat indefinitely.
  +
|-
  +
| <code>COMMENTDOWNBELOW</code> || <code>,</code>
  +
|-
  +
| <code>COMMENTDOWNBELOWN</code> || Receives input as an integer.
  +
|-
  +
| <code>ADDTHISVIDEOTOYOURPLAYLIST [n]</code> || Like the <code>+</code> in brainfrain but adds n to the current cell and stores in the current cell
  +
|-
  +
| <code>REMOVETHISVIDEOFROMYOURPLAYLIST [n]</code> || Like the <code>-</code> in brainfrain but subtracts n from the current cell and stores in the current cell
  +
|-
  +
| <code>ADDLIKEALOT [n]</code> || Multiplies n by the current cell and stores in the current cell
  +
|-
  +
| <code>SUBTRACTLIKEALOT [n]</code> || Divides n by the current cell and stores in the current cell
  +
|-
  +
| <code>JUMPTOIFYOUGOT>0 [n]</code> || Jumps to line n in the code if the current cell is > 0, n begins with 1
  +
|-
  +
| <code>JUMPTOIFYOUGOT<=0 [n]</code> || Jumps to line n in the code if the current cell is <= 0
  +
|-
  +
| <code>JUMPTOIFYOUWANTTO [n]</code> || Jumps to line n in the code
  +
|}
  +
===== The Truth-machine program =====
  +
<pre>
  +
COMMENTDOWNBELOWN
  +
JUMPTOIFYOUGOT>0 6
  +
GOTOTHEDESCRIPTIONN
  +
THX4WATCHING
  +
GOTOTHEDESCRIPTIONN
  +
JUMPTOIFYOUWANTTO 5
  +
</pre>
  +
===== Source Code for interpreter =====
  +
https://github.com/CodyNinja1/UTooberProgram/blob/main/interpretYPPL.py

Action parameters

VariableValue
Edit count of the user (user_editcount)
0
Name of the user account (user_name)
'CodyNinja1'
Age of the user account (user_age)
7876
Page ID (page_id)
0
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'UToober'
Full page title (page_prefixedtitle)
'UToober'
Action (action)
'edit'
Edit summary/reason (summary)
'I made a programming language called UToober, this is the wikipage for it'
Old content model (old_content_model)
''
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
''
New page wikitext, after the edit (new_wikitext)
'<h1>UToober</h1> UToober is a [[Brainfuck|Brainfrain]]-like programming language created by [[User:CodyNinja1|CodyNinja1]] <h1>Usage and Commands</h1> {| class="wikitable" |+ List of commands |- ! Command !! Brainfrain or description |- | <code>LOOKATTHECARDINTHEUPPERRIGHTCORNER</code> || <code>&#62;</code> |- | <code>LOOKATTHECARDINTHEUPPERLEFTCORNER</code> || <code>&#60;</code> |- | <code>GOTOTHEDESCRIPTION</code> || <code>.</code> |- | <code>GOTOTHEDESCRIPTIONN</code> || Outputs number as-is. |- | <code>THX4WATCHING</code> || Ends the program, when not used the program will repeat indefinitely. |- | <code>COMMENTDOWNBELOW</code> || <code>,</code> |- | <code>COMMENTDOWNBELOWN</code> || Receives input as an integer. |- | <code>ADDTHISVIDEOTOYOURPLAYLIST [n]</code> || Like the <code>+</code> in brainfrain but adds n to the current cell and stores in the current cell |- | <code>REMOVETHISVIDEOFROMYOURPLAYLIST [n]</code> || Like the <code>-</code> in brainfrain but subtracts n from the current cell and stores in the current cell |- | <code>ADDLIKEALOT [n]</code> || Multiplies n by the current cell and stores in the current cell |- | <code>SUBTRACTLIKEALOT [n]</code> || Divides n by the current cell and stores in the current cell |- | <code>JUMPTOIFYOUGOT>0 [n]</code> || Jumps to line n in the code if the current cell is > 0, n begins with 1 |- | <code>JUMPTOIFYOUGOT<=0 [n]</code> || Jumps to line n in the code if the current cell is <= 0 |- | <code>JUMPTOIFYOUWANTTO [n]</code> || Jumps to line n in the code |} ===== The Truth-machine program ===== <pre> COMMENTDOWNBELOWN JUMPTOIFYOUGOT>0 6 GOTOTHEDESCRIPTIONN THX4WATCHING GOTOTHEDESCRIPTIONN JUMPTOIFYOUWANTTO 5 </pre> ===== Source Code for interpreter ===== https://github.com/CodyNinja1/UTooberProgram/blob/main/interpretYPPL.py'
Unified diff of changes made by edit (edit_diff)
'@@ -1,0 +1,48 @@ +<h1>UToober</h1> +UToober is a [[Brainfuck|Brainfrain]]-like programming language created by [[User:CodyNinja1|CodyNinja1]] + +<h1>Usage and Commands</h1> +{| class="wikitable" +|+ List of commands +|- +! Command !! Brainfrain or description +|- +| <code>LOOKATTHECARDINTHEUPPERRIGHTCORNER</code> || <code>&#62;</code> +|- +| <code>LOOKATTHECARDINTHEUPPERLEFTCORNER</code> || <code>&#60;</code> +|- +| <code>GOTOTHEDESCRIPTION</code> || <code>.</code> +|- +| <code>GOTOTHEDESCRIPTIONN</code> || Outputs number as-is. +|- +| <code>THX4WATCHING</code> || Ends the program, when not used the program will repeat indefinitely. +|- +| <code>COMMENTDOWNBELOW</code> || <code>,</code> +|- +| <code>COMMENTDOWNBELOWN</code> || Receives input as an integer. +|- +| <code>ADDTHISVIDEOTOYOURPLAYLIST [n]</code> || Like the <code>+</code> in brainfrain but adds n to the current cell and stores in the current cell +|- +| <code>REMOVETHISVIDEOFROMYOURPLAYLIST [n]</code> || Like the <code>-</code> in brainfrain but subtracts n from the current cell and stores in the current cell +|- +| <code>ADDLIKEALOT [n]</code> || Multiplies n by the current cell and stores in the current cell +|- +| <code>SUBTRACTLIKEALOT [n]</code> || Divides n by the current cell and stores in the current cell +|- +| <code>JUMPTOIFYOUGOT>0 [n]</code> || Jumps to line n in the code if the current cell is > 0, n begins with 1 +|- +| <code>JUMPTOIFYOUGOT<=0 [n]</code> || Jumps to line n in the code if the current cell is <= 0 +|- +| <code>JUMPTOIFYOUWANTTO [n]</code> || Jumps to line n in the code +|} +===== The Truth-machine program ===== +<pre> +COMMENTDOWNBELOWN +JUMPTOIFYOUGOT>0 6 +GOTOTHEDESCRIPTIONN +THX4WATCHING +GOTOTHEDESCRIPTIONN +JUMPTOIFYOUWANTTO 5 +</pre> +===== Source Code for interpreter ===== +https://github.com/CodyNinja1/UTooberProgram/blob/main/interpretYPPL.py '
New page size (new_size)
1814
Old page size (old_size)
0
Lines added in edit (added_lines)
[ 0 => '<h1>UToober</h1>', 1 => 'UToober is a [[Brainfuck|Brainfrain]]-like programming language created by [[User:CodyNinja1|CodyNinja1]]', 2 => '', 3 => '<h1>Usage and Commands</h1>', 4 => '{| class="wikitable"', 5 => '|+ List of commands', 6 => '|-', 7 => '! Command !! Brainfrain or description', 8 => '|-', 9 => '| <code>LOOKATTHECARDINTHEUPPERRIGHTCORNER</code> || <code>&#62;</code>', 10 => '|-', 11 => '| <code>LOOKATTHECARDINTHEUPPERLEFTCORNER</code> || <code>&#60;</code>', 12 => '|-', 13 => '| <code>GOTOTHEDESCRIPTION</code> || <code>.</code>', 14 => '|-', 15 => '| <code>GOTOTHEDESCRIPTIONN</code> || Outputs number as-is.', 16 => '|-', 17 => '| <code>THX4WATCHING</code> || Ends the program, when not used the program will repeat indefinitely.', 18 => '|-', 19 => '| <code>COMMENTDOWNBELOW</code> || <code>,</code>', 20 => '|-', 21 => '| <code>COMMENTDOWNBELOWN</code> || Receives input as an integer.', 22 => '|-', 23 => '| <code>ADDTHISVIDEOTOYOURPLAYLIST [n]</code> || Like the <code>+</code> in brainfrain but adds n to the current cell and stores in the current cell', 24 => '|-', 25 => '| <code>REMOVETHISVIDEOFROMYOURPLAYLIST [n]</code> || Like the <code>-</code> in brainfrain but subtracts n from the current cell and stores in the current cell', 26 => '|-', 27 => '| <code>ADDLIKEALOT [n]</code> || Multiplies n by the current cell and stores in the current cell', 28 => '|-', 29 => '| <code>SUBTRACTLIKEALOT [n]</code> || Divides n by the current cell and stores in the current cell', 30 => '|-', 31 => '| <code>JUMPTOIFYOUGOT>0 [n]</code> || Jumps to line n in the code if the current cell is > 0, n begins with 1', 32 => '|-', 33 => '| <code>JUMPTOIFYOUGOT<=0 [n]</code> || Jumps to line n in the code if the current cell is <= 0', 34 => '|-', 35 => '| <code>JUMPTOIFYOUWANTTO [n]</code> || Jumps to line n in the code', 36 => '|}', 37 => '===== The Truth-machine program =====', 38 => '<pre>', 39 => 'COMMENTDOWNBELOWN', 40 => 'JUMPTOIFYOUGOT>0 6', 41 => 'GOTOTHEDESCRIPTIONN', 42 => 'THX4WATCHING ', 43 => 'GOTOTHEDESCRIPTIONN', 44 => 'JUMPTOIFYOUWANTTO 5', 45 => '</pre>', 46 => '===== Source Code for interpreter =====', 47 => 'https://github.com/CodyNinja1/UTooberProgram/blob/main/interpretYPPL.py' ]
Unix timestamp of change (timestamp)
1623962763