2023-09-13 14:48:02
This commit is contained in:
4
.obsidian/types.json
vendored
4
.obsidian/types.json
vendored
@@ -45,6 +45,8 @@
|
|||||||
"variety": "text",
|
"variety": "text",
|
||||||
"price": "number",
|
"price": "number",
|
||||||
"author": "multitext",
|
"author": "multitext",
|
||||||
"published": "date"
|
"published": "date",
|
||||||
|
"where": "multitext",
|
||||||
|
"loc": "multitext"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
12
2023 Japan Trip.md
Normal file
12
2023 Japan Trip.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
category:
|
||||||
|
- "[[Trips]]"
|
||||||
|
start: 2023-09-12
|
||||||
|
end: 2023-09-30
|
||||||
|
loc:
|
||||||
|
- "[[Kyoto]]"
|
||||||
|
- "[[Japan]]"
|
||||||
|
tags:
|
||||||
|
- trips
|
||||||
|
---
|
||||||
|
|
||||||
15
Daily/2023-09-30.md
Normal file
15
Daily/2023-09-30.md
Normal file
@@ -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
|
||||||
|
```
|
||||||
@@ -9,11 +9,12 @@ maxZoom:15
|
|||||||
height:50%
|
height:50%
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Places
|
||||||
|
|
||||||
```dataview
|
```dataview
|
||||||
table without id
|
table without id
|
||||||
file.link as Place,
|
file.link as Place,
|
||||||
location as Location,
|
loc as Location,
|
||||||
type as Type,
|
type as Type,
|
||||||
rating as Rating
|
rating as Rating
|
||||||
where
|
where
|
||||||
|
|||||||
@@ -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
|
- **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
|
- **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`
|
- **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.
|
- **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
|
## Style guide
|
||||||
### Templates and metadata
|
### Templates and metadata
|
||||||
|
|
||||||
|
|||||||
18
References/Fushimi Inari.md
Normal file
18
References/Fushimi Inari.md
Normal file
@@ -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
|
||||||
|
---
|
||||||
55
References/Kyoto.md
Normal file
55
References/Kyoto.md
Normal file
@@ -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
|
||||||
|
```
|
||||||
13
References/Sci-fi.md
Normal file
13
References/Sci-fi.md
Normal file
@@ -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
|
||||||
|
```
|
||||||
@@ -20,6 +20,8 @@ tags:
|
|||||||
|
|
||||||
## Quotes
|
## 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
|
> 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.
|
> 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.
|
||||||
|
|||||||
@@ -6,10 +6,11 @@ type:
|
|||||||
tags:
|
tags:
|
||||||
- places
|
- places
|
||||||
- cities
|
- cities
|
||||||
location:
|
loc:
|
||||||
rating:
|
rating:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
last:
|
last:
|
||||||
|
location:
|
||||||
---
|
---
|
||||||
## Trips
|
## Trips
|
||||||
|
|
||||||
@@ -20,29 +21,31 @@ table without id
|
|||||||
end as End
|
end as End
|
||||||
where
|
where
|
||||||
contains(category, [[Trips]]) and
|
contains(category, [[Trips]]) and
|
||||||
contains(location, this.file.link)
|
contains(loc, this.file.link)
|
||||||
sort file.name desc
|
sort file.name desc
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Map
|
||||||
|
|
||||||
|
```leaflet
|
||||||
|
id: kyoto
|
||||||
|
minZoom: 10
|
||||||
|
maxZoom: 20
|
||||||
|
defaultZoom: 12
|
||||||
|
linksTo: [[Kyoto]]
|
||||||
|
height: 50%
|
||||||
|
coordinates: [[Kyoto]]
|
||||||
|
```
|
||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
```leaflet
|
|
||||||
id: madrid
|
|
||||||
minZoom: 10
|
|
||||||
maxZoom: 20
|
|
||||||
defaultZoom: 12
|
|
||||||
linksTo: [[Madrid]]
|
|
||||||
height: 50%
|
|
||||||
coordinates: [[Madrid]]
|
|
||||||
```
|
|
||||||
|
|
||||||
```dataview
|
```dataview
|
||||||
table without id
|
table without id
|
||||||
file.link as City,
|
file.link as Place,
|
||||||
rating as Rating,
|
rating as Rating,
|
||||||
type as Type
|
type as Type
|
||||||
where
|
where
|
||||||
contains(category, [[Places]]) and
|
contains(category, [[Places]]) and
|
||||||
contains(location, this.file.link)
|
contains(loc, this.file.link)
|
||||||
sort rating desc
|
sort rating desc
|
||||||
```
|
```
|
||||||
@@ -5,7 +5,7 @@ type: "[[Conferences]]"
|
|||||||
series:
|
series:
|
||||||
start:
|
start:
|
||||||
end:
|
end:
|
||||||
location:
|
loc:
|
||||||
tags:
|
tags:
|
||||||
- events
|
- events
|
||||||
- conferences
|
- conferences
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ tags:
|
|||||||
type:
|
type:
|
||||||
start:
|
start:
|
||||||
end:
|
end:
|
||||||
location:
|
loc:
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
```dataview
|
```dataview
|
||||||
table without id
|
table without id
|
||||||
file.link as Title,
|
file.link as Title,
|
||||||
|
category as Category,
|
||||||
rating as Rating
|
rating as Rating
|
||||||
where
|
where
|
||||||
contains(genre,this.file.link)
|
contains(genre,this.file.link)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ category:
|
|||||||
- "[[Hosting]]"
|
- "[[Hosting]]"
|
||||||
start:
|
start:
|
||||||
end:
|
end:
|
||||||
location:
|
loc:
|
||||||
people: []
|
people: []
|
||||||
tags:
|
tags:
|
||||||
- hosting
|
- hosting
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ tags:
|
|||||||
- journal
|
- journal
|
||||||
- meditation
|
- meditation
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
location: []
|
loc: []
|
||||||
topics: []
|
topics: []
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ category:
|
|||||||
type: []
|
type: []
|
||||||
date: {{date}}
|
date: {{date}}
|
||||||
org:
|
org:
|
||||||
location:
|
loc:
|
||||||
people: []
|
people: []
|
||||||
topics: []
|
topics: []
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ category:
|
|||||||
tags:
|
tags:
|
||||||
- places
|
- places
|
||||||
type: []
|
type: []
|
||||||
location: []
|
loc: []
|
||||||
rating:
|
rating:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
|
|||||||
@@ -12,11 +12,13 @@ defaultZoom: 3
|
|||||||
height: 50%
|
height: 50%
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Places
|
||||||
|
|
||||||
```dataview
|
```dataview
|
||||||
table without id
|
table without id
|
||||||
file.link as Place,
|
file.link as Place,
|
||||||
rating as Rating,
|
rating as Rating,
|
||||||
location as Location
|
loc as Location
|
||||||
where
|
where
|
||||||
contains(category, [[Places]]) and
|
contains(category, [[Places]]) and
|
||||||
contains(type, this.file.link)
|
contains(type, this.file.link)
|
||||||
|
|||||||
@@ -12,6 +12,6 @@ year:
|
|||||||
price:
|
price:
|
||||||
sqft:
|
sqft:
|
||||||
lotsqft:
|
lotsqft:
|
||||||
location: []
|
loc: []
|
||||||
status:
|
status:
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ category:
|
|||||||
- "[[Places]]"
|
- "[[Places]]"
|
||||||
type:
|
type:
|
||||||
- "[[Restaurants]]"
|
- "[[Restaurants]]"
|
||||||
location:
|
loc:
|
||||||
rating:
|
rating:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ category:
|
|||||||
- "[[Trips]]"
|
- "[[Trips]]"
|
||||||
start:
|
start:
|
||||||
end:
|
end:
|
||||||
location:
|
loc:
|
||||||
tags:
|
tags:
|
||||||
- trips
|
- trips
|
||||||
---
|
---
|
||||||
|
|||||||
Reference in New Issue
Block a user