obsidian/02 Areas/Work Tasks.md
Vadym Samoilenko bd85cacf17 Structural cleanup: reorganize loose notes + add dashboards
- Move SSH Servers, Deploy to Server, bitbacket ssh setup, setup redirect url → 03 Resources/Infrastructure/
- Move Claude code.md, how to.md, how to_en.md → 03 Resources/SOPs/
- Move Заметки по работе с терминалом.md → 03 Resources/SOPs/
- Move linux_docker_apache_vim_cheatsheet.html, Pasted image → 03 Resources/
- Delete empty Untitled.canvas and Untitled.base
- Create 02 Areas/Work Tasks.md (Dataview task dashboard)
- Create 03 Resources/Infrastructure Index.md (hub note)
- Update Projects Index.md infrastructure links

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-14 18:47:18 +01:00

539 B

name type tags updated
Work Tasks dashboard
tasks
work
dashboard
2026-04-14

Work Tasks

Live task board — pulled from all project notes via Dataview.

Open Tasks (All Projects)

TASK
FROM "01 Projects"
WHERE !completed
SORT file.mtime DESC

By Project

TASK
FROM "01 Projects"
WHERE !completed
GROUP BY file.folder

Completed (Last 7 Days)

TASK
FROM "01 Projects"
WHERE completed
WHERE completion >= date(today) - dur(7 days)
SORT completion DESC
LIMIT 20