vault backup: 2026-01-02 03:17:49

This commit is contained in:
2026-01-02 03:17:49 +01:00
parent bc63ddebf1
commit 6db72155ac
8 changed files with 345 additions and 1 deletions
+64
View File
@@ -0,0 +1,64 @@
---
heizung:
warmwasser:
journal: Privat monthly
journal-date: 2026-01-01
journal-start-date: 2026-01-01
journal-end-date: 2026-01-31
---
```calendar-timeline
```
> ## Monats Ziele - [[2026-01|Januar]]
> 1. Objective one
> 2. Objective two
> 3. Objective three ^01i
#### [[2026-Q1#^q1i|Quartal]] | [[2026#^2026i|Jahr]]
## Aufgaben
> [!examples]- Backlog
>```tasks
>not done
>no scheduled date
>no start date
>no due date
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>path regex does not match /^Journal\/.*/
>```
> [!todo]- Aktive Aufgaben
>```tasks
>not done
>starts on or before 2026-02-01
>has start date
>no scheduled date
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>path regex does not match /^Journal\/.*/
>```
> [!hint]- Geplante Aufgaben
>```tasks
>not done
>scheduled 2026-01-01 2026-02-01
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!done]- Erledigte Aufgaben
>```dataview
>TASK
>FROM !"Resources/Templates"
>WHERE completed AND completion >= date(2026-01-01) AND completion < date(2026-02-01)
>SORT completion, start
>```
## Geburtstage
```dataview
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
FROM "Infos/Kontakte"
WHERE birthday.month = 01
SORT birthday.day
```
+60
View File
@@ -0,0 +1,60 @@
---
journal: Privat quarterly
journal-date: 2026-01-01
journal-start-date: 2026-01-01
journal-end-date: 2026-03-31
---
```calendar-timeline
```
---
>### Quartal 1 Ziele ^q1i
---
## Aufgaben
> [!examples]- Backlog
>```tasks
>not done
>no scheduled date
>no start date
>no due date
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Journal\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!todo]- Aktive Aufgaben
>```tasks
>not done
>starts on or before 2026-04-01
>has start date
>no scheduled date
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!hint]- Geplante Aufgaben
>```tasks
>not done
>scheduled 2026-01-01 2026-04-01
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!done]- Erledigte Aufgaben
>```dataview
>TASK
>FROM !"Resources/Templates"
>WHERE completed AND completion >= date(2026-01-01) AND completion < date(2026-04-01)
>SORT completion, start
>```
## Geburtstage
```dataview
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
FROM "Infos/Kontakte"
WHERE birthday.month >= 01 AND birthday.month <= 03
SORT birthday.month, birthday.day
```