vault backup: 2024-09-19 10:28:55

This commit is contained in:
Dane Sabo 2024-09-19 10:28:55 -04:00
parent e61c2b86bf
commit 7c174af9a3
6 changed files with 173 additions and 4 deletions

View File

@ -31,7 +31,15 @@ where
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
- NUCE 2100: HW3 [startTime:: 17:30] [endTime:: 19:00]
- Writing notes for week 3 of NUCE 2100 [startTime:: 15:00] [endTime:: 16:30]

View File

@ -45,6 +45,7 @@ sort due asc
group by file.folder
```
# Calendar Tasks
- Breakfast [startTime:: 09:30] [endTime:: 10:00]
- Obsidian Tuneup [startTime:: 07:30] [endTime:: 07:45]
- Email! [startTime:: 07:46] [endTime::08:13]
- Work on TRTR Presentation [startTime:: 08:14] [endTime:: 08:30]

View File

@ -16,7 +16,9 @@ tags: []
## Tasks and Notes From This Past Week
```dataview
TASK
where completed and completion >= this.date - dur(7 days)
where completed
and completion >= this.date - dur(7 days)
and completion <= this.date
group by file.link
sort file.date asc
```
@ -26,4 +28,44 @@ table title as "Title", dateread as "Date Read"
where readstatus and dateread => this.date-dur(7)
```
# This Week's Plan
# This Week's Plan
## Tasks This Next Week
### Tasks Overdue
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
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 != "-"
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 != "-"
and status != " "
sort due asc
group by file.folder
```

View File

@ -26,11 +26,14 @@ tags: []
```dataview
TASK
where completed and completion >= this.date - dur(7 days)
where completed
and completion >= this.date - dur(7 days)
and completion <= this.date
group by file.link
sort file.date asc
```
## Papers read this past week
```dataview
table title as "Title", dateread as "Date Read"

View File

@ -0,0 +1,107 @@
---
date: 2024-09-18
modification date: Thursday 19th September 2024 10:12:43
tags: []
---
<< [[Weekly Note 2024-09-11]] | [[Weekly Note 2024-09-26]] >>
# This Week's Daily Notes
[[2024-09-11]]
[[2024-09-12]]
[[2024-09-13]]
[[2024-09-16]]
[[2024-09-17]]
# Last Week's Plan
## BeagleBone ARCADE
1. Start communicating back and forth with encrypted messages
2. homomorphic operations?
3. Plug 'er into ARCADE
## Qualifying Exam
1. Finish first draft of G&O
2. Prepare to hear back about approval
## Other Stuff
1. Read the things DGC sent
2. Update my CV with some stuff.
# Accomplishments
## 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.link
sort file.date asc
```
## Papers read this past week
```dataview
table title as "Title", dateread as "Date Read"
where readstatus and dateread => this.date-dur(7)
```
## Remarks
### BeagleBone
1. Started outline of TRTR presentation
2. Spoke a lot with Murphy and Robert about FHE and memory management.
3. I think memory management might be the most important thing to really talk about. The size of these messages makes things complicated and has quirks. Having to send multiple packets for multiple values actually introduces a race condition.
1. One number to multiple numbers, multiple packets
2. If things are ansynchronous on the 'server' side, it's possible the code pulls the vector from registers while the vector is being written. Then, because encryption, the value the code uses for control logic makes no sense.
### Qualifying Exam
1. Haven't heard anything about my abstract. Perhaps this is a good thing?
2. Got an invite to an 'info session'.
### GSA
1. We're fighting for our donuts. Qual support group may actually be what brings them back. Need to identify what students can actually talk to each other about.
2. Halloween party. We convinced Brian to buy candy. Details to come.
3. Christmas party. Brian will purchase pizza if we organize a poster session. Perhaps something to keep in mind.
### Other Stuff
1. Homework and classes kicked my ass a little this week. It's okay though. I'm back on the horse.
2. NUCE 2100 is actually deceptively hard. I think it's getting easier because we're starting to talk about actual nuclear power but the first couple weeks of just nuclear physics was pretty tough.
# This Week's Plan
## Tasks This Next Week
### Tasks Overdue
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
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 != "-"
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 != "-"
and status != " "
sort due asc
group by file.folder
```
## Remarks
### BeagleBone
Need to finish presentation and code. That mf needs to ship.
Work closely with Patrick.
### Qualifying Exam
When BeagleBone done, QE exam gets full gas.
### Other stuff
Pass classes.

View File

@ -0,0 +1,8 @@
---
title: Weekly Note and TRTR Presentation
allDay: false
startTime: 10:00
endTime: 10:45
date: 2024-09-19
completed: null
---