feature: add anew templates
This commit is contained in:
32
templates/Pages/App (Page Template).md
Normal file
32
templates/Pages/App (Page Template).md
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
uuid: <% tp.file.creation_date("YYYYMMDDHHmmss") %>
|
||||
alias: ["<% tp.file.title.replace(' (App)', '') %>", "+<% tp.file.title.replace(' (App)', '') %>"]
|
||||
dates:
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
last-modified: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
---
|
||||
|
||||
# <% tp.file.title.replace(' (App)', '') %>
|
||||
|
||||
<% tp.file.cursor() %>
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- ⭐ Rating::
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/app
|
||||
- 🏁 Status::
|
||||
- 🛰 Platform::
|
||||
- 💬 Topics::
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👍 Recommended By::
|
||||
- ✨ Inspired By::
|
||||
- 🔮 Origin::
|
||||
55
templates/Pages/Base Note (Page Template).md
Normal file
55
templates/Pages/Base Note (Page Template).md
Normal file
@@ -0,0 +1,55 @@
|
||||
<%*
|
||||
const title = tp.file.title
|
||||
const dailyNoteRegex = /^(\d{4}-\d{2}-\d{2})/g
|
||||
|
||||
// "App" Notes
|
||||
if (title.includes('(App)')) {
|
||||
return tp.file.include('[[App (Page Template)]]')
|
||||
}
|
||||
// "Book" Notes
|
||||
else if (title.includes('(Book)')) {
|
||||
return tp.file.include('[[Book (Page Template)]]')
|
||||
}
|
||||
// "Build with Ben - Episode" Notes
|
||||
else if (title.startsWith('Build with Ben (E')) {
|
||||
return tp.file.include('[[Build with Ben Episode (Page Template)]]')
|
||||
}
|
||||
// "Daily" Notes
|
||||
else if (dailyNoteRegex.test(title)) {
|
||||
await tp.file.move("/reports/timeline/Daily Notes/" + title)
|
||||
return tp.file.include('[[Daily Note (Page Template)]]')
|
||||
}
|
||||
// "Focus Session"
|
||||
else if (title.startsWith("Focus Session")) {
|
||||
return tp.file.include('[[Focus Session (Page Template)]]')
|
||||
}
|
||||
// "Japanese Tutoring Session" Notes
|
||||
else if (title.startsWith("Japanese Tutoring Session")) {
|
||||
return tp.file.include('[[Japanese Tutoring Session (Page Template)]]')
|
||||
}
|
||||
// "Meeting (Sync)" Notes
|
||||
else if (title.startsWith("Sync with")) {
|
||||
return tp.file.include('[[Generic Meeting (Page Template)]]')
|
||||
}
|
||||
// "Music Lesson" Notes
|
||||
else if (title.startsWith("Music Lesson")) {
|
||||
return tp.file.include('[[Music Lessons (Page Template)]]')
|
||||
}
|
||||
// "Obsidian Office Hours - Episode" Notes
|
||||
else if (title.startsWith("Obsidian Office Hours (E")) {
|
||||
return tp.file.include('[[Obsidian Office Hours (Page Template)]]')
|
||||
}
|
||||
// "People" Notes
|
||||
else if (title.startsWith("@")) {
|
||||
await tp.file.move("/zettelkasten/people/" + title)
|
||||
return tp.file.include('[[People (Person) — Page Template]]')
|
||||
}
|
||||
// "Project" Notes
|
||||
else if (title.includes('(Project)')) {
|
||||
return tp.file.include('[[Project (Page Template)]]')
|
||||
}
|
||||
// "Starter" Note
|
||||
else {
|
||||
return tp.file.include('[[Starter Note (Page Template)]]')
|
||||
}
|
||||
%>
|
||||
48
templates/Pages/Book (Page Template).md
Normal file
48
templates/Pages/Book (Page Template).md
Normal file
@@ -0,0 +1,48 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
![<% tp.file.title %> Cover Art]()
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
## 📋 Table of Contents
|
||||
|
||||
|
||||
|
||||
## ℹ️ About
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- <% tp.file.include('[[Rating — Metadata — Block Template]]') %>::
|
||||
- <% tp.file.include('[[Priority — Metadata — Block Template]]') %>::
|
||||
- 🏃♂️ Start Date::
|
||||
- 👀 Next Assessment Date::
|
||||
- 🎯 Goal Completion Date::
|
||||
- 📆 Completion Date::
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- <% tp.file.include('[[Type (Attribute Template)]]') %>:: #type/book
|
||||
- 🎭 Genres:: #genre/
|
||||
- 🌎 Areas::
|
||||
- 🙌 Team::
|
||||
- 🏁 Status:: #status/queue
|
||||
- 🛰 Platforms:: #platform/kindle
|
||||
- 💬 Topics::
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👤 Creators::
|
||||
- 🗓️ Last Read::
|
||||
- 👍 Recommended By::
|
||||
- 🔮 Origin::
|
||||
- 🚀 PODs::
|
||||
95
templates/Pages/Build with Ben Episode (Page Template).md
Normal file
95
templates/Pages/Build with Ben Episode (Page Template).md
Normal file
@@ -0,0 +1,95 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📋 Pre-Stream Checklist
|
||||
|
||||
### 📝 Planning
|
||||
|
||||
- [ ] Fill out agenda
|
||||
- [ ] Write tweet for live in studio
|
||||
|
||||
```
|
||||
🔴 Live Stream in Session
|
||||
|
||||
|
||||
|
||||
https://www.twitch.tv/bencodezen
|
||||
```
|
||||
|
||||
- [ ] Update overlay
|
||||
- [ ] Post tweet to:
|
||||
- [ ] Cassidy's Discord
|
||||
- [ ] DTC Discord
|
||||
- [ ] Netlify Slack
|
||||
|
||||
### 💻 Setup
|
||||
|
||||
#### Video & Audio
|
||||
- [ ] Check resolution for 1920 x 1080
|
||||
- [ ] Check lighting
|
||||
- [ ] Check audio for mic
|
||||
- [ ] Setup BlackHole 2ch
|
||||
- [ ] Audio Devices MIDI
|
||||
- [ ] MultiOutput Device
|
||||
- [ ] Can adjust volume through individual device within the Audio Devices
|
||||
- [ ] Setup Screenflow
|
||||
|
||||
#### Desktop
|
||||
- [ ] Turn off notifications
|
||||
- [ ] Shut down all miscellaneous applications
|
||||
- [ ] Clean up files on desktop
|
||||
|
||||
#### Software
|
||||
- [ ] Start VS Code
|
||||
- [ ] Font Size: 18px
|
||||
- [ ] Zoom: 2.5
|
||||
- [ ] Start Obsidian
|
||||
- [ ] Reset Zoom
|
||||
- [ ] Zoom in Twice
|
||||
|
||||
#### Miscellaneous
|
||||
|
||||
- [ ] Grab water
|
||||
|
||||
|
||||
## 📋 Agenda
|
||||
|
||||
- [ ]
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
## 📚 Resources
|
||||
|
||||
-
|
||||
|
||||
## 📋 Post-Stream Checklist
|
||||
|
||||
- [ ] VS Code - Reset Zoom
|
||||
- [ ] Obsidian - Reset Zoom
|
||||
- [ ] End stream on Streamlabs
|
||||
- [ ] End recording on Screenflow
|
||||
- [ ] Download recording
|
||||
- [ ] Edit recording
|
||||
- [ ] Upload it to YouTube
|
||||
- [ ] Schedule tweet to share it
|
||||
- [ ] Update website
|
||||
|
||||
---
|
||||
|
||||
## 🌮 Miscellaneous
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 📚 Series:: [[Build with Ben (Series)]]
|
||||
- 🗓️ Date:: [[<% tp.date.now() %>]]
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/content
|
||||
- 🌎 Areas:: #area/public-speaking
|
||||
- 📼 Format(s):: #format/livestream
|
||||
- 🚀 Team(s):: #team/bencodezen
|
||||
- 🛰 Platforms:: #platform/twitch
|
||||
80
templates/Pages/Daily Note (Page Template).md
Normal file
80
templates/Pages/Daily Note (Page Template).md
Normal file
@@ -0,0 +1,80 @@
|
||||
---
|
||||
uuid: <% moment(tp.file.title).format("YYYYMMDDHHmmss") %>
|
||||
alias:
|
||||
- "<% moment(tp.file.title).format("MMMM Do, YYYY") %>"
|
||||
- "<% moment(tp.file.title).format("dddd Do MMMM, YYYY") %>"
|
||||
dates:
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
last-modified: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
---
|
||||
|
||||
# <% moment(tp.file.title).format("MMMM Do, YYYY") %>
|
||||
|
||||
<% tp.web.daily_quote() %>
|
||||
|
||||
## 🕰️ Timeline
|
||||
|
||||
*A representation of the activities for the day.*
|
||||
|
||||
### ✨ Morning (0/300)
|
||||
|
||||
- **07:00AM to 08:00PM**
|
||||
- **08:00AM to 09:00PM**
|
||||
- **09:00AM to 10:00PM**
|
||||
- **10:00AM to 11:00PM**
|
||||
- **11:00AM to 12:00PM**
|
||||
|
||||
### 🌤️ Afternoon (0/300)
|
||||
|
||||
- **12:00PM to 01:00PM**
|
||||
- **01:00PM to 02:00PM**
|
||||
- **02:00PM to 03:00PM**
|
||||
- **03:00PM to 04:00PM**
|
||||
- **04:00PM to 05:00PM**
|
||||
|
||||
### 🌙 Evening (0/300)
|
||||
|
||||
- **05:00PM to 06:00PM**
|
||||
- **06:00PM to 07:00PM**
|
||||
- **07:00PM to 08:00PM**
|
||||
- **08:00PM to 09:00PM**
|
||||
- **09:00PM to 10:00PM**
|
||||
|
||||
## ✅ Action Items
|
||||
|
||||
### 🎯 Priority
|
||||
|
||||
*What is the one thing I want to do for me?*
|
||||
|
||||
- [ ]
|
||||
|
||||
<%* if (moment(tp.file.title).format("dddd") !== "Saturday" && moment(tp.file.title).format("dddd") !== "Sunday") { -%>
|
||||
|
||||
<% tp.file.include("[[Weekly Priority Prompts — Section Template]]") %>
|
||||
|
||||
<%* } -%>
|
||||
|
||||
### 📋 Todos
|
||||
|
||||
- [ ] 🧘 #i/practiced/meditation (10)
|
||||
- [ ] 👨💻 #i/practiced/coding (30)
|
||||
- [ ] 🎸 #i/practiced/ukulele (10)
|
||||
- [ ] 🇯🇵 #i/practiced/japanese (10)
|
||||
- [ ] 📝 #i/practiced/writing (30)
|
||||
- [ ] 🧼 #i/practiced/cleaning (30)
|
||||
- [ ] 🐦 #i/practiced/social-media (30)
|
||||
|
||||
---
|
||||
|
||||
## 🌮 Miscellaneous
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 🗓️ Week:: [[<% moment(tp.file.title).format("YYYY-[W]ww") %>]]
|
||||
- ⏰ Start Time:: <% tp.file.creation_date("HH:mm") %>
|
||||
- 🛌 End Time::
|
||||
|
||||
**🏷 Tag(s)**
|
||||
|
||||
- 🗂 Type:: #type/timeline/daily
|
||||
- 🏁 Status:: #status/in-progress
|
||||
19
templates/Pages/Focus Session (Page Template).md
Normal file
19
templates/Pages/Focus Session (Page Template).md
Normal file
@@ -0,0 +1,19 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 🎯 What is the priority?
|
||||
|
||||
-
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- <% tp.file.include('[[Date (Attribute Template)]]') %>:: [[<% tp.date.now() %>]]
|
||||
- <% tp.file.include('[[Type (Attribute Template)]]') %>:: #type/session
|
||||
- <% tp.file.include('[[Teams (Attribute Template)]]') %>::
|
||||
20
templates/Pages/Funko Pop (Page Template).md
Normal file
20
templates/Pages/Funko Pop (Page Template).md
Normal file
@@ -0,0 +1,20 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## ℹ️ About
|
||||
|
||||
- 🗺️ Location::
|
||||
- 📚 Series::
|
||||
- 🗄️ Number::
|
||||
- 🗓️ Purchase Date::
|
||||
- 💰 Price::
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/funko-pop
|
||||
- 🔮 Origin:: [[Funko Pop Collection]]
|
||||
39
templates/Pages/Generic Meeting (Page Template).md
Normal file
39
templates/Pages/Generic Meeting (Page Template).md
Normal file
@@ -0,0 +1,39 @@
|
||||
<% tp.file.include("[[Frontmatter (Section Template)]]") %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📋 Agenda
|
||||
|
||||
- [ ]
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
|
||||
## ✅ Tasks
|
||||
|
||||
- [ ]
|
||||
|
||||
## 👥 Participants
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
## Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 🗓️ Date:: [[<% tp.date.now() %>]]
|
||||
- 📚 Series::
|
||||
- 🔮 Origin::
|
||||
- 🚀 POD::
|
||||
- ✨ Inspired By::
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🧠 Mode:: #mode/airplane
|
||||
- 🗂 Type:: #type/meeting
|
||||
- 🌎 Areas::
|
||||
- 🙌 Team::
|
||||
- 🛰 Platforms:: #platform/zoom
|
||||
52
templates/Pages/Japanese Tutoring Session (Page Template).md
Normal file
52
templates/Pages/Japanese Tutoring Session (Page Template).md
Normal file
@@ -0,0 +1,52 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 🍳 Prep
|
||||
|
||||
### What time and day is it?
|
||||
|
||||
|
||||
|
||||
### Homework from last session
|
||||
|
||||
- Copy in homework from last session
|
||||
|
||||
|
||||
|
||||
## 📓 Homework
|
||||
|
||||
-
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
## 📚 Resources
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 🗓️ Date:: [[<% tp.date.now() %>]]
|
||||
- ⏱️ Duration:: 60 min
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/lesson
|
||||
- 📼 Format:: #format/video
|
||||
- 🌎 Areas:: #area/japanese
|
||||
- 🙌 Team:: #team/bencodezen
|
||||
- 🏁 Status:: #status/in-progress
|
||||
- 🏹 Skill:: #skill/japanese
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👤 Instructor::
|
||||
- 🛰 Platform:: [[+Preply]]
|
||||
- 🚀 POD:: [[Become proficient in Japanese]]
|
||||
- 📚 Series:: [[Japanese Lesson Dashboard]]
|
||||
41
templates/Pages/Meeting Log (Page Template).md
Normal file
41
templates/Pages/Meeting Log (Page Template).md
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📋 Agenda
|
||||
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
|
||||
## ✅ Tasks
|
||||
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📚 Resources
|
||||
|
||||
-
|
||||
|
||||
|
||||
## 👥 Participants
|
||||
|
||||
-
|
||||
|
||||
|
||||
---
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type: #type/event/meeting
|
||||
- 🏁 Status: #status/upcoming
|
||||
- 💬 Topic(s):
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👤 Creator(s):
|
||||
- 🔮 Origin:
|
||||
- 🔗 Location:
|
||||
37
templates/Pages/Monthly Note (Page Template).md
Normal file
37
templates/Pages/Monthly Note (Page Template).md
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
uuid: <% tp.date.now("YYYYMMDDHHmmss") %>
|
||||
alias: ["<% tp.date.now("MMMM Do, YYYY") %>"]
|
||||
dates:
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
last-modified: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
version: 11
|
||||
---
|
||||
|
||||
- [ ] 一百二十八條知見
|
||||
- [ ] 一百二十八條知見: #1 - 38
|
||||
- [ ] 一百二十八條知見: #1 - 30
|
||||
- [ ] 一百二十八條知見: #31 - 60
|
||||
- [ ] 一百二十八條知見: #61 - 90
|
||||
- [ ] 極聖解脫大手印
|
||||
- [x] 極聖解脫大手印: Top of 4 to Top of 6
|
||||
- [ ] 極聖解脫大手印: Top of 6 to Bottom of 8
|
||||
- [ ] 極聖解脫大手印: Bottom of 8 to Middle of 9
|
||||
- [ ] 極聖解脫大手印: Middle of 11 to Bottom of 14
|
||||
- [ ] 極聖解脫大手印: Bottom of 14 to Middle of 15
|
||||
- [ ] 極聖解脫大手印: Middle of 15 to Middle of 17
|
||||
- [ ] 極聖解脫大手印: Middle of 17 to Bottom of 18
|
||||
- [ ] 極聖解脫大手印: Bottom of 18 to Top of 21
|
||||
- [ ] 極聖解脫大手印: Top of 21 to Bottom of 24
|
||||
- [ ] 極聖解脫大手印: Bottom of 24 to Middle of 26
|
||||
- [ ] 極聖解脫大手印: Middle of 26 to Middle of 28
|
||||
- [x] 什麼叫修行
|
||||
- [x] The Great Dharma of Zen Practice
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/timeline/monthly
|
||||
- 🏁 Status:: #status/in-progress
|
||||
33
templates/Pages/Music Lessons (Page Template).md
Normal file
33
templates/Pages/Music Lessons (Page Template).md
Normal file
@@ -0,0 +1,33 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 🔥 Warm-up
|
||||
|
||||
-
|
||||
|
||||
## 🏋️♂️ Exercises
|
||||
|
||||
-
|
||||
|
||||
## 🎹 Song(s)
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 🗓️ Date:: [[<% tp.date.now() %>]]
|
||||
- 👩🏫 Instructor:: [[@Chantal Kuegle]]
|
||||
- ⏱️ Duration:: 60 min
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/lesson
|
||||
- 🌎 Areas:: #area/music
|
||||
- 🏹 Skill:: #skill/ukulele
|
||||
- 🏁 Status:: #status/backlog
|
||||
- 🛰 Platform:: #platform/lessonface
|
||||
95
templates/Pages/Obsidian Office Hours (Page Template).md
Normal file
95
templates/Pages/Obsidian Office Hours (Page Template).md
Normal file
@@ -0,0 +1,95 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📋 Pre-Stream Checklist
|
||||
|
||||
### 📝 Planning
|
||||
|
||||
- [ ] Fill out agenda
|
||||
- [ ] Write tweet for live in studio
|
||||
|
||||
```
|
||||
🔴 Live Stream in Session
|
||||
|
||||
|
||||
|
||||
https://www.twitch.tv/bencodezen
|
||||
```
|
||||
|
||||
- [ ] Update overlay
|
||||
- [ ] Post tweet to:
|
||||
- [ ] Cassidy's Discord
|
||||
- [ ] DTC Discord
|
||||
- [ ] Netlify Slack
|
||||
|
||||
### 💻 Setup
|
||||
|
||||
#### Video & Audio
|
||||
- [ ] Check resolution for 1920 x 1080
|
||||
- [ ] Check lighting
|
||||
- [ ] Check audio for mic
|
||||
- [ ] Setup BlackHole 2ch
|
||||
- [ ] Audio Devices MIDI
|
||||
- [ ] MultiOutput Device
|
||||
- [ ] Can adjust volume through individual device within the Audio Devices
|
||||
- [ ] Setup Screenflow
|
||||
|
||||
#### Desktop
|
||||
- [ ] Turn off notifications
|
||||
- [ ] Shut down all miscellaneous applications
|
||||
- [ ] Clean up files on desktop
|
||||
|
||||
#### Software
|
||||
- [ ] Start VS Code
|
||||
- [ ] Font Size: 18px
|
||||
- [ ] Zoom: 2.5
|
||||
- [ ] Start Obsidian
|
||||
- [ ] Reset Zoom
|
||||
- [ ] Zoom in Twice
|
||||
|
||||
#### Miscellaneous
|
||||
|
||||
- [ ] Grab water
|
||||
|
||||
|
||||
## 📋 Agenda
|
||||
|
||||
- [ ]
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
## 📚 Resources
|
||||
|
||||
-
|
||||
|
||||
## 📋 Post-Stream Checklist
|
||||
|
||||
- [ ] VS Code - Reset Zoom
|
||||
- [ ] Obsidian - Reset Zoom
|
||||
- [ ] End stream on Streamlabs
|
||||
- [ ] End recording on Screenflow
|
||||
- [ ] Download recording
|
||||
- [ ] Edit recording
|
||||
- [ ] Upload it to YouTube
|
||||
- [ ] Schedule tweet to share it
|
||||
- [ ] Update website
|
||||
|
||||
---
|
||||
|
||||
## 🌮 Miscellaneous
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 📚 Series:: [[Obsidian Office Hours (Series)]]
|
||||
- 🗓️ Date:: [[<% tp.date.now() %>]]
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/content
|
||||
- 🌎 Areas:: #area/public-speaking
|
||||
- 📼 Format(s):: #format/livestream
|
||||
- 🚀 Team(s):: #team/bencodezen
|
||||
- 🛰 Platforms:: #platform/twitch
|
||||
40
templates/Pages/Project (Page Template).md
Normal file
40
templates/Pages/Project (Page Template).md
Normal file
@@ -0,0 +1,40 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## ℹ️ About
|
||||
|
||||
- 🕰 Estimated Time::
|
||||
- ⏱️ Completion Time::
|
||||
- 🗓️ Week:: [[<% tp.date.now("YYYY") %>-W<% tp.date.now("ww") %>]]
|
||||
|
||||
## 🎯 Success Criteria
|
||||
|
||||
- [ ]
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 🚩 Priority::
|
||||
- 🏃♂️ Started On::
|
||||
- 👀 Next Assessment Date::
|
||||
- 🎯 Goal Completion Date::
|
||||
- 📆 Completed On::
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type:: #type/project
|
||||
- 🌎 Areas::
|
||||
- 🙌 Team::
|
||||
- 🏁 Status:: #status/queue
|
||||
- 🛰 Platforms::
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- ✨ Inspired By::
|
||||
- 🔮 Origin::
|
||||
- 🚀 PODs::
|
||||
- 🗺️ Locations::
|
||||
11
templates/Pages/Starter Note (Page Template).md
Normal file
11
templates/Pages/Starter Note (Page Template).md
Normal file
@@ -0,0 +1,11 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
<% tp.file.cursor() %>
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- <% tp.file.include('[[Type (Attribute Template)]]') %>::
|
||||
48
templates/Pages/Tasks (Page Template).md
Normal file
48
templates/Pages/Tasks (Page Template).md
Normal file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
uuid: {{tp_date:f=YYYYMMDD}}{{tp_time:f=HHmmss}}
|
||||
alias: "■ {{tp_title}}"
|
||||
dates:
|
||||
created: {{tp_creation_date:f=YYYY-MM-DDTHH:mm:ss}}
|
||||
last-updated: {{tp_last_modif_date:f=YYYY-MM-DDTHH:mm:ss}}
|
||||
time:
|
||||
estimate:
|
||||
completed:
|
||||
---
|
||||
|
||||
# {{tp_title}}
|
||||
|
||||
## ℹ️ About
|
||||
|
||||
*What is the problem you're trying to solve?*
|
||||
|
||||
{{tp_cursor}}
|
||||
|
||||
|
||||
## 📋 Checklist
|
||||
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📖 Logs
|
||||
|
||||
-
|
||||
|
||||
|
||||
---
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🧠 Mode:
|
||||
- 🗂 Type: #type/task
|
||||
- 🌎 Area:
|
||||
- 🚀 Team:
|
||||
- 🏁 Status: #status/todo
|
||||
- 🛰 Platform:
|
||||
- 💬 Topic:
|
||||
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- ✨ POD:
|
||||
- 🔮 Origin:
|
||||
- 🔗 Location:
|
||||
104
templates/Pages/Weekly Note (Page Template).md
Normal file
104
templates/Pages/Weekly Note (Page Template).md
Normal file
@@ -0,0 +1,104 @@
|
||||
---
|
||||
uuid: <% tp.date.now("YYYYMMDDHHmmss") %>
|
||||
alias:
|
||||
dates:
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
last-modified: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
version: 3
|
||||
---
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📋 Tasks
|
||||
|
||||
- [ ] Establish workout regimen for the week ^92ce16
|
||||
- [ ] Review calendar for the week
|
||||
- [ ] Review [[2021-W<%tp.date.now("ww") - 1%>]]
|
||||
- [ ] Determine what outcomes are relevant for this week
|
||||
- [ ] Close out ritual
|
||||
- [ ] Review health data in [[Apple Health (App)]] ^1e00ff
|
||||
|
||||
## 💼 Projects
|
||||
|
||||
```dataview
|
||||
TABLE status
|
||||
FROM #type/project and [[<% tp.date.now("YYYY") %>-W<% tp.date.now("ww") %>]]
|
||||
```
|
||||
|
||||
## 🛣 Upcoming
|
||||
|
||||
_What is coming up this week?_
|
||||
|
||||
### Netlify
|
||||
- [ ]
|
||||
|
||||
|
||||
### Vue Mastery
|
||||
- [ ]
|
||||
|
||||
|
||||
### BenCodeZen
|
||||
- [ ]
|
||||
|
||||
|
||||
### Miscellaneous
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📦 Outcomes
|
||||
|
||||
_What output came of this week's effort? In other words, what were the impact of the time and energy spent this week?_
|
||||
|
||||
### Netlify
|
||||
- [ ]
|
||||
|
||||
|
||||
### Vue Mastery
|
||||
- [ ]
|
||||
|
||||
|
||||
### BenCodeZen
|
||||
- [ ]
|
||||
|
||||
|
||||
### Miscellaneous
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
### ⛰ Obstacles
|
||||
|
||||
_What challenges presented themselves this week?_
|
||||
|
||||
-
|
||||
|
||||
### 🎒 Lessons Learned
|
||||
|
||||
_What would I like to do better next week?_
|
||||
|
||||
-
|
||||
|
||||
### 📖 Miscellaneous
|
||||
|
||||
|
||||
## 🗓️ Daily Notes
|
||||
|
||||
```dataview
|
||||
TABLE status as "Status", week
|
||||
FROM #type/timeline/daily
|
||||
WHERE week = [[2021-W<%tp.date.now("ww")%>]]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- 🗓️ Week:: <%tp.date.now("ww")%>
|
||||
|
||||
**🏷 Tag(s)**
|
||||
|
||||
- 🗂 Type:: #type/timeline/weekly
|
||||
- 🏁 Status:: #status/in-progress
|
||||
Reference in New Issue
Block a user