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": [
{
"type": "file",
"ctime": 1731951492555,
"path": "0 Managerial Pages/1. Task Dashboard.md"
},
{
"type": "file",
"ctime": 1730397400319,
"path": "0 Managerial Pages/To Do List.md"
"path": "0 Managerial Pages/To Do List.md",
"title": "To Do - General"
},
{
"type": "file",
"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",

View File

@ -35,7 +35,6 @@ where !completed
and due > date(today)
and due < date(today) + dur(2 w)
sort due asc
group by file.folder
```
## 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
- [ ] Read paper
- [ ] What are the modeling assumptions?
- [ ] What are the solution approaches?
- [ ] Do other things from class relate?
- [ ] Rederive equations and solutions from the paper
- [ ] What do they leave out?
- [ ] Make things 'VERY CLEAR'
- [ ] Numerical Solution
- [ ] Recreate figure 3
- [ ] Make a parallel implementation
- [x] Read paper [completion:: 2024-11-18]
- [x] What are the modeling assumptions? [completion:: 2024-11-18]
- [x] What are the solution approaches? [completion:: 2024-11-18]
- [x] Do other things from class relate? [completion:: 2024-11-18]
- [x] Rederive equations and solutions from the paper [completion:: 2024-11-18]
- [x] What do they leave out? [completion:: 2024-11-18]
- [x] Make things 'VERY CLEAR' [completion:: 2024-11-18]
- [x] Numerical Solution [completion:: 2024-11-18]
- [x] Recreate figure 3 [completion:: 2024-11-18]
- [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
type: single
---
- [ ] Homework 7 📅 2024-11-05
#Homework
- [x] Homework 7 📅 2024-11-05
#Homework [completion:: 2024-11-18]