vault backup: 2026-04-22 14:00:43

This commit is contained in:
Dmitry
2026-04-22 14:00:43 +03:00
parent d1298eff35
commit 72df124479
4 changed files with 24 additions and 10 deletions
@@ -4,7 +4,7 @@ status: stable
tags:
- dashboard
created: 2026-03-01
updated: 2026-03-05
updated: 2026-04-22
title: 🛠️ Неоконченные заметки
---
@@ -13,7 +13,9 @@ title: 🛠️ Неоконченные заметки
Список всех материалов со статусом `seed` или `processing`.
## 🌱 Seed (Зерна)
> [!info] Мысли, которые только зафиксированы, но не развиты.
```dataview
TABLE
type as "Тип",
@@ -28,7 +30,9 @@ LIMIT 10
```
## ⚙️ Processing (В работе)
> [!info] Заметки в процессе активного наполнения или структурирования.
```dataview
TABLE
type as "Тип",
@@ -44,7 +48,9 @@ LIMIT 10
---
## 🕰️ Давно не обновлялось
> [!warning] Самые старые заметки. Пора перечитать, дополнить или актуализировать.
```dataview
TABLE
status as "Статус",
@@ -54,6 +60,7 @@ FROM ""
WHERE updated
AND file.name != this.file.name
AND !contains(file.path, "99 System")
AND file.type != "moc"
SORT updated ASC
LIMIT 20
```