~ Efforts

Keep your priorities in order. Quickly adjust your bandwidth as needed. Rerank often.

This view shows your top-ranked projects, where the rank is above 2, along with their current level of intensity.

TABLE WITHOUT ID
	choice(contains(file.path, "Efforts/Projects/Active"),
		"⚗️ " + file.link,
	choice(contains(file.path, "Efforts/Projects/Simmering"),
		"⚗️ " + file.link,
		choice(contains(file.path, "Efforts/Projects/Sleeping"),
		"⚗️ " + file.link,
	file.link))) as "Top Ranked Projects",
 
	rank as "Rank",
	
    regexreplace(file.path, ".*/([^/]+)/[^/]+$", "$1") as "Level of Intensity"
	
 
FROM "Efforts/Projects"
 
WHERE rank > 2
 
SORT rank desc
 
LIMIT 17

Back to Efforts