~ Home Pro

The atlas is a folder and a headspace dedicated to ideas and knowledge.

Below are the most recently created notes in the Atlas folder.

TABLE WITHOUT ID
	choice(contains(file.path, "Atlas/Dots/Things"), 
		"๐Ÿงฉ " + file.link,
	choice(contains(file.path, "Atlas/Dots/Statements"), 
		"๐Ÿ“ฃ " + file.link,
	choice(contains(file.path, "Atlas/Dots/People"), 
		"๐Ÿ‘ค " + file.link,
	choice(contains(file.path, "Atlas/Dots/Quotes"),
		"๐Ÿ’ฌ " + file.link,
	choice(contains(file.path, "Atlas/Dots/Questions"),
		"โ“ " + file.link,
	choice(contains(file.path, "Atlas/Dots/x"),
		"๐” " + file.link,
	choice(contains(file.path, "Atlas/Maps"),
		"๐Ÿ—บ๏ธ " + file.link,
    choice(contains(file.path, "Atlas/Sources/Books"), 
        "๐Ÿ“š " + file.link,
    choice(contains(file.path, "Atlas/Sources/Clippings"), 
        "โœ‚ " + file.link,
    choice(contains(file.path, "Atlas/Sources/Courses"), 
        "โ›ณ๏ธ " + file.link,
    choice(contains(file.path, "Atlas/Sources/Games"),
        "๐ŸŽฎ " + file.link,
    choice(contains(file.path, "Atlas/Sources/Papers"),
        "๐Ÿ”ฌ " + file.link,
    choice(contains(file.path, "Atlas/Sources/Shows"),
        "๐Ÿ“บ " + file.link,
    choice(contains(file.path, "Atlas/Sources/Songs"),
        "๐ŸŽต " + file.link,
    choice(contains(file.path, "Atlas/Sources/Talks"),
        "๐ŸŽค " + file.link,
    choice(contains(file.path, "Atlas/Sources/x"),
        "๐™“ " + file.link,
	file.link)))))))))))))))) as "Atlas Notes",
    
    regexreplace(file.path, ".*/([^/]+)/[^/]+$", "$1") as "Parent Folder",
	
	length(file.inlinks) as "Links"
 
 
FROM "Atlas"
 
SORT file.ctime desc
 
LIMIT 77

Back to Home Pro