From 7083dee08fca0eaa3beec8bf8f75aba6e3279e40 Mon Sep 17 00:00:00 2001 From: Thomas Peetz Date: Sun, 8 Mar 2026 23:24:21 +0100 Subject: [PATCH] vault backup: 2026-03-08 23:24:21 --- .../Faktura Quote in Projektzeiten.md | 41 ++++++++++ ...w-how-Sicherung und -Ausbau in der cimt.md | 23 ++++++ .../cimt AG/Projekte/convention-plugins.md | 34 -------- .../Kong Gateway Erneuerung SSL Zertifikat.md | 16 ++++ ...atenbanken unter Aufsicht durchgeführt.md | 1 + .../Faktura Quote in Projektzeiten.md | 77 ------------------- ...w-how-Sicherung und -Ausbau in der cimt.md | 58 -------------- ...Rezertifizierung Google Cloud Developer.md | 41 ++-------- ...elease 0.0.1 und Dokumentation erstellt.md | 15 ++-- Areas/cimt AG/Ziele/SMART Ziele erstellt.md | 1 - Journal/cimt AG/2026/2026-W11.md | 3 +- 11 files changed, 98 insertions(+), 212 deletions(-) create mode 100644 Archiv/cimt AG/Projekte/Faktura Quote in Projektzeiten.md create mode 100644 Archiv/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md rename {Areas => Archiv}/cimt AG/Projekte/convention-plugins.md (51%) create mode 100644 Areas/cimt AG/Managed Services/Aufgaben/Kong Gateway Erneuerung SSL Zertifikat.md delete mode 100644 Areas/cimt AG/Projekte/Faktura Quote in Projektzeiten.md delete mode 100644 Areas/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md diff --git a/Archiv/cimt AG/Projekte/Faktura Quote in Projektzeiten.md b/Archiv/cimt AG/Projekte/Faktura Quote in Projektzeiten.md new file mode 100644 index 0000000..18e657b --- /dev/null +++ b/Archiv/cimt AG/Projekte/Faktura Quote in Projektzeiten.md @@ -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] diff --git a/Archiv/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md b/Archiv/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md new file mode 100644 index 0000000..66d6c90 --- /dev/null +++ b/Archiv/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md @@ -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 diff --git a/Areas/cimt AG/Projekte/convention-plugins.md b/Archiv/cimt AG/Projekte/convention-plugins.md similarity index 51% rename from Areas/cimt AG/Projekte/convention-plugins.md rename to Archiv/cimt AG/Projekte/convention-plugins.md index 7960fde..5445715 100644 --- a/Areas/cimt AG/Projekte/convention-plugins.md +++ b/Archiv/cimt AG/Projekte/convention-plugins.md @@ -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 - ] -})); -``` diff --git a/Areas/cimt AG/Managed Services/Aufgaben/Kong Gateway Erneuerung SSL Zertifikat.md b/Areas/cimt AG/Managed Services/Aufgaben/Kong Gateway Erneuerung SSL Zertifikat.md new file mode 100644 index 0000000..ad28fec --- /dev/null +++ b/Areas/cimt AG/Managed Services/Aufgaben/Kong Gateway Erneuerung SSL Zertifikat.md @@ -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 diff --git a/Areas/cimt AG/Managed Services/Aufgaben/Monitoring Harry Brot Datenbanken unter Aufsicht durchgeführt.md b/Areas/cimt AG/Managed Services/Aufgaben/Monitoring Harry Brot Datenbanken unter Aufsicht durchgeführt.md index 6a2116c..0285edb 100644 --- a/Areas/cimt AG/Managed Services/Aufgaben/Monitoring Harry Brot Datenbanken unter Aufsicht durchgeführt.md +++ b/Areas/cimt AG/Managed Services/Aufgaben/Monitoring Harry Brot Datenbanken unter Aufsicht durchgeführt.md @@ -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] diff --git a/Areas/cimt AG/Projekte/Faktura Quote in Projektzeiten.md b/Areas/cimt AG/Projekte/Faktura Quote in Projektzeiten.md deleted file mode 100644 index c47870e..0000000 --- a/Areas/cimt AG/Projekte/Faktura Quote in Projektzeiten.md +++ /dev/null @@ -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 - ] -})); -``` diff --git a/Areas/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md b/Areas/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md deleted file mode 100644 index d77d2bd..0000000 --- a/Areas/cimt AG/Projekte/Know-how-Sicherung und -Ausbau in der cimt.md +++ /dev/null @@ -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 - ] -})); -``` diff --git a/Areas/cimt AG/Projekte/Rezertifizierung Google Cloud Developer.md b/Areas/cimt AG/Projekte/Rezertifizierung Google Cloud Developer.md index 92dc486..c76be3d 100644 --- a/Areas/cimt AG/Projekte/Rezertifizierung Google Cloud Developer.md +++ b/Areas/cimt AG/Projekte/Rezertifizierung Google Cloud Developer.md @@ -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] diff --git a/Areas/cimt AG/Ziele/Release 0.0.1 und Dokumentation erstellt.md b/Areas/cimt AG/Ziele/Release 0.0.1 und Dokumentation erstellt.md index cde57a6..b523210 100644 --- a/Areas/cimt AG/Ziele/Release 0.0.1 und Dokumentation erstellt.md +++ b/Areas/cimt AG/Ziele/Release 0.0.1 und Dokumentation erstellt.md @@ -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 ] diff --git a/Areas/cimt AG/Ziele/SMART Ziele erstellt.md b/Areas/cimt AG/Ziele/SMART Ziele erstellt.md index 123a36d..f9693bd 100644 --- a/Areas/cimt AG/Ziele/SMART Ziele erstellt.md +++ b/Areas/cimt AG/Ziele/SMART Ziele erstellt.md @@ -1,7 +1,6 @@ --- tags: - process/goal -type: --- > [!info]- Status diff --git a/Journal/cimt AG/2026/2026-W11.md b/Journal/cimt AG/2026/2026-W11.md index 2749997..f377215 100644 --- a/Journal/cimt AG/2026/2026-W11.md +++ b/Journal/cimt AG/2026/2026-W11.md @@ -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]]