vault backup: 2025-12-10 11:37:35

This commit is contained in:
2023-05-15 17:16:05 +02:00
committed by Thomas Peetz
parent 91bf72fc87
commit 73f2162ddf
6049 changed files with 513094 additions and 227748 deletions
@@ -0,0 +1,67 @@
---
status: Archiv
tags:
- process/project
subtitle: Camunda 8 Developer
---
> [!abstract]- Project
> Goal::
> Progress:: `$= dv.view('project-progress', {file: 'Camunda 8 Developer'})`
> Target:: `$= dv.view('project-target', {file: 'Camunda 8 Developer'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Camunda 8 Developer'})`
> Tasks:: `$= const aufgaben = dv.page('Camunda 8 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
- https://github.com/camunda-academy/c8-advanced-camunda-forms-lab
- https://github.com/camunda-academy/c8-custom-inbound-connectors-lab
- https://github.com/camunda-academy/c8-custom-outbound-connectors-lab
- https://github.com/camunda-academy/c8-testing-processes-lab
- https://github.com/camunda-academy/c8-process-communication-lab
- https://github.com/camunda-academy/c8-error-handling-lab
- https://github.com/camunda-academy/c8-execution-listeners-lab
## Review questions
## Aufgaben
- [x] Complete Assessment Camunda Knowledge - Developer Badge [start:: 2025-07-28] [scheduled:: 2025-07-30] [completion:: 2025-07-30]
## 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
]
}));
```