Get AI summaries of any video or article — Sign up free
PRODUCTIVELY Learning New Things Using Obsidian thumbnail

PRODUCTIVELY Learning New Things Using Obsidian

FromSergio·
5 min read

Based on FromSergio's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.

TL;DR

Learning sticks best when knowledge is consumed, retained with spaced repetition, and then applied through projects soon after learning.

Briefing

Learning new skills in a way that actually sticks comes down to a repeatable loop: acquire knowledge, remember it with spaced repetition, and practice it through real projects. The core idea is that study works best when it feeds into immediate or near-term use—otherwise it tends to fade like school notes that never get applied. From there, the method breaks learning into three parts: a way to consume information, a system to recall it over time, and a mechanism to turn it into something you can do.

For acquiring, the approach depends on the domain. Languages might come from teachers; law or medicine might come from professors. Self-directed learners can use videos, blogs, courses, and other resources to gather material. But consumption alone doesn’t create long-term retention. That’s where spaced repetition enters: it uses flashcards and schedules reviews based on how well each card was recalled. If a card is marked “hard,” it reappears sooner; if it’s marked “easy,” it’s delayed further—keeping attention focused on weak spots until they strengthen.

Practice is the third leg, and it’s treated as non-negotiable for practical subjects like programming, Linux, or languages. The strategy is to start with small, simple projects that force new concepts to surface, then iterate into more complex work. In a Python example, once the basics are known, a learner builds something small and expects to hit unfamiliar ideas. Each new concept gets captured as notes and flashcards, then the learner returns to the next project—repeating the cycle. Over time, familiar concepts recur (now with real understanding), while new ones keep getting added. The result is described as “exponential” learning because projects continuously generate both review material and fresh gaps.

To implement spaced repetition inside Obsidian, the workflow centers on the Space Repetition plugin (created by Stefan). After installing it via Community plugins, the key setup is telling the plugin which tags to treat as flashcards—by default it uses #flashcards, but the system can be customized (for example, tagging notes with #Linux). Reviews are run through a dedicated command (“review flashcards”), where each card shows a prompt, reveals the answer, and then the user rates recall as easy/good/hard to control when the card returns.

The transcript also details practical ways to structure flashcards. Inline flashcards store prompt/answer pairs in a single note, often using a YAML header with the relevant tag. Another approach spreads flashcards across multiple notes (e.g., “Linux networking”), so when a card is missed, the user can jump directly to the note containing that card for context and clarification. The plugin supports multiple flashcard types—inline, inline reversed, multi-line, multi-line reversed—and even “cloze/blank” style cards for context-dependent answers, such as language learning. There’s also a notes-level review feature for entire notes, though it’s presented as optional.

Finally, the transcript argues for prioritizing one’s own flashcards over community-made ones. The reasoning is that flashcards should reflect what was encountered during active work, not what someone else found useful later. The system is meant to keep limited review time focused on concepts that matter right now, then add new cards only when they become relevant through real projects. Brilliant is mentioned as an alternative way to learn STEM interactively by doing, with lessons curated from basics to advanced.

Cornell Notes

The learning system is built around three steps: acquire knowledge, retain it with spaced repetition, and practice it through real projects. Spaced repetition schedules flashcard reviews based on recall difficulty, so “hard” cards return sooner and “easy” cards return later. In Obsidian, the Space Repetition plugin (by Stefan) turns tagged notes into review sessions, letting users rate each card after seeing the answer. Flashcards can be stored inline in one note or distributed across multiple notes so missed items can be traced back for context. The method emphasizes using your own flashcards created from what you encountered while working, rather than importing others’ cards that may not match current needs.

Why does the system insist on using what’s learned soon after studying?

It treats application as a retention mechanism. The transcript notes that learning without use—like school-style studying that never gets applied—tends not to stick. The workflow therefore waits until the knowledge can be used immediately or in the very near future, then feeds that use back into the next cycle of notes and flashcards.

How does spaced repetition decide when a flashcard should reappear?

Each review asks the learner to rate recall (e.g., easy/good/hard). Cards marked “hard” are shown again the next day, while “easy” cards are delayed longer (days, then weeks, then more). This keeps attention on weak items until they improve, while reducing time spent on items already mastered.

What is the practical Obsidian setup for the Space Repetition plugin?

Install the Space Repetition plugin from Community plugins, then enable it. In plugin options, set which tags represent flashcards (the default is #flashcards, but the example changes to #Linux). Reviews are launched via the “review flashcards” command (also accessible through the command palette), where each card shows a prompt, reveals the answer, and then the user rates difficulty to control scheduling.

Why store flashcards across multiple notes instead of one big note?

Because missed cards often need context. When flashcards live in separate notes (e.g., “Linux networking”), the review interface can jump to the exact note containing the card. The transcript highlights using an option like showing the file name (instead of “edit later”) so the learner can open the relevant note for clarification.

What do the different flashcard formats (inline reversed, multi-line reverse, cloze) accomplish?

They address different memory failure modes. Inline reversed creates two cards per line so memorization doesn’t happen by recognizing only a few words of the prompt. Multi-line and multi-line reverse support answers spanning multiple lines. Cloze/blank-style cards help when the correct answer depends on surrounding context—useful for language learning where meaning changes with usage.

Why does the transcript discourage using other people’s flashcards?

It argues that flashcards should reflect what the learner encountered while working on their own projects. Imported cards may be useful later, but they can clog the system now—wasting limited review capacity on commands or concepts that aren’t relevant at the moment. The transcript acknowledges others succeed with shared decks, but frames the approach as prioritizing engagement and relevance to the learner’s current needs.

Review Questions

  1. How do the three stages—acquire, remember, practice—work together to prevent forgetting?
  2. In what situations would inline reversed or multi-line reverse flashcards be more effective than basic inline prompt/answer cards?
  3. What trade-off comes with distributing flashcards across multiple notes versus keeping them in one place?

Key Points

  1. 1

    Learning sticks best when knowledge is consumed, retained with spaced repetition, and then applied through projects soon after learning.

  2. 2

    Spaced repetition schedules flashcard reviews using recall ratings, bringing “hard” cards back sooner and “easy” cards back later.

  3. 3

    The Space Repetition plugin in Obsidian can be configured by tag (e.g., #Linux) so only relevant notes enter review sessions.

  4. 4

    Project-driven practice continuously generates new concepts to capture as flashcards, while repeated projects reinforce previously learned ones.

  5. 5

    Storing flashcards in multiple notes makes it easier to get context for missed items by jumping directly to the note where the card lives.

  6. 6

    Flashcard formats like reversed cards and cloze/blank cards reduce memorization shortcuts and handle context-dependent answers.

  7. 7

    Prioritizing self-made flashcards keeps review time focused on what’s currently useful rather than what might be useful later.

Highlights

The learning loop is acquisition + spaced repetition + practice, with application treated as a requirement for retention.
In Obsidian, the Space Repetition plugin turns tagged notes into scheduled reviews where each card is rated after revealing the answer.
Distributing flashcards across notes enables rapid context lookup when a card is missed, instead of guessing why it failed.
Reversed and multi-line flashcard types are designed to stop “partial recognition” and force real recall.
The transcript favors self-generated flashcards over imported community decks to avoid wasting limited review capacity.

Topics

Mentioned