up:: ACCESS Note Organization Method x:: ∑ This library's ACCESS workflow summary , This library's ACCESS folder structure and hybrid note-taking method

Usage principle

You should be able to click on a link below to enter a file and directly create new related resource files under that file. This can ensure that no isolated files are created to the greatest extent, so that at least one link is generated between notes.

Atlas

Calendar

Cards

Extras

  • Putting externally referenced pdf and other source files into the obsidian library can indeed achieve the effect of two-way links, but it will make the size of the library expand sharply, which is not conducive to packaging and sending to others. However, let’s try to put them in first and consider adjusting them later. 2022-10-01 update, it is more convenient to put the pictures directly in the image bed.
  • ∑ Template file creation entry
  • billfish image and video management

Sources

Spaces

All MOC files in PARA under Spaces

Miscellaneous

// Get files with specified tags in the specified folder
const filter = '"Spaces" and #MOC'
// Group by folder, retrieve the tags, modification time and other related information of all files in the folder
const groups =  dv.pages(`${filter}`).groupBy(p => p.file.folder)
for (let group of groups) {
	dv.header(4, group.key);
	dv.table(["Name", "Creation Date", "Modification Date"],
		group.rows
			.sort(k => k.file.name, 'asc')
			.map(k => [k.file.link, k.file.cday, k.file.mday]))
}