From 313efaafd6dfc08fb547f63a7dd9d79cbef28d52 Mon Sep 17 00:00:00 2001 From: Steph Ango <10565871+kepano@users.noreply.github.com> Date: Wed, 13 Sep 2023 14:48:02 -0700 Subject: [PATCH] 2023-09-13 14:48:02 --- .obsidian/types.json | 4 ++- 2023 Japan Trip.md | 12 +++++++ Daily/2023-09-30.md | 15 +++++++++ Places.md | 3 +- Readme.md | 4 ++- References/Fushimi Inari.md | 18 ++++++++++ References/Kyoto.md | 55 +++++++++++++++++++++++++++++++ References/Sci-fi.md | 13 ++++++++ References/The Machine Stops.md | 2 ++ Templates/City Template.md | 31 +++++++++-------- Templates/Conference Template.md | 2 +- Templates/Event Template.md | 2 +- Templates/Genre Template.md | 1 + Templates/Hosting Template.md | 2 +- Templates/Meditation Template.md | 2 +- Templates/Meeting Template.md | 2 +- Templates/Place Template.md | 2 +- Templates/Place Type Template.md | 4 ++- Templates/Real Estate Template.md | 2 +- Templates/Restaurant Template.md | 2 +- Templates/Trip Template.md | 2 +- Trips.md | 16 +++++++++ 22 files changed, 169 insertions(+), 27 deletions(-) create mode 100644 2023 Japan Trip.md create mode 100644 Daily/2023-09-30.md create mode 100644 References/Fushimi Inari.md create mode 100644 References/Kyoto.md create mode 100644 References/Sci-fi.md diff --git a/.obsidian/types.json b/.obsidian/types.json index cb09169..80b220f 100644 --- a/.obsidian/types.json +++ b/.obsidian/types.json @@ -45,6 +45,8 @@ "variety": "text", "price": "number", "author": "multitext", - "published": "date" + "published": "date", + "where": "multitext", + "loc": "multitext" } } \ No newline at end of file diff --git a/2023 Japan Trip.md b/2023 Japan Trip.md new file mode 100644 index 0000000..3300507 --- /dev/null +++ b/2023 Japan Trip.md @@ -0,0 +1,12 @@ +--- +category: + - "[[Trips]]" +start: 2023-09-12 +end: 2023-09-30 +loc: + - "[[Kyoto]]" + - "[[Japan]]" +tags: + - trips +--- + diff --git a/Daily/2023-09-30.md b/Daily/2023-09-30.md new file mode 100644 index 0000000..ff41ba4 --- /dev/null +++ b/Daily/2023-09-30.md @@ -0,0 +1,15 @@ +--- +tags: + - daily +--- +## Notes + +```dataview +list +where + !contains(file.tags, "daily") and + contains(file.outlinks, this.file.link) or + contains(string(file.frontmatter), string(dateformat(this.file.day,"yyyy-MM-dd"))) +sort file.ctime asc +limit 50 +``` \ No newline at end of file diff --git a/Places.md b/Places.md index ba5ee16..26c5f07 100644 --- a/Places.md +++ b/Places.md @@ -9,11 +9,12 @@ maxZoom:15 height:50% ``` +## Places ```dataview table without id file.link as Place, - location as Location, + loc as Location, type as Type, rating as Rating where diff --git a/Readme.md b/Readme.md index 39d2d35..1947e4d 100644 --- a/Readme.md +++ b/Readme.md @@ -30,9 +30,11 @@ I use very few folders. My personal notes are primarily in the root, these are m - **Attachments** for images, PDFs, etc - **Clippings** for articles and other pages captured with my [web clipper](https://stephango.com/obsidian-web-clipper) written by other people - **Daily** for my daily notes, all named `YYYY-MM-DD.md` -- **referencess** for anything that refers to something that exists outside of my vault, e.g. books, movies, places, people, podcasts, etc. +- **References** for anything that refers to something that exists outside of my vault, e.g. books, movies, places, people, podcasts, etc. - **Templates** for templates. This is actually nested under "Meta" in my personal vault, but I've moved it to the top-level for clarity. Meta also contains my personal style guide and other random things that are about the vault. +I do not use the file explorer much for navigation. I primarily navigate using the quick switcher (`Cmd + O`). + ## Style guide ### Templates and metadata diff --git a/References/Fushimi Inari.md b/References/Fushimi Inari.md new file mode 100644 index 0000000..3e645cf --- /dev/null +++ b/References/Fushimi Inari.md @@ -0,0 +1,18 @@ +--- +category: + - "[[Places]]" +tags: + - places +type: + - "[[Shrines]]" + - "[[Parks]]" +loc: + - "[[Kyoto]]" + - "[[Japan]]" +rating: 7 +created: 2023-09-13 +last: +location: + - 135.7692576 + - 34.9689499 +--- diff --git a/References/Kyoto.md b/References/Kyoto.md new file mode 100644 index 0000000..95eca21 --- /dev/null +++ b/References/Kyoto.md @@ -0,0 +1,55 @@ +--- +category: + - "[[Places]]" +type: + - "[[Cities]]" +tags: + - places + - cities +loc: + - "[[Japan]]" +location: + - 35.021041 + - 135.7556075 +rating: +created: 2023-09-12 +last: +where: +--- +## Trips + +```dataview +table without id + file.link as Trip, + start as Start, + end as End +where + contains(category, [[Trips]]) and + contains(loc, this.file.link) +sort file.name desc +``` + +## Map + +```leaflet +id: kyoto +minZoom: 10 +maxZoom: 20 +defaultZoom: 12 +linksTo: [[Kyoto]] +height: 50% +coordinates: [[Kyoto]] +``` + +## Places + +```dataview +table without id + file.link as Place, + rating as Rating, + type as Type +where + contains(category, [[Places]]) and + contains(loc, this.file.link) +sort rating desc +``` \ No newline at end of file diff --git a/References/Sci-fi.md b/References/Sci-fi.md new file mode 100644 index 0000000..922740b --- /dev/null +++ b/References/Sci-fi.md @@ -0,0 +1,13 @@ +--- +tags: + - genres +--- +```dataview +table without id + file.link as Title, + category as Category, + rating as Rating +where + contains(genre,this.file.link) +sort rating desc +``` \ No newline at end of file diff --git a/References/The Machine Stops.md b/References/The Machine Stops.md index 5641943..9f0667c 100644 --- a/References/The Machine Stops.md +++ b/References/The Machine Stops.md @@ -20,6 +20,8 @@ tags: ## Quotes +Replace "accumulations" with "notifications" + > There were buttons and switches everywhere — buttons to call for food for music, for clothing. There was the hot-bath button, by pressure of which a basin of (imitation) marble rose out of the floor, filled to the brim with a warm deodorized liquid. There was the cold-bath button. There was the button that produced literature. And there were of course the buttons by which she communicated with her friends. The room, though it contained nothing, was in touch with all that she cared for in the world > > Vashti’s next move was to turn off the isolation switch, and all the accumulations of the last three minutes burst upon her. The room was filled with the noise of bells, and speaking-tubes. What was the new food like? Could she recommend it? Has she had any ideas lately? Might one tell her one’s own ideas? Would she make an engagement to visit the public nurseries at an early date? — say this day month. diff --git a/Templates/City Template.md b/Templates/City Template.md index d1df48f..046518e 100644 --- a/Templates/City Template.md +++ b/Templates/City Template.md @@ -6,10 +6,11 @@ type: tags: - places - cities -location: +loc: rating: created: {{date}} last: +location: --- ## Trips @@ -20,29 +21,31 @@ table without id end as End where contains(category, [[Trips]]) and - contains(location, this.file.link) + contains(loc, this.file.link) sort file.name desc ``` +## Map + +```leaflet +id: kyoto +minZoom: 10 +maxZoom: 20 +defaultZoom: 12 +linksTo: [[Kyoto]] +height: 50% +coordinates: [[Kyoto]] +``` + ## Places -```leaflet -id: madrid -minZoom: 10 -maxZoom: 20 -defaultZoom: 12 -linksTo: [[Madrid]] -height: 50% -coordinates: [[Madrid]] -``` - ```dataview table without id - file.link as City, + file.link as Place, rating as Rating, type as Type where contains(category, [[Places]]) and - contains(location, this.file.link) + contains(loc, this.file.link) sort rating desc ``` \ No newline at end of file diff --git a/Templates/Conference Template.md b/Templates/Conference Template.md index 7f8abe6..c10952e 100644 --- a/Templates/Conference Template.md +++ b/Templates/Conference Template.md @@ -5,7 +5,7 @@ type: "[[Conferences]]" series: start: end: -location: +loc: tags: - events - conferences diff --git a/Templates/Event Template.md b/Templates/Event Template.md index 4b25487..3dce575 100644 --- a/Templates/Event Template.md +++ b/Templates/Event Template.md @@ -6,5 +6,5 @@ tags: type: start: end: -location: +loc: --- diff --git a/Templates/Genre Template.md b/Templates/Genre Template.md index f0ecacc..922740b 100644 --- a/Templates/Genre Template.md +++ b/Templates/Genre Template.md @@ -5,6 +5,7 @@ tags: ```dataview table without id file.link as Title, + category as Category, rating as Rating where contains(genre,this.file.link) diff --git a/Templates/Hosting Template.md b/Templates/Hosting Template.md index 6718c9a..8c93e15 100644 --- a/Templates/Hosting Template.md +++ b/Templates/Hosting Template.md @@ -3,7 +3,7 @@ category: - "[[Hosting]]" start: end: -location: +loc: people: [] tags: - hosting diff --git a/Templates/Meditation Template.md b/Templates/Meditation Template.md index c94596c..044b346 100644 --- a/Templates/Meditation Template.md +++ b/Templates/Meditation Template.md @@ -6,7 +6,7 @@ tags: - journal - meditation created: {{date}} -location: [] +loc: [] topics: [] --- diff --git a/Templates/Meeting Template.md b/Templates/Meeting Template.md index 573cd7e..9daed56 100644 --- a/Templates/Meeting Template.md +++ b/Templates/Meeting Template.md @@ -4,7 +4,7 @@ category: type: [] date: {{date}} org: -location: +loc: people: [] topics: [] tags: diff --git a/Templates/Place Template.md b/Templates/Place Template.md index 514c45a..7143c2c 100644 --- a/Templates/Place Template.md +++ b/Templates/Place Template.md @@ -4,7 +4,7 @@ category: tags: - places type: [] -location: [] +loc: [] rating: created: {{date}} last: {{date}} diff --git a/Templates/Place Type Template.md b/Templates/Place Type Template.md index 099df9b..f02eded 100644 --- a/Templates/Place Type Template.md +++ b/Templates/Place Type Template.md @@ -12,11 +12,13 @@ defaultZoom: 3 height: 50% ``` +## Places + ```dataview table without id file.link as Place, rating as Rating, - location as Location + loc as Location where contains(category, [[Places]]) and contains(type, this.file.link) diff --git a/Templates/Real Estate Template.md b/Templates/Real Estate Template.md index 452b9e5..4d14bd3 100644 --- a/Templates/Real Estate Template.md +++ b/Templates/Real Estate Template.md @@ -12,6 +12,6 @@ year: price: sqft: lotsqft: -location: [] +loc: [] status: --- diff --git a/Templates/Restaurant Template.md b/Templates/Restaurant Template.md index e15d8b3..59c9507 100644 --- a/Templates/Restaurant Template.md +++ b/Templates/Restaurant Template.md @@ -3,7 +3,7 @@ category: - "[[Places]]" type: - "[[Restaurants]]" -location: +loc: rating: created: {{date}} last: {{date}} diff --git a/Templates/Trip Template.md b/Templates/Trip Template.md index 4ed9eeb..14da59a 100644 --- a/Templates/Trip Template.md +++ b/Templates/Trip Template.md @@ -3,7 +3,7 @@ category: - "[[Trips]]" start: end: -location: +loc: tags: - trips --- diff --git a/Trips.md b/Trips.md index e69de29..31ac264 100644 --- a/Trips.md +++ b/Trips.md @@ -0,0 +1,16 @@ +--- +tags: + - databases +--- +```dataview +table without id + file.link as Trip, + loc as Location, + start as Start, + end as End +where + contains(category,[[Trips]]) and + !contains(file.name, "Template") and + !contains(file.name, "Planning") +sort start desc +``` \ No newline at end of file