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 9,053

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

Changes made in edit

== Staples Esolang ==
Staples is a esoteric language to make Python just a little bit easier... by reducing the available characters to 4 and adding a checksum.

Staples can be installed through Python's package manager (Python 3.11 is required, so if you don't have it installed, install it!):

For MacOS and Linux, install it by running this command into your terminal:
<pre>pip3 install staples_lang && if [ -d "/Library/Frameworks/Python.framework/Versions/3.13/bin" ]; then grep -qxF 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' ~/.zshrc || echo 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc; fi</pre>

For Windows, install it by running this in your powershell:
<pre>pip3 install staples_lang; $p='C:\Python313\Scripts'; if (Test-Path $p) { if (-not ($env:Path.Split(';') -contains $p)) { [Environment]::SetEnvironmentVariable('Path', $env:Path + ';' + $p, 'User'); Write-Output "Added $p to User PATH. Restart your terminal." } else { Write-Output "$p is already in PATH." } } else { Write-Output "$p does not exist." }</pre>

Staples has a very strict syntax, and you can ONLY have four characters:
<pre>[ ] { }</pre>
Staples encodes Python code in a binary format, replacing the 0's with a hard bracket facing right and replacing the 1's with a curly bracket facing right. The code is then duplicated and mirrored, to create an artistic checksum.

Staples has a "Hello World" command too, like every other language.
<pre>[{{{[[[[[{{{[[{[[{{[{[[{[{{[{{{[[{{{[{[[[[{[{[[[[[{[[[{[[{[[{[[[[{{[[{[{[{{[{{[[[{{[{{[[[{{[{{{{[[{[[[[[[{[{[{{{[{{[{{{{[{{{[[{[[{{[{{[[[{{[[{[[[[{[[[{[[[{[{[[{}]]}]}]]]}]]]}]]]]}]]}}]]]}}]}}]]}]]}}}]}}}}]}}]}}}]}]}]]]]]]}]]}}}}]}}]]]}}]}}]]]}}]}}]}]}]]}}]]]]}]]}]]}]]]}]]]]]}]}]]]]}]}}}]]}}}]}}]}]]}]}}]]}]]}}}]]]]]}}}]</pre>

You can use your terminal to run Staples once you have downloaded it.
<pre>staples runfile <file_path></pre>
<pre>staples compilefile <file_path></pre>
<pre>staples runstring <staples_code_as_a_string></pre>
<pre>staples compilestring <python_code_as_a_string></pre>

Running a file/string runs the inputted raw staples code, and compiling a file/string converts Python to Staples.

Be careful though, do not add spaces, only add the right syntax characters and do NOT run code that you don't trust, because after all, Staples is just Python, but with a different syntax.

Thanks for reading this, and I hope this makes Python 100% more fun to use. For more information, go here: https://github.com/SeafoodStudios/Staples

Action parameters

