vault backup: 2026-03-08 23:24:21

This commit is contained in:
2026-03-08 23:24:21 +01:00
parent ddb4dfe4ab
commit 7083dee08f
11 changed files with 98 additions and 212 deletions
@@ -0,0 +1,41 @@
---
tags:
- process/project
subtitle: Faktura Quote in Projektzeiten
---
> [!abstract]- Project
> Goal:: [[Journal/cimt AG/2025|2025]]
> Progress:: `$= dv.view('project-progress', {file: 'Faktura Quote in Projektzeiten'})`
> Target:: `$= dv.view('project-target', {file: 'Faktura Quote in Projektzeiten'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Faktura Quote in Projektzeiten'})`
## Project Info
Faktura Quote in Projektzeiten (15 PT/ Monat)
## Resources
```dataviewjs
const pages = dv.pages('"Journal/Messe München/2025"').where(p => p.journal == "Messe München monthly");
dv.table(["Month", "PT"], pages
.sort(p => p.file.link)
.map(p => {
const hours = p.work_hours;
return [
p.file.link,
hours/8
]
})
);
let hours_sum = 0;
for (let page of dv.pages('"Journal/Messe München/2025"').where(p => p.journal == "Messe München monthly")) {
hours_sum = hours_sum + page.work_hours
}
dv.paragraph("Durchschnittliche Anzahl von PT/Monat: " + hours_sum/pages.length/8)
```
## Review questions
## Aufgaben
- [-] Faktura Quote von 15PT/Monat erreicht [start:: 2025-01-01] [due:: 2025-08-04]
@@ -0,0 +1,23 @@
---
tags:
- process/project
subtitle: Know-how-Sicherung und -Ausbau in der cimt
---
> [!abstract]- Project
> Goal:: [[Journal/cimt AG/2021|2021]]
> Progress:: `$= dv.view('project-progress', {file: 'Know-how-Sicherung und -Ausbau in der cimt'})`
> Target:: `$= dv.view('project-target', {file: 'Know-how-Sicherung und -Ausbau in der cimt'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Know-how-Sicherung und -Ausbau in der cimt'})`
> Tasks:: `$= const aufgaben = dv.page('Know-how-Sicherung und -Ausbau in der cimt').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
@@ -0,0 +1,33 @@
---
tags:
- process/project
subtitle: Gradle Convention Plugin für Java Projekte
---
> [!project]- convention-plugins
> Goal::
> Progress:: `$= dv.view('project-progress', {file: 'convention-plugins'})`
> Target:: `$= dv.view('project-target', {file: 'convention-plugins'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'convention-plugins'})`
> Tasks:: `$= const aufgaben = dv.page('convention-plugins').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
### Github
> [!info]
> A collection of Gradle convention plugins for Java and Asciidoctor builds
> [convention-plugins](https://github.com/cimt-ag/convention-plugins)
## Review questions
## Aufgaben
- [x] Add convention plugins for Java application projects [completion:: 2024-02-14]