Files
thpeetz-notes/Areas/cimt AG/Präsentation/Vorstellung Joplin und Obsidian.md

55 lines
1.6 KiB
Markdown

---
type: Archiv
status: Archiv
tags:
- process/lightning_talk
subtitle: Vorstellung Joplin und Obsidian
lecture_date: 2023-07-21
---
> [!abstract]- Project
> Goal:: [[Lightning Talks]]
> Progress:: `$= dv.view('project-progress', {file: 'Vorstellung Joplin und Obsidian'})`
> Target:: `$= dv.view('project-target', {file: 'Vorstellung Joplin und Obsidian'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Vorstellung Joplin und Obsidian'})`
> Tasks:: `$= const aufgaben = dv.page('Vorstellung Joplin und Obsidian').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
Vortrag gehalten im Termin [[2023-07-21 Lightning Talks]]
## Thoughts
## Resources
## Review questions
## Aufgaben
- [x] Beispiel Vault einrichten [[Vorstellung Joplin und Obsidian]] [start:: 2023-07-18] [due:: 2023-07-19] [completion:: 2023-07-21]
- [x] Vortrag erstellen [[Vorstellung Joplin und Obsidian]] [start:: 2023-07-18] [due:: 2023-07-19] [completion:: 2023-07-21]
## Termine
```dataview
LIST
FROM [[]] AND !outgoing([[]]) AND !"Übersicht/Kanban" AND "Journal"
SORT file.name DESC
```
## 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
]
}));
```