vault backup: 2022-12-10 22:19:02

This commit is contained in:
Bram Adams
2022-12-10 22:19:02 -06:00
parent 8ac0657664
commit 79bf95df14
15 changed files with 210 additions and 20 deletions

0
Templates/Daily.md Normal file
View File

20
Templates/Quarterly.md Normal file
View File

@@ -0,0 +1,20 @@
# Finished Projects
```dataview
table file.ctime as "finished"
from "_PARA/Archive"
where date(completed) >= (date(now) - dur(84 days))
where file.name != "Scratchpad"
where file.name != "Kanban"
where file.name != "Archive"
where file.name != "Readwise Resources"
```

27
Templates/Weekly.md Normal file
View File

@@ -0,0 +1,27 @@
<< [[<% tp.date.now("YYYY") %>-W<% tp.date.now("WW") - -1%>]] | [[<% tp.date.now("YYYY") %>-W<% tp.date.now("WW") - -3 %>]] >>
Quarterly: [[<% tp.date.now('yyyy') %>-Q<% tp.date.now('MM') % 4 + 1 %>]]
# Retro
## What did I finish this week? (finished writings, finished art pieces, etc.)
## What lessons did I learn this week?
## What should I do differently next week?
## What still puzzles me?
## What appointments do I have for the upcoming week? Are there any appointments I need to make?
# Open Projects
```dataview
table file.ctime as "started"
from "_PARA/Projects"
where file.name != "Scratchpad"
where file.name != "Kanban"
where file.name != "Projects"
where file.name != "Readwise Resources"
```