vault backup: 2024-10-07 10:33:58
This commit is contained in:
parent
e879b24490
commit
c83290ca44
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
# Work Stuff
|
# Work Stuff
|
||||||
- [x] Put Zotero web server on my own box ✅ 2024-10-01
|
- [x] Put Zotero web server on my own box ✅ 2024-10-01
|
||||||
|
- [ ] Email Megan Lenze about tablecloth 📅 2024-10-07
|
||||||
|
|
||||||
# Class Stuff
|
# Class Stuff
|
||||||
- [x] Move the sketches from my iPad to the notes for ME 2016 📅 2024-10-02 ✅ 2024-10-02
|
- [x] Move the sketches from my iPad to the notes for ME 2016 📅 2024-10-02 ✅ 2024-10-02
|
||||||
|
|||||||
51
1 Daily Notes/2024/9 September/2024-10-07.md
Normal file
51
1 Daily Notes/2024/9 September/2024-10-07.md
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
---
|
||||||
|
date: <% tp.file.title %>
|
||||||
|
tags:
|
||||||
|
---
|
||||||
|
# Yesterday | Tomorrow
|
||||||
|
<< [[1 Daily Notes/2024/10 October/<%*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/10 October/<%*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
|
||||||
|
- NUCE 2100 Midtemr [startTime:: 10:30] [endTime:: 11:30]
|
||||||
Loading…
x
Reference in New Issue
Block a user