3 commands. No internet. Maximum drilling.
Study security concepts with ADHD-friendly spaced repetition
This project documentation and development has been enhanced through systematic AI collaboration following QRY Labs methodology:
- Human-Centered Development: All core functionality, architecture decisions, and strategic direction remain human-controlled
- AI-Enhanced Documentation: AI assistants help improve documentation quality and systematic presentation
- Transparent Attribution: AI collaboration is acknowledged openly as part of QRY's commitment to ethical technology use
- Local AI Integration: Examinator uses local AI (Ollama) for flashcard generation while maintaining complete privacy
- Systematic Methodology: AI collaboration follows structured procedures documented in
/ai/directory
Core Principle: AI enhances human capability rather than replacing human judgment. Examinator exemplifies this by using local AI to generate study content while keeping all learning and knowledge assessment under human control.
examinator now supports experimental integration with the QRY ecosystem database, enabling automatic flashcard generation from development work while maintaining complete independence.
Ecosystem Features:
- Automatic Discovery: Detects shared QRY ecosystem database (
~/.local/share/qry/ecosystem.sqlite) - Smart Flashcard Generation: Creates study materials from uroboro captures automatically
- Context-Aware Learning: Uses wherewasi context to improve flashcard categorization
- Cross-Tool Intelligence: Receives notifications when new content is captured
- Graceful Fallback: Works normally with local database when ecosystem unavailable
Status Indicators:
python3 ecosystem_integration_example.py status
# Ecosystem mode: "Ecosystem mode: ENABLED"
# Local mode: "Ecosystem mode: DISABLED"Ecosystem Commands:
python3 ecosystem_integration_example.py sync # Process captures from uroboro
python3 ecosystem_integration_example.py generate --project myproject # Generate from captures
python3 ecosystem_integration_example.py study --project myproject # Study with context
python3 ecosystem_integration_example.py --local # Force local database modeIntegration Status: Experimental implementation - automatically generates study materials from development activity when ecosystem tools work together, functions independently when not.
Cramped bus seat? Phone screen? These instructions are your lifeline.
# 1. Clone the repo
git clone https://github.com/QRY91/examinator.git
cd examinator
# 2. Install dependencies (once)
pip install -r requirements.txt
# 3. Generate initial flashcards
python3 convert.py# 1. STUDY (main command - 186 cards ready)
python3 flashcards.py
# 2. GENERATE (create new cards with local LLM)
python3 generate.py --flashcards -f your-notes.md
# 3. CONVERT (turn Q&A notes into flashcards)
python3 convert.py- SPACE: Show answer
- G: Got it (mark correct)
- N: Need practice (mark wrong)
- S: Skip card
- Q: Quit & save progress
Optimized for mobile viewing - bigger fonts in app, clear instructions in docs
Don't want to fiddle with the app? Just browse these GitHub pages with spoiler-enabled study materials:
- Security Fundamentals - CIA triad, crypto basics, authentication
- Web Security & XSS - XSS types, SQL injection, CSP
- Privacy & Anonymization - K-anonymity, differential privacy
- Incident Response - IR phases, social engineering
- Malware & Deception - Attack vectors, defense strategies
- Advanced Attacks - Advanced persistent threats, analysis
- Privacy Deep Dive - GDPR, privacy-preserving techniques
Click the spoiler arrows (
# 1. STUDY - Start drilling immediately with existing cards
python3 flashcards.py
# 2. GENERATE - Create more flashcards from study materials
python3 generate.py --flashcards -f filename.md
# 3. CONVERT - Turn summaries into flashcards
python3 convert.pyThat's it. No wifi dongle, no 5G, no GPT needed.
Like uroboro - simplicity over complexity. Stressed students on buses need tools that just work.
Your main study app
- 186 ready-to-go security flashcards
- Smart spaced repetition (focuses on hard cards)
- ADHD-friendly (no easy-card traps)
- Works 100% offline
python3 flashcards.py
# Loads cards from flashcards/ and summaries/
# Press G (got it), N (need practice), S (skip)
# Zenburn theme - easy on tired eyesCreate new flashcards with local LLM
- Uses Ollama + Mistral (free, private, offline)
- Generates multiple choice, scenarios, flashcards
- Spoiler format for sharing with classmates
# Quick flashcard generation
python3 generate.py --flashcards -f security-file.md
# With spoiler format (shareable)
python3 generate.py --flashcards --spoilers -f filename.md
# Full question suite
python3 generate.py -f filename.mdTurn your study notes into drilling cards
- Converts Q&A summaries โ flashcard format
- UTF-8 safe (fixes encoding issues)
- Batch processes all summaries
python3 convert.py
# Converts everything in summaries/ โ flashcards/examinator/
โโโ flashcards/ # ๐ Clean cards (app reads here)
โโโ summaries/ # ๐ Your Q&A study notes
โโโ output/ # ๐ Generated practice questions
โโโ input/ # ๐ Source PDFs/materials
No cross-contamination. Each directory has one purpose.
# Get the code
git clone https://github.com/QRY91/examinator.git
cd examinator
# Install once
pip install -r requirements.txt
# Generate initial flashcards
python3 convert.py
# Start studying
python3 flashcards.pyFor LLM questions (optional):
# Install Ollama once
curl -fsSL https://ollama.ai/install.sh | sh
# Pull model once
ollama pull mistral:latest
# Test connection
python3 generate.py --testNothing works?
pip install -r requirements.txt
python3 convert.pyNo cards found?
- Check
flashcards/directory exists - Run
python3 convert.py
Encoding errors?
- Files are now UTF-8 safe
- Run converter to fix:
python3 convert.py
LLM not working?
- App works without LLM
- Just use
python3 flashcards.pywith existing 186 cards
- 186 clean security flashcards (CIA triad, crypto, attacks, privacy, etc.)
- Smart spaced repetition (avoids easy-card traps)
- Local LLM generation (free, private, no API costs)
- Offline first (works on buses, planes, cafes with broken wifi)
- ADHD-friendly (focuses on hard concepts, not busy work)
- Daily drilling:
python3 flashcards.py(15-30 min sessions) - Topic deep-dive: Generate targeted cards for weak areas
- Group study: Share spoiler-format cards with classmates
- Exam prep: Use multiple choice + scenario questions
Inspired by uroboro's simplicity:
- 3 commands maximum - No complex workflows
- Offline first - Works without internet
- Panic-proof - Clear errors, simple fixes
- Student-focused - Built for stressed learners
- No BS - Does one thing well
Just works. Even at 3am before an exam. Even on a bus with no wifi. Even when you're stressed and can't think straight.
Start drilling: python3 flashcards.py ๐ฏ
- SQLite Integration: Enhance flashcard study with persistent progress tracking (review dates, intervals, ease factors) for an even smarter, more resilient spaced repetition system. Could also log generation/conversion history.
- Advanced Content Parsing: More robust extraction from diverse PDF layouts or other document types.
- Community Flashcard Decks: A way to share and import pre-made flashcard decks on specific security topics.
Turn your study materials into a collaborative knowledge base!
# 1. STUDY - Interactive flashcards
python3 flashcards.py
# 2. GENERATE - LLM question creation
python3 generate.py --flashcards -f filename.md
# 3. CONVERT - Notes โ flashcards
python3 convert.py
# 4. INGEST - PDFs โ Q&A summaries
python3 ingest.py -f filename.pdf --llm
# 5. WIKI - Summaries โ collaborative format
python3 wiki-export.py1. Generate Wiki Content
# Convert all summaries to wiki format
python3 wiki-export.py
# Creates 20+ organized wiki pages in wiki/ directory2. Enable GitHub Wiki
- Go to your repo Settings โ Features
- Check โ Wikis
3. Deploy to GitHub
# Clone the wiki repository
git clone https://github.com/YOUR_USERNAME/examinator.wiki.git
# Copy generated content
cp wiki/* examinator.wiki/
# Deploy
cd examinator.wiki
git add .
git commit -m "๐ Deploy comprehensive study wiki"
git push origin master4. Share with Classmates
- Wiki URL:
https://github.com/YOUR_USERNAME/examinator/wiki - Organized by topic - 6 study categories
- Collapsible Q&A - Click ๐ค to reveal answers
- Collaborative editing - Everyone can contribute
Wiki Features:
- 20+ topic pages with comprehensive Q&A
- 6 organized categories (Security Fundamentals, Cryptography, etc.)
- Collapsible spoilers for progressive revelation
- Mobile-friendly for study-on-the-go
- Collaborative editing for group knowledge building
Local Tools Remain:
- Original summaries preserved in
summaries/ - Flashcard app works offline with
flashcards.py - LLM generation continues with
generate.py
This creates a dual-mode study system:
- Individual: Offline flashcard drilling
- Collaborative: Online wiki knowledge sharing