VariableValue
Edit count of the user (user_editcount)
0
Name of the user account (user_name)
'SeafoodStudios'
Age of the user account (user_age)
1690
Page ID (page_id)
0
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'Staples'
Full page title (page_prefixedtitle)
'Staples'
Action (action)
'edit'
Edit summary/reason (summary)
'Staples is a version of Python designed to use only four characters to ensure Python is more fun and "easy".'
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)
'== Staples Esolang == Staples is a esoteric language to make Python just a little bit easier... by reducing the available characters to 4 and adding a checksum. Staples can be installed through Python's package manager (Python 3.11 is required, so if you don't have it installed, install it!): For MacOS and Linux, install it by running this command into your terminal: <pre>pip3 install staples_lang && if [ -d "/Library/Frameworks/Python.framework/Versions/3.13/bin" ]; then grep -qxF 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' ~/.zshrc || echo 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc; fi</pre> For Windows, install it by running this in your powershell: <pre>pip3 install staples_lang; $p='C:\Python313\Scripts'; if (Test-Path $p) { if (-not ($env:Path.Split(';') -contains $p)) { [Environment]::SetEnvironmentVariable('Path', $env:Path + ';' + $p, 'User'); Write-Output "Added $p to User PATH. Restart your terminal." } else { Write-Output "$p is already in PATH." } } else { Write-Output "$p does not exist." }</pre> Staples has a very strict syntax, and you can ONLY have four characters: <pre>[ ] { }</pre> Staples encodes Python code in a binary format, replacing the 0's with a hard bracket facing right and replacing the 1's with a curly bracket facing right. The code is then duplicated and mirrored, to create an artistic checksum. Staples has a "Hello World" command too, like every other language. <pre>[{{{[[[[[{{{[[{[[{{[{[[{[{{[{{{[[{{{[{[[[[{[{[[[[[{[[[{[[{[[{[[[[{{[[{[{[{{[{{[[[{{[{{[[[{{[{{{{[[{[[[[[[{[{[{{{[{{[{{{{[{{{[[{[[{{[{{[[[{{[[{[[[[{[[[{[[[{[{[[{}]]}]}]]]}]]]}]]]]}]]}}]]]}}]}}]]}]]}}}]}}}}]}}]}}}]}]}]]]]]]}]]}}}}]}}]]]}}]}}]]]}}]}}]}]}]]}}]]]]}]]}]]}]]]}]]]]]}]}]]]]}]}}}]]}}}]}}]}]]}]}}]]}]]}}}]]]]]}}}]</pre> You can use your terminal to run Staples once you have downloaded it. <pre>staples runfile <file_path></pre> <pre>staples compilefile <file_path></pre> <pre>staples runstring <staples_code_as_a_string></pre> <pre>staples compilestring <python_code_as_a_string></pre> Running a file/string runs the inputted raw staples code, and compiling a file/string converts Python to Staples. Be careful though, do not add spaces, only add the right syntax characters and do NOT run code that you don't trust, because after all, Staples is just Python, but with a different syntax. Thanks for reading this, and I hope this makes Python 100% more fun to use. For more information, go here: https://github.com/SeafoodStudios/Staples'
Unified diff of changes made by edit (edit_diff)
'@@ -1,0 +1,29 @@ +== Staples Esolang == +Staples is a esoteric language to make Python just a little bit easier... by reducing the available characters to 4 and adding a checksum. + +Staples can be installed through Python's package manager (Python 3.11 is required, so if you don't have it installed, install it!): + +For MacOS and Linux, install it by running this command into your terminal: +<pre>pip3 install staples_lang && if [ -d "/Library/Frameworks/Python.framework/Versions/3.13/bin" ]; then grep -qxF 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' ~/.zshrc || echo 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc; fi</pre> + +For Windows, install it by running this in your powershell: +<pre>pip3 install staples_lang; $p='C:\Python313\Scripts'; if (Test-Path $p) { if (-not ($env:Path.Split(';') -contains $p)) { [Environment]::SetEnvironmentVariable('Path', $env:Path + ';' + $p, 'User'); Write-Output "Added $p to User PATH. Restart your terminal." } else { Write-Output "$p is already in PATH." } } else { Write-Output "$p does not exist." }</pre> + +Staples has a very strict syntax, and you can ONLY have four characters: +<pre>[ ] { }</pre> +Staples encodes Python code in a binary format, replacing the 0's with a hard bracket facing right and replacing the 1's with a curly bracket facing right. The code is then duplicated and mirrored, to create an artistic checksum. + +Staples has a "Hello World" command too, like every other language. +<pre>[{{{[[[[[{{{[[{[[{{[{[[{[{{[{{{[[{{{[{[[[[{[{[[[[[{[[[{[[{[[{[[[[{{[[{[{[{{[{{[[[{{[{{[[[{{[{{{{[[{[[[[[[{[{[{{{[{{[{{{{[{{{[[{[[{{[{{[[[{{[[{[[[[{[[[{[[[{[{[[{}]]}]}]]]}]]]}]]]]}]]}}]]]}}]}}]]}]]}}}]}}}}]}}]}}}]}]}]]]]]]}]]}}}}]}}]]]}}]}}]]]}}]}}]}]}]]}}]]]]}]]}]]}]]]}]]]]]}]}]]]]}]}}}]]}}}]}}]}]]}]}}]]}]]}}}]]]]]}}}]</pre> + +You can use your terminal to run Staples once you have downloaded it. +<pre>staples runfile <file_path></pre> +<pre>staples compilefile <file_path></pre> +<pre>staples runstring <staples_code_as_a_string></pre> +<pre>staples compilestring <python_code_as_a_string></pre> + +Running a file/string runs the inputted raw staples code, and compiling a file/string converts Python to Staples. + +Be careful though, do not add spaces, only add the right syntax characters and do NOT run code that you don't trust, because after all, Staples is just Python, but with a different syntax. + +Thanks for reading this, and I hope this makes Python 100% more fun to use. For more information, go here: https://github.com/SeafoodStudios/Staples '
New page size (new_size)
2573
Old page size (old_size)
0
Lines added in edit (added_lines)
[ 0 => '== Staples Esolang ==', 1 => 'Staples is a esoteric language to make Python just a little bit easier... by reducing the available characters to 4 and adding a checksum.', 2 => '', 3 => 'Staples can be installed through Python's package manager (Python 3.11 is required, so if you don't have it installed, install it!):', 4 => '', 5 => 'For MacOS and Linux, install it by running this command into your terminal:', 6 => '<pre>pip3 install staples_lang && if [ -d "/Library/Frameworks/Python.framework/Versions/3.13/bin" ]; then grep -qxF 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' ~/.zshrc || echo 'export PATH="/Library/Frameworks/Python.framework/Versions/3.13/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc; fi</pre>', 7 => '', 8 => 'For Windows, install it by running this in your powershell:', 9 => '<pre>pip3 install staples_lang; $p='C:\Python313\Scripts'; if (Test-Path $p) { if (-not ($env:Path.Split(';') -contains $p)) { [Environment]::SetEnvironmentVariable('Path', $env:Path + ';' + $p, 'User'); Write-Output "Added $p to User PATH. Restart your terminal." } else { Write-Output "$p is already in PATH." } } else { Write-Output "$p does not exist." }</pre>', 10 => '', 11 => 'Staples has a very strict syntax, and you can ONLY have four characters:', 12 => '<pre>[ ] { }</pre>', 13 => 'Staples encodes Python code in a binary format, replacing the 0's with a hard bracket facing right and replacing the 1's with a curly bracket facing right. The code is then duplicated and mirrored, to create an artistic checksum.', 14 => '', 15 => 'Staples has a "Hello World" command too, like every other language.', 16 => '<pre>[{{{[[[[[{{{[[{[[{{[{[[{[{{[{{{[[{{{[{[[[[{[{[[[[[{[[[{[[{[[{[[[[{{[[{[{[{{[{{[[[{{[{{[[[{{[{{{{[[{[[[[[[{[{[{{{[{{[{{{{[{{{[[{[[{{[{{[[[{{[[{[[[[{[[[{[[[{[{[[{}]]}]}]]]}]]]}]]]]}]]}}]]]}}]}}]]}]]}}}]}}}}]}}]}}}]}]}]]]]]]}]]}}}}]}}]]]}}]}}]]]}}]}}]}]}]]}}]]]]}]]}]]}]]]}]]]]]}]}]]]]}]}}}]]}}}]}}]}]]}]}}]]}]]}}}]]]]]}}}]</pre>', 17 => '', 18 => 'You can use your terminal to run Staples once you have downloaded it.', 19 => '<pre>staples runfile <file_path></pre>', 20 => '<pre>staples compilefile <file_path></pre>', 21 => '<pre>staples runstring <staples_code_as_a_string></pre>', 22 => '<pre>staples compilestring <python_code_as_a_string></pre>', 23 => '', 24 => 'Running a file/string runs the inputted raw staples code, and compiling a file/string converts Python to Staples.', 25 => '', 26 => 'Be careful though, do not add spaces, only add the right syntax characters and do NOT run code that you don't trust, because after all, Staples is just Python, but with a different syntax.', 27 => '', 28 => 'Thanks for reading this, and I hope this makes Python 100% more fun to use. For more information, go here: https://github.com/SeafoodStudios/Staples' ]
Unix timestamp of change (timestamp)
'1750099298'