vault backup: 2025-12-10 11:37:35
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
---
|
||||
status: Archiv
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: DataOps
|
||||
|
||||
---
|
||||
> [!abstract]- Project
|
||||
> Goal::
|
||||
> Progress:: `$= dv.view('project-progress', {file: 'DataOps'})`
|
||||
> Target:: `$= dv.view('project-target', {file: 'DataOps'})`
|
||||
> Bar:: `$= dv.view('project-progress-bar', {file: 'DataOps'})`
|
||||
> Tasks:: `$= const aufgaben = dv.page('DataOps').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
|
||||
Kunde [[S-Kreditpartner GmbH]]
|
||||
Ansprechpartner: [[Olaf Hein]], [[Thomas Lokajzcyk]], [[Katharina Wirtz]], [[Christian Heese]]
|
||||
Kollegen: [[Kuno Ospald]], [[Nemanja Panic]], [[Przemyslaw Miskiewicz]], [[Mark Kuschel]], [[Martin Eichner]]
|
||||
|
||||
|
||||
### miro Board
|
||||
https://miro.com/app/board/uXjVN4Qdy60=/
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
SORT file.mtime DESC
|
||||
LIMIT 20
|
||||
```
|
||||
|
||||
## Thoughts
|
||||
|
||||
Tool: https://github.com/Collective-Software/ClickPaste
|
||||
|
||||
## Resources
|
||||
- Kennung: S030S986
|
||||
- Email: thomas.peetz@extern.s-kreditpartner.de
|
||||
- SEVA: https://tsr-r.seva.f-i.de/logon/LogonPoint/tmindex.html
|
||||
|
||||
## Review questions
|
||||
|
||||
|
||||
## Aufgaben
|
||||
- [x] Zustimmung vom Kunden erhalten [start:: 2024-03-01] [completion:: 2024-03-01]
|
||||
- [x] NDA erhalten und zurückgeschickt [start:: 2024-03-11] [scheduled:: 2024-03-18] [completion:: 2024-03-11]
|
||||
- [x] RSA Token erhalten [start:: 2024-03-11] [scheduled:: 2024-03-18] [completion:: 2024-03-18]
|
||||
- [x] Termin mit [[Marcus Lipski]] und [[Marcel Kuszak]] zur Einarbeitung vereinbart [start:: 2024-03-19] [completion:: 2024-03-19]
|
||||
- [x] Windows Login eingerichtet [start:: 2024-03-20] [completion:: 2024-03-20]
|
||||
- [x] Rückgabe Token [start:: 2024-09-27] [scheduled:: 2024-09-27] [completion:: 2024-09-27]
|
||||
|
||||
## 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
|
||||
]
|
||||
}));
|
||||
```
|
||||
Reference in New Issue
Block a user