92 lines
2.1 KiB
Markdown
92 lines
2.1 KiB
Markdown
---
|
|
date: 2024-10-30
|
|
modification date: Thursday 31st October 2024 13:17:53
|
|
tags: []
|
|
---
|
|
<< [[2 Cole Group Meeting Notes/Weekly Note 2024-10-23]] | [[2 Cole Group Meeting Notes/Weekly Note 2024-11-06]] >>
|
|
|
|
# This Week's Daily Notes
|
|
[[2024-10-23]]
|
|
[[2024-10-24]]
|
|
[[2024-10-25]]
|
|
[[2024-10-28]]
|
|
[[2024-10-29]]
|
|
# Last Week's Plan
|
|
# Accomplishments
|
|
## Remarks
|
|
Class work:
|
|
PITA. But it's going. I was complaining to robert and patrick about creating a one and a half page summary of a 3 page long paper.
|
|
NUCE is good. I had a diff eq that for whatever reason looked upside down. It was a temperature distribution with convective conditions on both sides. I said eh prolly a sign issue and flipped the signs and then things looked right :)
|
|
QE Exam
|
|
I am in writing hell
|
|
Felt like I was struggling to chain ideas well.
|
|
But had some organizational breakthroughs today.
|
|
|
|
Wedding was fun. Bought a new suit I'll use for the qual. Gray
|
|
|
|
## 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
|
|
Ass in chair. Don't stop writing.
|
|
Halloween event.
|
|
Figure out what the fuck the Lobot model is. (Constraint Refinement Galois HARDENs report)
|
|
## 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
|
|
```
|