Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
473697347a | ||
|
|
5bd1a529e8 | ||
|
|
bc1af9acc8 | ||
|
|
cdf50d76ad | ||
|
|
f4475335a0 | ||
|
|
bdbc809423 | ||
|
|
84770d7973 | ||
|
|
00ddd2cd72 | ||
|
|
118b0aab52 | ||
|
|
2063aa6aa9 | ||
|
|
d94cc1ede6 | ||
|
|
c08ea0d19b | ||
|
|
47d391cc50 | ||
|
|
35002d844a | ||
|
|
b75feb5d29 | ||
|
|
b988a7e438 | ||
|
|
de7764aa87 | ||
|
|
a1cf0fdc63 | ||
|
|
3debf9da8a | ||
|
|
453e98b3db |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,4 +1,6 @@
|
||||
# obsidian
|
||||
.obsidian/appearance.json
|
||||
.obsidian/hotkeys.json
|
||||
.obsidian/workspace.json
|
||||
.obsidian/themes
|
||||
.obsidian/plugins
|
||||
|
||||
7
.obsidian/appearance.json
vendored
7
.obsidian/appearance.json
vendored
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"accentColor": "",
|
||||
"cssTheme": "",
|
||||
"enabledCssSnippets": [
|
||||
"stock-charts"
|
||||
]
|
||||
}
|
||||
68
.obsidian/hotkeys.json
vendored
68
.obsidian/hotkeys.json
vendored
@@ -1,68 +0,0 @@
|
||||
{
|
||||
"editor:toggle-source": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod",
|
||||
"Shift"
|
||||
],
|
||||
"key": "E"
|
||||
}
|
||||
],
|
||||
"insert-template": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "T"
|
||||
}
|
||||
],
|
||||
"workspace:new-tab": [],
|
||||
"obsidian-outliner:move-list-item-down": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "ArrowDown"
|
||||
}
|
||||
],
|
||||
"obsidian-outliner:move-list-item-up": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "ArrowUp"
|
||||
}
|
||||
],
|
||||
"obsidian-outliner:fold": [],
|
||||
"obsidian-outliner:unfold": [],
|
||||
"app:go-back": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod",
|
||||
"Alt"
|
||||
],
|
||||
"key": "ArrowLeft"
|
||||
},
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "ArrowLeft"
|
||||
}
|
||||
],
|
||||
"app:go-forward": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod",
|
||||
"Alt"
|
||||
],
|
||||
"key": "ArrowRight"
|
||||
},
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "ArrowRight"
|
||||
}
|
||||
]
|
||||
}
|
||||
48
.obsidian/snippets/stock-charts.css
vendored
48
.obsidian/snippets/stock-charts.css
vendored
@@ -1,48 +0,0 @@
|
||||
/* Stocks */
|
||||
.stock-cards {
|
||||
margin: 2em 0;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 6px;
|
||||
justify-content: center;
|
||||
|
||||
& .stock-card {
|
||||
position: relative;
|
||||
a {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
&:hover .stock-card-inner {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.stock-chart, .stock-financials, .stock-card-inner {
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-m);
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
.stock-chart {
|
||||
width: 100%;
|
||||
min-height: 340px;
|
||||
height: 40vh;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.stock-container {
|
||||
width: var(--line-width);
|
||||
margin: 0 auto;
|
||||
}
|
||||
.stock-financials {
|
||||
width: 100%;
|
||||
height: 800px;
|
||||
}
|
||||
.stock-card-inner {
|
||||
height: 94px;
|
||||
width: 270px;
|
||||
}
|
||||
2
.obsidian/types.json
vendored
2
.obsidian/types.json
vendored
@@ -12,7 +12,7 @@
|
||||
"topics": "multitext",
|
||||
"rating": "number",
|
||||
"year": "number",
|
||||
"location": "multitext",
|
||||
"coordinates": "multitext",
|
||||
"model": "text",
|
||||
"lotsqft": "number",
|
||||
"isbn13": "number",
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
---
|
||||
tags:
|
||||
- music
|
||||
- categories
|
||||
---
|
||||
|
||||
|
||||
@@ -2,13 +2,6 @@
|
||||
tags:
|
||||
- categories
|
||||
---
|
||||
```leaflet
|
||||
id: places
|
||||
markerTag: places
|
||||
maxZoom:15
|
||||
height:400px
|
||||
```
|
||||
|
||||
## Places
|
||||
|
||||
![[Map.base]]
|
||||
![[Places.base]]
|
||||
|
||||
@@ -4,14 +4,10 @@ categories:
|
||||
author:
|
||||
- "[[Kevin Kelly]]"
|
||||
url: https://kk.org/thetechnium/68-bits-of-unsolicited-advice/
|
||||
tags:
|
||||
- clippings
|
||||
- advice
|
||||
created: 2023-09-12
|
||||
published: 2020-04-28
|
||||
topics: []
|
||||
---
|
||||
|
||||
It’s my birthday. I’m 68. I feel like pulling up a rocking chair and dispensing advice to the young ‘uns. Here are 68 pithy bits of unsolicited advice which I offer as my birthday present to all of you.
|
||||
|
||||
- Learn how to learn from those you disagree with, or even offend you. See if you can find the truth in what they believe.
|
||||
|
||||
@@ -7,8 +7,6 @@ author:
|
||||
source: https://stephango.com/buy-wisely
|
||||
clipped: 2023-11-18
|
||||
published: 2023-09-29
|
||||
tags:
|
||||
- posts
|
||||
status:
|
||||
- "[[Published]]"
|
||||
topics:
|
||||
|
||||
@@ -5,14 +5,11 @@ categories:
|
||||
author:
|
||||
- "[[Steph Ango]]"
|
||||
url: https://stephango.com/in-good-hands
|
||||
tags:
|
||||
- clippings
|
||||
- advice
|
||||
created: 2023-09-12
|
||||
published: 2023-08-06
|
||||
topics:
|
||||
status:
|
||||
- "[[Published]]"
|
||||
topics:
|
||||
---
|
||||
|
||||
There is a feeling I search for: *being in good hands*. It is the feeling I look to give and the feeling I look to receive.
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
---
|
||||
tags:
|
||||
- daily
|
||||
---
|
||||
## Notes
|
||||
|
||||
![[Daily.base]]
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
---
|
||||
tags:
|
||||
- daily
|
||||
---
|
||||
## Notes
|
||||
|
||||
![[Daily.base]]
|
||||
@@ -6,7 +6,5 @@ end: 2023-09-30
|
||||
loc:
|
||||
- "[[Kyoto]]"
|
||||
- "[[Japan]]"
|
||||
tags:
|
||||
- trips
|
||||
---
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
categories:
|
||||
- "[[Meetings]]"
|
||||
type: []
|
||||
date: 2023-09-14
|
||||
date: 2023-09-12
|
||||
org:
|
||||
- "[[Obsidian]]"
|
||||
loc:
|
||||
@@ -11,7 +11,5 @@ people:
|
||||
- "[[Steph Ango]]"
|
||||
topics:
|
||||
- "[[Emergence]]"
|
||||
tags:
|
||||
- meetings
|
||||
---
|
||||
- Discussed the book [[Out of Control]] on the topic of [[Emergence]]
|
||||
@@ -11,7 +11,6 @@ topics:
|
||||
- "[[Evergreen]]"
|
||||
tags:
|
||||
- 0🌲
|
||||
- clippings
|
||||
status:
|
||||
- "[[Published]]"
|
||||
---
|
||||
|
||||
@@ -6,8 +6,6 @@ type:
|
||||
org:
|
||||
- "[[Obsidian]]"
|
||||
year: 2020
|
||||
tags:
|
||||
- projects
|
||||
url: https://minimal.guide
|
||||
status:
|
||||
- "[[Active]]"
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Albums]]"
|
||||
tags:
|
||||
- music
|
||||
- albums
|
||||
- references
|
||||
genre:
|
||||
- "[[Jazz]]"
|
||||
artist: "[[Paul Chambers]]"
|
||||
|
||||
@@ -12,9 +12,6 @@ rating: 7
|
||||
year: 1982
|
||||
last: 2023-09-14
|
||||
imdbId: tt0083658
|
||||
tags:
|
||||
- movies
|
||||
- references
|
||||
---
|
||||
|
||||
|
||||
|
||||
@@ -16,8 +16,6 @@ rating: 7
|
||||
published: 2023-07-30
|
||||
created: 2023-09-12
|
||||
last: 2023-09-12
|
||||
tags:
|
||||
- recipes
|
||||
---
|
||||
It seems like every summer I have the impromptu and magical experience of suddenly smelling the delicate aroma of ripe nectarines wafting through the air. At that moment, whether it's at a farmer's market or grocery store, I know it's time to make this recipe.
|
||||
|
||||
|
||||
@@ -5,7 +5,4 @@ type: []
|
||||
maker:
|
||||
rating: 7
|
||||
last: 2023-09-01
|
||||
tags:
|
||||
- board-games
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -1,17 +1,15 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
tags:
|
||||
- places
|
||||
type:
|
||||
- "[[Shrines]]"
|
||||
- "[[Parks]]"
|
||||
- "[[Shrines]]"
|
||||
loc:
|
||||
- "[[Kyoto]]"
|
||||
- "[[Japan]]"
|
||||
rating: 7
|
||||
created: 2023-09-12
|
||||
location:
|
||||
coordinates:
|
||||
- "34.9689499"
|
||||
- "135.7692576"
|
||||
---
|
||||
|
||||
@@ -6,7 +6,4 @@ genre:
|
||||
rating: 7
|
||||
created: 2023-09-12
|
||||
last: 2023-09-12
|
||||
tags:
|
||||
- shows
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- authors
|
||||
type:
|
||||
- "[[Authors]]"
|
||||
created: 2023-09-12
|
||||
---
|
||||
## Books
|
||||
|
||||
@@ -3,12 +3,9 @@ categories:
|
||||
- "[[Places]]"
|
||||
type:
|
||||
- "[[Cities]]"
|
||||
tags:
|
||||
- places
|
||||
- cities
|
||||
loc:
|
||||
- "[[Japan]]"
|
||||
location:
|
||||
coordinates:
|
||||
- "35.021041"
|
||||
- "135.7556075"
|
||||
rating: 7
|
||||
@@ -16,21 +13,9 @@ created: 2023-09-12
|
||||
---
|
||||
## Trips
|
||||
|
||||
![[Trips.base#Related trips]]
|
||||
|
||||
## Map
|
||||
|
||||
```leaflet
|
||||
id: kyoto
|
||||
minZoom: 7
|
||||
maxZoom: 20
|
||||
defaultZoom: 11
|
||||
markerTag:
|
||||
- places
|
||||
height: 400px
|
||||
coordinates: [[Kyoto]]
|
||||
```
|
||||
![[Trips.base#Location]]
|
||||
|
||||
## Places
|
||||
|
||||
![[Map.base#Location]]
|
||||
![[Places.base#Location]]
|
||||
@@ -2,8 +2,6 @@
|
||||
categories:
|
||||
- "[[Companies]]"
|
||||
- "[[Apps]]"
|
||||
tags:
|
||||
- companies
|
||||
type:
|
||||
- "[[Apps]]"
|
||||
url: https://obsidian.md/
|
||||
|
||||
@@ -16,7 +16,4 @@ topics:
|
||||
created: 2023-09-12
|
||||
last: 2023-09-12
|
||||
rating: 7
|
||||
tags:
|
||||
- books
|
||||
- references
|
||||
---
|
||||
|
||||
11
References/Parks.md
Normal file
11
References/Parks.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
tags:
|
||||
- places/types
|
||||
icon: trees
|
||||
color: green
|
||||
---
|
||||
|
||||
## Places
|
||||
|
||||
![[Map.base#Type]]
|
||||
![[Places.base#Type]]
|
||||
@@ -1,11 +1,10 @@
|
||||
---
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- musicians
|
||||
type:
|
||||
- "[[Musicians]]"
|
||||
created: 2023-09-13
|
||||
---
|
||||
## Albums
|
||||
|
||||
![[Albums.base#Related albums]]
|
||||
![[Albums.base#Artist]]
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- authors
|
||||
type:
|
||||
- "[[Authors]]"
|
||||
org:
|
||||
- "[[Obsidian]]"
|
||||
created: 2023-09-12
|
||||
|
||||
@@ -10,7 +10,4 @@ aliases:
|
||||
last: "[[2022-04]]"
|
||||
rating: 7
|
||||
year: 2017
|
||||
tags:
|
||||
- games
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -13,8 +13,6 @@ topics:
|
||||
created: 2023-09-12
|
||||
last: 2023-09-12
|
||||
tags:
|
||||
- books
|
||||
- references
|
||||
- to-read
|
||||
---
|
||||
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Podcast episodes]]"
|
||||
tags:
|
||||
- podcast
|
||||
- episodes
|
||||
show: "[[Well Made]]"
|
||||
guests:
|
||||
- "[[Kevin Kelly]]"
|
||||
|
||||
@@ -4,8 +4,6 @@ categories:
|
||||
host:
|
||||
- "[[Steph Ango]]"
|
||||
rating:
|
||||
tags:
|
||||
- podcast
|
||||
---
|
||||
## Episodes
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
---
|
||||
categories: "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- actors
|
||||
type:
|
||||
- "[[Actors]]"
|
||||
---
|
||||
## Movies
|
||||
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Albums]]"
|
||||
tags:
|
||||
- music
|
||||
- albums
|
||||
- references
|
||||
genre: []
|
||||
artist: ""
|
||||
year:
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
---
|
||||
categories: "[[Apps]]"
|
||||
tags:
|
||||
- apps
|
||||
maker: ""
|
||||
rating:
|
||||
---
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
---
|
||||
categories: "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- authors
|
||||
type:
|
||||
- "[[Authors]]"
|
||||
---
|
||||
## Books
|
||||
|
||||
|
||||
@@ -2,13 +2,19 @@ filters:
|
||||
and:
|
||||
- note.categories.contains(link("Albums"))
|
||||
- '!file.name.contains("Template")'
|
||||
display:
|
||||
file.name: Album
|
||||
note.year: Year
|
||||
note.artist: Artist
|
||||
note.created: Added
|
||||
note.rating: Rating
|
||||
note.genre: Genre
|
||||
properties:
|
||||
file.name:
|
||||
displayName: Album
|
||||
note.year:
|
||||
displayName: Year
|
||||
note.artist:
|
||||
displayName: Artist
|
||||
note.created:
|
||||
displayName: Added
|
||||
note.rating:
|
||||
displayName: Rating
|
||||
note.genre:
|
||||
displayName: Genre
|
||||
views:
|
||||
- type: table
|
||||
name: Albums
|
||||
|
||||
@@ -1,32 +1,36 @@
|
||||
filters:
|
||||
and:
|
||||
- '!file.ext.containsAny("base", "md", "pdf", "canvas")'
|
||||
formulas:
|
||||
Embeds: if(file.embeds[0].containsAny("jpg","gif","webp","jpeg","avif"), file.embeds[0])
|
||||
Date: if(created,created,if(start,start))
|
||||
links: file.
|
||||
links: file.backlinks
|
||||
properties:
|
||||
formula.links:
|
||||
displayName: Links
|
||||
views:
|
||||
- type: cards
|
||||
name: Images
|
||||
filters:
|
||||
and:
|
||||
- this.file.hasLink(file)
|
||||
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
|
||||
- file == ""
|
||||
order: []
|
||||
sort:
|
||||
- property: file.name
|
||||
direction: ASC
|
||||
image: file.file
|
||||
cardSize: 70
|
||||
- type: cards
|
||||
name: All images
|
||||
image: file.file
|
||||
imageFit: ""
|
||||
- type: table
|
||||
name: Images 2
|
||||
name: Unused attachements
|
||||
filters:
|
||||
and:
|
||||
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
|
||||
- formula.links.isEmpty()
|
||||
order:
|
||||
- file.name
|
||||
- file.links
|
||||
- formula.links
|
||||
sort:
|
||||
- property: file.name
|
||||
direction: ASC
|
||||
image: file.file
|
||||
cardSize: 90
|
||||
columnSize:
|
||||
file.name: 414
|
||||
|
||||
@@ -19,8 +19,9 @@ views:
|
||||
name: Daily notes
|
||||
filters:
|
||||
and:
|
||||
- '!tags.contains("daily")'
|
||||
- '!tags.contains("monthly")'
|
||||
- '!file.tags.contains("daily")'
|
||||
- '!file.tags.contains("monthly")'
|
||||
- file.name != this.file.name
|
||||
order:
|
||||
- file.name
|
||||
- created
|
||||
@@ -43,8 +44,9 @@ views:
|
||||
name: Monthly
|
||||
filters:
|
||||
and:
|
||||
- '!tags.contains("daily")'
|
||||
- '!tags.contains("monthly")'
|
||||
- '!file.tags.contains("daily")'
|
||||
- '!file.tags.contains("monthly")'
|
||||
- file.name != this.file.name
|
||||
order:
|
||||
- file.name
|
||||
- categories
|
||||
@@ -58,8 +60,9 @@ views:
|
||||
name: Yearly
|
||||
filters:
|
||||
and:
|
||||
- '!tags.contains("daily")'
|
||||
- '!tags.contains("monthly")'
|
||||
- '!file.tags.contains("daily")'
|
||||
- '!file.tags.contains("monthly")'
|
||||
- file.name != this.file.name
|
||||
order:
|
||||
- file.name
|
||||
- categories
|
||||
|
||||
89
Templates/Bases/Map.base
Normal file
89
Templates/Bases/Map.base
Normal file
@@ -0,0 +1,89 @@
|
||||
filters:
|
||||
and:
|
||||
- categories.contains(link("Places"))
|
||||
- '!file.name.contains("Template")'
|
||||
formulas:
|
||||
Icon: list(type)[0].asFile().properties.icon
|
||||
Color: list(type)[0].asFile().properties.color
|
||||
properties:
|
||||
note.type:
|
||||
displayName: Type
|
||||
note.rating:
|
||||
displayName: Rating
|
||||
note.loc:
|
||||
displayName: Location
|
||||
file.name:
|
||||
displayName: Name
|
||||
note.last:
|
||||
displayName: Last
|
||||
views:
|
||||
- type: map
|
||||
name: Map
|
||||
order:
|
||||
- file.name
|
||||
- rating
|
||||
- loc
|
||||
- type
|
||||
- last
|
||||
- formula.Icon
|
||||
sort:
|
||||
- property: last
|
||||
direction: DESC
|
||||
- property: type
|
||||
direction: ASC
|
||||
- property: loc
|
||||
direction: ASC
|
||||
defaultZoom: 2
|
||||
coordinates: note.coordinates
|
||||
markerIcon: formula.Icon
|
||||
markerColor: formula.Color
|
||||
- type: map
|
||||
name: Location
|
||||
filters:
|
||||
or:
|
||||
- list(loc).contains(this)
|
||||
- list(loc).containsAny(this.related)
|
||||
order:
|
||||
- file.name
|
||||
sort:
|
||||
- property: last
|
||||
direction: DESC
|
||||
- property: type
|
||||
direction: ASC
|
||||
- property: loc
|
||||
direction: ASC
|
||||
columnSize:
|
||||
file.name: 162
|
||||
note.rating: 84
|
||||
note.loc: 145
|
||||
note.type: 199
|
||||
coordinates: note.coordinates
|
||||
defaultZoom: 10.6
|
||||
markerIcon: formula.Icon
|
||||
markerColor: formula.Color
|
||||
- type: map
|
||||
name: Type
|
||||
filters:
|
||||
and:
|
||||
- list(type).contains(this)
|
||||
order:
|
||||
- file.name
|
||||
- rating
|
||||
- type
|
||||
- formula.Color
|
||||
sort:
|
||||
- property: last
|
||||
direction: DESC
|
||||
- property: type
|
||||
direction: ASC
|
||||
- property: loc
|
||||
direction: ASC
|
||||
columnSize:
|
||||
file.name: 162
|
||||
note.rating: 84
|
||||
note.loc: 145
|
||||
note.type: 199
|
||||
coordinates: note.coordinates
|
||||
defaultZoom: 3.1
|
||||
markerIcon: formula.Icon
|
||||
markerColor: formula.Color
|
||||
@@ -2,7 +2,6 @@ filters:
|
||||
and:
|
||||
- categories.contains(link("Movies"))
|
||||
- '!file.name.contains("Template")'
|
||||
formulas: {}
|
||||
properties:
|
||||
file.name:
|
||||
displayName: Name
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
filters:
|
||||
and:
|
||||
- '!file.name.contains("Template")'
|
||||
- note.tags.contains("people")
|
||||
- categories.contains(link("People"))
|
||||
formulas:
|
||||
Age: (now() - birthday).years.floor()
|
||||
properties:
|
||||
@@ -19,15 +19,15 @@ views:
|
||||
- tags
|
||||
- birthday
|
||||
- formula.Age
|
||||
sort:
|
||||
- property: file.name
|
||||
direction: ASC
|
||||
- property: tags
|
||||
direction: ASC
|
||||
- property: formula.Age
|
||||
direction: DESC
|
||||
- property: birthday
|
||||
direction: DESC
|
||||
columnSize:
|
||||
note.tags: 209
|
||||
formula.Age: 99
|
||||
sort:
|
||||
- column: file.name
|
||||
direction: ASC
|
||||
- column: note.tags
|
||||
direction: ASC
|
||||
- column: formula.Age
|
||||
direction: DESC
|
||||
- column: note.birthday
|
||||
direction: DESC
|
||||
|
||||
@@ -2,14 +2,21 @@ filters:
|
||||
and:
|
||||
- note.categories.contains(link("Podcast episodes"))
|
||||
- '!file.name.contains("Template")'
|
||||
display:
|
||||
file.name: Podcast
|
||||
note.show: Show
|
||||
note.guests: Guests
|
||||
note.episode: Episode
|
||||
note.rating: Rating
|
||||
note.published: Published
|
||||
note.guest: Guest
|
||||
properties:
|
||||
file.name:
|
||||
displayName: Podcast
|
||||
note.show:
|
||||
displayName: Show
|
||||
note.guests:
|
||||
displayName: Guests
|
||||
note.episode:
|
||||
displayName: Episode
|
||||
note.rating:
|
||||
displayName: Rating
|
||||
note.published:
|
||||
displayName: Published
|
||||
note.guest:
|
||||
displayName: Guest
|
||||
views:
|
||||
- type: table
|
||||
name: All episodes
|
||||
@@ -21,7 +28,7 @@ views:
|
||||
- rating
|
||||
- published
|
||||
sort:
|
||||
- column: note.published
|
||||
- property: published
|
||||
direction: DESC
|
||||
- type: table
|
||||
name: Show
|
||||
|
||||
40
Templates/Bases/Related.base
Normal file
40
Templates/Bases/Related.base
Normal file
@@ -0,0 +1,40 @@
|
||||
filters:
|
||||
and:
|
||||
- file.path != this.file.path
|
||||
formulas:
|
||||
LinksOverlap: formula.Related.length
|
||||
Related: list(this.file.links).filter(list(file.links).containsAny(value)).unique()
|
||||
BacklinksCount: file.backlinks.length
|
||||
TagsOverlap: list(this.file.tags).filter(list(file.tags).containsAny(value)).unique().length
|
||||
properties:
|
||||
formula.LinksOverlap:
|
||||
displayName: Links overlap
|
||||
file.name:
|
||||
displayName: Name
|
||||
formula.BacklinksCount:
|
||||
displayName: Backlinks count
|
||||
formula.TagsOverlap:
|
||||
displayName: Tags overlap
|
||||
formula.Related:
|
||||
displayName: Links
|
||||
views:
|
||||
- type: table
|
||||
name: Related
|
||||
filters:
|
||||
or:
|
||||
- formula.LinksOverlap > 2
|
||||
- file.hasLink(this)
|
||||
- this.file.hasLink(file)
|
||||
order:
|
||||
- file.name
|
||||
- formula.Related
|
||||
sort:
|
||||
- property: formula.LinksOverlap
|
||||
direction: DESC
|
||||
- property: formula.TagsOverlap
|
||||
direction: DESC
|
||||
- property: formula.BacklinksCount
|
||||
direction: DESC
|
||||
limit: 20
|
||||
columnSize:
|
||||
file.name: 220
|
||||
@@ -23,7 +23,7 @@ views:
|
||||
- end
|
||||
- loc
|
||||
sort:
|
||||
- column: note.end
|
||||
- property: end
|
||||
direction: DESC
|
||||
columnSize:
|
||||
file.name: 255
|
||||
|
||||
@@ -6,7 +6,4 @@ maker:
|
||||
year:
|
||||
rating:
|
||||
last: {{date}}
|
||||
tags:
|
||||
- board-games
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -14,7 +14,5 @@ created: {{date}}
|
||||
last:
|
||||
via: ""
|
||||
tags:
|
||||
- books
|
||||
- references
|
||||
- to-read
|
||||
---
|
||||
|
||||
@@ -3,34 +3,20 @@ categories:
|
||||
- "[[Places]]"
|
||||
type:
|
||||
- "[[Cities]]"
|
||||
tags:
|
||||
- places
|
||||
- cities
|
||||
loc:
|
||||
rating:
|
||||
created: {{date}}
|
||||
last:
|
||||
location:
|
||||
coordinates:
|
||||
- "35.021041"
|
||||
- "135.7556075"
|
||||
---
|
||||
## Trips
|
||||
|
||||
![[Trips.base#Related trips]]
|
||||
|
||||
## Map
|
||||
|
||||
```leaflet
|
||||
id: kyoto
|
||||
minZoom: 10
|
||||
maxZoom: 20
|
||||
defaultZoom: 12
|
||||
markerTag:
|
||||
- places
|
||||
height: 400px
|
||||
coordinates: [[Kyoto]]
|
||||
```
|
||||
![[Trips.base#Location]]
|
||||
|
||||
## Places
|
||||
|
||||
![[Map.base#Location]]
|
||||
|
||||
![[Places.base#Location]]
|
||||
@@ -8,7 +8,4 @@ variety:
|
||||
process:
|
||||
rating:
|
||||
last:
|
||||
tags:
|
||||
- coffee
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Companies]]"
|
||||
tags:
|
||||
- companies
|
||||
type: []
|
||||
people: []
|
||||
url:
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
phone:
|
||||
twitter:
|
||||
org:
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- directors
|
||||
type:
|
||||
- "[[Directors]]"
|
||||
created: {{date}}
|
||||
---
|
||||
## Movies
|
||||
|
||||
@@ -2,8 +2,6 @@
|
||||
categories:
|
||||
- "[[Emails]]"
|
||||
created: {{date}}
|
||||
tags:
|
||||
- emails
|
||||
org: []
|
||||
people: []
|
||||
url:
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Food]]"
|
||||
tags:
|
||||
- food
|
||||
- references
|
||||
maker:
|
||||
rating:
|
||||
price:
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Companies]]"
|
||||
tags:
|
||||
- companies
|
||||
type:
|
||||
- "[[Game studios]]"
|
||||
---
|
||||
|
||||
## Games
|
||||
|
||||
@@ -5,7 +5,5 @@ start:
|
||||
end:
|
||||
loc:
|
||||
people: []
|
||||
tags:
|
||||
- hosting
|
||||
---
|
||||
|
||||
|
||||
@@ -8,10 +8,6 @@ people: []
|
||||
date: {{date}}
|
||||
role:
|
||||
rating:
|
||||
tags:
|
||||
- jobs
|
||||
- meetings/job
|
||||
- meetings
|
||||
---
|
||||
## Questions and topics
|
||||
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- maps
|
||||
---
|
||||
|
||||
```leaflet
|
||||
id: nyc
|
||||
minZoom: 10
|
||||
maxZoom: 20
|
||||
defaultZoom: 12
|
||||
linksTo: [[New York]]
|
||||
height: 400px
|
||||
coordinates: [[New York]]
|
||||
```
|
||||
@@ -7,6 +7,4 @@ org:
|
||||
loc:
|
||||
people: []
|
||||
topics: []
|
||||
tags:
|
||||
- meetings
|
||||
---
|
||||
|
||||
@@ -11,8 +11,5 @@ year:
|
||||
last: {{date}}
|
||||
imdbId:
|
||||
via:
|
||||
tags:
|
||||
- movies
|
||||
- references
|
||||
---
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
---
|
||||
categories: "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
- musicians
|
||||
type:
|
||||
- "[[Musicians]]"
|
||||
created: {{date}}
|
||||
---
|
||||
## Albums
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[People]]"
|
||||
tags:
|
||||
- people
|
||||
birthday:
|
||||
org: []
|
||||
created: {{date}}
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Places]]"
|
||||
tags:
|
||||
- places
|
||||
type: []
|
||||
loc: []
|
||||
rating:
|
||||
|
||||
@@ -3,15 +3,8 @@ tags:
|
||||
- places/types
|
||||
---
|
||||
|
||||
```leaflet
|
||||
id: restaurants
|
||||
linksTo: [[Pizzerias]]
|
||||
minZoom: 3
|
||||
maxZoom: 20
|
||||
defaultZoom: 3
|
||||
height: 400px
|
||||
```
|
||||
|
||||
## Places
|
||||
|
||||
![[Map.base#Type]]
|
||||
|
||||
![[Places.base#Type]]
|
||||
@@ -3,8 +3,6 @@ categories:
|
||||
- "[[Podcasts]]"
|
||||
host: []
|
||||
rating:
|
||||
tags:
|
||||
- podcast
|
||||
---
|
||||
## Episodes
|
||||
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Posts]]"
|
||||
tags:
|
||||
- posts
|
||||
author:
|
||||
- "[[Me]]"
|
||||
url:
|
||||
|
||||
@@ -8,6 +8,4 @@ rating:
|
||||
price:
|
||||
acquired: {{date}}
|
||||
monthly-uses:
|
||||
tags:
|
||||
- products
|
||||
---
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
tags:
|
||||
- products/types
|
||||
---
|
||||
![[Products.base]]
|
||||
![[Products.base#Type]]
|
||||
|
||||
@@ -5,8 +5,6 @@ type: []
|
||||
org: []
|
||||
start:
|
||||
year:
|
||||
tags:
|
||||
- projects
|
||||
url:
|
||||
status:
|
||||
---
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Quotes]]"
|
||||
attribution: []
|
||||
source:
|
||||
created: {{date}}
|
||||
tags:
|
||||
- quotes
|
||||
topics: []
|
||||
via:
|
||||
---
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
---
|
||||
categories:
|
||||
- "[[Real estate]]"
|
||||
tags:
|
||||
- places
|
||||
- "[[Places]]"
|
||||
type: []
|
||||
address:
|
||||
rating:
|
||||
|
||||
@@ -9,8 +9,6 @@ url:
|
||||
rating:
|
||||
created: {{date}}
|
||||
last: {{date}}
|
||||
tags:
|
||||
- recipes
|
||||
---
|
||||
## Ingredients
|
||||
|
||||
|
||||
@@ -7,7 +7,4 @@ loc:
|
||||
rating:
|
||||
created: {{date}}
|
||||
last: {{date}}
|
||||
tags:
|
||||
- places
|
||||
- restaurants
|
||||
---
|
||||
|
||||
@@ -6,8 +6,4 @@ season:
|
||||
episode:
|
||||
rating:
|
||||
published:
|
||||
tags:
|
||||
- shows
|
||||
- episodes
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -7,7 +7,4 @@ cast: []
|
||||
rating:
|
||||
created: {{date}}
|
||||
last: {{date}}
|
||||
tags:
|
||||
- shows
|
||||
- references
|
||||
---
|
||||
|
||||
@@ -4,7 +4,5 @@ categories:
|
||||
start:
|
||||
end:
|
||||
loc:
|
||||
tags:
|
||||
- trips
|
||||
---
|
||||
|
||||
|
||||
@@ -8,7 +8,4 @@ system:
|
||||
rating:
|
||||
created: {{date}}
|
||||
last: {{date}}
|
||||
tags:
|
||||
- games
|
||||
- references
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user