vault backup: 2025-01-24 16:14:01

This commit is contained in:
Dane Sabo 2025-01-24 16:14:01 -05:00
parent d19b6c85ee
commit 7317a3bbf6
2 changed files with 86 additions and 10 deletions

View File

@ -20,19 +20,11 @@ TASK
where completed where completed
and completion >= this.date - dur(7 days) and completion >= this.date - dur(7 days)
and completion <= this.date and completion <= this.date
group by file.folder group by tags
sort completion asc sort completion asc
``` ```
>[!done]
>```tasks
>explain
>done
>starts after {{this.date}} -7 days
>starts before {{this.date}}
>group by tag
>sort by done
>```
# This Week's Plan # This Week's Plan
## Remarks ## Remarks

View File

@ -0,0 +1,84 @@
---
date: 2025-01-27
modification date: Friday 24th January 2025 16:07:06
tags: []
---
<< [[2 Cole Group Meeting Notes/Weekly Note 2025-01-20]] | [[2 Cole Group Meeting Notes/Weekly Note 2025-02-03]] >>
# This Week's Daily Notes
[[2025-01-20]]
[[2025-01-21]]
[[2025-01-22]]
[[2025-01-23]]
[[2025-01-24]]
# Last Week's Plan
# Accomplishments
## Remarks
## Tasks and Notes From This Past Week
```dataview
TASK
where completed
and completion >= this.date - dur(7 days)
and completion <= this.date
sort completion asc
```
```tasks
explain
done
done after {{query.file.filename}} - 7 days
done before {{query.file.filename}}
group by tags
sort by done
```
# This Week's Plan
## Remarks
## Tasks This Next Week
### Tasks Overdue
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
### Tasks Due this Week
```dataview
task
where
due >= this.date
and due <= this.date + dur(7 days)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
### Tasks in Progress
```dataview
task
where
status != "-"
and status = "/"
sort due asc
group by file.folder
```
### Tasks Scheduled
```dataview
task
where
scheduled
and scheduled >= this.date
and scheduled <= this.date + dur(7 days)
and due > this.date +dur(7 days)
and !completed
and status != "-"
sort due asc
group by file.folder
```