Examine individual changes

Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to navigation Jump to search

This page allows you to examine the variables generated by the Abuse Filter for an individual change.

Variables generated for this change

VariableValue
Edit count of the user (user_editcount)
11
Name of the user account (user_name)
'WoodyFan3412'
Age of the user account (user_age)
21269
Page ID (page_id)
0
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'TileDots'
Full page title (page_prefixedtitle)
'TileDots'
Action (action)
'edit'
Edit summary/reason (summary)
'Page Creation'
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)
'TileDots is a language created by [[User:WoodyFan3412|WoodyFan3412]] in September of 2024, it's set on a 256x256 grid where each cell can either be blank, or one of 41 different cell types. When the program starts various dots are spawned where any starting cells are, dots can move along the grid and interact with tiles, in "Commands" there's a list of instructions that can manipulate dots in various ways. <br> TileDots's name and functions are partly inspired by [[AsciiDots]] == Commands == Each tile can be assigned a "tag" which can be a string or a number. <gallery> TIleDots_example2.png|This demonstrates a dot moving along a track, the arrows dictate where the dot should turn. TileDots example1.png|The "Constant" tile has a tag assigned to it, the tag is displayed in green text above the tile. </gallery> When there are no dots left in the program, it ends. {| class="wikitable" |+ |- ! Command Name !! Function |- | Start || Dictates where any "dots" start when the program is ran, multiple of these can be placed at once. |- | Track || Functions as a track a dot can move along. |- | Left || Sets the dot's direction to left. |- | Right || Sets the dot's direction to right. |- | Up || Sets the dot's direction to up. |- | Down || Sets the dot's direction to down. |- | Stop || Deletes the dot. |- | Call Function || Jumps to the corresponding function in the program. |- | Function || Defines where the function should start, any dots calling this function gets teleported here. |- | Return || Jumps to where the dot was when it called the function |- | Comment || Just a code comment, the tag of the cell acts as the comment. |- | Constant || Sets the dot's value to whatever the cell's tag is. |- | Dupe || Any dot coming from above will get duplicated to the right. |- | Printer || Prints the dot's current value to the console. |- | Clearer || Clears the console. |- | Input || Asks the user for input and sets the dot's value to the input. |- | Join || Joins 2 strings together, where A is the dot's value and B is the tag. |- | Set || Sets the variable with the name of the tile's tag to the dot's value, if it doesn't exist a new one is created. |- | Get || Gets the variable with the name of the tile's tag and sets the dot's value to it. |- | Increment || Increments the variable with the tile's tag by one. |- | Decrement || Decrements the variable with the tile's tag by one. |- | Equals || If the value of the dot is equal to the tile's tag then the dot's direction is set to down. |- | Greater than || If the value of the dot is greater than the tile's tag then the dot's direction is set to down. |- | Less than || If the value of the dot is less than the tile's tag then the dot's direction is set to down. |- | Not Equals || If the value of the dot is not equal to the tile's tag then the dot's direction is set to down. |- | And || If the value of the dot and the tile's tag is above zero than the dot's direction is set to down. |- | Or || If the value of the dot or the tile's tag is above zero than the dot's direction is set to down. |- | Xor || If either the value of the dot or the tile's tag (not both) is above zero than the dot's direction is set to down. |- | Nor || If neither the value of the dot or the tile's tag is above zero then the dot's direction is set to down. |- | + || Adds the tile's tag to the dot's value. |- | - || Subtracts the tile's tag from the dot's value. |- | * || Multiplies the dot's value by the tile's tag. |- | / || Divides the dot's value by the tile's tag. |} == Programs == This is a list of test programs made in TileDots. <small>Why am I using galleries for this?</small> <gallery> TileDots program1.png|A hello world program, it sets the dot's value to "Hello World!", and then outputs it. TileDots program2.png|A Cat Program, it takes input and then prints it to the console, this also demonstrates how to do loops. TileDots program3.png|A Truth Machine, it gets the input and checks if it's equal to 1, if so then print 1 in a loop, otherwise just print 0 once. TileDots program4.png|Demonstration of function calling, the function has to have a @ prefix, it gets input and then returns, exiting the program, functionally the same as a cat program. TileDots example5.png|This sets the dot's value to "Hello" and duplicates it, causing "Hello" to be printed to the console twice. </gallery> [[Category:Languages]] [[Category:2024]] [[Category:Cell-based]] [[Category:Usability unknown]] [[Category:Two-dimensional languages]]'
Unified diff of changes made by edit (edit_diff)
'@@ -1,0 +1,98 @@ +TileDots is a language created by [[User:WoodyFan3412|WoodyFan3412]] in September of 2024, it's set on a 256x256 grid where each cell can either be blank, or one of 41 different cell types. When the program starts various dots are spawned where any starting cells are, dots can move along the grid and interact with tiles, in "Commands" there's a list of instructions that can manipulate dots in various ways. +<br> +TileDots's name and functions are partly inspired by [[AsciiDots]] + +== Commands == +Each tile can be assigned a "tag" which can be a string or a number. + +<gallery> +TIleDots_example2.png|This demonstrates a dot moving along a track, the arrows dictate where the dot should turn. +TileDots example1.png|The "Constant" tile has a tag assigned to it, the tag is displayed in green text above the tile. +</gallery> + +When there are no dots left in the program, it ends. + +{| class="wikitable" +|+ +|- +! Command Name !! Function +|- +| Start || Dictates where any "dots" start when the program is ran, multiple of these can be placed at once. +|- +| Track || Functions as a track a dot can move along. +|- +| Left || Sets the dot's direction to left. +|- +| Right || Sets the dot's direction to right. +|- +| Up || Sets the dot's direction to up. +|- +| Down || Sets the dot's direction to down. +|- +| Stop || Deletes the dot. +|- +| Call Function || Jumps to the corresponding function in the program. +|- +| Function || Defines where the function should start, any dots calling this function gets teleported here. +|- +| Return || Jumps to where the dot was when it called the function +|- +| Comment || Just a code comment, the tag of the cell acts as the comment. +|- +| Constant || Sets the dot's value to whatever the cell's tag is. +|- +| Dupe || Any dot coming from above will get duplicated to the right. +|- +| Printer || Prints the dot's current value to the console. +|- +| Clearer || Clears the console. +|- +| Input || Asks the user for input and sets the dot's value to the input. +|- +| Join || Joins 2 strings together, where A is the dot's value and B is the tag. +|- +| Set || Sets the variable with the name of the tile's tag to the dot's value, if it doesn't exist a new one is created. +|- +| Get || Gets the variable with the name of the tile's tag and sets the dot's value to it. +|- +| Increment || Increments the variable with the tile's tag by one. +|- +| Decrement || Decrements the variable with the tile's tag by one. +|- +| Equals || If the value of the dot is equal to the tile's tag then the dot's direction is set to down. +|- +| Greater than || If the value of the dot is greater than the tile's tag then the dot's direction is set to down. +|- +| Less than || If the value of the dot is less than the tile's tag then the dot's direction is set to down. +|- +| Not Equals || If the value of the dot is not equal to the tile's tag then the dot's direction is set to down. +|- +| And || If the value of the dot and the tile's tag is above zero than the dot's direction is set to down. +|- +| Or || If the value of the dot or the tile's tag is above zero than the dot's direction is set to down. +|- +| Xor || If either the value of the dot or the tile's tag (not both) is above zero than the dot's direction is set to down. +|- +| Nor || If neither the value of the dot or the tile's tag is above zero then the dot's direction is set to down. +|- +| + || Adds the tile's tag to the dot's value. +|- +| - || Subtracts the tile's tag from the dot's value. +|- +| * || Multiplies the dot's value by the tile's tag. +|- +| / || Divides the dot's value by the tile's tag. +|} + +== Programs == +This is a list of test programs made in TileDots. <small>Why am I using galleries for this?</small> + +<gallery> +TileDots program1.png|A hello world program, it sets the dot's value to "Hello World!", and then outputs it. +TileDots program2.png|A Cat Program, it takes input and then prints it to the console, this also demonstrates how to do loops. +TileDots program3.png|A Truth Machine, it gets the input and checks if it's equal to 1, if so then print 1 in a loop, otherwise just print 0 once. +TileDots program4.png|Demonstration of function calling, the function has to have a @ prefix, it gets input and then returns, exiting the program, functionally the same as a cat program. +TileDots example5.png|This sets the dot's value to "Hello" and duplicates it, causing "Hello" to be printed to the console twice. +</gallery> + +[[Category:Languages]] [[Category:2024]] [[Category:Cell-based]] [[Category:Usability unknown]] [[Category:Two-dimensional languages]] '
New page size (new_size)
4513
Old page size (old_size)
0
Lines added in edit (added_lines)
[ 0 => 'TileDots is a language created by [[User:WoodyFan3412|WoodyFan3412]] in September of 2024, it's set on a 256x256 grid where each cell can either be blank, or one of 41 different cell types. When the program starts various dots are spawned where any starting cells are, dots can move along the grid and interact with tiles, in "Commands" there's a list of instructions that can manipulate dots in various ways.', 1 => '<br>', 2 => 'TileDots's name and functions are partly inspired by [[AsciiDots]]', 3 => '', 4 => '== Commands ==', 5 => 'Each tile can be assigned a "tag" which can be a string or a number.', 6 => '', 7 => '<gallery>', 8 => 'TIleDots_example2.png|This demonstrates a dot moving along a track, the arrows dictate where the dot should turn.', 9 => 'TileDots example1.png|The "Constant" tile has a tag assigned to it, the tag is displayed in green text above the tile.', 10 => '</gallery>', 11 => '', 12 => 'When there are no dots left in the program, it ends.', 13 => '', 14 => '{| class="wikitable"', 15 => '|+', 16 => '|-', 17 => '! Command Name !! Function', 18 => '|-', 19 => '| Start || Dictates where any "dots" start when the program is ran, multiple of these can be placed at once.', 20 => '|-', 21 => '| Track || Functions as a track a dot can move along.', 22 => '|-', 23 => '| Left || Sets the dot's direction to left.', 24 => '|-', 25 => '| Right || Sets the dot's direction to right.', 26 => '|-', 27 => '| Up || Sets the dot's direction to up.', 28 => '|-', 29 => '| Down || Sets the dot's direction to down.', 30 => '|-', 31 => '| Stop || Deletes the dot.', 32 => '|-', 33 => '| Call Function || Jumps to the corresponding function in the program.', 34 => '|-', 35 => '| Function || Defines where the function should start, any dots calling this function gets teleported here.', 36 => '|-', 37 => '| Return || Jumps to where the dot was when it called the function', 38 => '|-', 39 => '| Comment || Just a code comment, the tag of the cell acts as the comment.', 40 => '|-', 41 => '| Constant || Sets the dot's value to whatever the cell's tag is.', 42 => '|-', 43 => '| Dupe || Any dot coming from above will get duplicated to the right.', 44 => '|-', 45 => '| Printer || Prints the dot's current value to the console.', 46 => '|-', 47 => '| Clearer || Clears the console.', 48 => '|-', 49 => '| Input || Asks the user for input and sets the dot's value to the input.', 50 => '|-', 51 => '| Join || Joins 2 strings together, where A is the dot's value and B is the tag.', 52 => '|-', 53 => '| Set || Sets the variable with the name of the tile's tag to the dot's value, if it doesn't exist a new one is created.', 54 => '|-', 55 => '| Get || Gets the variable with the name of the tile's tag and sets the dot's value to it.', 56 => '|-', 57 => '| Increment || Increments the variable with the tile's tag by one.', 58 => '|-', 59 => '| Decrement || Decrements the variable with the tile's tag by one.', 60 => '|-', 61 => '| Equals || If the value of the dot is equal to the tile's tag then the dot's direction is set to down.', 62 => '|-', 63 => '| Greater than || If the value of the dot is greater than the tile's tag then the dot's direction is set to down.', 64 => '|-', 65 => '| Less than || If the value of the dot is less than the tile's tag then the dot's direction is set to down.', 66 => '|-', 67 => '| Not Equals || If the value of the dot is not equal to the tile's tag then the dot's direction is set to down.', 68 => '|-', 69 => '| And || If the value of the dot and the tile's tag is above zero than the dot's direction is set to down.', 70 => '|-', 71 => '| Or || If the value of the dot or the tile's tag is above zero than the dot's direction is set to down.', 72 => '|-', 73 => '| Xor || If either the value of the dot or the tile's tag (not both) is above zero than the dot's direction is set to down.', 74 => '|-', 75 => '| Nor || If neither the value of the dot or the tile's tag is above zero then the dot's direction is set to down.', 76 => '|-', 77 => '| + || Adds the tile's tag to the dot's value.', 78 => '|-', 79 => '| - || Subtracts the tile's tag from the dot's value.', 80 => '|-', 81 => '| * || Multiplies the dot's value by the tile's tag.', 82 => '|-', 83 => '| / || Divides the dot's value by the tile's tag.', 84 => '|}', 85 => '', 86 => '== Programs ==', 87 => 'This is a list of test programs made in TileDots. <small>Why am I using galleries for this?</small>', 88 => '', 89 => '<gallery>', 90 => 'TileDots program1.png|A hello world program, it sets the dot's value to "Hello World!", and then outputs it.', 91 => 'TileDots program2.png|A Cat Program, it takes input and then prints it to the console, this also demonstrates how to do loops.', 92 => 'TileDots program3.png|A Truth Machine, it gets the input and checks if it's equal to 1, if so then print 1 in a loop, otherwise just print 0 once.', 93 => 'TileDots program4.png|Demonstration of function calling, the function has to have a @ prefix, it gets input and then returns, exiting the program, functionally the same as a cat program.', 94 => 'TileDots example5.png|This sets the dot's value to "Hello" and duplicates it, causing "Hello" to be printed to the console twice.', 95 => '</gallery>', 96 => '', 97 => '[[Category:Languages]] [[Category:2024]] [[Category:Cell-based]] [[Category:Usability unknown]] [[Category:Two-dimensional languages]]' ]
Unix timestamp of change (timestamp)
'1732447756'