84 lines
1.5 KiB
Markdown
84 lines
1.5 KiB
Markdown
---
|
|
date: 2024-12-11
|
|
modification date: Friday 13th December 2024 09:00:12
|
|
tags: []
|
|
---
|
|
<< [[2 Cole Group Meeting Notes/Weekly Note 2024-11-06]] | [[Weekly Note 2025-01-06]] >>
|
|
|
|
# This Week's Daily Notes
|
|
[[2024-12-04]]
|
|
[[2024-12-05]]
|
|
[[2024-12-06]]
|
|
[[2024-12-09]]
|
|
[[2024-12-10]]
|
|
# Last Week's Plan
|
|
|
|
# Accomplishments
|
|
## Remarks
|
|
- Qualifying Exam! Presentation went well.
|
|
- NUCE 2100 Project. Finished that
|
|
- Finished 2nd mini project for ME 2016
|
|
## 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
|
|
## 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
|
|
```
|