vault backup: 2026-05-05 18:21:59

This commit is contained in:
Thomas Peetz
2026-05-05 18:21:59 +02:00
parent b6385e7a6b
commit 0ccd3ff27b
5 changed files with 224 additions and 1 deletions
+69
View File
@@ -0,0 +1,69 @@
---
work_home: false
work_office: true
journal: cimt daily
journal-date: 2026-05-05
journal-start-date: 2026-05-05
journal-end-date: 2026-05-05
---
```calendar-timeline
```
## Journal
- [x] 09:15 - 09:30 [[Managed Services Team Daily]] [completion:: 2026-05-05]
- [x] 13:30 - 13:45 [[Tibuci Jour fixe]] [completion:: 2026-05-05]
## Ziele
##### [[Journal/cimt AG/2026/2026-W19#^19i|Woche]] | [[Journal/cimt AG/2026/2026-05#^05i|Monat]] | [[Journal/cimt AG/2026/2026-Q2#^q2i|Quartal]] | [[Journal/cimt AG/2026## Jahresziele|Jahr]]
## Aufgaben
> [!hint]- Aktuelle Aufgaben
>```tasks
>not done
>happens on 2026-05-05
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!todo]- Aktive Aufgaben
>```tasks
>not done
>happens before 2026-05-05
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!warning]- Heute fällig
>```tasks
>not done
>has due date
>due on 2026-05-05
>path regex does not match /^Resources\/Templates\/.*/
>path regex does not match /^Übersicht\/.*/
>```
> [!error]- Überfällig
>```tasks
>not done
>has due date
>due before 2026-05-05
>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-05-05)
>```
## Geburtstage
```dataview
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
FROM "Infos/Kontakte"
WHERE birthday.month = 05 AND birthday.day = 05
```
+84
View File
@@ -0,0 +1,84 @@
---
work_hours: 0
journal: cimt monthly
journal-date: 2026-05-01
journal-start-date: 2026-05-01
journal-end-date: 2026-05-31
---
```calendar-timeline
```
> ## Monats Ziele - [[2026-05|Mai]]
> 1. Objective one
> 2. Objective two
> 3. Objective three ^05i
#### [[2026-Q2#^q2i|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-06-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-05-01 2026-06-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-05-01) AND completion < date(2026-06-01)
>SORT completion, start
>```
## Geburtstage
```dataview
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
FROM "Infos/Kontakte"
WHERE birthday.month = 05
SORT birthday.day
```
## Anwesenheit
```dataview
TABLE WITHOUT ID
file.link as Datum,
choice(work_home = true, "✅", "❌") as HomeOffice,
choice(work_office = true, "✅", "❌") as Büro
FROM "Journal/cimt AG"
WHERE file.day >= date(2026-05-01) AND file.day < date(2026-06-01)
SORT file.day ASC
```
## Anwesenheit (zu überprüfen)
```dataview
TABLE WITHOUT ID
file.link as Datum,
choice(work_home = true, "✅", "❌") as HomeOffice,
choice(work_office = true, "✅", "❌") as Büro
FROM "Journal/cimt AG"
WHERE file.day >= date(2026-05-01) AND file.day < date(2026-06-01) and work_home = false and work_office = false
SORT file.day ASC
```