vault backup: 2026-02-23 16:02:07
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
---
|
||||
status: Backlog
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project::
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Hinweis auf sicherheitsrelevante Software-Versionen"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Hinweis auf sicherheitsrelevante Software-Versionen - Deinstallation
|
||||
- [x] **PyCharm 2025.2.4** — Version 252.27397.106 [completion:: 2026-02-23]
|
||||
- [x] **Microsoft Outlook 2016 - de-de** — Version 16.0.19530.20226 [completion:: 2026-02-23]
|
||||
- [ ] **ESET Management Agent** — Version 12.5.2104.0 [start:: 2026-02-23] [due:: 2026-02-27]
|
||||
- [x] **Microsoft .NET 8.0.19 - Windows Server Hosting** — Version 8.0.19.25372 [completion:: 2026-02-23]
|
||||
- [x] **Python 3.13.5 (64-bit)** — Version 3.13.5150.0 [completion:: 2026-02-23]
|
||||
- [x] **Go Programming Language amd64 go1.25.2** — Version 1.25.2 [completion:: 2026-02-23]
|
||||
- [x] **7-Zip 18.05 (x64 edition)** — Version 18.05.00.0 [completion:: 2026-02-23]
|
||||
- [x] **Adobe Acrobat DC (64-bit)** — Version 21.001.20135 [completion:: 2026-02-23]
|
||||
- [x] **GNU Privacy Guard** — Version 2.4.8 [completion:: 2026-02-23]
|
||||
- [x] Update Gnu Privacy Guard [completion:: 2026-02-23]
|
||||
@@ -60,5 +60,5 @@ Zusammenfassend lässt sich sagen, dass KI zwar viele Prozesse in der Softwareen
|
||||
- [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-24] [due:: 2026-03-10]
|
||||
- [ ] Einbindung von Bildern in den Beitrag #process/task [start:: 2026-02-17] [scheduled:: 2026-02-24] [due:: 2026-03-10]
|
||||
- [ ] Ablage des Textes als Word-Dokument in Sharepoint [start:: 2026-02-20] [due:: 2026-03-10]
|
||||
- [ ] Ablage des Textes als Word-Dokument in Sharepoint [start:: 2026-02-20] [scheduled:: 2026-02-24] [due:: 2026-03-10]
|
||||
|
||||
|
||||
@@ -24,5 +24,5 @@ LIMIT 20
|
||||
## 📝Notizen
|
||||
|
||||
## ✔️ Aufgaben
|
||||
- [ ] Recherche der Selbstmanagement-Methoden #process/task [scheduled:: 2026-02-20] [due:: 2026-02-20]
|
||||
- [ ] Definition von Zielen nach SMART und 3x3 #process/task [start:: 2026-02-20] [scheduled:: 2026-02-20] [due:: 2026-02-27]
|
||||
- [ ] Recherche der Selbstmanagement-Methoden #process/task [scheduled:: 2026-02-23] [due:: 2026-02-27]
|
||||
- [ ] Definition von Zielen nach SMART und 3x3 #process/task [start:: 2026-02-20] [scheduled:: 2026-02-23] [due:: 2026-02-27]
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
---
|
||||
tags:
|
||||
- process/goal
|
||||
type:
|
||||
---
|
||||
|
||||
> [!info]- Status
|
||||
> Progress:: `$= dv.view('progress', {file: 'SMART Ziele erstellt'})`
|
||||
> Target:: `$= dv.view('target', {file: 'SMART Ziele erstellt'})`
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: 'SMART Ziele erstellt'})`
|
||||
> Projects:: `$= const projects = dv.page('SMART Ziele erstellt').file.inlinks.where(p => { const mp = dv.page(p.path); return mp.tags?.includes('process/project') && mp.status != 'Archiv'}); if (projects.length > 0) { dv.header(4, projects.length > 1 ? "Projects" : "Project"); dv.list(projects) }`
|
||||
|
||||
## Wie sieht der Erfolg aus? Was soll erreicht werden?
|
||||
-
|
||||
|
||||
## Related core values
|
||||
|
||||
-
|
||||
|
||||
## Projekte, um das Ziel zu erreichen
|
||||
|
||||
### Ideen
|
||||
|
||||
|
||||
### Offene Projekte
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/project')).where(p => dv.page(p.path).status == "Aktiv");
|
||||
|
||||
let projects = new Set();
|
||||
for (let projectPage of pages) {
|
||||
const page = dv.page(projectPage.path);
|
||||
projects.add([page.file.link, page.status, page.Progress, page.Target]);
|
||||
}
|
||||
|
||||
dv.table(["Project", "Status", "Completed", "Tasks"], Array.from(projects));
|
||||
```
|
||||
|
||||
### Projekte
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/project'));
|
||||
|
||||
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
|
||||
]
|
||||
}));
|
||||
```
|
||||
@@ -8,7 +8,7 @@ journal-end-date: 2026-02-23
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [ ] 12:00 - 13:00 [[Timo Weiß]] [[Pneumologische Praxis am Schloss Charlottenburg]]
|
||||
- [x] 12:00 - 13:00 [[Timo Weiß]] [[Pneumologische Praxis am Schloss Charlottenburg]] [completion:: 2026-02-23]
|
||||
|
||||
## Ziele
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
weight: 98.9
|
||||
meditation: true
|
||||
pushUps: 20
|
||||
plank: 60
|
||||
journal: Privat daily
|
||||
journal-date: 2026-02-23
|
||||
journal-start-date: 2026-02-23
|
||||
journal-end-date: 2026-02-23
|
||||
---
|
||||
```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-23
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-02-23
|
||||
>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-23
|
||||
>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-23
|
||||
>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-23)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 02 AND birthday.day = 23
|
||||
```
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
work_home: true
|
||||
work_office: false
|
||||
journal: cimt daily
|
||||
journal-date: 2026-02-23
|
||||
journal-start-date: 2026-02-23
|
||||
journal-end-date: 2026-02-23
|
||||
---
|
||||
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [x] 09:15 - 09:30 [[Managed Services Team Daily]] [completion:: 2026-02-23]
|
||||
|
||||
## 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-23
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-02-23
|
||||
>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-23
|
||||
>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-23
|
||||
>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-23)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 02 AND birthday.day = 23
|
||||
```
|
||||
@@ -7,7 +7,8 @@ journal-end-date: 2026-03-01
|
||||
```calendar-timeline
|
||||
```
|
||||
> ### Woche [[2026-W09|09]] Ziele
|
||||
>- [ ] [[Zugang TDK eingerichtet]] #process/goal
|
||||
>- [ ] [[Zugang TDK eingerichtet]] #process/goal
|
||||
>- [ ] [[SMART Ziele erstellt]] #process/goal
|
||||
> ^09i
|
||||
|
||||
#### [[2026-02#^02i|Monat]] |[[2026-Q1#^q1i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
@@ -6,6 +6,7 @@ kanban-plugin: board
|
||||
|
||||
## Backlog
|
||||
|
||||
- [ ] [[Hinweis auf sicherheitsrelevante Software-Versionen]]
|
||||
- [ ] [[Erste Komponenten auf neues SDK umgestellt]]
|
||||
- [ ] [[Umfang klären und Developmentplan aufstellen]]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user