From 12e012609b7e4fe94f36e106aee653260eeb6cf5 Mon Sep 17 00:00:00 2001 From: Steph Ango <10565871+kepano@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:05:40 -0700 Subject: [PATCH] 2023-09-14 13:05:39 --- Categories/Evergreen.md | 15 ++++++++ Categories/Journal.md | 14 ++++++++ Categories/Projects.md | 16 +++++++++ ...as into objects that you can manipulate.md | 36 +++++++++++++++++++ Readme.md | 2 +- Catan.md => References/Catan.md | 0 6 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 Categories/Evergreen.md create mode 100644 Categories/Journal.md create mode 100644 Categories/Projects.md create mode 100644 Notes/Evergreen notes turn ideas into objects that you can manipulate.md rename Catan.md => References/Catan.md (100%) diff --git a/Categories/Evergreen.md b/Categories/Evergreen.md new file mode 100644 index 0000000..3ac0df3 --- /dev/null +++ b/Categories/Evergreen.md @@ -0,0 +1,15 @@ +--- +tags: + - categories +--- +An evergreen note is an idea. It doesn't have to be something that I agree with, but something is [[Composability|composable]]. In a way, every idiom is a kind of evergreen idea. + +```dataview +table without id + file.link as Name, + created as Created +from #0🌲 +where + !contains(file.name,"Template") +sort created desc +``` \ No newline at end of file diff --git a/Categories/Journal.md b/Categories/Journal.md new file mode 100644 index 0000000..281adbc --- /dev/null +++ b/Categories/Journal.md @@ -0,0 +1,14 @@ +--- +tags: + - categories +--- + +```dataview +table without id + file.link as Entry, + created as Created +from #journal +where + !contains(file.name,"Template") +sort created desc +``` \ No newline at end of file diff --git a/Categories/Projects.md b/Categories/Projects.md new file mode 100644 index 0000000..b47db5f --- /dev/null +++ b/Categories/Projects.md @@ -0,0 +1,16 @@ +--- +tags: + - categories +--- + +```dataview +table + type as Type, + year as Year, + status as Status, + url as URL +where + contains(category,[[Projects]]) and + !contains(file.name,"Template") +sort year desc +``` \ No newline at end of file diff --git a/Notes/Evergreen notes turn ideas into objects that you can manipulate.md b/Notes/Evergreen notes turn ideas into objects that you can manipulate.md new file mode 100644 index 0000000..efeef1d --- /dev/null +++ b/Notes/Evergreen notes turn ideas into objects that you can manipulate.md @@ -0,0 +1,36 @@ +--- +category: + - "[[Clippings]]" +created: 2023-09-14 +url: https://stephango.com/evergreen-notes +author: + - "[[Steph Ango]]" +published: 2022-09-16 +topics: + - "[[Evergreen]]" +tags: + - 0🌲 + - clippings +--- +Using [[evergreen]] notes in Obsidian has been the most impactful change to how I think. + +Evergreen notes allow you to think about complex ideas by building them up from smaller composable ideas. + +My evergreen notes have titles that distill each idea in a succinct and memorable way, that I can use in a sentence. For example: + +- [[A company is a superorganism]] +- [[All input is error]] +- [[Calmness is a superpower]] +- [[Cross the chasm]] +- [[Everything is a remix]] +- [[Writing is telepathy]] +- [[You have no obligation to your former self]] +- etc + +You don’t need to agree with the idea for it to become an evergreen note. Evergreen notes can be very short. + +I have an evergreen note called [[Creativity is combinatory uniqueness]] that is built on top of another evergreen note: + +> If you believe [[Everything is a remix]], then creativity is defined by the uniqueness and appeal of the combination of elements. + +Evergreen notes turn ideas into objects. By turning ideas into objects you can manipulate them, combine them, stack them. You don’t need to hold them all in your head at the same time. \ No newline at end of file diff --git a/Readme.md b/Readme.md index c025f5a..2554017 100644 --- a/Readme.md +++ b/Readme.md @@ -25,7 +25,7 @@ Some of my templates depend on plugins I use: ### Folders -I use very few folders. My personal notes are primarily in the root, these are my journal entries and personal ideas. That way I know that everything in the root is something I came up with. I do not use the file explorer much for navigation, instead I navigate mostly using the quick switcher or clicking links. +I use very few folders. My personal notes are primarily in the root, these are my [[journal]] entries, [[evergreen]] notes, and personal ideas. That way I know that everything in the root is something I came up with. I do not use the file explorer much for navigation, instead I navigate mostly using the quick switcher or clicking links. If you want to use this vault as a starting point the **Categories** and **Templates** folders contain everything that you need. diff --git a/Catan.md b/References/Catan.md similarity index 100% rename from Catan.md rename to References/Catan.md