vault backup: 2024-11-20 08:54:07
This commit is contained in:
parent
faebd5d307
commit
f4508db4a9
50
1 Daily Notes/2024/11 November/2024-11-19.md
Normal file
50
1 Daily Notes/2024/11 November/2024-11-19.md
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
---
|
||||||
|
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
|
||||||
|
## Due
|
||||||
|
```dataview
|
||||||
|
task
|
||||||
|
where
|
||||||
|
due <= date(this.date)
|
||||||
|
and due
|
||||||
|
and !completed
|
||||||
|
and status != "-"
|
||||||
|
sort due asc
|
||||||
|
group by file.folder
|
||||||
|
```
|
||||||
|
## 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
|
||||||
50
1 Daily Notes/2024/11 November/2024-11-20.md
Normal file
50
1 Daily Notes/2024/11 November/2024-11-20.md
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
---
|
||||||
|
date: 2024-11-20
|
||||||
|
tags:
|
||||||
|
---
|
||||||
|
# Yesterday | Tomorrow
|
||||||
|
<< [[1 Daily Notes/2024/11 November/2024-11-19]] | [[1 Daily Notes/2024/11 November/2024-11-21 ]] >>
|
||||||
|
# This Week's Weekly Note
|
||||||
|
[[ Weekly Note 2024-11-13]]
|
||||||
|
# Tasks for today
|
||||||
|
## Due
|
||||||
|
```dataview
|
||||||
|
task
|
||||||
|
where
|
||||||
|
due <= date(this.date)
|
||||||
|
and due
|
||||||
|
and !completed
|
||||||
|
and status != "-"
|
||||||
|
sort due asc
|
||||||
|
group by file.folder
|
||||||
|
```
|
||||||
|
## 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
|
||||||
@ -1,53 +0,0 @@
|
|||||||
---
|
|
||||||
date: <% tp.file.title %>
|
|
||||||
tags:
|
|
||||||
---
|
|
||||||
# Yesterday | Tomorrow
|
|
||||||
<< [[1 Daily Notes/2024/11 November/<%*if (tp.date.weekday("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") == tp.file.title) { tR += tp.date.now("YYYY-MM-DD", -3, tp.file.title, "YYYY-MM-DD"); } else { tR += tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD");} %>]] | [[1 Daily Notes/2024/11 November/<%*if (tp.date.weekday("YYYY-MM-DD", 5, tp.file.title, "YYYY-MM-DD") == tp.file.title) { tR += tp.date.now("YYYY-MM-DD", +3, tp.file.title, "YYYY-MM-DD"); } else { tR += tp.date.now("YYYY-MM-DD", +1, tp.file.title, "YYYY-MM-DD");} %> ]] >>
|
|
||||||
# This Week's Weekly Note
|
|
||||||
[[ Weekly Note <%*if (tp.date.weekday("YYYY-MM-DD", 3, tp.file.title, "YYYY-MM-DD") >= tp.file.title) {tR += tp.date.weekday("YYYY-MM-DD", -4, tp.file.title, "YYYY-MM-DD"); } else {tR += tp.date.weekday("YYYY-MM-DD", 3, tp.file.title, "YYYY-MM-DD"); } %>]]
|
|
||||||
# Tasks for today
|
|
||||||
## Due
|
|
||||||
```dataview
|
|
||||||
task
|
|
||||||
where
|
|
||||||
due <= date(this.date)
|
|
||||||
and due
|
|
||||||
and !completed
|
|
||||||
and status != "-"
|
|
||||||
sort due asc
|
|
||||||
group by file.folder
|
|
||||||
```
|
|
||||||
## 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
|
|
||||||
- Lunch :) [startTime:: 12:00] [endTime:: 13:00]
|
|
||||||
- NUCE 2100 HW [startTime:: 10:30] [endTime:: 12:00]
|
|
||||||
- NUCE 2100 Class [startTime:: 09:00] [endTime:: 10:30]
|
|
||||||
@ -1,52 +0,0 @@
|
|||||||
---
|
|
||||||
date: <% tp.file.title %>
|
|
||||||
tags:
|
|
||||||
---
|
|
||||||
# Yesterday | Tomorrow
|
|
||||||
<< [[1 Daily Notes/2024/11 November/<%*if (tp.date.weekday("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") == tp.file.title) { tR += tp.date.now("YYYY-MM-DD", -3, tp.file.title, "YYYY-MM-DD"); } else { tR += tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD");} %>]] | [[1 Daily Notes/2024/11 November/<%*if (tp.date.weekday("YYYY-MM-DD", 5, tp.file.title, "YYYY-MM-DD") == tp.file.title) { tR += tp.date.now("YYYY-MM-DD", +3, tp.file.title, "YYYY-MM-DD"); } else { tR += tp.date.now("YYYY-MM-DD", +1, tp.file.title, "YYYY-MM-DD");} %> ]] >>
|
|
||||||
# This Week's Weekly Note
|
|
||||||
[[ Weekly Note <%*if (tp.date.weekday("YYYY-MM-DD", 3, tp.file.title, "YYYY-MM-DD") >= tp.file.title) {tR += tp.date.weekday("YYYY-MM-DD", -4, tp.file.title, "YYYY-MM-DD"); } else {tR += tp.date.weekday("YYYY-MM-DD", 3, tp.file.title, "YYYY-MM-DD"); } %>]]
|
|
||||||
# Tasks for today
|
|
||||||
## Due
|
|
||||||
```dataview
|
|
||||||
task
|
|
||||||
where
|
|
||||||
due <= date(this.date)
|
|
||||||
and due
|
|
||||||
and !completed
|
|
||||||
and status != "-"
|
|
||||||
sort due asc
|
|
||||||
group by file.folder
|
|
||||||
```
|
|
||||||
## 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
|
|
||||||
- Qualifying Exam Hell Storm [startTime:: 09:30] [endTime:: 12:00]
|
|
||||||
- Coffee [startTime:: 09:00] [endTime:: 09:45]
|
|
||||||
Loading…
x
Reference in New Issue
Block a user