vault backup: 2024-10-15 08:56:36

This commit is contained in:
Dane Sabo 2024-10-15 08:56:36 -04:00
parent 27fa8cbc82
commit f5dab40254
13 changed files with 215 additions and 4 deletions

View File

@ -67,6 +67,6 @@
"repelStrength": 11.9791666666667, "repelStrength": 11.9791666666667,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 148, "linkDistance": 148,
"scale": 0.45050811767578125, "scale": 0.13348388671875,
"close": true "close": true
} }

View File

@ -218,5 +218,13 @@
], ],
"key": "T" "key": "T"
} }
],
"templater-obsidian:insert-1000s Templates/Daily Note Template.md": [
{
"modifiers": [
"Alt"
],
"key": "D"
}
] ]
} }

View File

@ -6,11 +6,11 @@
"emojiStyle": "native", "emojiStyle": "native",
"iconColor": null, "iconColor": null,
"recentlyUsedIcons": [ "recentlyUsedIcons": [
"📷",
"🧩", "🧩",
"🚜", "🚜",
"🏫", "🏫",
"📆", "📆"
"🧪"
], ],
"recentlyUsedIconsSize": 5, "recentlyUsedIconsSize": 5,
"rules": [], "rules": [],
@ -39,5 +39,6 @@
"900s Calendars": "📆", "900s Calendars": "📆",
"300s School": "🏫", "300s School": "🏫",
"3-99 Research": "🧪", "3-99 Research": "🧪",
"1000s Templates": "🧩" "1000s Templates": "🧩",
"2000 Images": "📷"
} }

View File

@ -2,6 +2,7 @@
- [x] Review email document for Jessica ⏳ 2024-09-19 📅 2024-09-20 ✅ 2024-09-20 - [x] Review email document for Jessica ⏳ 2024-09-19 📅 2024-09-20 ✅ 2024-09-20
- [x] Create meeting for next week 📅 2024-09-20 ✅ 2024-09-20 - [x] Create meeting for next week 📅 2024-09-20 ✅ 2024-09-20
- [x] Email Megan Lenze looking for table cloth 📅 2024-09-27 [completion:: 2024-09-30] - [x] Email Megan Lenze looking for table cloth 📅 2024-09-27 [completion:: 2024-09-30]
- [ ] Write an email for Lauren 📅 2024-10-15
# Personal # Personal
- [x] Water the plants! ⏳ 2024-09-24 📅 2024-09-24 [completion:: 2024-09-24] - [x] Water the plants! ⏳ 2024-09-24 📅 2024-09-24 [completion:: 2024-09-24]
@ -10,6 +11,7 @@
# Work Stuff # Work Stuff
- [x] Put Zotero web server on my own box ✅ 2024-10-01 - [x] Put Zotero web server on my own box ✅ 2024-10-01
- [x] Email Megan Lenze about tablecloth 📅 2024-10-07 [completion:: 2024-10-09] - [x] Email Megan Lenze about tablecloth 📅 2024-10-07 [completion:: 2024-10-09]
- [ ]
# Class Stuff # Class Stuff
- [x] Move the sketches from my iPad to the notes for ME 2016 📅 2024-10-02 ✅ 2024-10-02 - [x] Move the sketches from my iPad to the notes for ME 2016 📅 2024-10-02 ✅ 2024-10-02

View File

@ -0,0 +1,50 @@
---
date: 2024-10-10
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/10 October/2024-10-09]] | [[1 Daily Notes/2024/10 October/2024-10-11 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-10-09]]
# Tasks for today
## Due
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Scheduled
```dataview
task
where
scheduled
and scheduled <= date(this.date)
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
```
## Completed
```dataview
task
where
completed
and completion = date(this.date)
sort due asc
group by file.folder
```
# Calendar Tasks

View File

@ -0,0 +1,50 @@
---
date: 2024-10-11
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/10 October/2024-10-10]] | [[1 Daily Notes/2024/10 October/2024-10-14 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-10-09]]
# Tasks for today
## Due
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Scheduled
```dataview
task
where
scheduled
and scheduled <= date(this.date)
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
```
## Completed
```dataview
task
where
completed
and completion = date(this.date)
sort due asc
group by file.folder
```
# Calendar Tasks

View File

@ -0,0 +1,50 @@
---
date: 2024-10-14
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/10 October/2024-10-11]] | [[1 Daily Notes/2024/10 October/2024-10-15 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-10-09]]
# Tasks for today
## Due
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Scheduled
```dataview
task
where
scheduled
and scheduled <= date(this.date)
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
```
## Completed
```dataview
task
where
completed
and completion = date(this.date)
sort due asc
group by file.folder
```
# Calendar Tasks

View File

@ -0,0 +1,50 @@
---
date: 2024-10-15
tags:
---
# Yesterday | Tomorrow
<< [[1 Daily Notes/2024/10 October/2024-10-14]] | [[1 Daily Notes/2024/10 October/2024-10-16 ]] >>
# This Week's Weekly Note
[[ Weekly Note 2024-10-09]]
# Tasks for today
## Due
```dataview
task
where
due <= date(this.date)
and due
and !completed
and status != "-"
sort due asc
group by file.folder
```
## Scheduled
```dataview
task
where
scheduled
and scheduled <= date(this.date)
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
```
## Completed
```dataview
task
where
completed
and completion = date(this.date)
sort due asc
group by file.folder
```
# Calendar Tasks

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 307 KiB

After

Width:  |  Height:  |  Size: 307 KiB

View File

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 69 KiB