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
@@ -1,10 +1,7 @@
---
type: Software
status: Archiv
tags:
- process/project
subtitle: Gradle Convention Plugin für Java Projekte
---
@@ -34,34 +31,3 @@ subtitle: Gradle Convention Plugin für Java Projekte
- [x] Add convention plugins for Java application projects [completion:: 2024-02-14]
## 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,16 @@
---
tags:
- process/task
---
> [!task]+
> Project::
> Bar:: `$= dv.view('total-progress-bar', {file: "Kong Gateway Erneuerung SSL Zertifikat"})`
## Aufgabenbeschreibung
## Überlegungen
## Unteraufgaben
- [ ] Kong Gateway Erneuerung SSL Zertifikat
@@ -16,3 +16,4 @@ tags:
## Unteraufgaben
- [x] Monitoring Harry Brot Datenbanken unter Aufsicht durchgeführt #process/task [start:: 2026-03-05] [scheduled:: 2026-03-05] [completion:: 2026-03-05]
- [ ] Monitoring Datenbanken durchgeführt [start:: 2026-03-09] [scheduled:: 2026-03-09] [due:: 2026-03-09]
@@ -1,77 +0,0 @@
---
status: Archiv
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'})`
> Tasks:: `$= const aufgaben = dv.page('Faktura Quote in Projektzeiten').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
Faktura Quote in Projektzeiten (15 PT/ Monat)
## Thoughts
## 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]
## 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
]
}));
```
@@ -1,58 +0,0 @@
---
status: Archiv
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
## 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
]
}));
```
@@ -1,16 +1,14 @@
---
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
@@ -23,36 +21,7 @@ subtitle: Rezertifizierung Google Cloud Developer
## 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
]
}));
```
- [ ] Vorbereitung zur Prüfung abgeschlossen [start:: 2026-03-08]
- [ ] Prüfungstermin vereinbart [start:: 2026-03-08]
- [ ] Prüfung durchgeführt [start:: 2026-03-08]
- [ ] Zertifikat erhalten [start:: 2026-03-08]
@@ -4,6 +4,12 @@ tags:
- process/goal
---
> [!info]- Status
> Progress:: `$= dv.view('progress', {file: 'Release 0.0.1 und Dokumentation erstellt'})`
> Target:: `$= dv.view('target', {file: 'Release 0.0.1 und Dokumentation erstellt'})`
> Bar:: `$= dv.view('total-progress-bar', {file: 'Release 0.0.1 und Dokumentation erstellt'})`
> Projects:: `$= const projects = dv.page('Release 0.0.1 und Dokumentation erstellt').file.inlinks.where(p => { const mp = dv.page(p.path); return mp.tags?.includes('process/project') }); if (projects.length > 0) { dv.header(4, projects.length > 1 ? "Projects" : "Project"); dv.list(projects) }`
## Definition
| Teil | Inhalt |
| --------------- | ------------------------------------------------------------------------------------------------------------------------- |
@@ -16,18 +22,18 @@ tags:
| **D**atiert | Branch `main` bis 27.02. aktualisiert |
## Aufgaben
- [x] Branch `develop`/0.1.0` nach m̀ain`zusammengeführt [completion:: 2026-03-08]
- [x] Tag `0.0.1`gesetzt [completion:: 2026-03-08]
## 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 => {
dv.table(["Project", "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
]
@@ -38,12 +44,11 @@ dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
```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 => {
dv.table(["Project", "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
]
@@ -1,7 +1,6 @@
---
tags:
- process/goal
type:
---
> [!info]- Status
+2 -1
View File
@@ -8,7 +8,8 @@ journal-end-date: 2026-03-15
```
> ### Woche [[2026-W11|11]] Ziele
> - [ ] [[Monitoring Harry Brot Datenbanken unter Aufsicht durchgeführt]]
> - [ ] [[Kong Gateway: Erneuerung SSL Zertifikat]]
> - [ ] [[Kong Gateway Erneuerung SSL Zertifikat]]
> - [ ] [[Talend System-Update]]
^11i
#### [[2026-03#^03i|Monat]] |[[2026-Q1#^q1i|Quartal]] | [[2026## Jahresziele|Jahr]]