Files
SecondBrain/04 Tools/🛠️ Неоконченные заметки.sync-conflict-20260603-110335-23DMR5O.md
T
2026-06-03 14:09:18 +03:00

67 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
type: database
status: stable
tags:
- dashboard
created: 2026-03-01
updated: 2026-04-22
title: 🛠️ Неоконченные заметки
---
# 🛠️ Неоконченные заметки
Список всех материалов со статусом `seed` или `processing`.
## 🌱 Seed (Зерна)
> [!info] Мысли, которые только зафиксированы, но не развиты.
```dataview
TABLE
type as "Тип",
created as "Создана",
updated as "Обновлена"
FROM ""
WHERE status = "seed"
AND file.name != this.file.name
AND !contains(file.path, "99 System")
SORT updated DESC
LIMIT 10
```
## ⚙️ Processing (В работе)
> [!info] Заметки в процессе активного наполнения или структурирования.
```dataview
TABLE
type as "Тип",
created as "Создана",
updated as "Обновлена"
FROM ""
WHERE status = "processing"
AND file.name != this.file.name
AND !contains(file.path, "99 System")
SORT updated DESC
LIMIT 10
```
---
## 🕰️ Давно не обновлялось
> [!warning] Самые старые заметки. Пора перечитать, дополнить или актуализировать.
```dataview
TABLE
status as "Статус",
type as "Тип",
updated as "Обновлена"
FROM ""
WHERE updated
AND file.name != this.file.name
AND !contains(file.path, "99 System")
AND file.type != "moc"
SORT updated ASC
LIMIT 20
```