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
|
||||
]
|
||||
}));
|
||||
```
|
||||
Reference in New Issue
Block a user