2024 Week 16

↶ Week 15 | Week 17 ↷

Memos

Work Log

Overview

Week Statistics

const daysPath = dv.current().file.folder;
 
const attributes = {
	'panic': {
		label: 'Panic',
		average: 10,
	},
	'money-spent': {
		label: 'Money Spent',
		backgroundColor: 'rgba(85, 174, 229, 0.2)',
		borderColor: 'rgba(85, 174, 229, 1)',
		average: 20,
	},
	'prayer': {
		label: 'Prayer',
		backgroundColor: 'rgba(255, 211, 101, 0.2)',
		borderColor: 'rgba(255, 211, 101, 1)',
		average: 5,
	},
	'steps': {
		label: 'Steps',
		backgroundColor: 'rgba(141, 82, 188, 0.2)',
		borderColor: 'rgba(141, 82, 188, 1)',
		average: 10000,
	},
};
 
const date = "2024-04-17";
 
customJS.DvCharts.renderWeeklyChart({
	dv,
	context: this,
	daysPath: '00-09 System/03 Journal/2024/24.04 April',
	attributes,
	type: 'average',
	date
})
TABLE WITHOUT ID
	link(file.name) as "Day",
	feeling AS "💭",
	money-spent AS "💸",
	panic AS "🌪️",
	prayer AS "🙏",
	steps AS "👣"
FROM "00-09 System/03 Journal"
WHERE week = [[24.W16]]
SORT file.name ASC

Habits

TABLE WITHOUT ID
	file.link AS "Day",
	anki AS "📇",
	exercise AS "🏋️",
	martial-arts AS "🥋",
	reading AS "👓",
	shower AS "🚿",
	writing AS "✍"
FROM "00-09 System/03 Journal"
WHERE week = [[24.W16]]
SORT file.name ASC

Learned Words

dv.table(
	["Learned Word", "Meaning"],
	dv.pages('"00-09 System/03 Journal"')
	.filter(p => p["Learned Word"] && p.week.path == "24.W16")
	.sort(p => dv.date(p.file.name), 'asc')
	.flatMap(p =>
		Array.from(
			{
				length: Math.floor(
					p["Learned Word"].length / 2
				)
			},
			(_, i) => [
				`${'**'}${p["Learned Word"][i * 2]}${'**'}`,
				p["Learned Word"][(i * 2) +1]
			]
		)
	)
)

Toggl

SUMMARY FROM 2024-04-14 TO 2024-04-20