Friday, 27 March 2026
❮ 2026-03-26 | 2026-03-27 | 2026-03-28 ❯
🌅 Morning
Mood:
Energy:
Top 3 priorities: 1. 2. 3.
Intention for today:
⚙️ Habits
table without id
mood + " #_/habits" AS "🌄",
prayer AS "🙏",
choice(meditation,"✅","❌") AS "🧘",
choice(exercise,"✅","❌") AS "🏃",
choice(study,"✅","❌") AS "📚",
choice(stretch,"✅","❌") AS "🤸"
from "06 - Journal/Daily"
where file.name = this.file.name📌 Tasks
Tasks of the day
name: '' filter: "(!#Work) & due before: tomorrow" sorting: - date - priority group: true
📝 Log
🌙 Reflection
Day rating (1–10):
Wins (even small):
Challenges:
What I learned:
- Learning::
Gratitude:
- Gratitude::
Energy check:
- Exciting::
- Draining::
Something good I did:
- Good::
Favorite moment:
One thing to improve tomorrow:
🧠 Resurface
// Gratitude + Learning resurfacing
let gratitudes = [];
let learnings = [];
dv.pages()
.where(p => p.gratitude || p.learning)
.forEach(p => {
if (p.gratitude) {
dv.array(p.gratitude).forEach(g => {
gratitudes.push({message: g, page: p});
});
}
if (p.learning) {
dv.array(p.learning).forEach(l => {
learnings.push({message: l, page: p});
});
}
});
if (gratitudes.length && learnings.length) {
let g = gratitudes[Math.floor(Math.random()*gratitudes.length)];
let l = learnings[Math.floor(Math.random()*learnings.length)];
dv.paragraph(
"**Gratitude:** " + g.message + " (" + g.page.file.link + ")" +
"<br>**Learning:** " + l.message + " (" + l.page.file.link + ")"
);
} else {
dv.paragraph("Add `Gratitude::` and `Learning::` entries to see insights here.");
}Goals for this week:
Link to original
- Research about the three blogs I already have in draft and finish them
- Read about writing process by MIT.
- publish a blog post about writing process my own version
✍️ Free Writing
📂 Notes Created Today
LIST WHERE file.cday = date(this.file.name)🔀 Random Notes
const noOfNotes = 3
const files = app.vault.getFiles().filter(f =>
!f.path.includes("Journal") &&
!f.path.includes("Templates") &&
!f.path.includes("Meta") &&
!f.path.includes("Maps of Content")
)
for (let i = 0; i < noOfNotes; i++) {
const random = Math.floor(Math.random() * files.length)
const note = files[random]
dv.paragraph('[[' + note.basename + ']]')
}