43 lines
1.4 KiB
Markdown
43 lines
1.4 KiB
Markdown
---
|
|
note type:
|
|
- dashboard
|
|
date: 2026-06-03
|
|
---
|
|
# Vault Dashboard
|
|
|
|
> Start here, then jump into the part of the vault that needs attention.
|
|
|
|
![[anime-kuroko-no-basket-tetsuya-basketball-play-17f4blaudede9nw2.gif]]
|
|
|
|
## Quick Launch
|
|
|
|
| Area | Open | Use it for |
|
|
| ----------- | ---------------- | ----------------------------------------------------------- |
|
|
| Daily | [[Daily Notes]] | Journal entries, plans, and day-to-day capture |
|
|
| Career | [[Career MOC]] | Software engineering, interviews, work notes, and resources |
|
|
| Books | [[Books MOC]] | Book notes, recommendations, and reading backlog |
|
|
| Articles | [[Articles MOC]] | Article notes and reading pipeline |
|
|
| Emacs | [[Emacs MOC]] | Packages, config, workflows, and references |
|
|
| Concepts | [[Concepts]] | Career concepts |
|
|
| z resources | [[z resources]] | Resources |
|
|
|
|
## Active Reading
|
|
|
|
```dataview
|
|
TABLE file.folder AS Folder
|
|
FROM "Books" OR "Articles"
|
|
WHERE done != true
|
|
SORT file.mtime DESC
|
|
LIMIT 12
|
|
```
|
|
|
|
## Recently Updated
|
|
|
|
```dataview
|
|
TABLE file.folder AS Folder, file.mtime AS Updated
|
|
FROM ""
|
|
WHERE file.name != "Index"
|
|
SORT file.mtime DESC
|
|
LIMIT 12
|
|
```
|