vault backup: 2024-09-13 15:33:26
This commit is contained in:
parent
0997b7cb80
commit
794682740a
@ -1,10 +1,5 @@
|
||||
{
|
||||
"calendarSources": [
|
||||
{
|
||||
"type": "dailynote",
|
||||
"color": "#d7d6d6",
|
||||
"heading": "Calendar Tasks"
|
||||
},
|
||||
{
|
||||
"type": "local",
|
||||
"color": "#e557c6",
|
||||
@ -35,11 +30,6 @@
|
||||
"color": "#4e6ca6",
|
||||
"directory": "300s School/ME 2085 - Graduate Seminar"
|
||||
},
|
||||
{
|
||||
"type": "local",
|
||||
"color": "#ba62f5",
|
||||
"directory": "200. Library Papers"
|
||||
},
|
||||
{
|
||||
"type": "local",
|
||||
"color": "#ff841f",
|
||||
@ -54,6 +44,11 @@
|
||||
"type": "ical",
|
||||
"color": "#83ff7a",
|
||||
"url": "https://www.officeholidays.com/ics-fed/usa"
|
||||
},
|
||||
{
|
||||
"type": "dailynote",
|
||||
"color": "#ffffff",
|
||||
"heading": "Calendar Tasks"
|
||||
}
|
||||
],
|
||||
"defaultCalendar": 0,
|
||||
@ -63,4 +58,4 @@
|
||||
"mobile": "timeGrid3Days"
|
||||
},
|
||||
"timeFormat24h": false
|
||||
}
|
||||
}
|
||||
20
.obsidian/plugins/obsidian-icon-folder/data.json
vendored
20
.obsidian/plugins/obsidian-icon-folder/data.json
vendored
@ -33,21 +33,21 @@
|
||||
"lucideIconPackType": "native",
|
||||
"debugMode": false
|
||||
},
|
||||
"101. Current Writing/ARCADE Implementation at the University of Pittsburgh.md": "🖥",
|
||||
"101. Current Writing/Models All The Way Down - A Path Towards Software and Physical System Proof Synergy.md": "LiTrendingDown",
|
||||
"200. Library Papers": "LiLibraryBig",
|
||||
"101. Current Writing": "🖋",
|
||||
"100. Managerial Pages": "🧙♂️",
|
||||
"4. Denoising Diffusion Probabalistic Models for Robust Control": "LiCloudFog",
|
||||
"2. Cole Group Meeting Notes": "🪖",
|
||||
"1. Daily Notes": "LiCalendarDays",
|
||||
"8. Zotero Web Server": "📚",
|
||||
"Random things I found that I should look into.md": "🗼",
|
||||
"4. Qualifying Exam": "🚜",
|
||||
"900s Calendars": "📆",
|
||||
"300s School": "🏫",
|
||||
"3-99 Research": "🧪",
|
||||
"1000s Templates": "🧩",
|
||||
"199. Paper Notes": "📎",
|
||||
"199. Paper Notes/Hardware In The Loop Papers.md": "🔩"
|
||||
"1 Daily Notes": "LiCalendarDays",
|
||||
"2 Cole Group Meeting Notes": "🪖",
|
||||
"4 Qualifying Exam": "🚜",
|
||||
"100 Managerial Pages": "🧙♂️",
|
||||
"101 Current Writing": "🖋",
|
||||
"101 Current Writing/ARCADE Implementation at the University of Pittsburgh.md": "🖥",
|
||||
"101 Current Writing/Models All The Way Down - A Path Towards Software and Physical System Proof Synergy.md": "LiTrendingDown",
|
||||
"199 Paper Notes": "📎",
|
||||
"199 Paper Notes/Hardware In The Loop Papers.md": "🔩",
|
||||
"200 Library Papers": "LiLibraryBig"
|
||||
}
|
||||
@ -10,7 +10,7 @@ tags: []
|
||||
|
||||
## Tasks for today
|
||||
### Big Task
|
||||
- [x] [[1. BeagleBone Setup 😎]] ✅ 2024-08-20
|
||||
- [x] [[1 BeagleBone Setup 😎]] ✅ 2024-08-20
|
||||
### Medium Tasks
|
||||
- [x] Review script from Mithin ✅ 2024-08-20
|
||||
- [-] Rust for BeagleBone?
|
||||
@ -12,7 +12,7 @@ tags:
|
||||
### Big Task
|
||||
- [x] [[Learning How to Use Github]] ✅ 2024-08-23
|
||||
### Medium Tasks
|
||||
- [x] [[2. pymodbus On the BeagleBone]] [completion:: 2024-09-13]
|
||||
- [x] [[2 pymodbus On the BeagleBone]] [completion:: 2024-09-13]
|
||||
- [x] [[Zotero Web Sever]] [completion:: 2024-09-13]
|
||||
- [x] [[Task Management in Obsidian]] [completion:: 2024-09-13]
|
||||
### Small Tasks
|
||||
@ -8,14 +8,29 @@ 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
|
||||
## Due
|
||||
```dataview
|
||||
task
|
||||
where due < date(file.title)
|
||||
where
|
||||
due <= date(this.date)
|
||||
and !completed
|
||||
and status != "-"
|
||||
and status != " "
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Scheduled
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
scheduled
|
||||
and scheduled <= date(this.date)
|
||||
and due > date(this.date)
|
||||
and !completed
|
||||
and status != "-"
|
||||
and status != " "
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Big Task
|
||||
## Medium Tasks
|
||||
## Small Tasks
|
||||
|
||||
# Calendar Tasks
|
||||
@ -8,18 +8,29 @@ tags:
|
||||
[[ Weekly Note 2024-09-11]]
|
||||
|
||||
# Tasks for today
|
||||
## Due
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
((due < date(this.name)) or (scheduled < date(this.name)))
|
||||
due <= date(this.date)
|
||||
and !completed
|
||||
and status != "-"
|
||||
and status != " "
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Scheduled
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
scheduled
|
||||
and scheduled <= date(this.date)
|
||||
and due > date(this.date)
|
||||
and !completed
|
||||
and status != "-"
|
||||
and status != " "
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
## Big Task
|
||||
## Medium Tasks
|
||||
## Small Tasks
|
||||
|
||||
# Calendar Tasks
|
||||
* testing! [startTime::9:00] [endTime::11:00]
|
||||
# Calendar Tasks
|
||||
@ -5,7 +5,7 @@ tags:
|
||||
---
|
||||
# Preamble
|
||||
### Notable Links
|
||||
[[2. pymodbus On the BeagleBone]]
|
||||
[[2 pymodbus On the BeagleBone]]
|
||||
|
||||
## What are we doing?
|
||||
Figuring out two things: a) what the hell is a virtual environment and b) how to get linux to quit complaining to me that I'm breaking system packages.
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user