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

1.6 KiB

type, status, tags, subtitle, lecture_date
type status tags subtitle lecture_date
Archiv Archiv
process/lightning_talk
Vorstellung Joplin und Obsidian 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

  • Beispiel Vault einrichten Vorstellung Joplin und Obsidian [start:: 2023-07-18] [due:: 2023-07-19] [completion:: 2023-07-21]
  • Vortrag erstellen Vorstellung Joplin und Obsidian [start:: 2023-07-18] [due:: 2023-07-19] [completion:: 2023-07-21]

Termine

LIST
FROM [[]] AND !outgoing([[]]) AND !"Übersicht/Kanban" AND "Journal"
SORT file.name DESC

Aufgaben

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
	]
}));