vault backup: 2025-01-24 16:25:34
This commit is contained in:
parent
7317a3bbf6
commit
54bbe14308
@ -19,8 +19,8 @@ group by file.name
|
||||
```
|
||||
## What's the plan!
|
||||
- [-] Figure out how to rectify task lists so they show up in daily tasks #Administrative ❌ 2025-01-24
|
||||
- [x] [[fisherHACMSProgramUsing2017a]] #ME2150 #paper ✅ 2025-01-22
|
||||
- [x] [[biggsJuryMonolithicOS2018]] #ME2150 #paper ✅ 2025-01-22
|
||||
- [x] [[fisherHACMSProgramUsing2017a]] #ME2150 #Reading ✅ 2025-01-22
|
||||
- [x] [[biggsJuryMonolithicOS2018]] #ME2150 #Reading ✅ 2025-01-22
|
||||
- [x] Make new [[visualization for ANS Paper]] #NPIC2025 ✅ 2025-01-22
|
||||
- [/] Write results section #NPIC2025 ⏫ ⏳ 2025-01-24 📅 2025-01-26
|
||||
|
||||
|
||||
@ -15,62 +15,31 @@ tags: []
|
||||
# Accomplishments
|
||||
## Remarks
|
||||
## Tasks and Notes From This Past Week
|
||||
```dataview
|
||||
TASK
|
||||
where completed
|
||||
and completion >= this.date - dur(7 days)
|
||||
and completion <= this.date
|
||||
group by tags
|
||||
sort completion asc
|
||||
```
|
||||
>[!abstract] Read Papers
|
||||
>```tasks
|
||||
> done
|
||||
> (done after <% tp.date.now("YYYY-MM-DD", -7, tp.file.title.match(/\d{4}-\d{2}-\d{2}/)[0], "YYYY-MM-DD") %>) AND (done before <% tp.file.title.match(/\d{4}-\d{2}-\d{2}/)[0] %>)
|
||||
> tags include #Reading
|
||||
> group by tags
|
||||
> sort by done
|
||||
|
||||
|
||||
>[!done] Completed Tasks
|
||||
> ```tasks
|
||||
> done
|
||||
> (done after <% tp.date.now("YYYY-MM-DD", -7, tp.file.title.match(/\d{4}-\d{2}-\d{2}/)[0], "YYYY-MM-DD") %>) AND (done before <% tp.file.title.match(/\d{4}-\d{2}-\d{2}/)[0] %>)
|
||||
> tags does not include #Reading
|
||||
> group by tags
|
||||
> sort by done
|
||||
|
||||
# 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
|
||||
```
|
||||
|
||||
>[!todo] Tasks Preview
|
||||
>```tasks
|
||||
>show urgency
|
||||
>limit 10
|
||||
>not done
|
||||
>sort by urgency
|
||||
>group by tags
|
||||
>```
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
Key things to do
|
||||
- [ ] Outline of things that need done for the paper ⏳ 2025-01-24 📅 2024-12-20
|
||||
- [ ] Outline of things that need done for the paper #NPIC2025 ⏳ 2025-01-24 📅 2024-12-20
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
date: 2025-01-27
|
||||
modification date: Friday 24th January 2025 16:07:06
|
||||
modification date: Friday 24th January 2025 16:24:45
|
||||
tags: []
|
||||
---
|
||||
<< [[2 Cole Group Meeting Notes/Weekly Note 2025-01-20]] | [[2 Cole Group Meeting Notes/Weekly Note 2025-02-03]] >>
|
||||
@ -15,70 +15,31 @@ tags: []
|
||||
# Accomplishments
|
||||
## Remarks
|
||||
## Tasks and Notes From This Past Week
|
||||
```dataview
|
||||
TASK
|
||||
where completed
|
||||
and completion >= this.date - dur(7 days)
|
||||
and completion <= this.date
|
||||
sort completion asc
|
||||
```
|
||||
|
||||
```tasks
|
||||
explain
|
||||
done
|
||||
done after {{query.file.filename}} - 7 days
|
||||
done before {{query.file.filename}}
|
||||
group by tags
|
||||
sort by done
|
||||
```
|
||||
>[!abstract] Read Papers
|
||||
>```tasks
|
||||
> done
|
||||
> (done after 2025-01-20) AND (done before 2025-01-27)
|
||||
> tags include #Reading
|
||||
> group by tags
|
||||
> sort by done
|
||||
|
||||
|
||||
>[!done] Completed Tasks
|
||||
> ```tasks
|
||||
> done
|
||||
> (done after 2025-01-20) AND (done before 2025-01-27)
|
||||
> tags does not include #Reading
|
||||
> group by tags
|
||||
> sort by done
|
||||
|
||||
# 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
|
||||
```
|
||||
|
||||
>[!todo] Tasks Preview
|
||||
>```tasks
|
||||
>show urgency
|
||||
>limit 10
|
||||
>not done
|
||||
>sort by urgency
|
||||
>group by tags
|
||||
>```
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user