vault backup: 2024-09-13 14:55:22

This commit is contained in:
Dane Sabo 2024-09-13 14:55:22 -04:00
parent beb68f528f
commit b361968169
16 changed files with 100 additions and 17 deletions

View File

@ -3,13 +3,33 @@
"anuppuccin-theme-settings@@anuppuccin-accent-toggle": true, "anuppuccin-theme-settings@@anuppuccin-accent-toggle": true,
"anuppuccin-theme-settings-extended@@anp-theme-ext-light": true, "anuppuccin-theme-settings-extended@@anp-theme-ext-light": true,
"anuppuccin-theme-settings-extended@@anp-theme-ext-dark": 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-extended": "ctp-everforest-light",
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-kanagawa-dark", "anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-everforest-dark",
"anuppuccin-theme-settings@@anuppuccin-theme-dark": "ctp-mocha", "anuppuccin-theme-settings@@anuppuccin-theme-dark": "ctp-mocha",
"anuppuccin-theme-settings@@anp-custom-checkboxes": true, "anuppuccin-theme-settings@@anp-custom-checkboxes": true,
"anuppuccin-theme-settings@@anp-speech-bubble": true, "anuppuccin-theme-settings@@anp-speech-bubble": true,
"anuppuccin-theme-settings@@anp-codeblock-numbers": true, "anuppuccin-theme-settings@@anp-codeblock-numbers": true,
"anuppuccin-theme-settings@@anp-colorful-frame": false, "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
} }

View File

@ -12,7 +12,7 @@ tags:
- [x] Work on FHE Stuff for BeagleBone [completion:: 2024-09-13] - [x] Work on FHE Stuff for BeagleBone [completion:: 2024-09-13]
## Medium Tasks ## Medium Tasks
- [ ] [[1. QE Goals and Outcomes]] - [ ] [[1. QE Goals and Outcomes]]
- [/] Dataview task pages - [x] Dataview task pages ✅ 2024-09-13
- Change deadline events to include a task. - Change deadline events to include a task.
## Small Tasks ## Small Tasks
- [x] GSA Meeting ✅ 2024-09-13 - [x] GSA Meeting ✅ 2024-09-13

View File

@ -6,6 +6,7 @@ tags:
--- ---
# Tasks # Tasks
## Undated ## Undated
---
```dataview ```dataview
TASK TASK
where !completed where !completed
@ -15,15 +16,18 @@ where !completed
group by file.folder group by file.folder
``` ```
## Overdue ## Overdue
---
```dataview ```dataview
TASK TASK
where !completed where !completed
and status != "-" and status != "-"
and status != " " and status != " "
and due < date(today) and due < date(today)
sort due asc
group by file.folder group by file.folder
``` ```
## Next 2 Weeks ## Next 2 Weeks
---
```dataview ```dataview
TASK TASK
where !completed where !completed
@ -31,14 +35,17 @@ where !completed
and status != " " and status != " "
and due > date(today) and due > date(today)
and due < date(today) + dur(2 w) and due < date(today) + dur(2 w)
sort due asc
group by file.folder group by file.folder
``` ```
## On The Horizon ## On The Horizon
---
```dataview ```dataview
TASK TASK
where !completed where !completed
and status != "-" and status != "-"
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 group by file.folder
``` ```

View File

@ -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"); } %>]] [[ 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 # Tasks for today
```dataview
task
where due < date(file.title)
sort due asc
group by file.folder
```
## Big Task ## Big Task
## Medium Tasks ## Medium Tasks
## Small Tasks ## Small Tasks

24
2024-09-16.md Normal file
View 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

View 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

View File

@ -3,5 +3,6 @@ title: Homework 1
allDay: true allDay: true
date: 2024-09-18 date: 2024-09-18
endDate: 2024-09-19 endDate: 2024-09-19
completed: null completed: false
type: single
--- ---

View File

@ -4,7 +4,7 @@ allDay: true
startTime: 08:30 startTime: 08:30
endTime: 10:30 endTime: 10:30
date: 2024-09-24 date: 2024-09-24
completed: null completed: false
type: single type: single
endDate: null endDate: null
--- ---

View File

@ -4,7 +4,7 @@ allDay: true
startTime: 08:30 startTime: 08:30
endTime: 10:30 endTime: 10:30
date: 2024-10-01 date: 2024-10-01
completed: null completed: false
type: single type: single
endDate: null endDate: null
--- ---

View File

@ -3,5 +3,6 @@ title: Project Topic and Description
allDay: true allDay: true
date: 2024-10-01 date: 2024-10-01
endDate: 2024-10-02 endDate: 2024-10-02
completed: null completed: false
type: single
--- ---

View File

@ -3,5 +3,6 @@ title: Homework 6
allDay: true allDay: true
date: 2024-10-29 date: 2024-10-29
endDate: 2024-10-30 endDate: 2024-10-30
completed: null completed: false
type: single
--- ---

View File

@ -3,5 +3,6 @@ title: Homework 7
allDay: true allDay: true
date: 2024-11-05 date: 2024-11-05
endDate: 2024-11-06 endDate: 2024-11-06
completed: null completed: false
type: single
--- ---

View File

@ -1,5 +1,5 @@
# Management # Management
- [ ] Create LaTeX template - [x] Create LaTeX template ✅ 2024-09-13
[[0. QE Overview#Must have checklist]] [[0. QE Overview#Must have checklist]]
Typesetting Requirements: Typesetting Requirements:
1. Cover page 1. Cover page
@ -7,10 +7,11 @@
3. 1 inch margins 3. 1 inch margins
# Writing # Writing
[[1. QE Goals and Outcomes]] [[1. QE Goals and Outcomes]]
- [<] First Draft 📅 2024-09-16
[[2. QE State of the Art]] [[2. QE State of the Art]]
[[3. QE Research Approach]] [[3. QE Research Approach]]
[[4. QE Broader Impacts]] [[4. QE Broader Impacts]]
[[5. QE Metrics of Success]] [[5. QE Metrics of Success]]
[[6. QE Risks and Contingencies]] [[6. QE Risks and Contingencies]]
# Reading
# Reading

View File

@ -0,0 +1,6 @@
---
title: Working Encrypted Controller
allDay: true
date: 2024-09-19
completed: false
---

View File

@ -2,5 +2,6 @@
title: TRTR Presentation Due title: TRTR Presentation Due
allDay: true allDay: true
date: 2024-09-23 date: 2024-09-23
completed: null completed: false
type: single
--- ---