vault backup: 2024-11-19 09:20:09
This commit is contained in:
parent
eb913dc2dd
commit
d6d1f8ebe9
54
1 Daily Notes/2024/11 November/2024-11-19.md
Normal file
54
1 Daily Notes/2024/11 November/2024-11-19.md
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
---
|
||||||
|
date: 2024-11-19
|
||||||
|
tags:
|
||||||
|
---
|
||||||
|
# Yesterday | Tomorrow
|
||||||
|
<< [[1 Daily Notes/2024/11 November/2024-11-18]] | [[1 Daily Notes/2024/11 November/2024-11-20 ]] >>
|
||||||
|
# This Week's Weekly Note
|
||||||
|
[[ Weekly Note 2024-11-13]]
|
||||||
|
# Tasks for today
|
||||||
|
## Plan
|
||||||
|
- HW9 for NUCE 2100
|
||||||
|
- Mini project 2?
|
||||||
|
- Therapy appt
|
||||||
|
- Create outline for presentation
|
||||||
|
## Due
|
||||||
|
```dataview
|
||||||
|
task
|
||||||
|
where
|
||||||
|
due <= date(this.date)
|
||||||
|
and due
|
||||||
|
and !completed
|
||||||
|
and status != "-"
|
||||||
|
sort due asc
|
||||||
|
```
|
||||||
|
## Scheduled
|
||||||
|
```dataview
|
||||||
|
task
|
||||||
|
where
|
||||||
|
scheduled
|
||||||
|
and scheduled <= date(this.date)
|
||||||
|
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
|
||||||
|
```
|
||||||
|
## Completed
|
||||||
|
```dataview
|
||||||
|
task
|
||||||
|
where
|
||||||
|
completed
|
||||||
|
and completion = date(this.date)
|
||||||
|
sort due asc
|
||||||
|
group by file.folder
|
||||||
|
```
|
||||||
|
# Calendar Tasks
|
||||||
Loading…
x
Reference in New Issue
Block a user