vault backup: 2025-01-13 14:12:35

This commit is contained in:
Dane Sabo 2025-01-13 14:12:36 -05:00
parent 2c8f916bf3
commit af8439035b
3 changed files with 84 additions and 2 deletions

View File

@ -21,7 +21,7 @@ group by file.name
- [x] Fill out When2Meet for group meeting ✅ 2025-01-06
- [x] is meeting time with Zach good? ✅ 2025-01-06
- [ ] Write sections in NPIC paper #NPIC2025
- [ ] Make figure of experimental setup #NPIC2025
- [-] Make figure of experimental setup #NPIC2025 [completion:: 2025-01-13]
- [ ] What is ZigBee? #Thesis
- [x] Try out Gemini DeepResearch? ✅ 2025-01-06

View File

@ -20,8 +20,11 @@ group by file.name
## What's the plan!
- [x] Email! #Administrative ✅ 2025-01-13
- [ ] Polish up notes from digital control #ME2046
- [ ] Rework degree plan #Administrative
- [x] Rework degree plan #Administrative ✅ 2025-01-13
- [ ] Touch up CV for annual review #Administrative
- [ ] Get figure started for NPIC paper #NPIC2025
- [ ] Finish figure for NPIC paper #NPIC2025
- [ ] Catch up with where everyone is on #NPIC2025
## What's the results!
```dataview

View File

@ -0,0 +1,79 @@
---
date: 2025-01-13
modification date: Monday 13th January 2025 14:08:38
tags: []
---
<< [[2 Cole Group Meeting Notes/Weekly Note 2025-01-06]] | [[2 Cole Group Meeting Notes/Weekly Note 2025-01-20]] >>
# This Week's Daily Notes
[[2025-01-06]]
[[2025-01-07]]
[[2025-01-08]]
[[2025-01-11]]
[[2025-01-12]]
# 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
group by file.folder
sort completion asc
```
## Papers read this past week
```dataview
table title as "Title", dateread as "Date Read"
where readstatus and dateread => this.date-dur(7)
```
# 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
```