Initial commit

This commit is contained in:
2026-03-02 17:06:32 +00:00
commit 430dd71917
1190 changed files with 622790 additions and 0 deletions

92
.trash/2025-12-30.md Normal file
View File

@@ -0,0 +1,92 @@
---
categories:
- Daily note
tags:
- daily
date: 2025-12-30
created: 2025-12-30T05:08:05+00:00
updated: 2025-12-30T05:08:05+00:00
---
[[MOC]] | [[2025-12-29|Yesterday]] | [[2025.12.31.We|Tomorrow]]
``` dataview
TABLE rows.file.link as "Task"
FROM "TaskNotes"
WHERE (completed = this.date) OR (status = "in-progress")
OR (((status != "done" AND status != "cancelled") AND
((start AND start <= this.date) OR
(scheduled AND scheduled <= this.date) OR
(due AND due <= this.date)))
)
GROUP BY status
SORT rows.priority ASC, rows.due ASC
```
# notepad
- [ ]
# tasks
```base
properties:
file.name:
displayName: Name
note.rows.file.link:
displayName: Task
views:
- type: table
name: Default view
filters:
and:
- file.inFolder("TaskNotes")
- or:
- completed == this.date
- status == "in-progress"
- and:
- status != "done"
- status != "cancelled"
- or:
- and:
- start
- start <= this.date
- and:
- scheduled
- scheduled <= this.date
- and:
- due
- due <= this.date
groupBy:
property: status
direction: ASC
order:
- file.name
- title
sort: []
group_by: status
columnSize:
file.name: 176
indentProperties: true
```
# today
![[Daily note today.base]]
# daily log
2025.12.30.Tu
2025-12-30_Tu
2025-12-30 Tu
2025-12-30_Tuesday
# [[daily-reflection|daily reflection]]
## what happened today
---
Log:
- 2025-12-30T05:08:05: Daily note created.