Tuesday, 17 March 2026

2026 / Q1 / March / Week 12

2026-03-16 | 2026-03-17 | 2026-03-18

🌅 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


📝 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.");
}

🔗 Context

Focus for Next Week


✍️ 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("Assets")
)
 
for (let i = 0; i < noOfNotes; i++) {
	const random = Math.floor(Math.random() * files.length)
	const note = files[random]
	dv.paragraph('[[' + note.basename + ']]')
}