Memotty is a modern, interactive terminal quiz application built with Go and Bubbletea. It features dynamic CSV loading, intelligent distractor generation, and a beautiful terminal interface.
- Dynamic CSV Loading: Load questions from any CSV file in ~/.memotty/
- Adaptive Options: Question option count adapts to available answers (2-4 options)
- Dual Quiz Modes: Multiple choice and written answer modes
- Detailed Results: Comprehensive analysis with correct/incorrect breakdown
# Latest release
curl -fsSL https://raw.githubusercontent.com/yplog/memotty/main/scripts/install.sh | bash
# Or download and run manually
curl -fsSL -o install.sh https://raw.githubusercontent.com/yplog/memotty/main/scripts/install.sh
chmod +x install.sh
./install.shgit clone https://github.com/yplog/memotty
cd memotty
go mod tidy
go build -o memotty cmd/memotty/main.go
chmod +x memotty
mv memotty ~/.local/bin/
# Add to PATH if not already added
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
# or for zsh users
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrcmemottyPress u on the file selection or mode menu to download and install the latest release automatically.
# Remove binary only
rm -f ~/.local/bin/memotty
# Complete removal (including CSV files)
rm -f ~/.local/bin/memotty && rm -rf ~/.memottyPlace your CSV files in ~/.memotty/ directory:
What is the synonym of happy?,joyful
What is the antonym of cold?,hot
What does the word run mean in the context of exercise?,to jog or sprint
What part of speech is the word quickly?,adverb
What is the plural form of mouse?,mice
Which language does the word fiancé originate from?,french
What is the past tense of go?,went
What does the prefix un- mean?,not or opposite
What is the comparative form of good?,better
What is the root word of beautiful?,beauty
- Format: question,answer(comma-separated)
- Location: ~/.memotty/*.csv
- No headers: Start directly with question data
- Create/edit CSV file in ~/.memotty/
- Follow the question,answerformat
- Restart application to load new questions
# math_basics.csv
What is 2 + 2?,4
What is the square root of 16?,4
What is 10 * 3?,30
# history_quiz.csv
When did World War II end?,1945
Who was the first US President?,George Washington
What year did the Berlin Wall fall?,1989
- Fork the repository
- Create feature branch (git checkout -b feature/amazing-feature)
- Commit changes (git commit -m 'Add amazing feature')
- Push to branch (git push origin feature/amazing-feature)
- Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.