From 3e0cfb6c6cd3ed79d26936146238299ed3a9357b Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Thu, 3 Oct 2024 09:27:44 -0400 Subject: [PATCH] vault backup: 2024-10-03 09:27:44 --- 0 Managerial Pages/To Do List.md | 2 +- 1 Daily Notes/2024/10 October/2024-10-03.md | 50 +++++++ 1000s Templates/Daily Note Template.md | 11 +- 1000s Templates/This Past Week Template.md | 11 +- .../Weekly Note 2024-10-02.md | 15 +- .../To Do.md | 2 +- .../1 Managing Stuff/0. To Do List.md | 2 +- ...check your Statuses 2024-09-17 16-55-23.md | 130 ----------------- ...check your Statuses 2024-09-17 16-56-40.md | 131 ------------------ 9 files changed, 85 insertions(+), 269 deletions(-) create mode 100644 1 Daily Notes/2024/10 October/2024-10-03.md rename Weekly Note 2024-10-02.md => 2 Cole Group Meeting Notes/Weekly Note 2024-10-02.md (84%) delete mode 100644 Tasks Plugin - Review and check your Statuses 2024-09-17 16-55-23.md delete mode 100644 Tasks Plugin - Review and check your Statuses 2024-09-17 16-56-40.md diff --git a/0 Managerial Pages/To Do List.md b/0 Managerial Pages/To Do List.md index 7615f4298..5fcac9d95 100644 --- a/0 Managerial Pages/To Do List.md +++ b/0 Managerial Pages/To Do List.md @@ -10,4 +10,4 @@ - [x] Put Zotero web server on my own box ✅ 2024-10-01 # Class Stuff -- [ ] Move the sketches from my iPad to the notes for ME 2016 📅 2024-10-02 +- [x] Move the sketches from my iPad to the notes for ME 2016 📅 2024-10-02 ✅ 2024-10-02 diff --git a/1 Daily Notes/2024/10 October/2024-10-03.md b/1 Daily Notes/2024/10 October/2024-10-03.md new file mode 100644 index 000000000..f24e18ffb --- /dev/null +++ b/1 Daily Notes/2024/10 October/2024-10-03.md @@ -0,0 +1,50 @@ +--- +date: 2024-10-03 +tags: +--- +# Yesterday | Tomorrow + << [[1 Daily Notes/2024/10 October/2024-10-02]] | [[1 Daily Notes/2024/10 October/2024-10-04 ]] >> +# This Week's Weekly Note +[[ Weekly Note 2024-10-02]] +# 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 \ No newline at end of file diff --git a/1000s Templates/Daily Note Template.md b/1000s Templates/Daily Note Template.md index 7bb9bd83d..4d1a9a23a 100755 --- a/1000s Templates/Daily Note Template.md +++ b/1000s Templates/Daily Note Template.md @@ -3,7 +3,7 @@ date: <% tp.file.title %> tags: --- # Yesterday | Tomorrow - << [[<%*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");} %>]] | [[<%*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");} %> ]] >> + << [[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 @@ -29,6 +29,15 @@ where 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 diff --git a/1000s Templates/This Past Week Template.md b/1000s Templates/This Past Week Template.md index ee1be8697..57ef8070e 100755 --- a/1000s Templates/This Past Week Template.md +++ b/1000s Templates/This Past Week Template.md @@ -19,7 +19,7 @@ TASK where completed and completion >= this.date - dur(7 days) and completion <= this.date -group by file.link +group by file.folder sort completion asc ``` ## Papers read this past week @@ -53,6 +53,15 @@ where 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 diff --git a/Weekly Note 2024-10-02.md b/2 Cole Group Meeting Notes/Weekly Note 2024-10-02.md similarity index 84% rename from Weekly Note 2024-10-02.md rename to 2 Cole Group Meeting Notes/Weekly Note 2024-10-02.md index 446721d28..06fef832f 100644 --- a/Weekly Note 2024-10-02.md +++ b/2 Cole Group Meeting Notes/Weekly Note 2024-10-02.md @@ -1,6 +1,6 @@ --- date: 2024-10-02 -modification date: Tuesday 1st October 2024 09:01:59 +modification date: Thursday 3rd October 2024 09:17:30 tags: [] --- << [[2 Cole Group Meeting Notes/Weekly Note 2024-09-25]] | [[2 Cole Group Meeting Notes/Weekly Note 2024-10-09]] >> @@ -19,8 +19,8 @@ TASK where completed and completion >= this.date - dur(7 days) and completion <= this.date -group by file.link -sort file.date asc +group by file.folder +sort completion asc ``` ## Papers read this past week ```dataview @@ -53,6 +53,15 @@ where 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 diff --git a/300s School/ME 2016 - Nonlinear Dynamical Systems 1/To Do.md b/300s School/ME 2016 - Nonlinear Dynamical Systems 1/To Do.md index 74af56e94..b75c9f328 100644 --- a/300s School/ME 2016 - Nonlinear Dynamical Systems 1/To Do.md +++ b/300s School/ME 2016 - Nonlinear Dynamical Systems 1/To Do.md @@ -1,2 +1,2 @@ # Homework -- [ ] Homework 2 📅 2024-10-04 \ No newline at end of file +- [/] Homework 2 🛫 2024-10-02 📅 2024-10-04 \ No newline at end of file diff --git a/4 Qualifying Exam/1 Managing Stuff/0. To Do List.md b/4 Qualifying Exam/1 Managing Stuff/0. To Do List.md index 1a24b2a56..1167dd8df 100644 --- a/4 Qualifying Exam/1 Managing Stuff/0. To Do List.md +++ b/4 Qualifying Exam/1 Managing Stuff/0. To Do List.md @@ -1,7 +1,7 @@ - [<] Read email from Dr. Cho with shared documents 📅 2024-09-25 ⏳ 2024-09-25 # Milestones -- [*] Goals and Outcomes Finished 🆔 kwyu6a ⏳ 2024-10-02 📅 2024-10-04 +- [x] Goals and Outcomes Finished 🆔 kwyu6a ⏳ 2024-10-02 📅 2024-10-04 ✅ 2024-10-02 - [*] State of the Art Finished 🆔 i9ybdy ⏳ 2024-10-09 📅 2024-10-11 - [*] Research Approach Finished 🆔 ha7il5 ⏳ 2024-10-21 📅 2024-10-23 - [*] Broader Impacts, Metrics of Success, Risks and Contingincies Finished 🆔 6chcdh ⏳ 2024-10-28 📅 2024-11-01 diff --git a/Tasks Plugin - Review and check your Statuses 2024-09-17 16-55-23.md b/Tasks Plugin - Review and check your Statuses 2024-09-17 16-55-23.md deleted file mode 100644 index 459d9d8ec..000000000 --- a/Tasks Plugin - Review and check your Statuses 2024-09-17 16-55-23.md +++ /dev/null @@ -1,130 +0,0 @@ -# Review and check your Statuses - -## About this file - -This file was created by the Obsidian Tasks plugin (version 7.7.0) to help visualise the task statuses in this vault. - -If you change the Tasks status settings, you can get an updated report by: - -- Going to `Settings` -> `Tasks`. -- Clicking on `Review and check your Statuses`. - -You can delete this file any time. - -## Status Settings - - - -These are the status values in the Core and Custom statuses sections. - -| Status Symbol | Next Status Symbol | Status Name | Status Type | Problems (if any) | -| ----- | ----- | ----- | ----- | ----- | -| `space` | `/` | Todo | `TODO` | | -| `x` | `space` | Done | `DONE` | | -| `/` | `x` | In Progress | `IN_PROGRESS` | | -| `-` | `space` | Cancelled | `CANCELLED` | | -| `space` | `/` | Unchecked | `IN_PROGRESS` | Duplicate symbol '`space`': this status will be ignored. | -| `x` | `space` | Checked | `DONE` | Duplicate symbol '`x`': this status will be ignored. | -| `>` | `x` | Rescheduled | `TODO` | | -| `<` | `x` | Scheduled | `TODO` | | -| `!` | `x` | Important | `TODO` | | -| `?` | `x` | Question | `TODO` | | -| `*` | `x` | Star | `TODO` | | -| `n` | `x` | Note | `TODO` | | -| `l` | `x` | Location | `TODO` | | -| `i` | `x` | Information | `TODO` | | -| `I` | `x` | Idea | `TODO` | | -| `S` | `x` | Amount | `TODO` | | -| `p` | `x` | Pro | `TODO` | | -| `c` | `x` | Con | `TODO` | | -| `b` | `x` | Bookmark | `TODO` | | -| `"` | `x` | Quote | `TODO` | | -| `0` | `0` | Speech bubble 0 | `NON_TASK` | | -| `1` | `1` | Speech bubble 1 | `NON_TASK` | | -| `2` | `2` | Speech bubble 2 | `NON_TASK` | | -| `3` | `3` | Speech bubble 3 | `NON_TASK` | | -| `4` | `4` | Speech bubble 4 | `NON_TASK` | | -| `5` | `5` | Speech bubble 5 | `NON_TASK` | | -| `6` | `6` | Speech bubble 6 | `NON_TASK` | | -| `7` | `7` | Speech bubble 7 | `NON_TASK` | | -| `8` | `8` | Speech bubble 8 | `NON_TASK` | | -| `9` | `9` | Speech bubble 9 | `NON_TASK` | | - -## Loaded Settings - - - -These are the settings actually used by Tasks. - -```mermaid -flowchart LR - -classDef TODO stroke:#f33,stroke-width:3px; -classDef DONE stroke:#0c0,stroke-width:3px; -classDef IN_PROGRESS stroke:#fa0,stroke-width:3px; -classDef CANCELLED stroke:#ddd,stroke-width:3px; -classDef NON_TASK stroke:#99e,stroke-width:3px; - -1["'Todo'
[ ] -> [/]
(TODO)"]:::TODO -2["'Done'
[x] -> [ ]
(DONE)"]:::DONE -3["'In Progress'
[/] -> [x]
(IN_PROGRESS)"]:::IN_PROGRESS -4["'Cancelled'
[-] -> [ ]
(CANCELLED)"]:::CANCELLED -5["'Rescheduled'
[>] -> [x]
(TODO)"]:::TODO -6["'Scheduled'
[<] -> [x]
(TODO)"]:::TODO -7["'Important'
[!] -> [x]
(TODO)"]:::TODO -8["'Question'
[?] -> [x]
(TODO)"]:::TODO -9["'Star'
[*] -> [x]
(TODO)"]:::TODO -10["'Note'
[n] -> [x]
(TODO)"]:::TODO -11["'Location'
[l] -> [x]
(TODO)"]:::TODO -12["'Information'
[i] -> [x]
(TODO)"]:::TODO -13["'Idea'
[I] -> [x]
(TODO)"]:::TODO -14["'Amount'
[S] -> [x]
(TODO)"]:::TODO -15["'Pro'
[p] -> [x]
(TODO)"]:::TODO -16["'Con'
[c] -> [x]
(TODO)"]:::TODO -17["'Bookmark'
[b] -> [x]
(TODO)"]:::TODO -18["'Quote'
["] -> [x]
(TODO)"]:::TODO -19["'Speech bubble 0'
[0] -> [0]
(NON_TASK)"]:::NON_TASK -20["'Speech bubble 1'
[1] -> [1]
(NON_TASK)"]:::NON_TASK -21["'Speech bubble 2'
[2] -> [2]
(NON_TASK)"]:::NON_TASK -22["'Speech bubble 3'
[3] -> [3]
(NON_TASK)"]:::NON_TASK -23["'Speech bubble 4'
[4] -> [4]
(NON_TASK)"]:::NON_TASK -24["'Speech bubble 5'
[5] -> [5]
(NON_TASK)"]:::NON_TASK -25["'Speech bubble 6'
[6] -> [6]
(NON_TASK)"]:::NON_TASK -26["'Speech bubble 7'
[7] -> [7]
(NON_TASK)"]:::NON_TASK -27["'Speech bubble 8'
[8] -> [8]
(NON_TASK)"]:::NON_TASK -28["'Speech bubble 9'
[9] -> [9]
(NON_TASK)"]:::NON_TASK -1 --> 3 -2 --> 1 -3 --> 2 -4 --> 1 -5 --> 2 -6 --> 2 -7 --> 2 -8 --> 2 -9 --> 2 -10 --> 2 -11 --> 2 -12 --> 2 -13 --> 2 -14 --> 2 -15 --> 2 -16 --> 2 -17 --> 2 -18 --> 2 -19 --> 19 -20 --> 20 -21 --> 21 -22 --> 22 -23 --> 23 -24 --> 24 -25 --> 25 -26 --> 26 -27 --> 27 -28 --> 28 - -linkStyle default stroke:gray -``` diff --git a/Tasks Plugin - Review and check your Statuses 2024-09-17 16-56-40.md b/Tasks Plugin - Review and check your Statuses 2024-09-17 16-56-40.md deleted file mode 100644 index 591914900..000000000 --- a/Tasks Plugin - Review and check your Statuses 2024-09-17 16-56-40.md +++ /dev/null @@ -1,131 +0,0 @@ -# Review and check your Statuses - -## About this file - -This file was created by the Obsidian Tasks plugin (version 7.7.0) to help visualise the task statuses in this vault. - -If you change the Tasks status settings, you can get an updated report by: - -- Going to `Settings` -> `Tasks`. -- Clicking on `Review and check your Statuses`. - -You can delete this file any time. - -## Status Settings - - - -These are the status values in the Core and Custom statuses sections. - -| Status Symbol | Next Status Symbol | Status Name | Status Type | Problems (if any) | -| ----- | ----- | ----- | ----- | ----- | -| `space` | `<` | Todo | `TODO` | | -| `x` | `-` | Done | `DONE` | This `DONE` status is followed by `CANCELLED`, not `TODO` or `IN_PROGRESS`.
If used to complete a recurring task, it will instead be followed by `TODO` or `IN_PROGRESS`, to ensure the next task matches the `not done` filter.
See [Recurring Tasks and Custom Statuses](https://publish.obsidian.md/tasks/Getting+Started/Statuses/Recurring+Tasks+and+Custom+Statuses). | -| `/` | `x` | In Progress | `IN_PROGRESS` | | -| `-` | `space` | Cancelled | `CANCELLED` | | -| `space` | `<` | Unchecked | `IN_PROGRESS` | Duplicate symbol '`space`': this status will be ignored. | -| `x` | `space` | Checked | `DONE` | Duplicate symbol '`x`': this status will be ignored. | -| `>` | `x` | Rescheduled | `TODO` | | -| `<` | `/` | Scheduled | `TODO` | | -| `!` | `x` | Important | `TODO` | | -| `?` | `x` | Question | `TODO` | | -| `*` | `x` | Star | `TODO` | | -| `n` | `x` | Note | `TODO` | | -| `l` | `x` | Location | `TODO` | | -| `i` | `x` | Information | `TODO` | | -| `I` | `x` | Idea | `TODO` | | -| `S` | `x` | Amount | `TODO` | | -| `p` | `x` | Pro | `TODO` | | -| `c` | `x` | Con | `TODO` | | -| `b` | `x` | Bookmark | `TODO` | | -| `"` | `x` | Quote | `TODO` | | -| `0` | `0` | Speech bubble 0 | `NON_TASK` | | -| `1` | `1` | Speech bubble 1 | `NON_TASK` | | -| `2` | `2` | Speech bubble 2 | `NON_TASK` | | -| `3` | `3` | Speech bubble 3 | `NON_TASK` | | -| `4` | `4` | Speech bubble 4 | `NON_TASK` | | -| `5` | `5` | Speech bubble 5 | `NON_TASK` | | -| `6` | `6` | Speech bubble 6 | `NON_TASK` | | -| `7` | `7` | Speech bubble 7 | `NON_TASK` | | -| `8` | `8` | Speech bubble 8 | `NON_TASK` | | -| `9` | `9` | Speech bubble 9 | `NON_TASK` | | - -## Loaded Settings - - - -These are the settings actually used by Tasks. - -```mermaid -flowchart LR - -classDef TODO stroke:#f33,stroke-width:3px; -classDef DONE stroke:#0c0,stroke-width:3px; -classDef IN_PROGRESS stroke:#fa0,stroke-width:3px; -classDef CANCELLED stroke:#ddd,stroke-width:3px; -classDef NON_TASK stroke:#99e,stroke-width:3px; - -1["'Todo'
[ ] -> [<]
(TODO)"]:::TODO -2["'Done'
[x] -> [-]
(DONE)"]:::DONE -3["'In Progress'
[/] -> [x]
(IN_PROGRESS)"]:::IN_PROGRESS -4["'Cancelled'
[-] -> [ ]
(CANCELLED)"]:::CANCELLED -5["'Rescheduled'
[>] -> [x]
(TODO)"]:::TODO -6["'Scheduled'
[<] -> [/]
(TODO)"]:::TODO -7["'Important'
[!] -> [x]
(TODO)"]:::TODO -8["'Question'
[?] -> [x]
(TODO)"]:::TODO -9["'Star'
[*] -> [x]
(TODO)"]:::TODO -10["'Note'
[n] -> [x]
(TODO)"]:::TODO -11["'Location'
[l] -> [x]
(TODO)"]:::TODO -12["'Information'
[i] -> [x]
(TODO)"]:::TODO -13["'Idea'
[I] -> [x]
(TODO)"]:::TODO -14["'Amount'
[S] -> [x]
(TODO)"]:::TODO -15["'Pro'
[p] -> [x]
(TODO)"]:::TODO -16["'Con'
[c] -> [x]
(TODO)"]:::TODO -17["'Bookmark'
[b] -> [x]
(TODO)"]:::TODO -18["'Quote'
["] -> [x]
(TODO)"]:::TODO -19["'Speech bubble 0'
[0] -> [0]
(NON_TASK)"]:::NON_TASK -20["'Speech bubble 1'
[1] -> [1]
(NON_TASK)"]:::NON_TASK -21["'Speech bubble 2'
[2] -> [2]
(NON_TASK)"]:::NON_TASK -22["'Speech bubble 3'
[3] -> [3]
(NON_TASK)"]:::NON_TASK -23["'Speech bubble 4'
[4] -> [4]
(NON_TASK)"]:::NON_TASK -24["'Speech bubble 5'
[5] -> [5]
(NON_TASK)"]:::NON_TASK -25["'Speech bubble 6'
[6] -> [6]
(NON_TASK)"]:::NON_TASK -26["'Speech bubble 7'
[7] -> [7]
(NON_TASK)"]:::NON_TASK -27["'Speech bubble 8'
[8] -> [8]
(NON_TASK)"]:::NON_TASK -28["'Speech bubble 9'
[9] -> [9]
(NON_TASK)"]:::NON_TASK -1 --> 6 -2 --> 4 -2-. "🔁" .-> 1 -3 --> 2 -4 --> 1 -5 --> 2 -6 --> 3 -7 --> 2 -8 --> 2 -9 --> 2 -10 --> 2 -11 --> 2 -12 --> 2 -13 --> 2 -14 --> 2 -15 --> 2 -16 --> 2 -17 --> 2 -18 --> 2 -19 --> 19 -20 --> 20 -21 --> 21 -22 --> 22 -23 --> 23 -24 --> 24 -25 --> 25 -26 --> 26 -27 --> 27 -28 --> 28 - -linkStyle default stroke:gray -```