96 lines
2.1 KiB
Markdown
96 lines
2.1 KiB
Markdown
---
|
|
date: 2025-01-13
|
|
modification date: Monday 13th January 2025 14:08:38
|
|
tags: []
|
|
---
|
|
<< [[2 Cole Group Meeting Notes/Weekly Note 2025-01-06]] | [[2 Cole Group Meeting Notes/Weekly Note 2025-01-20]] >>
|
|
|
|
# This Week's Daily Notes
|
|
[[2025-01-06]]
|
|
[[2025-01-07]]
|
|
[[2025-01-08]]
|
|
[[2025-01-11]]
|
|
[[2025-01-12]]
|
|
# Last Week's Plan
|
|
# Accomplishments
|
|
## Remarks
|
|
- Classes have started
|
|
- Made some progress on NPIC paper
|
|
- Working on the figures and diagrams as the resident TiKz artist
|
|
- Worked through the sources I have for the HiL parts with ARCADE and SmAHTR
|
|
- Did some more SeL4 stuff
|
|
- Doing some exploratory research on wireless communication and controls. Not deep into anything yet.
|
|
- Completed form for annual performance review. Need to tune
|
|
## 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
|
|
## Remarks
|
|
- 1st complete draft on NPIC paper. At least for all stuff I can write about
|
|
- Keep looking around at thesis ideas
|
|
- Meet with Dan about evaluation form
|
|
- [-] SeL4 #ME2150 ❌ 2025-01-24
|
|
- [-] Capabilities ❌ 2025-01-24
|
|
- [-] Threads ❌ 2025-01-24
|
|
- [-] IPC ❌ 2025-01-24
|
|
- [-] MCS ❌ 2025-01-24
|
|
- Natural numbers game
|
|
## 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
|
|
```
|