From af8439035b86d94518adc37de631593e8bce3fa6 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Mon, 13 Jan 2025 14:12:36 -0500 Subject: [PATCH] vault backup: 2025-01-13 14:12:35 --- 1 Daily Notes/2025/2025-01-06.md | 2 +- 1 Daily Notes/2025/2025-01-13.md | 5 +- .../Weekly Note 2025-01-13.md | 79 +++++++++++++++++++ 3 files changed, 84 insertions(+), 2 deletions(-) create mode 100644 2 Cole Group Meeting Notes/Weekly Note 2025-01-13.md diff --git a/1 Daily Notes/2025/2025-01-06.md b/1 Daily Notes/2025/2025-01-06.md index eea6e816..61bf9f71 100644 --- a/1 Daily Notes/2025/2025-01-06.md +++ b/1 Daily Notes/2025/2025-01-06.md @@ -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 diff --git a/1 Daily Notes/2025/2025-01-13.md b/1 Daily Notes/2025/2025-01-13.md index 44244856..0f450fbe 100644 --- a/1 Daily Notes/2025/2025-01-13.md +++ b/1 Daily Notes/2025/2025-01-13.md @@ -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 diff --git a/2 Cole Group Meeting Notes/Weekly Note 2025-01-13.md b/2 Cole Group Meeting Notes/Weekly Note 2025-01-13.md new file mode 100644 index 00000000..9b1c8146 --- /dev/null +++ b/2 Cole Group Meeting Notes/Weekly Note 2025-01-13.md @@ -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 +```