feature: update boilerplate with key plugins and streamlined templates
This commit is contained in:
@@ -1 +0,0 @@
|
||||
📇 Additional Metadata
|
||||
@@ -1 +0,0 @@
|
||||
🗓️ Date
|
||||
@@ -1 +0,0 @@
|
||||
🧭 Direction
|
||||
@@ -1 +0,0 @@
|
||||
⏱️ Duration
|
||||
@@ -1 +0,0 @@
|
||||
📼 Format
|
||||
@@ -1 +0,0 @@
|
||||
🎹 Instrument
|
||||
@@ -1 +0,0 @@
|
||||
📖 Logs
|
||||
@@ -1 +0,0 @@
|
||||
🌮 Miscellaneous
|
||||
@@ -1 +0,0 @@
|
||||
🔢 Number
|
||||
@@ -1 +0,0 @@
|
||||
🔮 Origin
|
||||
@@ -1 +0,0 @@
|
||||
🎁 Outcome
|
||||
@@ -1 +0,0 @@
|
||||
🚀 PODs
|
||||
@@ -1 +0,0 @@
|
||||
💼 Project
|
||||
@@ -1 +0,0 @@
|
||||
⭐ Rating
|
||||
@@ -1 +0,0 @@
|
||||
📚 Series
|
||||
@@ -1 +0,0 @@
|
||||
🏹 Skill
|
||||
@@ -1 +0,0 @@
|
||||
🙌 Team
|
||||
@@ -1 +0,0 @@
|
||||
🗂 Type
|
||||
17
templates/Base Note (Template).md
Normal file
17
templates/Base Note (Template).md
Normal file
@@ -0,0 +1,17 @@
|
||||
<%*
|
||||
const title = tp.file.title
|
||||
|
||||
// "Book" Notes
|
||||
if (title.includes('(Book)')) {
|
||||
return tp.file.include('[[Book (Template)]]')
|
||||
}
|
||||
// "People" Notes
|
||||
else if (title.startsWith("@")) {
|
||||
await tp.file.move("/people/" + title)
|
||||
return tp.file.include('[[People (Template)]]')
|
||||
}
|
||||
// "Starter" Note
|
||||
else {
|
||||
return tp.file.include('[[Starter Note (Template)]]')
|
||||
}
|
||||
%>
|
||||
@@ -1 +0,0 @@
|
||||
<% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
@@ -1 +0,0 @@
|
||||
<% tp.date.now("YYYY-MM-DDTHH:mm:ss") %>
|
||||
@@ -1,8 +0,0 @@
|
||||
```mermaid
|
||||
graph TD
|
||||
A[Christmas] -->|Get money| B(Go shopping)
|
||||
B --> C{Let me think}
|
||||
C -->|One| D[Laptop]
|
||||
C -->|Two| E[iPhone]
|
||||
C -->|Three| F[fa:fa-car Car]
|
||||
```
|
||||
@@ -1 +0,0 @@
|
||||
🍱 #i/ate/breakfast —
|
||||
@@ -1 +0,0 @@
|
||||
🍱 #i/ate/dinner —
|
||||
@@ -1 +0,0 @@
|
||||
🍱 #i/ate/lunch —
|
||||
@@ -1 +0,0 @@
|
||||
💡 #i/discovered
|
||||
@@ -1 +0,0 @@
|
||||
💧 #i/drank/water — 8oz
|
||||
@@ -1 +0,0 @@
|
||||
📚 #i/read
|
||||
@@ -1,6 +0,0 @@
|
||||
```mermaid
|
||||
pie title Pets
|
||||
"Dogs" : 100
|
||||
"Cats" : 25
|
||||
"Birds" : 50
|
||||
```
|
||||
@@ -1,9 +0,0 @@
|
||||
```mermaid
|
||||
stateDiagram-v2
|
||||
[*] --> Still
|
||||
Still --> [*]
|
||||
Still --> Moving
|
||||
Moving --> Still
|
||||
Moving --> Crash
|
||||
Crash --> [*]
|
||||
```
|
||||
@@ -1 +0,0 @@
|
||||
🏆 #wins —
|
||||
24
templates/Book (Template).md
Normal file
24
templates/Book (Template).md
Normal file
@@ -0,0 +1,24 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# [[<% tp.file.title %>]]
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
## 📋 Table of Contents
|
||||
|
||||
|
||||
|
||||
## ℹ️ About
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- 🗂 Type:: #type/book
|
||||
- 👤 Authors::
|
||||
- ⭐ Rating::
|
||||
- 👍 Recommended By::
|
||||
45
templates/Daily Note (Template).md
Normal file
45
templates/Daily Note (Template).md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
uuid: <% moment(tp.file.title).format("YYYYMMDDHHmmss") %>
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
updated: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
alias:
|
||||
- "<% moment(tp.file.title).format("MMMM Do, YYYY") %>"
|
||||
- "<% moment(tp.file.title).format("dddd Do MMMM, YYYY") %>"
|
||||
---
|
||||
|
||||
# [[<% tp.file.title %>|<% moment(tp.file.title).format("MMMM Do, YYYY") %>]]
|
||||
|
||||
## 🕰️ Timeline
|
||||
|
||||
*A representation of the activities for the day.*
|
||||
|
||||
### ✨ Morning
|
||||
|
||||
- **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
|
||||
|
||||
- **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
|
||||
|
||||
- **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**
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- 🗓️ Week:: [[<% moment(tp.file.title).format("YYYY-[W]ww") %>]]
|
||||
- 🗂 Type:: #type/timeline/daily
|
||||
@@ -1,32 +0,0 @@
|
||||
---
|
||||
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::
|
||||
@@ -1,55 +0,0 @@
|
||||
<%*
|
||||
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)]]')
|
||||
}
|
||||
%>
|
||||
@@ -1,48 +0,0 @@
|
||||
<% 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::
|
||||
@@ -1,95 +0,0 @@
|
||||
<% 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
|
||||
@@ -1,80 +0,0 @@
|
||||
---
|
||||
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
|
||||
@@ -1,19 +0,0 @@
|
||||
<% 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)]]') %>::
|
||||
@@ -1,20 +0,0 @@
|
||||
<% 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]]
|
||||
@@ -1,39 +0,0 @@
|
||||
<% 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
|
||||
@@ -1,52 +0,0 @@
|
||||
<% 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]]
|
||||
@@ -1,41 +0,0 @@
|
||||
|
||||
# <% tp.file.title %>
|
||||
|
||||
## 📋 Agenda
|
||||
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
|
||||
## ✅ Tasks
|
||||
|
||||
- [ ]
|
||||
|
||||
|
||||
## 📚 Resources
|
||||
|
||||
-
|
||||
|
||||
|
||||
## 👥 Participants
|
||||
|
||||
-
|
||||
|
||||
|
||||
---
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type: #type/event/meeting
|
||||
- 🏁 Status: #status/upcoming
|
||||
- 💬 Topic(s):
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👤 Creator(s):
|
||||
- 🔮 Origin:
|
||||
- 🔗 Location:
|
||||
@@ -1,37 +0,0 @@
|
||||
---
|
||||
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
|
||||
@@ -1,33 +0,0 @@
|
||||
<% 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
|
||||
@@ -1,95 +0,0 @@
|
||||
<% 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
|
||||
@@ -1,40 +0,0 @@
|
||||
<% 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::
|
||||
@@ -1,48 +0,0 @@
|
||||
---
|
||||
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:
|
||||
@@ -1,104 +0,0 @@
|
||||
---
|
||||
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
|
||||
28
templates/People (Template).md
Normal file
28
templates/People (Template).md
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
uuid: <% tp.file.creation_date("YYYYMMDDHHmmss") %>
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
updated: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
alias:
|
||||
- "<% tp.file.title.substring(1).split(' ')[0] %>"
|
||||
- "<% tp.file.title.substring(1) %>"
|
||||
---
|
||||
|
||||
# [[<% tp.file.title %>|<% tp.file.title.substring(1) %>]]
|
||||
|
||||
## ℹ️ About
|
||||
|
||||
-
|
||||
|
||||
## ⏰ Reminders
|
||||
|
||||
-
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- 🗂 Type:: #type/people
|
||||
@@ -1,3 +0,0 @@
|
||||
## ℹ️ About
|
||||
|
||||
<% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## 📋 Agenda
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1,39 +0,0 @@
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- <% tp.file.include('[[Date (Attribute Template)]]') %>
|
||||
- <% tp.file.include('[[Rating (Attribute Template)]]') %>
|
||||
- <% tp.file.include('[[Instrument (Attribute Template)]]') %>
|
||||
- <% tp.file.include('[[Series (Attribute Template)]]') %>
|
||||
- <% tp.file.include('[[Number (Attribute Template)]]') %>
|
||||
- <% tp.file.include('[[Duration (Attribute Template)]]') %>
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- <% tp.file.include('[[Type (Attribute Template)]]') %>
|
||||
- 🚩 Priority::
|
||||
- 🧠 Mode::
|
||||
- 📼 Format::
|
||||
- 🎭 Genre::
|
||||
- 🌎 Areas::
|
||||
- 🙌 Team::
|
||||
- 🏁 Status::
|
||||
- 🏹 Skill::
|
||||
- 🛰 Platform::
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👤 Creator::
|
||||
- 🏛️ Publisher::
|
||||
- 🏬 Vendor::
|
||||
- 🚚 Est Delivery Date::
|
||||
- 👍 Recommended By::
|
||||
- ✨ Inspired By::
|
||||
- 🔮 Origin::
|
||||
- 🚀 POD::
|
||||
- 🗺️ Location::
|
||||
- 📚 Series::
|
||||
- 💼 Project::
|
||||
@@ -1,7 +0,0 @@
|
||||
- [ ] 🔎 #i/practiced/daily-review-protocol
|
||||
- [ ] Review email for 5 min
|
||||
- [ ] Review today's timeline
|
||||
- [ ] Review [GitHub notifications](https://github.com/notifications)
|
||||
- [ ] Update today's summary sections
|
||||
- [ ] Review Quick Capture System
|
||||
- [ ] Review schedule for tomorrow
|
||||
@@ -1,32 +0,0 @@
|
||||
---
|
||||
|
||||
## Additional Metadata
|
||||
|
||||
**🧰 Attributes**
|
||||
|
||||
- ⭐ Rating::
|
||||
- 🚩 Priority::
|
||||
- 📚 Series::
|
||||
|
||||
**🏷 Tags**
|
||||
|
||||
- 🗂 Type(s)::
|
||||
- 🧠 Mode(s)::
|
||||
- 🧊 EDM::
|
||||
- 📼 Format::
|
||||
- 🎭 Genre(s)::
|
||||
- 🌎 Area(s)::
|
||||
- 🙌 Team(s)::
|
||||
- 🏁 Status::
|
||||
- 🛰 Platform(s)::
|
||||
- 💬 Topic(s)::
|
||||
|
||||
**🖇️ Related Links**
|
||||
|
||||
- 👤 Creator(s)::
|
||||
- 🏬 Vendor::
|
||||
- 👍 Recommended By::
|
||||
- ✨ Inspired By::
|
||||
- 🔮 Origin::
|
||||
- 🚀 POD(s)::
|
||||
- 🗺️ Location(s)::
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
uuid: <% tp.file.creation_date("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") %>
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
## 🌮 Miscellaneous
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## 📝 Notes
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## 👥 Participants
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## 📤 Queue
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## 📚 Resources
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1,10 +0,0 @@
|
||||
## 🔎 Retrospective
|
||||
|
||||
### What went well?
|
||||
-
|
||||
|
||||
### What could be improved?
|
||||
-
|
||||
|
||||
### Other things worth noting?
|
||||
-
|
||||
@@ -1,6 +0,0 @@
|
||||
- [ ] 💾 #i/practiced/save-point-protocol
|
||||
- [ ] Habit: Drink water
|
||||
- [ ] Silence (1 min)
|
||||
- [ ] Update timeline as needed
|
||||
- [ ] Reflect on this morning
|
||||
- [ ] 回光返照
|
||||
@@ -1,14 +0,0 @@
|
||||
- [ ] 🌙 #i/practiced/shutdown-ritual
|
||||
- [ ] Silence (1 min)
|
||||
- [ ] Review financial system
|
||||
- [ ] Fill out [[Summary — Section Template]]
|
||||
- [ ] Reflect on today
|
||||
- [ ] 回光返照
|
||||
- [ ] 二十法
|
||||
- [ ] 歡心唸
|
||||
- [ ] 懺悔
|
||||
- [ ] 供養佛菩薩本尊咒
|
||||
- [ ] 回向
|
||||
- [ ] Use Theragun on muscles
|
||||
- [ ] Acknowledge and appreciate how much rest I'm about to get for the night
|
||||
- [ ] Set an intention for tomorrow
|
||||
@@ -1,54 +0,0 @@
|
||||
- 🌤️ #i/practiced/startup-ritual (30)
|
||||
- [ ] Weigh myself ^a860e8
|
||||
- [ ] Habit: Drink water
|
||||
- [ ] Silence
|
||||
- [ ] 成就咒(七遍)
|
||||
- [ ] 體著無明傷生咒(七遍)
|
||||
- [ ] 鞋底解脫咒(七遍)
|
||||
- [ ] 用水咒(七遍)
|
||||
- [ ] 我要今生了勝脱死得大成就。
|
||||
- [ ] 我要普渡六道眾生和幫他們脱離這個痛苦的六道輪迴。
|
||||
- [ ] 戒律
|
||||
- [ ] 三聚淨戒
|
||||
- [ ] 十善
|
||||
- [ ] 四無量心
|
||||
- [ ] 六度
|
||||
- [ ] 八基正見
|
||||
- [ ] 大悲我母菩提心
|
||||
- [ ] 菩薩應照菩提心
|
||||
- [ ] 二十法
|
||||
- [ ] 五戒
|
||||
- [ ] 咒語
|
||||
- [ ] 南無第三世多杰羌佛
|
||||
- [ ] 多杰羌佛心咒
|
||||
- [ ] 百字明咒
|
||||
- [ ] 滅罪咒
|
||||
- [ ] 心經
|
||||
- [ ] 大悲咒
|
||||
- [ ] 佛書
|
||||
- [ ] "暇滿殊勝海心髓"
|
||||
- [ ] "最勝菩提空行海心髓"
|
||||
- [ ] 回光返照
|
||||
- [ ] 你的正業是什麼?
|
||||
- [ ] 他非即我非,同體名大悲。
|
||||
- [ ] 我永遠有一個慚愧的心,一個忍辱的心。
|
||||
- [ ] “忍辱是第一道,勝過一切,能忍辱,則能真正成道”
|
||||
- [ ] “人身難得、死亡無常、輪迴痛苦、因果必報、正法現前、斷我修持、自救救他”
|
||||
- [ ] “修行就是要修徹底,不徹底,就不能大成就”
|
||||
- [ ] “迷時師渡我,悟時我自度”
|
||||
- [ ] “我是因地菩薩,今生必須成為大聖,我必須以忍辱負重為主,去掉自私的驕傲心行,要認清自己造過無數的罪業,無論我現在身份地位多高,也是與普通人一樣毫無價值的臭皮囊,同樣是在死亡道上前進的一人,所以我本來就是一個很普通的人、黑業之人,因此我必須是所有眾生的低下服務人員,為他們效力這是我應該的,我沒有半點比他們高貴的地方.”
|
||||
- [ ] Warm-up Exercise
|
||||
- [ ] 10x Jumping Jacks
|
||||
- [ ] 1x Sun Salutation
|
||||
- [ ] 3x Downdog / Plank Shifts
|
||||
- [ ] 1x Ragdoll
|
||||
- [ ] 1x Twist Left / Right
|
||||
- [ ] 1x Rollup with Gratitude
|
||||
- [ ] Plan the day
|
||||
- [ ] Review today's calendar
|
||||
- [ ] Establish...
|
||||
- [ ] When the day starts
|
||||
- [ ] When there's time for lunch
|
||||
- [ ] When the day ends
|
||||
- [ ] Review linked mentions
|
||||
- [ ] Review weekly note
|
||||
@@ -1,3 +0,0 @@
|
||||
## 📑 Summary
|
||||
|
||||
<% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## ✅ Tasks
|
||||
|
||||
- [ ] <% tp.file.cursor() %>
|
||||
@@ -1,3 +0,0 @@
|
||||
## 🏹 Training
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
@@ -1 +0,0 @@
|
||||
[[<% tp.file.cursor() %> on <% tp.date.now() %>]]
|
||||
@@ -1 +0,0 @@
|
||||
🎯 Success Criteria
|
||||
@@ -1 +0,0 @@
|
||||
[[Sync with <% tp.file.cursor() %> on <% tp.date.now() %>]]
|
||||
@@ -1,6 +1,6 @@
|
||||
<% tp.file.include('[[Frontmatter (Section Template)]]') %>
|
||||
|
||||
# <% tp.file.title %>
|
||||
# [[<% tp.file.title %>]]
|
||||
|
||||
<% tp.file.cursor() %>
|
||||
|
||||
@@ -8,4 +8,4 @@
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- <% tp.file.include('[[Type (Attribute Template)]]') %>::
|
||||
- 🗂 Type:: #type/note
|
||||
47
templates/Weekly Note (Template).md
Normal file
47
templates/Weekly Note (Template).md
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
uuid: <% tp.date.now("YYYYMMDDHHmmss") %>
|
||||
created: <% tp.file.creation_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
updated: <% tp.file.last_modified_date("YYYY-MM-DDTHH:mm:ss") %>
|
||||
alias:
|
||||
---
|
||||
|
||||
# [[<% tp.file.title %>]]
|
||||
|
||||
|
||||
## 📋 Tasks
|
||||
|
||||
- [ ] Review calendar for the week
|
||||
- [ ] Determine what outcomes are relevant for this week
|
||||
|
||||
## 📝 Notes
|
||||
|
||||
### ⛰ Obstacles
|
||||
|
||||
_What challenges presented themselves this week?_
|
||||
|
||||
-
|
||||
|
||||
### 🎒 Lessons Learned
|
||||
|
||||
_What would I like to do better next week?_
|
||||
|
||||
-
|
||||
|
||||
### 📖 Miscellaneous
|
||||
|
||||
-
|
||||
|
||||
## 🗓️ Daily Notes
|
||||
|
||||
```dataview
|
||||
LIST
|
||||
FROM #type/timeline/daily
|
||||
WHERE week = [[<%tp.date.now("YYYY")%>-W<%tp.date.now("ww")%>]]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📇 Additional Metadata
|
||||
|
||||
- 🗂 Type:: #type/timeline/weekly
|
||||
- 🗓️ Week:: <% tp.date.now("ww") %>
|
||||
Reference in New Issue
Block a user