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
+1
View File
@@ -3,6 +3,7 @@ status: Geschlossen
tags:
- process/project
subtitle: Blog Post
---
> [!abstract]- Project
> Goal:: [[Journal/cimt AG/2025|2025]]
@@ -0,0 +1,58 @@
---
status: Aktiv
tags:
- process/project
subtitle: Rezertifizierung Google Cloud Developer
---
> [!abstract]- Project
> Goal:: [[Journal/cimt AG/2026|2026]]
> Progress:: `$= dv.view('project-progress', {file: 'Rezertifizierung Google Cloud Developer'})`
> Target:: `$= dv.view('project-target', {file: 'Rezertifizierung Google Cloud Developer'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Rezertifizierung Google Cloud Developer'})`
> Tasks:: `$= const aufgaben = dv.page('Rezertifizierung Google Cloud Developer').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
## 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
]
}));
```