vault backup: 2025-12-10 11:37:35

This commit is contained in:
2023-05-15 17:16:05 +02:00
committed by Thomas Peetz
parent 91bf72fc87
commit 73f2162ddf
6049 changed files with 513094 additions and 227748 deletions
@@ -0,0 +1,128 @@
---
type: Archiv
status: Archiv
tags:
- process/project
- presentation/lecture
subtitle: Verwaltung von Notizen - Verwendung von Folder, Tags, Links
lecture_date: 2024-01-19
---
> [!abstract]- Projekt
> Goal:: [[Lightning Talks]]
> Progress:: `$= dv.view('project-progress', {file: 'Verwaltung von Notizen'})`
> Target:: `$= dv.view('project-target', {file: 'Verwaltung von Notizen'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Verwaltung von Notizen'})`
> Tasks:: `$= const aufgaben = dv.page('Verwaltung von Notizen').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 [[2024-01-19 Lightning Talks]]
## Thoughts
- PKM Personal Knowledge Management (Obsidian/Note making)
## Resources
### PKM-Systems
#### PARA
- Projects
- Areas
- Resources
- Archives
#### Johnny.Decimal
https://johnnydecimal.com/
#### ACCESS
- Encounter
- Cooling Pad
- unsorted
- Atlas
- Maps of Contents
- Dashboards
- Overviews
- Logs
- Datascopes
- Calendar
- Daily Notes
- Meetings
- Plans
- Reviews
- Journals
- Cards
- Ideas
- Things
- People
- Concepts
- Statements
- Extras
- Attachments
- Graphics
- Images
- Manuals
- Templates
- Sources
- Books, Articles
- Podcasts, Talks
- Courses
- Research Papers
- Movies, TV, Videos
- Spaces
- Life, Work, ...
- M MOCs
- A Areas
- P Projects
- S Support Notes
Liste der Themen:
- ACCESS siehe Youtube Video https://www.youtube.com/watch?v=p0zWJ-TLghw
- https://publish.obsidian.md/aidanhelfant/Concept+Notes/ACCESS+Organization+Framework
- https://medium.com/@raysims/a-personal-knowledge-management-glossary-6037d775f87b
- https://publish.obsidian.md/aidanhelfant/Concept+Notes/ACCESS+Organization+Framework
- https://mattgiaro.com/para-method-alternatives/
- https://twitter.com/NickMilo/status/1530162446459019265
- PARA
- https://www.manuelflick.de/blog/-para-mein-weg-zur-perfekten-digitalen-organisation
- Johnny Decimal System siehe Leah Ferguson [[File Hierarchy SOP - Leah Ferguson]]
- https://johnnydecimal.com/
- https://ricraftis.au/obsidian/how-to-set-up-an-obsidian-vault-using-the-johnny-decimal-system/
- https://gist.github.com/erkobridee/f71b37f6f81c65ad458cdaae653fde41
- Build a Second Brain siehe [[Building a Second Brain and GTD - Obsidian Rocks]]
- https://forum.zettelkasten.de/discussion/2638/types-and-uses-of-pkm
- https://forum.obsidian.md/t/the-ultimate-folder-system-a-quixotic-journey-to-ace/63483
## Review questions
## Aufgaben
- [x] Vortrag Verwaltung von Notizen erstellen [start:: 2023-07-21] [completion:: 2024-01-18]
- [x] Vortrag auf [[Lightning Talks]] halten [start:: 2024-01-19] [scheduled:: 2024-01-19] [completion:: 2024-01-19]
## 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
]
}));
```