A web application for practicing and learning memorized deck stacks for card magic. Currently supports:
- Mnemonica Stack
- Aronson Stack
- Redford Stack
- Interactive deck display
- Position quiz mode
- Card quiz mode
- Mobile-friendly design
Visit the live site to start practicing!
- Clone the repository
- Open
index.html
in your browser - No build process required - it's all static HTML, CSS, and JavaScript
Want to add your favorite memorized deck? Great! Here's how:
- Fork this repository
- Edit
stacks.js
and add your stack to thecardStacks
object:
cardStacks = {
existing_stack: [...],
your_stack_name: [
// Add your 52 cards in order using the format:
// "VS" where V is value (A,2-10,J,Q,K) and S is suit (H,S,D,C)
"AH", "2D", "QS", // etc...
]
}
- Submit a pull request with:
- The complete stack order
- A brief description of the stack's history/creator
- Any relevant references or resources
Please ensure your stack contains exactly 52 cards and uses the correct card notation format.