VisNavigans Admin
Spaced repetition is famous for helping med students memorise drug interactions and language learners absorb vocabulary. But the underlying mechanism — reviewing material at increasing intervals as you get more confident — applies to skills, not just facts. Here's how to use it for things that aren't flashcards.
Why it works
The brain forgets on a predictable curve (the forgetting curve, discovered by Ebbinghaus in 1885). Without reinforcement, you lose most new information within days. With each successful recall, the decay slows. Review at the right time, and you can go from "cramming for a test" to "remembering for life" with dramatically less total effort.
Traditional spaced repetition uses flashcards. Review a card. If you got it right, extend the interval before next review (tomorrow → 3 days → a week → a month). If you got it wrong, reset to tomorrow. Over months, the cards you know drop out of your queue and only the ones you're forgetting remain.
The problem with skills
Skills aren't facts. You can't flashcard "how to write a clear paragraph" or "how to debug a concurrency issue". There's no single correct answer to recall. So how do you apply spaced repetition?
Three techniques
1. Concept flashcards, not answer flashcards
You can flashcard concepts — just not the way most people do. Bad flashcard: "What is a closure?" (you can recite a definition without understanding). Good flashcard: "Write the smallest example of a closure that demonstrates why they're useful."
The "answer" on the back isn't a paragraph — it's the code you'd write. Review forces you to reproduce the idea in a non-trivial form, every time.
Anki is great for this but overkill for most. A physical index card box works fine.
2. Project rotation
For skills that require practice (writing, coding, design, playing an instrument), you can't flashcard the skill — but you can rotate through mini-projects that exercise specific sub-skills.
Suppose you're learning to write persuasive essays. Instead of writing one long essay a week, write 5 micro-essays (300 words each) per week, rotating through: opening hook, argument structure, counter-argument steel-manning, concrete example, closing. Each week you cycle through all five. Over a month, you've done 4 reps of each sub-skill — spaced practice, deliberately varied.
3. Interleaving
This is the sibling technique to spaced repetition. Instead of doing 50 practice problems on one topic, do 10 from each of 5 topics in one session. Your brain has to constantly context-switch and pull the right method for each problem — which is much closer to real-world conditions than blocked practice. Research shows interleaving produces worse short-term performance but dramatically better long-term retention.
For coding: instead of practicing sorting algorithms for a week, mix in tree traversals, dynamic programming, and graph problems each day. You'll feel slower and dumber. You'll retain more.
Building a spaced-repetition system for your skill
- List every sub-skill of the main skill, fine-grained. "Write code" isn't a sub-skill; "refactor nested conditionals into guard clauses" is.
- Create a small exercise for each sub-skill. 5–15 minutes each. Write or find practice problems.
- Schedule them on a spaced pattern: a sub-skill you just learned appears tomorrow, 3 days from now, a week, two weeks, a month. As you master it, it drops out.
- Keep it low-stakes. 20–30 minutes a day. Spaced repetition only works if you can sustain it for months.
- Iterate your exercises. If one feels too easy, up the difficulty. If one feels too hard, break it down.
A concrete example: learning design
Sub-skills to flashcard: grid systems, typography scale, colour theory, whitespace, visual hierarchy, spacing, photo cropping, icon design, animation principles. Create a small exercise for each (redesign a landing page hero, rebuild a type scale from scratch, etc.). Rotate through them in spaced intervals. In 3 months you'll have touched each sub-skill 8–10 times in varied contexts — a week of intensive review couldn't do that.
Tools
- Anki — the traditional gold standard. Free, ugly, powerful.
- RemNote / Supermemo — more modern, more expensive.
- A notebook and a calendar — works fine. The technique matters more than the tool.
- A custom spreadsheet — good for project rotations where the "card" is a mini-exercise.
The catch
Spaced repetition is boring. The dopamine hit of learning something new is bigger than the dopamine hit of reviewing what you already kind of know. Almost everyone starts a spaced-repetition habit; a small minority keep it up past the 30-day mark. The people who do develop a compounding advantage — they actually remember what they learn, six months and two years out.
Worth trying even if you only stick with it for a month. Even a month of spaced review beats most of what "continuous study" produces over a year.