Turning Notes into Knowledge


7 days ago -  
Tech TalksNotesObsidian

Taking notes is essential for learning and retaining information, but without regular review, those notes lose their value. Over time, I’ve discovered that how you revisit and engage with your notes matters just as much as taking them.

Turning Notes into Knowledge

I have been taking notes for quite some time, and the issue with dumping information is that you need to find a way to review and retrieve your notes; otherwise, there’s no point in taking them. The tool I use is Obsidian, which has some extensions for reviewing notes using the Spaced Repetition System. For years, I had been using Quiver as my go-to note-taking tool, where I had built a fully automated system for retrieving information. I had developed a system on top of it to easily retrieve my notes. If you’re using it, I had some tweets about it, they are in Farsi, but you can get the idea by looking at the screenshots:

However, based on my experience, the best way to review notes is to discuss them with someone else. My friend and I have started a habit of having bi-weekly tech talks where we discuss what we’ve learned over the past two weeks. This has been a great way to review notes and learn from each other. I highly recommend trying this with your friends or colleagues. The template I use for summarising my week is pretty simple (as you can see, I’ve used Dataview to query my notes and sort them by date):

# MM DD - MM DD

[[Journal/Weekly/YYYY-WWW | ← Previous Week]] | [[Journal/Weekly/YYYY-WWW | Next Week →]]

```dataview
TABLE
FROM #daily
WHERE file.cday >= date(today) - dur(7 days)
SORT file.cday
```

## Things I Learned

- One
- Two
- Three

At the end of the day, reviewing your notes shouldn’t feel like a chore. Whether through tools like Obsidian or meaningful conversations with others, finding a method that keeps you engaged makes all the difference. Give it a try, you might be surprised by how much more you retain and learn 🙂.