107 lines
3.2 KiB
Markdown
107 lines
3.2 KiB
Markdown
---
|
|
date: 2024-09-18
|
|
modification date: Thursday 19th September 2024 10:12:43
|
|
tags: []
|
|
---
|
|
<< [[Weekly Note 2024-09-11]] | [[2 Cole Group Meeting Notes/Weekly Note 2024-09-25]] >>
|
|
|
|
# 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 on Monday like we discussed at lunch.
|
|
Work closely with Patrick.
|
|
### Qualifying Exam
|
|
When BeagleBone done, QE exam gets full gas.
|
|
### Other stuff
|
|
Pass classes. |