class | created | modified | id |
---|---|---|---|
Atomic Note |
2024-05-25 |
2024-06-16 |
0 |
Caution
GitHub is unable to render the Obsidian custom syntax, especially DataView, so I recommend downloading this repository and opening it in Obsidian.
Welcome to my Personal System, which is an Obsidian Vault. Its purpose is to organize my life and bring order to chaos.
My system is organized around the Johnny Decimal system, which provides a defined structure.
[!info]- This area contains information about the system and is used by the system to maintain its functionality.
dv.list(
dv
.pages('"00-09 System"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);
[!info]- This area contains information independent collections such as atomic notes, peoples, places, etc.
dv.list(
dv
.pages('"10-19 Atomic"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);
[!info]- This area contains information related to finances.
dv.list(
dv
.pages('"20-29 Finances"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);
[!info]- This area contains information related to entertainment.
dv.list(
dv
.pages('"30-39 Entertainment"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);
[!info]- Technology is a major component of my life, so I have dedicated an entire area to it.
dv.list(
dv
.pages('"40-49 Technology"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);
[!info]- This area contains information related to my personal life.
dv.list(
dv
.pages('"50-59 Personal"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);
[!info]- This area contains resources related to my professional life but not included in work systems.
dv.list(
dv
.pages('"60-69 Professional"')
.where(a => a.class == "JD.Category")
.where(a => a.file.name != "Johnny Decimal Category") // Needed to exclude the Obsidian template
.sort(a => a.file.name)
.map(a => a.file.link + " - " + a.description)
);