private garden

[[concept]]

A private (digital) garden is a (nerdy) “note-taking system”. I use these terms interchangeably as catch-alls for popular knowledge and thought workflows that generally follow these 4 principles There are many different names for the same types of system that I describe here, some more specific/ personalized (eg. Zettelkasten and evergreen notes) and some broader (eg. PKMS). Ultimately, I use garden terminology because I like it the most. :

my digital garden is also a zettelkasten and my digital garden is also a personal knowledge management system. I use private garden because digital gardening is a squishy concept, and it seems a natural extension to use the same terminology.

Although closely related, Private gardening is a note-taking system. Public gardening is an information-sharing philosophy.

Examples of private gardens

Mentions

Mentions

TABLE file.mday as "Last Modified"
FROM [[]]
 
FLATTEN choice(contains(artist, this.file.link), 1, "") + choice(contains(author, this.file.link), 1, "") + choice(contains(director, this.file.link), 1, "") + choice(contains(source, this.file.link), 1, "") as direct_source
 
WHERE !direct_source
SORT file.name ASC
SORT file.mday DESC
const { dateTime } = await cJS()
 
return function View() {
	const file = dc.useCurrentFile();
	return <p class="dv-modified">Created {dateTime.getCreated(file)}     ֍     Last Modified {dateTime.getLastMod(file)}</p>
}