garden notes

[[concept]]

Garden notes are processed notes in my my note-taking system that are not Lecture Notes, project notes, or daily notes. There are two sub-types of garden notes: “plants” and “not plants”.

Plants are notes that use my note maturity system. The main types of notes that fall into this category are

Not plants are garden notes that fall outside of the maturity pipeline. Growth and editing are irrelevant for these.

  • seeds are informal but complete notes that I do not intend to alter and which may prompt the creation of new plant notes. thought notes and Blog posts are examples of seeds.
  • stones are like literature notes, but also include other types of media like films and art pieces. Also people and entities (organizations, companies, etc).

Lesser-used non-plants are

  • Signposts are either purely navigational or serve solely as structural supports for the public-facing component of my garden. The Topics page is an example
  • Greenhouses are close to what people call maps of content/MOCs. ex: any of the notes listed in Topics, my quotes list

Topics

= this.theme

References

References

See Also

Mentions

Mentions

const modules = await cJS()
 
const COLUMNS = [  
	{ id: "Name", value: page => page.$link },  
	{ id: "Last Modified", value: page => modules.dateTime.getLastMod(page) },
];  
  
return function View() {  
	const current = dc.useCurrentFile();
// Selecting `#game` pages, for example. 
	let queryString = `@page and linksto(${current.$link})`;
	let pages = dc.useQuery(queryString);
	
	// check types
	pages = pages.filter( (p) => !modules.typeCheck.checkAll(p, current) ).sort()
	
	
	return <dc.Table columns={COLUMNS} rows={pages} paging={20}/>;  
}  
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>
}