vault backup: 2024-11-18 12:44:23

This commit is contained in:
Dane Sabo 2024-11-18 12:44:23 -05:00
parent 97799e89cd
commit 90dc5a4a5b
12 changed files with 371 additions and 15 deletions

View File

@ -1,14 +1,21 @@
{ {
"items": [ "items": [
{
"type": "file",
"ctime": 1731951492555,
"path": "0 Managerial Pages/1. Task Dashboard.md"
},
{ {
"type": "file", "type": "file",
"ctime": 1730397400319, "ctime": 1730397400319,
"path": "0 Managerial Pages/To Do List.md" "path": "0 Managerial Pages/To Do List.md",
"title": "To Do - General"
}, },
{ {
"type": "file", "type": "file",
"ctime": 1730397409494, "ctime": 1730397409494,
"path": "4 Qualifying Exam/1 Managing Stuff/0. QE To Do List.md" "path": "4 Qualifying Exam/1 Managing Stuff/0. QE To Do List.md",
"title": "To Do - Qualifying Exam"
}, },
{ {
"type": "file", "type": "file",

View File

@ -35,7 +35,6 @@ where !completed
and due > date(today) and due > date(today)
and due < date(today) + dur(2 w) and due < date(today) + dur(2 w)
sort due asc sort due asc
group by file.folder
``` ```
## On The Horizon ## On The Horizon
--- ---

View File

@ -0,0 +1,50 @@
---
date: 2024-11-08
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-07]] | [[1 Daily Notes/2024/11 November/2024-11-11 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-11-06]]
# 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

View File

@ -0,0 +1,50 @@
---
date: 2024-11-11
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-08]] | [[1 Daily Notes/2024/11 November/2024-11-12 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-11-06]]
# 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

View File

@ -0,0 +1,50 @@
---
date: 2024-11-12
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-11]] | [[1 Daily Notes/2024/11 November/2024-11-13 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-11-06]]
# 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

View File

@ -0,0 +1,50 @@
---
date: 2024-11-13
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-12]] | [[1 Daily Notes/2024/11 November/2024-11-14 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-11-06]]
# 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

View File

@ -0,0 +1,50 @@
---
date: 2024-11-14
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-13]] | [[1 Daily Notes/2024/11 November/2024-11-15 ]] >>
# 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

View File

@ -0,0 +1,50 @@
---
date: 2024-11-15
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-14]] | [[1 Daily Notes/2024/11 November/2024-11-18 ]] >>
# 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

View File

@ -0,0 +1,50 @@
---
date: 2024-11-18
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/11 November/2024-11-15]] | [[1 Daily Notes/2024/11 November/2024-11-19 ]] >>
# 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

View File

@ -1,11 +1,11 @@
# Progress # Progress
- [ ] Read paper - [x] Read paper [completion:: 2024-11-18]
- [ ] What are the modeling assumptions? - [x] What are the modeling assumptions? [completion:: 2024-11-18]
- [ ] What are the solution approaches? - [x] What are the solution approaches? [completion:: 2024-11-18]
- [ ] Do other things from class relate? - [x] Do other things from class relate? [completion:: 2024-11-18]
- [ ] Rederive equations and solutions from the paper - [x] Rederive equations and solutions from the paper [completion:: 2024-11-18]
- [ ] What do they leave out? - [x] What do they leave out? [completion:: 2024-11-18]
- [ ] Make things 'VERY CLEAR' - [x] Make things 'VERY CLEAR' [completion:: 2024-11-18]
- [ ] Numerical Solution - [x] Numerical Solution [completion:: 2024-11-18]
- [ ] Recreate figure 3 - [x] Recreate figure 3 [completion:: 2024-11-18]
- [ ] Make a parallel implementation - [x] Make a parallel implementation [completion:: 2024-11-18]

View File

@ -6,5 +6,5 @@ endDate: 2024-11-06
completed: 2024-11-06T09:47:22.930-05:00 completed: 2024-11-06T09:47:22.930-05:00
type: single type: single
--- ---
- [ ] Homework 7 📅 2024-11-05 - [x] Homework 7 📅 2024-11-05
#Homework #Homework [completion:: 2024-11-18]