vault backup: 2026-01-13 17:24:55
This commit is contained in:
@@ -27,11 +27,15 @@ type: Beruflich
|
||||
- miro Hub https://miro.com/app/board/uXjVPsHc-KU=/
|
||||
- https://cimtag.sharepoint.com/sites/COCTcimtInnovation/Freigegebene%20Dokumente/Forms/AllItems.aspx?id=%2Fsites%2FCOCTcimtInnovation%2FFreigegebene%20Dokumente%2FLightning%20Talks&viewid=ff34c44f%2Dcf42%2D4041%2Da164%2D5cb4ce441af3&ga=1
|
||||
|
||||
### Aufgaben
|
||||
|
||||
- [ ] Erstellung einer Email-Vorlage für die Einladung [start:: 2026-01-12]
|
||||
- [ ] Einladung zu den Lightning Talks am 16.1.26 versendet [start:: 2026-01-12] [due:: 2026-01-13]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND !"Übersicht/Kanban" AND "Areas/cimt AG/Lightning Talks/Termine"
|
||||
FROM [[]] AND !outgoing([[]]) AND !"Übersicht/Kanban" AND "Areas/cimt AG/Lightning Talks"
|
||||
SORT file.name DESC
|
||||
```
|
||||
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
---
|
||||
status: Backlog
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: TiBuCi
|
||||
---
|
||||
> [!abstract]- Project
|
||||
> Goal::
|
||||
> Progress:: `$= dv.view('project-progress', {file: 'TiBuCi'})`
|
||||
> Target:: `$= dv.view('project-target', {file: 'TiBuCi'})`
|
||||
> Bar:: `$= dv.view('project-progress-bar', {file: 'TiBuCi'})`
|
||||
> Tasks:: `$= const aufgaben = dv.page('TiBuCi').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }`
|
||||
|
||||
## Project Info
|
||||
|
||||
GitHub Repository
|
||||
- [cimt-ag/tibuci](https://github.com/cimt-ag/tibuci)
|
||||
|
||||
## Thoughts
|
||||
|
||||
## Resources
|
||||
|
||||
|
||||
## Review questions
|
||||
|
||||
|
||||
## Aufgaben
|
||||
|
||||
|
||||
## Offene Aufgaben
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);
|
||||
|
||||
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
||||
const page = dv.page(p.path);
|
||||
const tasks = page.file.tasks;
|
||||
return [
|
||||
page.file.link,
|
||||
page.status,
|
||||
tasks.where(t => t.fullyCompleted === true).length,
|
||||
tasks.length
|
||||
]
|
||||
}));
|
||||
```
|
||||
|
||||
## Aufgaben
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));
|
||||
|
||||
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
||||
const page = dv.page(p.path);
|
||||
const tasks = page.file.tasks;
|
||||
return [
|
||||
page.file.link,
|
||||
page.status,
|
||||
tasks.where(t => t.fullyCompleted === true).length,
|
||||
tasks.length
|
||||
]
|
||||
}));
|
||||
```
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
weight: 97.2
|
||||
meditation: true
|
||||
pushUps: 20
|
||||
plank: 60
|
||||
journal: Privat daily
|
||||
journal-date: 2026-01-13
|
||||
journal-start-date: 2026-01-13
|
||||
journal-end-date: 2026-01-13
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[2026-W03#^03i|Woche]] | [[2026-01#^01i|Monat]] | [[2026-Q1#^q1i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-01-13
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-01-13
|
||||
>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-01-13
|
||||
>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-01-13
|
||||
>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-13)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 01 AND birthday.day = 13
|
||||
```
|
||||
@@ -0,0 +1,67 @@
|
||||
---
|
||||
work_home: false
|
||||
work_office: true
|
||||
journal: cimt daily
|
||||
journal-date: 2026-01-13
|
||||
journal-start-date: 2026-01-13
|
||||
journal-end-date: 2026-01-13
|
||||
---
|
||||
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[Journal/cimt AG/2026/2026-01#^01i|Monat]] | [[Journal/cimt AG/2026/2026-Q1#^q1i|Quartal]] | [[Journal/cimt AG/2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-01-13
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-01-13
|
||||
>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-01-13
|
||||
>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-01-13
|
||||
>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-13)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 01 AND birthday.day = 13
|
||||
```
|
||||
@@ -5,6 +5,7 @@ kanban-plugin: board
|
||||
---
|
||||
|
||||
## Backlog
|
||||
- [ ] [[TiBuCi]]
|
||||
|
||||
- [ ] [[Fenster aufarbeiten]]
|
||||
- [ ] [[Abdeckung über der Wohnungstür]]
|
||||
|
||||
Reference in New Issue
Block a user