vault backup: 2024-09-13 14:55:22
This commit is contained in:
parent
beb68f528f
commit
b361968169
@ -3,13 +3,33 @@
|
||||
"anuppuccin-theme-settings@@anuppuccin-accent-toggle": true,
|
||||
"anuppuccin-theme-settings-extended@@anp-theme-ext-light": true,
|
||||
"anuppuccin-theme-settings-extended@@anp-theme-ext-dark": true,
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-atom-light",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-kanagawa-dark",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-everforest-light",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-everforest-dark",
|
||||
"anuppuccin-theme-settings@@anuppuccin-theme-dark": "ctp-mocha",
|
||||
"anuppuccin-theme-settings@@anp-custom-checkboxes": true,
|
||||
"anuppuccin-theme-settings@@anp-speech-bubble": true,
|
||||
"anuppuccin-theme-settings@@anp-codeblock-numbers": true,
|
||||
"anuppuccin-theme-settings@@anp-colorful-frame": false,
|
||||
"anuppuccin-theme-settings@@anp-alt-rainbow-style": "anp-default-rainbow",
|
||||
"anuppuccin-theme-settings@@anp-header-color-toggle": true
|
||||
"anuppuccin-theme-settings@@anp-header-color-toggle": true,
|
||||
"anuppuccin-theme-settings@@anp-decoration-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-canvas-dark-bg": false,
|
||||
"anuppuccin-theme-settings@@anp-colorful-frame-icon-toggle-light": false,
|
||||
"anuppuccin-theme-settings@@anp-custom-vault-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-file-icons": false,
|
||||
"anuppuccin-theme-settings@@anp-floating-header": false,
|
||||
"anuppuccin-theme-settings@@anp-collapse-folders": false,
|
||||
"anuppuccin-theme-settings@@anp-pdf-blend-toggle-dark": true,
|
||||
"anuppuccin-theme-settings@@anp-pdf-blend-toggle-light": true,
|
||||
"anuppuccin-theme-settings@@anp-alt-rainbow-style": "anp-full-rainbow-color-toggle",
|
||||
"anuppuccin-theme-settings@@anp-rainbow-file-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-full-rainbow-text-color-toggle-light": true,
|
||||
"anuppuccin-theme-settings@@anp-full-rainbow-text-color-toggle-dark": true,
|
||||
"anuppuccin-theme-settings@@anp-rainbow-folder-bg-opacity": 0.3,
|
||||
"anuppuccin-theme-settings@@anp-simple-rainbow-title-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-simple-rainbow-collapse-icon-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-simple-rainbow-indentation-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-simple-rainbow-icon-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-rainbow-subfolder-color-toggle": false,
|
||||
"anuppuccin-theme-settings@@anp-status-bar-select": "none",
|
||||
"anuppuccin-theme-settings@@anp-hide-borders": false
|
||||
}
|
||||
@ -12,7 +12,7 @@ tags:
|
||||
- [x] Work on FHE Stuff for BeagleBone [completion:: 2024-09-13]
|
||||
## Medium Tasks
|
||||
- [ ] [[1. QE Goals and Outcomes]]
|
||||
- [/] Dataview task pages
|
||||
- [x] Dataview task pages ✅ 2024-09-13
|
||||
- Change deadline events to include a task.
|
||||
## Small Tasks
|
||||
- [x] GSA Meeting ✅ 2024-09-13
|
||||
|
||||
@ -6,6 +6,7 @@ tags:
|
||||
---
|
||||
# Tasks
|
||||
## Undated
|
||||
---
|
||||
```dataview
|
||||
TASK
|
||||
where !completed
|
||||
@ -15,15 +16,18 @@ where !completed
|
||||
group by file.folder
|
||||
```
|
||||
## Overdue
|
||||
---
|
||||
```dataview
|
||||
TASK
|
||||
where !completed
|
||||
and status != "-"
|
||||
and status != " "
|
||||
and due < date(today)
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Next 2 Weeks
|
||||
---
|
||||
```dataview
|
||||
TASK
|
||||
where !completed
|
||||
@ -31,14 +35,17 @@ where !completed
|
||||
and status != " "
|
||||
and due > date(today)
|
||||
and due < date(today) + dur(2 w)
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## On The Horizon
|
||||
---
|
||||
```dataview
|
||||
TASK
|
||||
where !completed
|
||||
and status != "-"
|
||||
and status != " "
|
||||
and due > date(today) + dur(2 w)
|
||||
and due > (date(today) + dur(2 w))
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
```
|
||||
|
||||
@ -8,6 +8,12 @@ tags:
|
||||
[[ Weekly Note <%*if (tp.date.weekday("YYYY-MM-DD", 3, tp.file.title, "YYYY-MM-DD") >= tp.file.title) {tR += tp.date.weekday("YYYY-MM-DD", -4, tp.file.title, "YYYY-MM-DD"); } else {tR += tp.date.weekday("YYYY-MM-DD", 3, tp.file.title, "YYYY-MM-DD"); } %>]]
|
||||
|
||||
# Tasks for today
|
||||
```dataview
|
||||
task
|
||||
where due < date(file.title)
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Big Task
|
||||
## Medium Tasks
|
||||
## Small Tasks
|
||||
|
||||
24
2024-09-16.md
Normal file
24
2024-09-16.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
date: 2024-09-16
|
||||
tags:
|
||||
---
|
||||
# Yesterday | Tomorrow
|
||||
<< [[2024-09-13]] | [[2024-09-17 ]] >>
|
||||
# This Week's Weekly Note
|
||||
[[ Weekly Note 2024-09-11]]
|
||||
|
||||
# Tasks for today
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
(due < date(file.name)) or ()
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Big Task
|
||||
## Medium Tasks
|
||||
## Small Tasks
|
||||
|
||||
# Calendar Tasks
|
||||
14
3-99 Research/7. BeagleBone/0. Management.md
Normal file
14
3-99 Research/7. BeagleBone/0. Management.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Things that Need Done
|
||||
## Presentation
|
||||
- [<] Review current ARCADE presentation 🆔 ij7zlt 📅 2024-09-16
|
||||
- [<] Move current presentation to PowerPoint ⛔ ij7zlt 📅 2024-09-16
|
||||
- [<] Write content about FHE (Robert?) 🆔 vj5mz3 📅 2024-09-18
|
||||
- [<] Finish presentation draft 🆔 00bzpa ⛔ vj5mz3 ⏳ 2024-09-18 📅 2024-09-23
|
||||
- [<] Send presentation to Dan ⛔ 00bzpa,14xpq9 📅 2024-09-23
|
||||
- [<] Make pretty figures 📅 🆔 14xpq9 ⛔ n9zkqq ⏳ 2024-09-18 📅 2024-09-23
|
||||
|
||||
## Implementation
|
||||
- [<] Send encrypted signals back and forth on MODBUS 🆔 dc6sr4 ⏳ 2024-09-16 📅 2024-09-19
|
||||
- [<] Figure out what a controller design (Steal From SmAHTR sim) 🆔 36lbu1 ⏳ 2024-09-17 📅 2024-09-19
|
||||
- [*] Working controller on the bone! 🆔 vljyq7 ⛔ dc6sr4,36lbu1 📅 2024-09-19
|
||||
- [<] Extract data from working controller 🆔 n9zkqq ⛔ vljyq7 📅 2024-09-20
|
||||
@ -3,5 +3,6 @@ title: Homework 1
|
||||
allDay: true
|
||||
date: 2024-09-18
|
||||
endDate: 2024-09-19
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
---
|
||||
|
||||
@ -4,7 +4,7 @@ allDay: true
|
||||
startTime: 08:30
|
||||
endTime: 10:30
|
||||
date: 2024-09-24
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
endDate: null
|
||||
---
|
||||
|
||||
@ -4,7 +4,7 @@ allDay: true
|
||||
startTime: 08:30
|
||||
endTime: 10:30
|
||||
date: 2024-10-01
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
endDate: null
|
||||
---
|
||||
|
||||
@ -3,5 +3,6 @@ title: Project Topic and Description
|
||||
allDay: true
|
||||
date: 2024-10-01
|
||||
endDate: 2024-10-02
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
---
|
||||
|
||||
@ -3,5 +3,6 @@ title: Homework 6
|
||||
allDay: true
|
||||
date: 2024-10-29
|
||||
endDate: 2024-10-30
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
---
|
||||
|
||||
@ -3,5 +3,6 @@ title: Homework 7
|
||||
allDay: true
|
||||
date: 2024-11-05
|
||||
endDate: 2024-11-06
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
---
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# Management
|
||||
- [ ] Create LaTeX template
|
||||
- [x] Create LaTeX template ✅ 2024-09-13
|
||||
[[0. QE Overview#Must have checklist]]
|
||||
Typesetting Requirements:
|
||||
1. Cover page
|
||||
@ -7,10 +7,11 @@
|
||||
3. 1 inch margins
|
||||
# Writing
|
||||
[[1. QE Goals and Outcomes]]
|
||||
- [<] First Draft 📅 2024-09-16
|
||||
|
||||
[[2. QE State of the Art]]
|
||||
[[3. QE Research Approach]]
|
||||
[[4. QE Broader Impacts]]
|
||||
[[5. QE Metrics of Success]]
|
||||
[[6. QE Risks and Contingencies]]
|
||||
|
||||
# Reading
|
||||
# Reading
|
||||
|
||||
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Working Encrypted Controller
|
||||
allDay: true
|
||||
date: 2024-09-19
|
||||
completed: false
|
||||
---
|
||||
@ -2,5 +2,6 @@
|
||||
title: TRTR Presentation Due
|
||||
allDay: true
|
||||
date: 2024-09-23
|
||||
completed: null
|
||||
completed: false
|
||||
type: single
|
||||
---
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user