vault backup: 2026-02-26 17:34:20
This commit is contained in:
@@ -26,7 +26,7 @@ sudo apt-get purge $(dpkg -l | grep '^rc' | awk '{print $2}')
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Remove obsolete config [start:: 2024-10-13] [scheduled:: 2025-08-09]
|
||||
- [ ] Remove obsolete config [start:: 2024-10-13] [scheduled:: 2026-03-04]
|
||||
- [ ] Replace cron-jobs with systemd- services and timers
|
||||
- [x] Stop and disable service unattended-upgrades [start:: 2025-07-21] [completion:: 2025-07-27]
|
||||
- [x] Entfernen von zfs-fuse [start:: 2025-07-27] [completion:: 2025-07-27]
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
---
|
||||
status: Aktiv
|
||||
status: Review
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: Project Board
|
||||
type: Dokumentation
|
||||
|
||||
---
|
||||
|
||||
> [!project]- Projekt
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
---
|
||||
status: Aktiv
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: Obsidian Setup
|
||||
|
||||
---
|
||||
> [!abstract]- Project
|
||||
> Goal:: [[Einführung von SMART Zielen im Obsidian Workflow]]
|
||||
> Progress:: `$= dv.view('project-progress', {file: 'Obsidian Setup'})`
|
||||
> Target:: `$= dv.view('project-target', {file: 'Obsidian Setup'})`
|
||||
> Bar:: `$= dv.view('project-progress-bar', {file: 'Obsidian Setup'})`
|
||||
> Tasks:: `$= const aufgaben = dv.page('Obsidian Setup').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
|
||||
- [ ] Beschreibung von Aufgaben, Projekten und Zielen im Obsidian Setup #process/task [start:: 2026-02-26] [scheduled:: 2026-02-27] [due:: 2026-03-05]
|
||||
- [ ] Beschreibung der Tags im Obsidian Setup #process/task [start:: 2026-02-26] [scheduled:: 2026-02-27] [due:: 2026-03-05]
|
||||
|
||||
|
||||
## 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,51 @@
|
||||
---
|
||||
tags:
|
||||
- process/smaragd
|
||||
- process/goal
|
||||
---
|
||||
## Definition
|
||||
|
||||
| Teil | Inhalt |
|
||||
| --------------- | ------------------------------------------------------------------------------------------------------- |
|
||||
| **S**pezifisch | Der Workflow in Obsidian für Projekt- und Aufgabenverwaltung soll um SMART-Ziele erweitert werden. |
|
||||
| **M**essbar | Das Template für Ziele ist erstellt und bei drei Zielen angewendet worden. |
|
||||
| **A**ttraktiv | Die Erstellung und Durchsoicht der anstehenden Aufgaben wird vereinfacht und übersichtlicher. |
|
||||
| **R**ealistisch | Der Prozess zum Erstellen von Aufgaben und Projekten ist eingeführt und wird für dieses Ziel angepasst. |
|
||||
| **A**bgestimmt | |
|
||||
| **G**eprüft | |
|
||||
| **D**atiert | Die Erweiterung ist bis Ende März umgesetzt |
|
||||
|
||||
## 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
|
||||
]
|
||||
}));
|
||||
```
|
||||
@@ -42,7 +42,7 @@ return function View() {
|
||||
- [x] Lohnsteuerbescheinigung Thomas [start:: 2026-01-28] [completion:: 2026-01-29]
|
||||
- [ ] Lohnsteuerbescheinigung Claudia [start:: 2026-03-01] [completion:: 2026-05-20]
|
||||
- [x] Nebenkostenabrechnung wegen haushaltsnaher Dienstleistungen #process/task [start:: 2026-01-27] [scheduled:: 2026-01-28] [completion:: 2026-02-05]
|
||||
- [ ] Aufwendungen für Werbungskosten (Entfernung für Kilometerpauschale) [start:: 2026-01-01] [scheduled:: 2026-01-30]
|
||||
- [ ] Aufwendungen für Werbungskosten (Entfernung für Kilometerpauschale) [start:: 2026-01-01] [scheduled:: 2026-03-03]
|
||||
- [ ] Bescheid erhalten [start:: 2026-06-01]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
@@ -11,7 +11,7 @@ Tel.-Nr. 0611-771 355 Schadensabteilung
|
||||
Tel.-Nr. 0611-771 237 Vertragsabteilung
|
||||
|
||||
## nächste Aufgaben
|
||||
- [ ] Rechtsschutzversicherung anpassen [start:: 2024-02-20] [due:: 2024-05-16]
|
||||
- [ ] Rechtsschutzversicherung anpassen [start:: 2024-02-20] [scheduled:: 2026-03-04] [due:: 2024-05-16]
|
||||
- [x] Anruf DEURAG [due:: 2023-06-20] [completion:: 2023-07-04]
|
||||
- [x] Angebot für Rechtsschutzversicherung einholen [scheduled:: 2023-06-19] [due:: 2023-06-19] [completion:: 2023-07-04]
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
status: Review
|
||||
status: Archiv
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
---
|
||||
status: In Arbeit
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Tibuci]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Google Cloud Projekt für Tibuci aufsetzen"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Google Cloud Projekt für Tibuci aufsetzen #process/task [start:: 2026-02-26] [scheduled:: 2026-02-27] [due:: 2026-03-03]
|
||||
- [ ] GCP Container Registry für Tibuci aktivieren [start:: 2026-02-26] #process/task [due:: 2026-03-03]
|
||||
- [ ] Bestehendes Image roars-report:0.0.1 in Container Registry ablegen [start:: 2026-02-26] #process/task [due:: 2026-03-03]
|
||||
- [ ] Laden des Image roars-report aus Container Registry [start:: 2026-02-26] #process/task [due:: 2026-03-03]
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
status: Backlog
|
||||
status: Archiv
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
status: In Arbeit
|
||||
status: Review
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
@@ -23,4 +23,5 @@ Zugang zum Kunden TDK eingerichtet
|
||||
|
||||
- [x] Zugang TDK eingerichtet [start:: 2026-02-23] [due:: 2026-02-27] [completion:: 2026-02-24]
|
||||
- [x] Rückruf TDK Servicedesk [start:: 2026-02-23] [due:: 2026-02-27] [completion:: 2026-02-24]
|
||||
- [x] Problem mit Login dem TDK Servicedesk gemeldet [start:: 2026-02-24] [scheduled:: 2026-02-25] [completion:: 2026-02-25]
|
||||
- [x] Problem mit Login dem TDK Servicedesk gemeldet [start:: 2026-02-24] [scheduled:: 2026-02-25] [completion:: 2026-02-25] #process/task
|
||||
- [ ] Berechtigungen für Citrix Workspace erhalten [start:: 2026-02-25] [due:: 2026-02-27] #process/task
|
||||
|
||||
@@ -33,7 +33,7 @@ subtitle: Einarbeitung Managed Service Team
|
||||
- [x] Zugang Proxmox einrichten [[Bastian Liesigk]] [start:: 2026-02-17] [completion:: 2026-02-18]
|
||||
- [x] Zugang Grafana/Gitea einrichten [[Marcel Kuszak]] [start:: 2026-02-17] [completion:: 2026-02-18]
|
||||
- [x] Zugang BERSN1FS2 einrichten [[Bastian Liesigk]] [completion:: 2026-02-18]
|
||||
|
||||
- [ ] Liste der Kunden erstellen mit Status der Zugänge #process/task [start:: 2026-02-26] [scheduled:: 2026-02-27] [due:: 2026-02-27]
|
||||
|
||||
|
||||
## Offene Aufgaben
|
||||
|
||||
@@ -23,10 +23,10 @@ subtitle: Confluence
|
||||
|
||||
|
||||
## Aufgaben
|
||||
- [ ] Confluence Seiten überprpüft [scheduled:: 2025-09-24]
|
||||
- [ ] Apache Servicemix Confluence Seite erstellen [scheduled:: 2025-09-23]
|
||||
- [ ] Apache Camel Karavan Confluence Seite erstellen [scheduled:: 2025-09-23]
|
||||
- [ ] Spring Boot mit Camel Confluence Seite erstellen [scheduled:: 2025-09-23]
|
||||
- [ ] Confluence Seiten überprpüft [scheduled:: 2026-03-02]
|
||||
- [ ] Apache Servicemix Confluence Seite erstellen [scheduled:: 2026-03-02]
|
||||
- [ ] Apache Camel Karavan Confluence Seite erstellen [scheduled:: 2026-03-02]
|
||||
- [ ] Spring Boot mit Camel Confluence Seite erstellen [scheduled:: 2026-03-02]
|
||||
|
||||
|
||||
## Offene Aufgaben
|
||||
|
||||
@@ -42,7 +42,7 @@ CouchDB Testumgebung
|
||||
|
||||
## Aufgaben
|
||||
- [x] Ersetzen von Docker mit podman auf bervl1prr #process/task [start:: 2026-02-02] [scheduled:: 2026-02-16] [completion:: 2026-02-16]
|
||||
- [ ] Anwesenheitsbericht Dokumentation erstellen #process/task [scheduled:: 2026-02-26]
|
||||
- [ ] Anwesenheitsbericht Dokumentation erstellen #process/task [scheduled:: 2026-02-27]
|
||||
|
||||
|
||||
## Offene Aufgaben
|
||||
|
||||
@@ -58,7 +58,7 @@ Zusammenfassend lässt sich sagen, dass KI zwar viele Prozesse in der Softwareen
|
||||
|
||||
## Aufgaben
|
||||
- [x] Zusendung des Blogeintrags an [[Ann-Kristin Hantzsch-Kühnlenz]] inklusive der Anmerkungen von [[Stefanie Pelster]] #process/task [start:: 2026-02-17] [scheduled:: 2026-02-20] [due:: 2026-03-30] [completion:: 2026-02-20]
|
||||
- [ ] Review des Eintrags mit KI #process/task [start:: 2026-02-17] [scheduled:: 2026-02-26] [due:: 2026-03-10]
|
||||
- [ ] Einbindung von Bildern in den Beitrag #process/task [start:: 2026-02-17] [scheduled:: 2026-02-26] [due:: 2026-03-10]
|
||||
- [ ] Ablage des Textes als Word-Dokument in Sharepoint [start:: 2026-02-20] [scheduled:: 2026-02-26] [due:: 2026-03-10]
|
||||
- [ ] Review des Eintrags mit KI #process/task [start:: 2026-02-17] [scheduled:: 2026-02-27] [due:: 2026-03-10]
|
||||
- [ ] Einbindung von Bildern in den Beitrag #process/task [start:: 2026-02-17] [scheduled:: 2026-02-27] [due:: 2026-03-10]
|
||||
- [ ] Ablage des Textes als Word-Dokument in Sharepoint [start:: 2026-02-20] [scheduled:: 2026-02-27] [due:: 2026-03-10]
|
||||
|
||||
|
||||
@@ -22,6 +22,11 @@ LIMIT 20
|
||||
## 📤 Gewünschtes Ergebnis
|
||||
|
||||
## 📝Notizen
|
||||
- Definition von Zielen nach SMART und SMARAGD
|
||||
- Defintion von Wochen- und Monatszielen
|
||||
- Definition von langfristigen Zielen noch nicht erfolgt.
|
||||
- Die Evaluierung von langfristigen Zielen ist in Arbeit (welche Zielen, welcher Zeithorizont)
|
||||
- Einrichtung von Kunden-Zugängen ist weiterhin in Arbeit
|
||||
|
||||
## ✔️ Aufgaben
|
||||
- [x] Recherche der Selbstmanagement-Methoden #process/task [scheduled:: 2026-02-23] [due:: 2026-02-27] [completion:: 2026-02-24]
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
weight:
|
||||
meditation: true
|
||||
pushUps: 20
|
||||
plank: 60
|
||||
journal: Privat daily
|
||||
journal-date: 2026-02-26
|
||||
journal-start-date: 2026-02-26
|
||||
journal-end-date: 2026-02-26
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[2026-W09#^09i|Woche]] | [[2026-02#^02i|Monat]] | [[2026-Q1#^q1i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!warning]- Heute fällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due on 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!error]- Überfällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due before 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>FROM !"Resources/Templates"
|
||||
>WHERE completed AND completion = date(2026-02-26)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 02 AND birthday.day = 26
|
||||
```
|
||||
@@ -0,0 +1,63 @@
|
||||
---
|
||||
heizung:
|
||||
warmwasser:
|
||||
journal: Privat monthly
|
||||
journal-date: 2026-03-01
|
||||
journal-start-date: 2026-03-01
|
||||
journal-end-date: 2026-03-31
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
> ## Monats Ziele - [[2026-03|März]]
|
||||
> - [ ] [[Einführung von SMART Zielen im Obsidian Workflow]]
|
||||
>^03i
|
||||
|
||||
#### [[2026-Q1#^q1i|Quartal]] | [[2026#^2026i|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
> [!examples]- Backlog
|
||||
>```tasks
|
||||
>not done
|
||||
>no scheduled date
|
||||
>no start date
|
||||
>no due date
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>path regex does not match /^Journal\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>starts on or before 2026-04-01
|
||||
>has start date
|
||||
>no scheduled date
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>path regex does not match /^Journal\/.*/
|
||||
>```
|
||||
|
||||
> [!hint]- Geplante Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>scheduled 2026-03-01 2026-04-01
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>FROM !"Resources/Templates"
|
||||
>WHERE completed AND completion >= date(2026-03-01) AND completion < date(2026-04-01)
|
||||
>SORT completion, start
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 03
|
||||
SORT birthday.day
|
||||
```
|
||||
@@ -0,0 +1,70 @@
|
||||
---
|
||||
work_home: true
|
||||
work_office: false
|
||||
journal: cimt daily
|
||||
journal-date: 2026-02-26
|
||||
journal-start-date: 2026-02-26
|
||||
journal-end-date: 2026-02-26
|
||||
---
|
||||
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [x] 09:15 - 09:30 [[Managed Services Team Daily]] [completion:: 2026-02-26]
|
||||
- [x] 11:45 - 12:00 [[Tibuci]] Stand-Up [completion:: 2026-02-26]
|
||||
- [x] 13:00 - 13:45 [[Einarbeitung Managed Services Team]] bezüglich Kunde Cosnova [[Bastian Liesigk]] [completion:: 2026-02-26]
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[Journal/cimt AG/2026/2026-W09#^09i|Woche]] | [[Journal/cimt AG/2026/2026-02#^02i|Monat]] | [[Journal/cimt AG/2026/2026-Q1#^q1i|Quartal]] | [[Journal/cimt AG/2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!warning]- Heute fällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due on 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!error]- Überfällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due before 2026-02-26
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>FROM !"Resources/Templates"
|
||||
>WHERE completed AND completion = date(2026-02-26)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 02 AND birthday.day = 26
|
||||
```
|
||||
@@ -9,7 +9,7 @@ journal-end-date: 2026-02-28
|
||||
```
|
||||
|
||||
> ## Monats Ziele - [[2026-02|Februar]]
|
||||
>- [ ] Selbstmanagement Methoden SMART und 3x3 ausprobiert und dokumentiert #process/goal
|
||||
>- [x] Selbstmanagement Methoden SMART und 3x3 ausprobiert und dokumentiert #process/goal [completion:: 2026-02-26]
|
||||
>- [x] Vorschläge für Ziele erarbeiten #process/goal [completion:: 2026-02-20]
|
||||
> ^02i
|
||||
|
||||
|
||||
@@ -14,6 +14,7 @@ kanban-plugin: board
|
||||
|
||||
## Aktiv
|
||||
|
||||
- [ ] [[Obsidian Setup]]
|
||||
- [ ] [[Einarbeitung Managed Services Team]]
|
||||
- [ ] [[Rezertifizierung Google Cloud Developer]]
|
||||
- [ ] [[Maintenance der cimt-Talend-Komponenten übernehmen]]
|
||||
@@ -22,11 +23,11 @@ kanban-plugin: board
|
||||
- [ ] [[Einsatz nicht-Talend-eigener Komponenten]]
|
||||
- [ ] [[Confluence]]
|
||||
- [ ] [[Software]]
|
||||
- [ ] [[Notizenverwaltung]]
|
||||
|
||||
|
||||
## Review
|
||||
|
||||
- [ ] [[Notizenverwaltung]]
|
||||
|
||||
|
||||
## Geschlossen
|
||||
|
||||
@@ -6,20 +6,19 @@ kanban-plugin: board
|
||||
|
||||
## Backlog
|
||||
|
||||
- [ ] [[Hinweis auf sicherheitsrelevante Software-Versionen]]
|
||||
- [ ] [[Erste Komponenten auf neues SDK umgestellt]]
|
||||
- [ ] [[Umfang klären und Developmentplan aufstellen]]
|
||||
|
||||
|
||||
## In Arbeit
|
||||
|
||||
- [ ] [[Zugang TDK eingerichtet]]
|
||||
- [ ] [[Google Cloud Projekt für Tibuci aufsetzen]]
|
||||
- [ ] [[Github Repository für nvim-config erstellen]]
|
||||
|
||||
|
||||
## Review
|
||||
|
||||
- [x] [[Ausschreibung Wissensdatenbank]] [completion:: 2026-02-19]
|
||||
- [x] [[Zugang TDK eingerichtet]] [completion:: 2026-02-26]
|
||||
|
||||
|
||||
## Geschlossen
|
||||
@@ -36,6 +35,8 @@ kanban-plugin: board
|
||||
- [x] [[Upgrade OS auf Debian 12]] [completion:: 2026-02-05]
|
||||
- [x] [[Anfrage Deutsche Bahn]] [completion:: 2026-02-18]
|
||||
- [x] [[Zammad Admin Schulung]] [completion:: 2026-02-19]
|
||||
- [x] [[Ausschreibung Wissensdatenbank]] [completion:: 2026-02-19]
|
||||
- [x] [[Hinweis auf sicherheitsrelevante Software-Versionen]] [completion:: 2026-02-26]
|
||||
|
||||
%% kanban:settings
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user