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)
0
Name of the user account (user_name)
'OpenByte'
Age of the user account (user_age)
133
Page ID (page_id)
9020
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'Pancake Stack'
Full page title (page_prefixedtitle)
'Pancake Stack'
Action (action)
'edit'
Edit summary/reason (summary)
'Add rust implementation link'
Old content model (old_content_model)
'wikitext'
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
'''This page is a work in progress'' '''Pancake Stack''' is a [[stack]]-based [[esoteric programming language]] created by [[User:JWinslow23]] in 2013, in which programs require you to manipulate a stack of pancakes. ==Syntax== The pancake stack starts out as empty. {| class="wikitable" |- ! Code !! Meaning |- | <code>Put this X pancake on top!</code> || Push the word length of X on top of the stack, i.e. "wonderful" would push 9. |- | <code>Eat the pancake on top!</code> || Pop the top value off of the stack, and discard it. |- | <code>Put the top pancakes together!</code> || Pop off the top two values, add them, and push the result. |- | <code>Give me a pancake!</code> || Input a number value and push it on the stack. |- | <code>How about a hotcake?</code> || Input an ASCII value and push it on the stack. |- | <code>Show me a pancake!</code> || Output the top value on the stack as an ASCII character, but don't pop it. |- | <code>Take from the top pancakes!</code> || Pop off the top two values, subtract the second one from the first one, and push the result. |- | <code>Flip the pancakes on top!</code> || Pop off the top two values, swap them, and push them back. |- | <code>Put another pancake on top!</code> || Pop off the top value and push it twice. |- | <code>[label]</code> || Defines a label to go back to (Can also define a comment, if needed). When you go back to the label, it goes to the line number (1 indexed) of the top value of the stack when the label was defined. |- | <code>If the pancake isn't tasty, go over to "label".</code> || Go to label <code>[label]</code> if the top value is 0. |- | <code>If the pancake is tasty, go over to "label".</code> || Same as above, except go if the top value is <i>not</i> 0. |- | <code>Put syrup on the pancakes!</code> || Increment all stack values. |- | <code>Put butter on the pancakes!</code> || Increment only the top stack value. |- | <code>Take off the syrup!</code> || Decrement all stack values. |- | <code>Take off the butter!</code> || Decrement only the top stack value. |- | <code>Eat all of the pancakes!</code> || Terminate the program. |- |} ==Examples== === [[Hello, world!|Hello World!]]=== Put this heavenly pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put syrup on the pancakes! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Put this appetizing pancake on top! Put this delectable pancake on top! Put this delicious pancake on top! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Put this wonderful pancake on top! Take off the syrup! Put the top pancakes together! Show me a pancake! Show me a pancake! Put this rich pancake on top! Take off the butter! Put the top pancakes together! Show me a pancake! Put this delightful pancake on top! Put this dainty pancake on top! Put the top pancakes together! Put another pancake on top! Put the top pancakes together! Show me a pancake! Put this tasty pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Eat the pancake on top! Show me a pancake! Put this good pancake on top! Take off the butter! Put the top pancakes together! Show me a pancake! Put this divine pancake on top! Flip the pancakes on top! Take from the top pancakes! Show me a pancake! Put this pleasant pancake on top! Flip the pancakes on top! Take from the top pancakes! Show me a pancake! Put this mouthwatering pancake on top! Put this scrumptious pancake on top! Put this enjoyable pancake on top! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Eat all of the pancakes! ===[[Cat program]]=== Put this old pancake on top! [CAT] Eat the pancake on top! Give me a pancake! Show me a pancake! If the pancake is tasty, go over to "CAT". Eat all of the pancakes! This is for numeric input. For ASCII input, replace "Give me a pancake!" with "How about a hotcake?" ==Computational class== Pancake Stack is [[Turing complete]] assuming stack values are unbounded, as it can easily simulate a two-register [[Minsky machine]] using the top two stack values as registers. Alternatively, if stack values are bounded, then Pancake Stack is not Turing complete, as it can be simulated by a [[push-down automaton]]. Some trick is needed to support incrementing/decrementing all values simultaneously, e.g. one could keep track of a separate value (in the automaton state) to be implicitly added to all stack values. ==Implementations== http://ideone.com/7sFFo0 [[Category:Languages]][[Category:Stack-based]][[Category:Turing complete]][[Category:2013]]'
New page wikitext, after the edit (new_wikitext)
'''This page is a work in progress'' '''Pancake Stack''' is a [[stack]]-based [[esoteric programming language]] created by [[User:JWinslow23]] in 2013, in which programs require you to manipulate a stack of pancakes. ==Syntax== The pancake stack starts out as empty. {| class="wikitable" |- ! Code !! Meaning |- | <code>Put this X pancake on top!</code> || Push the word length of X on top of the stack, i.e. "wonderful" would push 9. |- | <code>Eat the pancake on top!</code> || Pop the top value off of the stack, and discard it. |- | <code>Put the top pancakes together!</code> || Pop off the top two values, add them, and push the result. |- | <code>Give me a pancake!</code> || Input a number value and push it on the stack. |- | <code>How about a hotcake?</code> || Input an ASCII value and push it on the stack. |- | <code>Show me a pancake!</code> || Output the top value on the stack as an ASCII character, but don't pop it. |- | <code>Take from the top pancakes!</code> || Pop off the top two values, subtract the second one from the first one, and push the result. |- | <code>Flip the pancakes on top!</code> || Pop off the top two values, swap them, and push them back. |- | <code>Put another pancake on top!</code> || Pop off the top value and push it twice. |- | <code>[label]</code> || Defines a label to go back to (Can also define a comment, if needed). When you go back to the label, it goes to the line number (1 indexed) of the top value of the stack when the label was defined. |- | <code>If the pancake isn't tasty, go over to "label".</code> || Go to label <code>[label]</code> if the top value is 0. |- | <code>If the pancake is tasty, go over to "label".</code> || Same as above, except go if the top value is <i>not</i> 0. |- | <code>Put syrup on the pancakes!</code> || Increment all stack values. |- | <code>Put butter on the pancakes!</code> || Increment only the top stack value. |- | <code>Take off the syrup!</code> || Decrement all stack values. |- | <code>Take off the butter!</code> || Decrement only the top stack value. |- | <code>Eat all of the pancakes!</code> || Terminate the program. |- |} ==Examples== === [[Hello, world!|Hello World!]]=== Put this heavenly pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put syrup on the pancakes! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Put this appetizing pancake on top! Put this delectable pancake on top! Put this delicious pancake on top! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Put this wonderful pancake on top! Take off the syrup! Put the top pancakes together! Show me a pancake! Show me a pancake! Put this rich pancake on top! Take off the butter! Put the top pancakes together! Show me a pancake! Put this delightful pancake on top! Put this dainty pancake on top! Put the top pancakes together! Put another pancake on top! Put the top pancakes together! Show me a pancake! Put this tasty pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put another pancake on top! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Eat the pancake on top! Show me a pancake! Put this good pancake on top! Take off the butter! Put the top pancakes together! Show me a pancake! Put this divine pancake on top! Flip the pancakes on top! Take from the top pancakes! Show me a pancake! Put this pleasant pancake on top! Flip the pancakes on top! Take from the top pancakes! Show me a pancake! Put this mouthwatering pancake on top! Put this scrumptious pancake on top! Put this enjoyable pancake on top! Put the top pancakes together! Put the top pancakes together! Show me a pancake! Eat all of the pancakes! ===[[Cat program]]=== Put this old pancake on top! [CAT] Eat the pancake on top! Give me a pancake! Show me a pancake! If the pancake is tasty, go over to "CAT". Eat all of the pancakes! This is for numeric input. For ASCII input, replace "Give me a pancake!" with "How about a hotcake?" ==Computational class== Pancake Stack is [[Turing complete]] assuming stack values are unbounded, as it can easily simulate a two-register [[Minsky machine]] using the top two stack values as registers. Alternatively, if stack values are bounded, then Pancake Stack is not Turing complete, as it can be simulated by a [[push-down automaton]]. Some trick is needed to support incrementing/decrementing all values simultaneously, e.g. one could keep track of a separate value (in the automaton state) to be implicitly added to all stack values. ==Implementations== * https://ideone.com/7sFFo0 * https://github.com/OpenByteDev/pancakestack [[Category:Languages]][[Category:Stack-based]][[Category:Turing complete]][[Category:2013]]'
Unified diff of changes made by edit (edit_diff)
'@@ -154,5 +154,6 @@ ==Implementations== -http://ideone.com/7sFFo0 +* https://ideone.com/7sFFo0 +* https://github.com/OpenByteDev/pancakestack [[Category:Languages]][[Category:Stack-based]][[Category:Turing complete]][[Category:2013]] '
New page size (new_size)
5663
Old page size (old_size)
5614
Lines added in edit (added_lines)
[ 0 => '* https://ideone.com/7sFFo0', 1 => '* https://github.com/OpenByteDev/pancakestack' ]
Unix timestamp of change (timestamp)
1589410172