Daily notes with Capture note
Also crossposted on my blog: https://jenglert.gitlab.io
Purpose
- process incoming information (thoughts, ideas, recommendations)
- write down tasks for the day and hold yourself accountable to them
- keep track of content you consume and serve as springboard for notes taken on podcasts, articles, etc
Main
The 000 Capture
[1] note is at the heart of my day to day note-taking in Obsidian.
It’s the universal list of all tasks and todos, collects reading / podcast / Netflix recommendations and serves as a shopping list.
In it I plan out my day and develop thoughts into notes.
I use it to keep track of all the things I’m doing through out the day (writing emails, planning things, writing or documenting code, talking to people etc.).
Markdown allows you to create checkbox lists with nested items so finished tasks can simply be crossed out.
For meetings, I create a note with discussion topics or minutes directly from the capture note.
I create a note for each article I read during the day with some basic metadata with author information, date of publishing and reading, link and tags. This allows organizing my collection of notes via tags and MOCs (maps of concepts).
Using one of the various Markdown editors for iOS, I can add thoughts, tasks, and recommendations to my capture note on mobile too[2]
At the end of the day, I copy all completed tasks, readings and meeting notes of the day into the corresponding daily note.
Over time, the daily notes thus become a repository that keeps track of tasks, projects and content consumed.
Unfinished tasks stay in the capture note. There, after doing my daily planning and prioritization on the next day I either pick them up or discard them.
On the top of my daily notes you can see a section with links to yesterday’s and tomorrow’s note. This allows me to quickly navigate between daily notes to revisit them or to move tasks from one day to the next.
The Markdown for this header template can just be copied from one daily note to another and adjusted for each day or you can use a script to paste it with a shortcut of your choice (here with Autohokey) [3]
<< Yesterday `[[link to yesterday's daily note]]` | `[[link to tomorrows's daily note]]` Tomorrow >>
`[[link to capture note]]`
---
your notes
[1]: the 000
in the file name ensures that the note is always on top in the file explorer pane
[2]: this requires using iCloud as directory for the Obsidian Vault
[3]: Autohotkey code
```ahk
; Syntax
; ^ = CTRL
; ! = ALT
; + = SHIFT
; # = WIN
; :: = run when pressed keys together
^+d::
yesterday := a_now
yesterday += -1, days
tomorrow := a_now
tomorrow += 1, days
FormatTime, tomorrow, %tomorrow%, yyyy-MM-dd
FormatTime, yesterday, %yesterday%, yyyy-MM-dd
SendInput, << Yesterday **[[Daily notes/%yesterday% | %yesterday%]]**{space}|{space}**[[Daily notes/%tomorrow% | %tomorrow%]]** Tomorrow >>
Send, {Enter}
Send, {Enter}
SendInput, **[[000 Capture]]**
Send, {Enter}
Send, {Enter}---
Send, {Enter}
Return
```