Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
473697347a | ||
|
|
5bd1a529e8 | ||
|
|
bc1af9acc8 | ||
|
|
cdf50d76ad | ||
|
|
f4475335a0 | ||
|
|
bdbc809423 | ||
|
|
84770d7973 | ||
|
|
00ddd2cd72 | ||
|
|
118b0aab52 | ||
|
|
2063aa6aa9 | ||
|
|
d94cc1ede6 | ||
|
|
c08ea0d19b | ||
|
|
47d391cc50 | ||
|
|
35002d844a | ||
|
|
b75feb5d29 | ||
|
|
b988a7e438 | ||
|
|
de7764aa87 | ||
|
|
a1cf0fdc63 | ||
|
|
3debf9da8a | ||
|
|
453e98b3db | ||
|
|
aca2993b8e | ||
|
|
08da8df936 | ||
|
|
aae37bf7ca | ||
|
|
202f8e3065 | ||
|
|
d33fbe8283 | ||
|
|
dd7cb4e6f4 | ||
|
|
69bc2f5b14 | ||
|
|
b0e50255f2 | ||
|
|
a35651a27d | ||
|
|
c58f017573 | ||
|
|
4ea8f749a9 | ||
|
|
47b8b962de |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,4 +1,6 @@
|
|||||||
# obsidian
|
# obsidian
|
||||||
|
.obsidian/appearance.json
|
||||||
|
.obsidian/hotkeys.json
|
||||||
.obsidian/workspace.json
|
.obsidian/workspace.json
|
||||||
.obsidian/themes
|
.obsidian/themes
|
||||||
.obsidian/plugins
|
.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;
|
|
||||||
}
|
|
||||||
5
.obsidian/types.json
vendored
5
.obsidian/types.json
vendored
@@ -12,7 +12,7 @@
|
|||||||
"topics": "multitext",
|
"topics": "multitext",
|
||||||
"rating": "number",
|
"rating": "number",
|
||||||
"year": "number",
|
"year": "number",
|
||||||
"location": "multitext",
|
"coordinates": "multitext",
|
||||||
"model": "text",
|
"model": "text",
|
||||||
"lotsqft": "number",
|
"lotsqft": "number",
|
||||||
"isbn13": "number",
|
"isbn13": "number",
|
||||||
@@ -49,6 +49,7 @@
|
|||||||
"loc": "multitext",
|
"loc": "multitext",
|
||||||
"monthly-uses": "number",
|
"monthly-uses": "number",
|
||||||
"runtime": "number",
|
"runtime": "number",
|
||||||
"pages": "number"
|
"pages": "number",
|
||||||
|
"acquired": "date"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
---
|
---
|
||||||
tags:
|
tags:
|
||||||
- music
|
|
||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -2,13 +2,6 @@
|
|||||||
tags:
|
tags:
|
||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
```leaflet
|
|
||||||
id: places
|
|
||||||
markerTag: places
|
|
||||||
maxZoom:15
|
|
||||||
height:400px
|
|
||||||
```
|
|
||||||
|
|
||||||
## Places
|
|
||||||
|
|
||||||
|
![[Map.base]]
|
||||||
![[Places.base]]
|
![[Places.base]]
|
||||||
|
|||||||
@@ -4,14 +4,10 @@ categories:
|
|||||||
author:
|
author:
|
||||||
- "[[Kevin Kelly]]"
|
- "[[Kevin Kelly]]"
|
||||||
url: https://kk.org/thetechnium/68-bits-of-unsolicited-advice/
|
url: https://kk.org/thetechnium/68-bits-of-unsolicited-advice/
|
||||||
tags:
|
|
||||||
- clippings
|
|
||||||
- advice
|
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
published: 2020-04-28
|
published: 2020-04-28
|
||||||
topics: []
|
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.
|
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.
|
- 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
|
source: https://stephango.com/buy-wisely
|
||||||
clipped: 2023-11-18
|
clipped: 2023-11-18
|
||||||
published: 2023-09-29
|
published: 2023-09-29
|
||||||
tags:
|
|
||||||
- posts
|
|
||||||
status:
|
status:
|
||||||
- "[[Published]]"
|
- "[[Published]]"
|
||||||
topics:
|
topics:
|
||||||
|
|||||||
@@ -5,14 +5,11 @@ categories:
|
|||||||
author:
|
author:
|
||||||
- "[[Steph Ango]]"
|
- "[[Steph Ango]]"
|
||||||
url: https://stephango.com/in-good-hands
|
url: https://stephango.com/in-good-hands
|
||||||
tags:
|
|
||||||
- clippings
|
|
||||||
- advice
|
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
published: 2023-08-06
|
published: 2023-08-06
|
||||||
topics:
|
|
||||||
status:
|
status:
|
||||||
- "[[Published]]"
|
- "[[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.
|
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
|
## Notes
|
||||||
|
|
||||||
![[Daily.base]]
|
![[Daily.base]]
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
---
|
|
||||||
tags:
|
|
||||||
- daily
|
|
||||||
---
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
![[Daily.base]]
|
![[Daily.base]]
|
||||||
@@ -6,7 +6,5 @@ end: 2023-09-30
|
|||||||
loc:
|
loc:
|
||||||
- "[[Kyoto]]"
|
- "[[Kyoto]]"
|
||||||
- "[[Japan]]"
|
- "[[Japan]]"
|
||||||
tags:
|
|
||||||
- trips
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
categories:
|
categories:
|
||||||
- "[[Meetings]]"
|
- "[[Meetings]]"
|
||||||
type: []
|
type: []
|
||||||
date: 2023-09-14
|
date: 2023-09-12
|
||||||
org:
|
org:
|
||||||
- "[[Obsidian]]"
|
- "[[Obsidian]]"
|
||||||
loc:
|
loc:
|
||||||
@@ -11,7 +11,5 @@ people:
|
|||||||
- "[[Steph Ango]]"
|
- "[[Steph Ango]]"
|
||||||
topics:
|
topics:
|
||||||
- "[[Emergence]]"
|
- "[[Emergence]]"
|
||||||
tags:
|
|
||||||
- meetings
|
|
||||||
---
|
---
|
||||||
- Discussed the book [[Out of Control]] on the topic of [[Emergence]]
|
- Discussed the book [[Out of Control]] on the topic of [[Emergence]]
|
||||||
@@ -11,7 +11,6 @@ topics:
|
|||||||
- "[[Evergreen]]"
|
- "[[Evergreen]]"
|
||||||
tags:
|
tags:
|
||||||
- 0🌲
|
- 0🌲
|
||||||
- clippings
|
|
||||||
status:
|
status:
|
||||||
- "[[Published]]"
|
- "[[Published]]"
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -6,8 +6,6 @@ type:
|
|||||||
org:
|
org:
|
||||||
- "[[Obsidian]]"
|
- "[[Obsidian]]"
|
||||||
year: 2020
|
year: 2020
|
||||||
tags:
|
|
||||||
- projects
|
|
||||||
url: https://minimal.guide
|
url: https://minimal.guide
|
||||||
status:
|
status:
|
||||||
- "[[Active]]"
|
- "[[Active]]"
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Albums]]"
|
- "[[Albums]]"
|
||||||
tags:
|
|
||||||
- music
|
|
||||||
- albums
|
|
||||||
- references
|
|
||||||
genre:
|
genre:
|
||||||
- "[[Jazz]]"
|
- "[[Jazz]]"
|
||||||
artist: "[[Paul Chambers]]"
|
artist: "[[Paul Chambers]]"
|
||||||
|
|||||||
@@ -12,9 +12,6 @@ rating: 7
|
|||||||
year: 1982
|
year: 1982
|
||||||
last: 2023-09-14
|
last: 2023-09-14
|
||||||
imdbId: tt0083658
|
imdbId: tt0083658
|
||||||
tags:
|
|
||||||
- movies
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -16,8 +16,6 @@ rating: 7
|
|||||||
published: 2023-07-30
|
published: 2023-07-30
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
last: 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.
|
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:
|
maker:
|
||||||
rating: 7
|
rating: 7
|
||||||
last: 2023-09-01
|
last: 2023-09-01
|
||||||
tags:
|
|
||||||
- board-games
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,17 +1,15 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Places]]"
|
- "[[Places]]"
|
||||||
tags:
|
|
||||||
- places
|
|
||||||
type:
|
type:
|
||||||
- "[[Shrines]]"
|
|
||||||
- "[[Parks]]"
|
- "[[Parks]]"
|
||||||
|
- "[[Shrines]]"
|
||||||
loc:
|
loc:
|
||||||
- "[[Kyoto]]"
|
- "[[Kyoto]]"
|
||||||
- "[[Japan]]"
|
- "[[Japan]]"
|
||||||
rating: 7
|
rating: 7
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
location:
|
coordinates:
|
||||||
- "34.9689499"
|
- "34.9689499"
|
||||||
- "135.7692576"
|
- "135.7692576"
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -6,7 +6,4 @@ genre:
|
|||||||
rating: 7
|
rating: 7
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
last: 2023-09-12
|
last: 2023-09-12
|
||||||
tags:
|
|
||||||
- shows
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[People]]"
|
- "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Authors]]"
|
||||||
- authors
|
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
---
|
---
|
||||||
## Books
|
## Books
|
||||||
|
|||||||
@@ -3,12 +3,9 @@ categories:
|
|||||||
- "[[Places]]"
|
- "[[Places]]"
|
||||||
type:
|
type:
|
||||||
- "[[Cities]]"
|
- "[[Cities]]"
|
||||||
tags:
|
|
||||||
- places
|
|
||||||
- cities
|
|
||||||
loc:
|
loc:
|
||||||
- "[[Japan]]"
|
- "[[Japan]]"
|
||||||
location:
|
coordinates:
|
||||||
- "35.021041"
|
- "35.021041"
|
||||||
- "135.7556075"
|
- "135.7556075"
|
||||||
rating: 7
|
rating: 7
|
||||||
@@ -16,21 +13,9 @@ created: 2023-09-12
|
|||||||
---
|
---
|
||||||
## Trips
|
## Trips
|
||||||
|
|
||||||
![[Trips.base#Related trips]]
|
![[Trips.base#Location]]
|
||||||
|
|
||||||
## Map
|
|
||||||
|
|
||||||
```leaflet
|
|
||||||
id: kyoto
|
|
||||||
minZoom: 7
|
|
||||||
maxZoom: 20
|
|
||||||
defaultZoom: 11
|
|
||||||
markerTag:
|
|
||||||
- places
|
|
||||||
height: 400px
|
|
||||||
coordinates: [[Kyoto]]
|
|
||||||
```
|
|
||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
|
![[Map.base#Location]]
|
||||||
![[Places.base#Location]]
|
![[Places.base#Location]]
|
||||||
@@ -2,8 +2,6 @@
|
|||||||
categories:
|
categories:
|
||||||
- "[[Companies]]"
|
- "[[Companies]]"
|
||||||
- "[[Apps]]"
|
- "[[Apps]]"
|
||||||
tags:
|
|
||||||
- companies
|
|
||||||
type:
|
type:
|
||||||
- "[[Apps]]"
|
- "[[Apps]]"
|
||||||
url: https://obsidian.md/
|
url: https://obsidian.md/
|
||||||
|
|||||||
@@ -16,7 +16,4 @@ topics:
|
|||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
last: 2023-09-12
|
last: 2023-09-12
|
||||||
rating: 7
|
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:
|
categories:
|
||||||
- "[[People]]"
|
- "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Musicians]]"
|
||||||
- musicians
|
|
||||||
created: 2023-09-13
|
created: 2023-09-13
|
||||||
---
|
---
|
||||||
## Albums
|
## Albums
|
||||||
|
|
||||||
![[Albums.base#Related albums]]
|
![[Albums.base#Artist]]
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[People]]"
|
- "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Authors]]"
|
||||||
- authors
|
|
||||||
org:
|
org:
|
||||||
- "[[Obsidian]]"
|
- "[[Obsidian]]"
|
||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
|
|||||||
@@ -10,7 +10,4 @@ aliases:
|
|||||||
last: "[[2022-04]]"
|
last: "[[2022-04]]"
|
||||||
rating: 7
|
rating: 7
|
||||||
year: 2017
|
year: 2017
|
||||||
tags:
|
|
||||||
- games
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -13,8 +13,6 @@ topics:
|
|||||||
created: 2023-09-12
|
created: 2023-09-12
|
||||||
last: 2023-09-12
|
last: 2023-09-12
|
||||||
tags:
|
tags:
|
||||||
- books
|
|
||||||
- references
|
|
||||||
- to-read
|
- to-read
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Podcast episodes]]"
|
- "[[Podcast episodes]]"
|
||||||
tags:
|
|
||||||
- podcast
|
|
||||||
- episodes
|
|
||||||
show: "[[Well Made]]"
|
show: "[[Well Made]]"
|
||||||
guests:
|
guests:
|
||||||
- "[[Kevin Kelly]]"
|
- "[[Kevin Kelly]]"
|
||||||
|
|||||||
@@ -4,8 +4,6 @@ categories:
|
|||||||
host:
|
host:
|
||||||
- "[[Steph Ango]]"
|
- "[[Steph Ango]]"
|
||||||
rating:
|
rating:
|
||||||
tags:
|
|
||||||
- podcast
|
|
||||||
---
|
---
|
||||||
## Episodes
|
## Episodes
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
---
|
---
|
||||||
categories: "[[People]]"
|
categories: "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Actors]]"
|
||||||
- actors
|
|
||||||
---
|
---
|
||||||
## Movies
|
## Movies
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Albums]]"
|
- "[[Albums]]"
|
||||||
tags:
|
|
||||||
- music
|
|
||||||
- albums
|
|
||||||
- references
|
|
||||||
genre: []
|
genre: []
|
||||||
artist: ""
|
artist: ""
|
||||||
year:
|
year:
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
categories: "[[Apps]]"
|
categories: "[[Apps]]"
|
||||||
tags:
|
|
||||||
- apps
|
|
||||||
maker: ""
|
maker: ""
|
||||||
rating:
|
rating:
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
---
|
---
|
||||||
categories: "[[People]]"
|
categories: "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Authors]]"
|
||||||
- authors
|
|
||||||
---
|
---
|
||||||
## Books
|
## Books
|
||||||
|
|
||||||
|
|||||||
@@ -1,21 +1,23 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Albums]]")
|
- note.categories.contains(link("Albums"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Album
|
file.name:
|
||||||
property.year: Year
|
displayName: Album
|
||||||
property.artist: Artist
|
note.year:
|
||||||
property.created: Added
|
displayName: Year
|
||||||
property.rating: Rating
|
note.artist:
|
||||||
property.genre: Genre
|
displayName: Artist
|
||||||
|
note.created:
|
||||||
|
displayName: Added
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.genre:
|
||||||
|
displayName: Genre
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Albums
|
name: Albums
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
|
||||||
- not(contains(file.name, "Template"))
|
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- artist
|
- artist
|
||||||
@@ -26,7 +28,7 @@ views:
|
|||||||
name: Artist
|
name: Artist
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(artist, concat("[[", this.file.name, "]]"))
|
- list(artist).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- artist
|
- artist
|
||||||
@@ -37,7 +39,7 @@ views:
|
|||||||
name: Genre
|
name: Genre
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(genre, concat("[[", this.file.name, "]]"))
|
- list(genre).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- artist
|
- artist
|
||||||
|
|||||||
36
Templates/Bases/Attachments.base
Normal file
36
Templates/Bases/Attachments.base
Normal file
@@ -0,0 +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.backlinks
|
||||||
|
properties:
|
||||||
|
formula.links:
|
||||||
|
displayName: Links
|
||||||
|
views:
|
||||||
|
- type: cards
|
||||||
|
name: Images
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- this.file.hasLink(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: Unused attachements
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- formula.links.isEmpty()
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- formula.links
|
||||||
|
columnSize:
|
||||||
|
file.name: 414
|
||||||
@@ -1,14 +1,31 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- linksTo(file.file, this.file.path)
|
- file.hasLink(this)
|
||||||
display:
|
formulas:
|
||||||
property.category: Category
|
Path: file.path
|
||||||
file.name: Name
|
properties:
|
||||||
property.created: Created
|
note.created:
|
||||||
|
displayName: Date
|
||||||
|
file.name:
|
||||||
|
displayName: Title
|
||||||
|
note.categories:
|
||||||
|
displayName: Categories
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Backlinks
|
name: Backlinks
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- category
|
- categories
|
||||||
- created
|
- created
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Recent entries
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- created
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
limit: 20
|
||||||
|
|||||||
@@ -1,11 +1,14 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Board games]]")
|
- categories.contains(link("Board games"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Game
|
file.name:
|
||||||
property.rating: Rating
|
displayName: Game
|
||||||
property.last: Last
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Table
|
||||||
|
|||||||
@@ -1,52 +1,56 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Books]]")
|
- categories.contains(link("Books"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Name
|
note.author:
|
||||||
property.last: Last
|
displayName: Author
|
||||||
property.rating: Rating
|
file.name:
|
||||||
property.year: Year
|
displayName: Name
|
||||||
property.genre: Genre
|
note.year:
|
||||||
property.author: Author
|
displayName: Year
|
||||||
property.created: Added
|
note.genre:
|
||||||
|
displayName: Genre
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Favorites
|
name: Books
|
||||||
order:
|
order:
|
||||||
|
- file.name
|
||||||
- author
|
- author
|
||||||
- file.name
|
- length
|
||||||
- rating
|
|
||||||
- year
|
|
||||||
- created
|
|
||||||
- genre
|
|
||||||
- type: table
|
|
||||||
name: All
|
|
||||||
order:
|
|
||||||
- file.name
|
|
||||||
- year
|
- year
|
||||||
- rating
|
- rating
|
||||||
|
- topics
|
||||||
- last
|
- last
|
||||||
- genre
|
|
||||||
- type: table
|
|
||||||
name: Last read
|
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- not(empty(property.last))
|
|
||||||
order:
|
|
||||||
- file.name
|
|
||||||
- year
|
|
||||||
- rating
|
|
||||||
- last
|
|
||||||
- genre
|
|
||||||
sort:
|
sort:
|
||||||
- column: property.last
|
- property: file.name
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Top rated
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
- type: table
|
- type: table
|
||||||
name: Author
|
name: Author
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(author, concat("[[", this.file.name, "]]"))
|
- list(author).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: genre
|
||||||
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Genre
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(genre).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
|
|||||||
@@ -1,37 +1,39 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Clippings]]")
|
- note.categories.contains(link("Clippings"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Title
|
file.name:
|
||||||
property.author: Author
|
displayName: Title
|
||||||
property.created: Clipped
|
note.author:
|
||||||
property.published: Published
|
displayName: Author
|
||||||
|
note.created:
|
||||||
|
displayName: Clipped
|
||||||
|
note.published:
|
||||||
|
displayName: Published
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Clippings
|
name: Clippings
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
|
||||||
- not(contains(file.name, "Template"))
|
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- author
|
- author
|
||||||
- created
|
- created
|
||||||
- published
|
- published
|
||||||
sort:
|
sort:
|
||||||
- column: clipped
|
- property: created
|
||||||
direction: DESC
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
note.author: 140
|
||||||
- type: table
|
- type: table
|
||||||
name: Author
|
name: Author
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(author, concat("[[", this.file.name, "]]"))
|
- list(author).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- author
|
- author
|
||||||
- created
|
- created
|
||||||
- published
|
- published
|
||||||
sort:
|
sort:
|
||||||
- column: clipped
|
- property: clipped
|
||||||
direction: DESC
|
direction: DESC
|
||||||
|
|||||||
@@ -1,13 +1,22 @@
|
|||||||
display:
|
filters:
|
||||||
file.name: Company
|
and:
|
||||||
property.url: Link
|
- categories.contains(link("Companies"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Company
|
||||||
|
property.url:
|
||||||
|
displayName: Link
|
||||||
|
note.url:
|
||||||
|
displayName: URL
|
||||||
|
note.people:
|
||||||
|
displayName: People
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Companies
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
|
||||||
- not(contains(file.name, "Template"))
|
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- url
|
- url
|
||||||
|
- people
|
||||||
|
columnSize:
|
||||||
|
note.url: 239
|
||||||
|
|||||||
@@ -1,28 +1,72 @@
|
|||||||
filters:
|
filters:
|
||||||
or:
|
or:
|
||||||
- linksTo(file.file, this.file.path)
|
- file.name.contains(this.file.name)
|
||||||
- contains(property.created, this.file.name)
|
- created.toString().contains(this.file.name)
|
||||||
- contains(property.last, this.file.name)
|
- start.toString().contains(this.file.name)
|
||||||
- contains(property.end, this.file.name)
|
- end.toString().contains(this.file.name)
|
||||||
display:
|
- file.links.contains(this.file)
|
||||||
file.name: Entry
|
properties:
|
||||||
property.created: Created
|
file.name:
|
||||||
property.categories: Categories
|
displayName: Entry
|
||||||
|
note.categories:
|
||||||
|
displayName: Categories
|
||||||
|
note.created:
|
||||||
|
displayName: Created
|
||||||
|
note.tags:
|
||||||
|
displayName: Tags
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Daily notes
|
name: Daily notes
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- not(taggedWith(file.file, "daily"))
|
- '!file.tags.contains("daily")'
|
||||||
- not(taggedWith(file.file, "monthly"))
|
- '!file.tags.contains("monthly")'
|
||||||
|
- file.name != this.file.name
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- created
|
||||||
|
- categories
|
||||||
|
- tags
|
||||||
|
sort:
|
||||||
|
- property: tags
|
||||||
|
direction: ASC
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: categories
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 287
|
||||||
|
note.created: 128
|
||||||
|
note.categories: 119
|
||||||
|
- type: table
|
||||||
|
name: Monthly
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.tags.contains("daily")'
|
||||||
|
- '!file.tags.contains("monthly")'
|
||||||
|
- file.name != this.file.name
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- categories
|
- categories
|
||||||
- created
|
- created
|
||||||
sort:
|
sort:
|
||||||
- column: file.name
|
- property: file.name
|
||||||
direction: ASC
|
direction: ASC
|
||||||
- column: property.created
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Yearly
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.tags.contains("daily")'
|
||||||
|
- '!file.tags.contains("monthly")'
|
||||||
|
- file.name != this.file.name
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- categories
|
||||||
|
- created
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
direction: ASC
|
direction: ASC
|
||||||
columnSize:
|
|
||||||
file.name: 263
|
|
||||||
|
|||||||
@@ -1,29 +1,46 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Events]]")
|
- categories.contains(link("Events"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Event
|
note.end:
|
||||||
property.loc: Location
|
displayName: End
|
||||||
|
note.loc:
|
||||||
|
displayName: Location
|
||||||
|
note.start:
|
||||||
|
displayName: Start
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Events
|
name: Events
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- loc
|
|
||||||
- start
|
- start
|
||||||
|
- end
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- property: start
|
||||||
|
direction: DESC
|
||||||
- type: table
|
- type: table
|
||||||
name: Type
|
name: Type
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(type, concat("[[", this.file.name, "]]"))
|
- list(type).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- loc
|
|
||||||
- start
|
- start
|
||||||
columnSize:
|
- loc
|
||||||
file.name: 226
|
|
||||||
property.loc: 199
|
|
||||||
sort:
|
sort:
|
||||||
- column: property.start
|
- property: start
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Location
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(loc).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- property: start
|
||||||
direction: DESC
|
direction: DESC
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
display:
|
filters:
|
||||||
file.name: Name
|
and:
|
||||||
property.created: Created
|
- tags.contains("0🌲")
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.created:
|
||||||
|
displayName: Created
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Evergreen
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- contains(property.tags, "0🌲")
|
|
||||||
- not(contains(file.name, "Template"))
|
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- created
|
- created
|
||||||
|
sort:
|
||||||
|
- column: note.created
|
||||||
|
direction: DESC
|
||||||
|
|||||||
36
Templates/Bases/Everything.base
Normal file
36
Templates/Bases/Everything.base
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
formulas:
|
||||||
|
Embeds: if(file.embeds[0].containsAny("jpg","gif","webp","jpeg","avif"), file.embeds[0])
|
||||||
|
Date: if(created,created,if(start,start))
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: All files
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- file.mtime
|
||||||
|
- file.path
|
||||||
|
- file.ext
|
||||||
|
- type: cards
|
||||||
|
name: Images
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
image: file.file
|
||||||
|
- type: cards
|
||||||
|
name: Images in posts
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- "!formula.Embeds.isEmpty()"
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- formula.Date
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: date
|
||||||
|
direction: DESC
|
||||||
|
image: formula.Embeds
|
||||||
@@ -1,21 +1,17 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Games]]")
|
- note.categories.contains(link("Games"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
display:
|
||||||
file.name: Games
|
file.name: Games
|
||||||
property.year: Year
|
note.year: Year
|
||||||
property.maker: Maker
|
note.maker: Maker
|
||||||
property.rating: Rating
|
note.rating: Rating
|
||||||
property.genre: Genre
|
note.genre: Genre
|
||||||
property.last: Last played
|
note.last: Last played
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Games
|
name: Games
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- contains(property.categories, "[[Games]]")
|
|
||||||
- not(contains(file.name, "Template"))
|
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- maker
|
- maker
|
||||||
@@ -27,7 +23,7 @@ views:
|
|||||||
name: Studio
|
name: Studio
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(maker, concat("[[", this.file.name, "]]"))
|
- list(maker).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- maker
|
- maker
|
||||||
@@ -39,7 +35,7 @@ views:
|
|||||||
name: Genre
|
name: Genre
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(genre, concat("[[", this.file.name, "]]"))
|
- list(genre).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- maker
|
- maker
|
||||||
|
|||||||
@@ -1,17 +1,24 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(genre, concat("[[", this.file.name, "]]"))
|
- list(genre).contains(this)
|
||||||
display:
|
display:
|
||||||
property.categories: Categories
|
note.rating: Rating
|
||||||
property.rating: Rating
|
note.categories: Category
|
||||||
property.last: Last
|
note.last: Last
|
||||||
file.name: Name
|
file.name: Name
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Genre
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- categories
|
|
||||||
- rating
|
- rating
|
||||||
|
- categories
|
||||||
- last
|
- last
|
||||||
sort: []
|
sort:
|
||||||
|
- column: note.rating
|
||||||
|
direction: DESC
|
||||||
|
- column: note.last
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 248
|
||||||
|
note.categories: 170
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.tags, "journal")
|
- '!file.name.contains("Template")'
|
||||||
- not(contains(file.name, "Template"))
|
- tags.contains("journal")
|
||||||
display:
|
properties:
|
||||||
file.name: Entry
|
file.name:
|
||||||
property.created: Created
|
displayName: Entry
|
||||||
|
note.created:
|
||||||
|
displayName: Created
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Table
|
||||||
|
|||||||
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
|
||||||
@@ -1,12 +1,18 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Meetings]]")
|
- categories.contains(link("Meetings"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
property.date: Date
|
note.date:
|
||||||
property.people: People
|
displayName: Date
|
||||||
property.type: Type
|
note.people:
|
||||||
file.name: Meeting
|
displayName: People
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
file.name:
|
||||||
|
displayName: Meeting
|
||||||
|
note.org:
|
||||||
|
displayName: Org
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Meetings
|
name: Meetings
|
||||||
@@ -16,18 +22,31 @@ views:
|
|||||||
- type
|
- type
|
||||||
- people
|
- people
|
||||||
sort:
|
sort:
|
||||||
- column: property.date
|
- property: date
|
||||||
direction: ASC
|
direction: ASC
|
||||||
- type: table
|
- type: table
|
||||||
name: Person
|
name: Person
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(people, concat("[[", this.file.name, "]]"))
|
- list(people).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- date
|
- date
|
||||||
- type
|
- type
|
||||||
- people
|
- people
|
||||||
sort:
|
sort:
|
||||||
- column: property.date
|
- property: date
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Type
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(type).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- date
|
||||||
|
- people
|
||||||
|
- org
|
||||||
|
sort:
|
||||||
|
- property: date
|
||||||
|
direction: DESC
|
||||||
|
|||||||
@@ -1,47 +1,109 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- not(contains(file.name, "Template"))
|
- categories.contains(link("Movies"))
|
||||||
- contains(property.categories, "[[Movies]]")
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Name
|
file.name:
|
||||||
property.last: Last
|
displayName: Name
|
||||||
property.rating: Rating
|
note.last:
|
||||||
property.year: Year
|
displayName: Last
|
||||||
property.director: Director
|
note.rating:
|
||||||
property.genre: Genre
|
displayName: Rating
|
||||||
property.cast: Cast
|
note.year:
|
||||||
|
displayName: Year
|
||||||
|
note.director:
|
||||||
|
displayName: Director
|
||||||
|
note.genre:
|
||||||
|
displayName: Genre
|
||||||
|
note.cast:
|
||||||
|
displayName: Cast
|
||||||
|
note.scoreImdb:
|
||||||
|
displayName: IMDB
|
||||||
|
note.scoreRT:
|
||||||
|
displayName: RT
|
||||||
|
note.runtime:
|
||||||
|
displayName: Runtime
|
||||||
|
note.watchlist:
|
||||||
|
displayName: Added
|
||||||
views:
|
views:
|
||||||
- type: table
|
|
||||||
name: Favorites
|
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- property.rating > 6
|
|
||||||
order:
|
|
||||||
- file.name
|
|
||||||
- year
|
|
||||||
- rating
|
|
||||||
- last
|
|
||||||
- director
|
|
||||||
- genre
|
|
||||||
- type: table
|
- type: table
|
||||||
name: All
|
name: All
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
|
- director
|
||||||
- rating
|
- rating
|
||||||
- last
|
- last
|
||||||
|
- plot
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: director
|
||||||
|
direction: ASC
|
||||||
|
- property: plot
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 193
|
||||||
|
note.director: 205
|
||||||
|
note.plot: 233
|
||||||
|
note.genre: 261
|
||||||
|
- type: table
|
||||||
|
name: To-watch
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- last.isEmpty()
|
||||||
|
- rating.isEmpty()
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- scoreImdb
|
||||||
|
- scoreRT
|
||||||
|
- runtime
|
||||||
|
- watchlist
|
||||||
- director
|
- director
|
||||||
- genre
|
- genre
|
||||||
sort:
|
sort:
|
||||||
- column: file.name
|
- property: scoreImdb
|
||||||
|
direction: DESC
|
||||||
|
- property: scoreRT
|
||||||
|
direction: DESC
|
||||||
|
- property: watchlist
|
||||||
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
direction: ASC
|
direction: ASC
|
||||||
- column: property.director
|
- property: director
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 283
|
||||||
|
note.year: 68
|
||||||
|
note.scoreRT: 67
|
||||||
|
note.director: 238
|
||||||
|
- type: table
|
||||||
|
name: Favorites
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.rating > 6
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- director
|
||||||
|
- year
|
||||||
|
- genre
|
||||||
|
- rating
|
||||||
|
- ratingImdb
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: ratingImdb
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 283
|
||||||
|
note.director: 221
|
||||||
|
note.year: 68
|
||||||
- type: table
|
- type: table
|
||||||
name: Last seen
|
name: Last seen
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- not(empty(property.last))
|
- "!last.isEmpty()"
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
@@ -50,36 +112,128 @@ views:
|
|||||||
- director
|
- director
|
||||||
- genre
|
- genre
|
||||||
sort:
|
sort:
|
||||||
- column: property.last
|
- property: last
|
||||||
direction: DESC
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
limit: 20
|
limit: 20
|
||||||
- type: table
|
- type: table
|
||||||
name: Actor
|
name: Actor
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(cast, concat("[[", this.file.name, "]]"))
|
- list(cast).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
- director
|
- director
|
||||||
- genre
|
- genre
|
||||||
|
- ratingImdb
|
||||||
|
sort:
|
||||||
|
- property: ratingImdb
|
||||||
|
direction: DESC
|
||||||
- type: table
|
- type: table
|
||||||
name: Genre
|
name: Genre
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(genre, concat("[[", this.file.name, "]]"))
|
- list(genre).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
|
- rating
|
||||||
- year
|
- year
|
||||||
- director
|
- director
|
||||||
|
- last
|
||||||
- genre
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: genre
|
||||||
|
direction: ASC
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
note.director: 166
|
||||||
|
note.last: 115
|
||||||
- type: table
|
- type: table
|
||||||
name: Director
|
name: Director
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(director, concat("[[", this.file.name, "]]"))
|
- list(director).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
- cast
|
- cast
|
||||||
- genre
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: rating
|
||||||
|
direction: ASC
|
||||||
|
- property: year
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 186
|
||||||
|
note.year: 79
|
||||||
|
note.rating: 96
|
||||||
|
note.genre: 243
|
||||||
|
- type: table
|
||||||
|
name: Soundtrack
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(music).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- cast
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: rating
|
||||||
|
direction: ASC
|
||||||
|
- property: year
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 186
|
||||||
|
note.year: 79
|
||||||
|
note.rating: 96
|
||||||
|
note.genre: 243
|
||||||
|
- type: table
|
||||||
|
name: Theater
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- file.links.contains(this.file)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- year
|
||||||
|
- scoreImdb
|
||||||
|
- runtime
|
||||||
|
- scoreRT
|
||||||
|
- watchlist
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: scoreImdb
|
||||||
|
direction: DESC
|
||||||
|
- property: scoreRT
|
||||||
|
direction: DESC
|
||||||
|
- property: watchlist
|
||||||
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: director
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 283
|
||||||
|
note.rating: 94
|
||||||
|
note.year: 68
|
||||||
|
note.scoreRT: 67
|
||||||
|
note.director: 238
|
||||||
|
note.genre: 243
|
||||||
|
|||||||
@@ -1,13 +1,33 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[People]]")
|
- '!file.name.contains("Template")'
|
||||||
- not(contains(file.name, "Template"))
|
- categories.contains(link("People"))
|
||||||
display:
|
formulas:
|
||||||
file.name: Name
|
Age: (now() - birthday).years.floor()
|
||||||
property.tags: Tags
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.tags:
|
||||||
|
displayName: Tags
|
||||||
|
note.birthday:
|
||||||
|
displayName: Birthday
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: All people
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- tags
|
- 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
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
filters:
|
|
||||||
and:
|
|
||||||
- contains(type, concat("[[", this.file.name, "]]"))
|
|
||||||
display:
|
|
||||||
property.rating: Rating
|
|
||||||
file.name: Name
|
|
||||||
property.loc: Location
|
|
||||||
property.last: Last
|
|
||||||
views:
|
|
||||||
- type: table
|
|
||||||
name: Default view
|
|
||||||
order:
|
|
||||||
- file.name
|
|
||||||
- rating
|
|
||||||
- last
|
|
||||||
- loc
|
|
||||||
sort:
|
|
||||||
- column: property.last
|
|
||||||
direction: DESC
|
|
||||||
- column: property.rating
|
|
||||||
direction: ASC
|
|
||||||
columnSize:
|
|
||||||
property.rating: 94
|
|
||||||
property.loc: 270
|
|
||||||
@@ -1,52 +1,115 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Places]]")
|
- note.categories.contains(link("Places"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
property.type: Type
|
note.type:
|
||||||
property.rating: Rating
|
displayName: Type
|
||||||
property.loc: Location
|
note.rating:
|
||||||
file.name: Name
|
displayName: Rating
|
||||||
property.last: Last
|
note.loc:
|
||||||
|
displayName: Location
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Places
|
name: Places
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
|
- rating
|
||||||
- loc
|
- loc
|
||||||
- type
|
- type
|
||||||
- rating
|
|
||||||
- last
|
- last
|
||||||
sort:
|
sort:
|
||||||
- column: property.loc
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: type
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
- property: loc
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 162
|
||||||
|
note.loc: 145
|
||||||
|
note.type: 199
|
||||||
- type: table
|
- type: table
|
||||||
name: Location
|
name: Location
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(loc, concat("[[", this.file.name, "]]"))
|
- list(loc).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- type
|
- type
|
||||||
- rating
|
- rating
|
||||||
- last
|
- last
|
||||||
sort:
|
sort:
|
||||||
- column: property.last
|
- property: rating
|
||||||
direction: DESC
|
direction: DESC
|
||||||
- column: property.loc
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: loc
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
note.type: 197
|
||||||
- type: table
|
- type: table
|
||||||
name: Type
|
name: Type
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(type, concat("[[", this.file.name, "]]"))
|
- list(type).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- type
|
- type
|
||||||
- rating
|
- rating
|
||||||
- last
|
- last
|
||||||
sort:
|
sort:
|
||||||
- column: property.last
|
- property: last
|
||||||
direction: DESC
|
direction: DESC
|
||||||
- column: property.loc
|
- property: loc
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
note.type: 153
|
||||||
|
- type: table
|
||||||
|
name: Related
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- file.hasLink(this)
|
||||||
|
- '!tags.containsAny("cities", "countries")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- loc
|
||||||
|
- type
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: type
|
||||||
|
direction: ASC
|
||||||
|
- property: loc
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 162
|
||||||
|
note.rating: 65
|
||||||
|
note.loc: 145
|
||||||
|
note.type: 199
|
||||||
|
- type: table
|
||||||
|
name: Metatype
|
||||||
|
filters:
|
||||||
|
or:
|
||||||
|
- list(type).contains(this)
|
||||||
|
- list(type).containsAny(this.topics)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- type
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: loc
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
note.type: 153
|
||||||
|
|||||||
@@ -1,14 +1,22 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Podcast episodes]]")
|
- note.categories.contains(link("Podcast episodes"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Podcast
|
file.name:
|
||||||
property.show: Show
|
displayName: Podcast
|
||||||
property.guests: Guests
|
note.show:
|
||||||
property.episode: Episode
|
displayName: Show
|
||||||
property.rating: Rating
|
note.guests:
|
||||||
property.published: Published
|
displayName: Guests
|
||||||
|
note.episode:
|
||||||
|
displayName: Episode
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.published:
|
||||||
|
displayName: Published
|
||||||
|
note.guest:
|
||||||
|
displayName: Guest
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: All episodes
|
name: All episodes
|
||||||
@@ -19,23 +27,26 @@ views:
|
|||||||
- episode
|
- episode
|
||||||
- rating
|
- rating
|
||||||
- published
|
- published
|
||||||
|
sort:
|
||||||
|
- property: published
|
||||||
|
direction: DESC
|
||||||
- type: table
|
- type: table
|
||||||
name: Show
|
name: Show
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(show, concat("[[", this.file.name, "]]"))
|
- list(show).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- show
|
- show
|
||||||
- guests
|
|
||||||
- episode
|
- episode
|
||||||
- rating
|
- rating
|
||||||
- published
|
- published
|
||||||
|
- guest
|
||||||
- type: table
|
- type: table
|
||||||
name: Guest
|
name: Guest
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(guests, concat("[[", this.file.name, "]]"))
|
- list(guest).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- show
|
- show
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Podcasts]]")
|
- note.categories.contains(link("Podcasts"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Podcast
|
file.name:
|
||||||
property.host: Host
|
displayName: Podcast
|
||||||
|
note.host:
|
||||||
|
displayName: Host
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Table
|
||||||
|
|||||||
@@ -1,15 +1,21 @@
|
|||||||
display:
|
properties:
|
||||||
file.name: Title
|
file.name:
|
||||||
property.status: Status
|
displayName: Title
|
||||||
property.published: Published
|
note.status:
|
||||||
|
displayName: Status
|
||||||
|
note.published:
|
||||||
|
displayName: Published
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: All
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
- list(categories).contains(link("Posts"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- status
|
- status
|
||||||
- published
|
- published
|
||||||
|
sort:
|
||||||
|
- column: note.published
|
||||||
|
direction: DESC
|
||||||
|
|||||||
@@ -1,88 +1,149 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Products]]")
|
- note.categories.contains(link("Products"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
formulas:
|
formulas:
|
||||||
Usage: formula.Owned * monthly-uses
|
Owned: ((now() - acquired).months).round()
|
||||||
Owned: round(dateDiff(acquired, now()) / -2629746000)
|
totalUses: monthlyUses * formula.Owned.round()
|
||||||
Per use: concat("$", price / formula.Usage)
|
perUse: (price / formula.totalUses).toFixed(2)
|
||||||
display:
|
properties:
|
||||||
property.monthly-uses: Uses/month
|
note.monthlyUses:
|
||||||
formula.Owned: Months
|
displayName: Uses/month
|
||||||
formula.Usage: Total uses
|
formula.Owned:
|
||||||
property.price: Price
|
displayName: Months
|
||||||
property.rating: Rating
|
formula.totalUses:
|
||||||
property.acquired: Acquired
|
displayName: Total uses
|
||||||
property.type: Type
|
formula.perUse:
|
||||||
file.name: Product
|
displayName: Per use
|
||||||
|
note.price:
|
||||||
|
displayName: Price
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.acquired:
|
||||||
|
displayName: Acquired
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
file.name:
|
||||||
|
displayName: Product
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Products
|
name: Products
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
|
- acquired
|
||||||
- rating
|
- rating
|
||||||
- price
|
- price
|
||||||
- acquired
|
- monthlyUses
|
||||||
|
- formula.perUse
|
||||||
|
- formula.Owned
|
||||||
|
- formula.totalUses
|
||||||
- type
|
- type
|
||||||
|
sort:
|
||||||
|
- property: formula.perUse
|
||||||
|
direction: ASC
|
||||||
|
- property: formula.totalUses
|
||||||
|
direction: ASC
|
||||||
|
- property: acquired
|
||||||
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
|
direction: DESC
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
- property: formula.Owned
|
||||||
|
direction: ASC
|
||||||
columnSize:
|
columnSize:
|
||||||
file.name: 209
|
file.name: 209
|
||||||
property.monthly-uses: 82
|
note.acquired: 112
|
||||||
formula.Usage: 115
|
note.price: 78
|
||||||
sort:
|
note.monthlyUses: 123
|
||||||
- column: file.name
|
formula.perUse: 102
|
||||||
direction: ASC
|
formula.Owned: 113
|
||||||
- column: formula.Usage
|
formula.totalUses: 115
|
||||||
direction: DESC
|
|
||||||
- column: property.acquired
|
|
||||||
direction: DESC
|
|
||||||
- column: property.monthly-uses
|
|
||||||
direction: DESC
|
|
||||||
- type: table
|
- type: table
|
||||||
name: Cost per use
|
name: Cost per use
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.monthlyUses > 0
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- acquired
|
||||||
|
- monthlyUses
|
||||||
|
- price
|
||||||
|
- formula.Owned
|
||||||
|
- formula.totalUses
|
||||||
|
- formula.perUse
|
||||||
|
- type
|
||||||
|
- rating
|
||||||
|
sort:
|
||||||
|
- property: acquired
|
||||||
|
direction: ASC
|
||||||
|
- property: monthlyUses
|
||||||
|
direction: DESC
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 207
|
||||||
|
note.acquired: 112
|
||||||
|
note.monthlyUses: 131
|
||||||
|
note.price: 78
|
||||||
|
formula.Owned: 99
|
||||||
|
formula.totalUses: 100
|
||||||
|
formula.perUse: 93
|
||||||
|
- type: table
|
||||||
|
name: Maker
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(maker).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- rating
|
- rating
|
||||||
- formula.Per use
|
- formula.perUse
|
||||||
- monthly-uses
|
- monthlyUses
|
||||||
- price
|
- price
|
||||||
- formula.Usage
|
- formula.totalUses
|
||||||
- formula.Owned
|
- formula.Owned
|
||||||
- acquired
|
- acquired
|
||||||
- type
|
- type
|
||||||
columnSize:
|
|
||||||
formula.Per use: 77
|
|
||||||
property.monthly-uses: 82
|
|
||||||
formula.Usage: 115
|
|
||||||
sort:
|
sort:
|
||||||
- column: file.name
|
- property: file.name
|
||||||
direction: ASC
|
direction: ASC
|
||||||
- column: formula.Usage
|
- property: formula.totalUses
|
||||||
direction: DESC
|
direction: DESC
|
||||||
- column: property.acquired
|
- property: acquired
|
||||||
direction: DESC
|
direction: DESC
|
||||||
- column: property.monthly-uses
|
- property: monthlyUses
|
||||||
direction: DESC
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 209
|
||||||
|
note.monthlyUses: 82
|
||||||
|
formula.totalUses: 115
|
||||||
- type: table
|
- type: table
|
||||||
name: Type
|
name: Type
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(type, concat("[[", this.file.name, "]]"))
|
- list(type).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- rating
|
- rating
|
||||||
|
- formula.perUse
|
||||||
|
- monthlyUses
|
||||||
- price
|
- price
|
||||||
|
- formula.totalUses
|
||||||
|
- formula.Owned
|
||||||
- acquired
|
- acquired
|
||||||
- type
|
- type
|
||||||
|
sort:
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: formula.totalUses
|
||||||
|
direction: DESC
|
||||||
|
- property: acquired
|
||||||
|
direction: DESC
|
||||||
|
- property: monthlyUses
|
||||||
|
direction: DESC
|
||||||
columnSize:
|
columnSize:
|
||||||
file.name: 209
|
file.name: 209
|
||||||
property.monthly-uses: 82
|
note.monthlyUses: 82
|
||||||
formula.Usage: 115
|
formula.totalUses: 115
|
||||||
sort:
|
|
||||||
- column: file.name
|
|
||||||
direction: ASC
|
|
||||||
- column: formula.Usage
|
|
||||||
direction: DESC
|
|
||||||
- column: property.acquired
|
|
||||||
direction: DESC
|
|
||||||
- column: property.monthly-uses
|
|
||||||
direction: DESC
|
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
- '!file.name.contains("Template")'
|
||||||
- not(contains(file.name, "Template"))
|
- note.categories.contains(link("Projects"))
|
||||||
display:
|
properties:
|
||||||
property.status: Status
|
note.status:
|
||||||
property.url: URL
|
displayName: Status
|
||||||
file.name: Name
|
note.url:
|
||||||
property.type: Type
|
displayName: URL
|
||||||
property.year: Year
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
note.year:
|
||||||
|
displayName: Year
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Table
|
name: Table
|
||||||
@@ -17,3 +22,11 @@ views:
|
|||||||
- year
|
- year
|
||||||
- status
|
- status
|
||||||
- url
|
- url
|
||||||
|
sort:
|
||||||
|
- column: note.status
|
||||||
|
direction: ASC
|
||||||
|
- column: note.year
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 209
|
||||||
|
note.type: 199
|
||||||
|
|||||||
39
Templates/Bases/Ratings.base
Normal file
39
Templates/Bases/Ratings.base
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- rating > 0
|
||||||
|
properties:
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.categories:
|
||||||
|
displayName: Categories
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Ratings
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- categories
|
||||||
|
sort:
|
||||||
|
- column: note.last
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 238
|
||||||
|
- type: table
|
||||||
|
name: Recent
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- last > now() - "60d"
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- categories
|
||||||
|
sort:
|
||||||
|
- column: note.last
|
||||||
|
direction: DESC
|
||||||
|
limit: 100
|
||||||
@@ -1,21 +1,30 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
- note.categories.contains(link("Recipes"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
file.name: Name
|
file.name:
|
||||||
property.author: Author
|
displayName: Name
|
||||||
property.type: Type
|
note.author:
|
||||||
property.ingredients: Ingredients
|
displayName: Author
|
||||||
property.cuisine: Cuisine
|
note.type:
|
||||||
property.rating: Rating
|
displayName: Type
|
||||||
|
note.ingredients:
|
||||||
|
displayName: Ingredients
|
||||||
|
note.cuisine:
|
||||||
|
displayName: Cuisine
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Recipes
|
name: Recipes
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- type
|
- type
|
||||||
|
- cuisine
|
||||||
- author
|
- author
|
||||||
- ingredients
|
- ingredients
|
||||||
- cuisine
|
|
||||||
- rating
|
- rating
|
||||||
|
columnSize:
|
||||||
|
note.type: 201
|
||||||
|
note.cuisine: 174
|
||||||
|
|||||||
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
|
||||||
@@ -1,28 +1,23 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
- contains(property.categories, "[[Shows]]")
|
- note.categories.contains(link("Shows"))
|
||||||
display:
|
properties:
|
||||||
file.name: Name
|
file.name:
|
||||||
property.last: Last
|
displayName: Name
|
||||||
property.rating: Rating
|
note.last:
|
||||||
property.year: Year
|
displayName: Last
|
||||||
property.director: Director
|
note.rating:
|
||||||
property.genre: Genre
|
displayName: Rating
|
||||||
property.cast: Cast
|
note.year:
|
||||||
|
displayName: Year
|
||||||
|
note.director:
|
||||||
|
displayName: Director
|
||||||
|
note.genre:
|
||||||
|
displayName: Genre
|
||||||
|
note.cast:
|
||||||
|
displayName: Cast
|
||||||
views:
|
views:
|
||||||
- type: table
|
|
||||||
name: Favorites
|
|
||||||
filters:
|
|
||||||
and:
|
|
||||||
- property.rating > 6
|
|
||||||
order:
|
|
||||||
- file.name
|
|
||||||
- year
|
|
||||||
- rating
|
|
||||||
- last
|
|
||||||
- director
|
|
||||||
- genre
|
|
||||||
- type: table
|
- type: table
|
||||||
name: All
|
name: All
|
||||||
order:
|
order:
|
||||||
@@ -33,15 +28,29 @@ views:
|
|||||||
- director
|
- director
|
||||||
- genre
|
- genre
|
||||||
sort:
|
sort:
|
||||||
|
- column: note.rating
|
||||||
|
direction: DESC
|
||||||
- column: file.name
|
- column: file.name
|
||||||
direction: ASC
|
direction: ASC
|
||||||
- column: property.director
|
- column: note.director
|
||||||
direction: ASC
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Favorites
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.rating > 6
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
- type: table
|
- type: table
|
||||||
name: Last seen
|
name: Last seen
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- not(empty(property.last))
|
- not(empty(note.last))
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
@@ -50,14 +59,14 @@ views:
|
|||||||
- director
|
- director
|
||||||
- genre
|
- genre
|
||||||
sort:
|
sort:
|
||||||
- column: property.last
|
- column: note.last
|
||||||
direction: DESC
|
direction: DESC
|
||||||
limit: 20
|
limit: 20
|
||||||
- type: table
|
- type: table
|
||||||
name: Actor
|
name: Actor
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(cast, concat("[[", this.file.name, "]]"))
|
- list(cast).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
@@ -67,7 +76,7 @@ views:
|
|||||||
name: Genre
|
name: Genre
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(genre, concat("[[", this.file.name, "]]"))
|
- list(genre).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
@@ -77,7 +86,7 @@ views:
|
|||||||
name: Director
|
name: Director
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(director, concat("[[", this.file.name, "]]"))
|
- list(director).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- year
|
- year
|
||||||
|
|||||||
12
Templates/Bases/Templates.base
Normal file
12
Templates/Bases/Templates.base
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- file.path.contains("/Templates")
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Table
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- categories
|
||||||
|
sort: []
|
||||||
|
columnSize:
|
||||||
|
file.name: 234
|
||||||
@@ -1,27 +1,38 @@
|
|||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(property.categories, "[[Trips]]")
|
- note.categories.contains(link("Trips"))
|
||||||
- not(contains(file.name, "Template"))
|
- '!file.name.contains("Template")'
|
||||||
display:
|
properties:
|
||||||
property.loc: Location
|
note.start:
|
||||||
property.start: Start
|
displayName: Start
|
||||||
property.end: End
|
note.end:
|
||||||
file.name: Trip
|
displayName: End
|
||||||
|
file.name:
|
||||||
|
displayName: Trip
|
||||||
|
note.loc:
|
||||||
|
displayName: Location
|
||||||
views:
|
views:
|
||||||
- type: table
|
- type: table
|
||||||
name: Trips
|
name: All trips
|
||||||
order:
|
|
||||||
- file.name
|
|
||||||
- loc
|
|
||||||
- start
|
|
||||||
- end
|
|
||||||
- type: table
|
|
||||||
name: Related trips
|
|
||||||
filters:
|
filters:
|
||||||
and:
|
and:
|
||||||
- contains(loc, concat("[[", this.file.name, "]]"))
|
- '!file.name.contains("Planning")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- end
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- property: end
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 255
|
||||||
|
- type: table
|
||||||
|
name: Location
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(loc).contains(this)
|
||||||
order:
|
order:
|
||||||
- file.name
|
- file.name
|
||||||
- loc
|
|
||||||
- start
|
- start
|
||||||
- end
|
- end
|
||||||
|
|||||||
@@ -6,7 +6,4 @@ maker:
|
|||||||
year:
|
year:
|
||||||
rating:
|
rating:
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
tags:
|
|
||||||
- board-games
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -10,12 +10,9 @@ isbn13:
|
|||||||
year:
|
year:
|
||||||
rating:
|
rating:
|
||||||
topics: []
|
topics: []
|
||||||
created:
|
created: {{date}}
|
||||||
"{ date }":
|
|
||||||
last:
|
last:
|
||||||
via: ""
|
via: ""
|
||||||
tags:
|
tags:
|
||||||
- books
|
|
||||||
- references
|
|
||||||
- to-read
|
- to-read
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -3,34 +3,20 @@ categories:
|
|||||||
- "[[Places]]"
|
- "[[Places]]"
|
||||||
type:
|
type:
|
||||||
- "[[Cities]]"
|
- "[[Cities]]"
|
||||||
tags:
|
|
||||||
- places
|
|
||||||
- cities
|
|
||||||
loc:
|
loc:
|
||||||
rating:
|
rating:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
last:
|
last:
|
||||||
location:
|
coordinates:
|
||||||
- "35.021041"
|
- "35.021041"
|
||||||
- "135.7556075"
|
- "135.7556075"
|
||||||
---
|
---
|
||||||
## Trips
|
## Trips
|
||||||
|
|
||||||
![[Trips.base#Related trips]]
|
![[Trips.base#Location]]
|
||||||
|
|
||||||
## Map
|
|
||||||
|
|
||||||
```leaflet
|
|
||||||
id: kyoto
|
|
||||||
minZoom: 10
|
|
||||||
maxZoom: 20
|
|
||||||
defaultZoom: 12
|
|
||||||
markerTag:
|
|
||||||
- places
|
|
||||||
height: 400px
|
|
||||||
coordinates: [[Kyoto]]
|
|
||||||
```
|
|
||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
|
![[Map.base#Location]]
|
||||||
|
|
||||||
![[Places.base#Location]]
|
![[Places.base#Location]]
|
||||||
@@ -8,7 +8,4 @@ variety:
|
|||||||
process:
|
process:
|
||||||
rating:
|
rating:
|
||||||
last:
|
last:
|
||||||
tags:
|
|
||||||
- coffee
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Companies]]"
|
- "[[Companies]]"
|
||||||
tags:
|
|
||||||
- companies
|
|
||||||
type: []
|
type: []
|
||||||
people: []
|
people: []
|
||||||
url:
|
url:
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[People]]"
|
- "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Directors]]"
|
||||||
- directors
|
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
---
|
---
|
||||||
## Movies
|
## Movies
|
||||||
|
|
||||||
![[Movies.base]]
|
![[Movies.base#Director]]
|
||||||
@@ -2,8 +2,6 @@
|
|||||||
categories:
|
categories:
|
||||||
- "[[Emails]]"
|
- "[[Emails]]"
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
tags:
|
|
||||||
- emails
|
|
||||||
org: []
|
org: []
|
||||||
people: []
|
people: []
|
||||||
url:
|
url:
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Food]]"
|
- "[[Food]]"
|
||||||
tags:
|
|
||||||
- food
|
|
||||||
- references
|
|
||||||
maker:
|
maker:
|
||||||
rating:
|
rating:
|
||||||
price:
|
price:
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Companies]]"
|
- "[[Companies]]"
|
||||||
tags:
|
type:
|
||||||
- companies
|
- "[[Game studios]]"
|
||||||
---
|
---
|
||||||
|
|
||||||
## Games
|
## Games
|
||||||
|
|||||||
@@ -5,7 +5,5 @@ start:
|
|||||||
end:
|
end:
|
||||||
loc:
|
loc:
|
||||||
people: []
|
people: []
|
||||||
tags:
|
|
||||||
- hosting
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,6 @@ people: []
|
|||||||
date: {{date}}
|
date: {{date}}
|
||||||
role:
|
role:
|
||||||
rating:
|
rating:
|
||||||
tags:
|
|
||||||
- jobs
|
|
||||||
- meetings/job
|
|
||||||
- meetings
|
|
||||||
---
|
---
|
||||||
## Questions and topics
|
## 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:
|
loc:
|
||||||
people: []
|
people: []
|
||||||
topics: []
|
topics: []
|
||||||
tags:
|
|
||||||
- meetings
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- meetings/type
|
- meetings/type
|
||||||
---
|
---
|
||||||
![[Meetings.base]]
|
![[Meetings.base#Type]]
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
aliases: July 2023
|
aliases:
|
||||||
|
- July 2023
|
||||||
previous: "[[2023-06]]"
|
previous: "[[2023-06]]"
|
||||||
next: "[[2023-08]]"
|
next: "[[2023-08]]"
|
||||||
tags:
|
tags:
|
||||||
@@ -7,4 +8,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Entries
|
## Entries
|
||||||
|
|
||||||
![[Daily.base]]
|
![[Daily.base#Monthly]]
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- movies/genres
|
- movies/genres
|
||||||
---
|
---
|
||||||
![[Movies.base]]
|
![[Movies.base#Genre]]
|
||||||
@@ -8,14 +8,8 @@ cast: []
|
|||||||
runtime:
|
runtime:
|
||||||
rating:
|
rating:
|
||||||
year:
|
year:
|
||||||
last:
|
last: {{date}}
|
||||||
"{ date }":
|
|
||||||
imdbId:
|
imdbId:
|
||||||
via:
|
via:
|
||||||
tags:
|
|
||||||
- movies
|
|
||||||
- references
|
|
||||||
---
|
---
|
||||||
|
|
||||||
[[{{date}}]]
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,4 +3,4 @@ tags:
|
|||||||
- music/genres
|
- music/genres
|
||||||
---
|
---
|
||||||
|
|
||||||
![[Albums.base]]
|
![[Albums.base#Genre]]
|
||||||
@@ -1,10 +1,9 @@
|
|||||||
---
|
---
|
||||||
categories: "[[People]]"
|
categories: "[[People]]"
|
||||||
tags:
|
type:
|
||||||
- people
|
- "[[Musicians]]"
|
||||||
- musicians
|
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
---
|
---
|
||||||
## Albums
|
## Albums
|
||||||
|
|
||||||
![[Albums.base#Related albums]]
|
![[Albums.base#Artist]]
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[People]]"
|
- "[[People]]"
|
||||||
tags:
|
|
||||||
- people
|
|
||||||
birthday:
|
birthday:
|
||||||
org: []
|
org: []
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Places]]"
|
- "[[Places]]"
|
||||||
tags:
|
|
||||||
- places
|
|
||||||
type: []
|
type: []
|
||||||
loc: []
|
loc: []
|
||||||
rating:
|
rating:
|
||||||
|
|||||||
@@ -3,15 +3,8 @@ tags:
|
|||||||
- places/types
|
- places/types
|
||||||
---
|
---
|
||||||
|
|
||||||
```leaflet
|
|
||||||
id: restaurants
|
|
||||||
linksTo: [[Pizzerias]]
|
|
||||||
minZoom: 3
|
|
||||||
maxZoom: 20
|
|
||||||
defaultZoom: 3
|
|
||||||
height: 400px
|
|
||||||
```
|
|
||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
![[Places.base]]
|
![[Map.base#Type]]
|
||||||
|
|
||||||
|
![[Places.base#Type]]
|
||||||
@@ -13,4 +13,3 @@ rating:
|
|||||||
published:
|
published:
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
---
|
---
|
||||||
-
|
|
||||||
@@ -3,9 +3,7 @@ categories:
|
|||||||
- "[[Podcasts]]"
|
- "[[Podcasts]]"
|
||||||
host: []
|
host: []
|
||||||
rating:
|
rating:
|
||||||
tags:
|
|
||||||
- podcast
|
|
||||||
---
|
---
|
||||||
## Episodes
|
## Episodes
|
||||||
|
|
||||||
![[Podcast episodes.base#Podcast episodes]]
|
![[Podcast episodes.base#Show]]
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Posts]]"
|
- "[[Posts]]"
|
||||||
tags:
|
|
||||||
- posts
|
|
||||||
author:
|
author:
|
||||||
- "[[Me]]"
|
- "[[Me]]"
|
||||||
url:
|
url:
|
||||||
|
|||||||
@@ -8,6 +8,4 @@ rating:
|
|||||||
price:
|
price:
|
||||||
acquired: {{date}}
|
acquired: {{date}}
|
||||||
monthly-uses:
|
monthly-uses:
|
||||||
tags:
|
|
||||||
- products
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- products/types
|
- products/types
|
||||||
---
|
---
|
||||||
![[Products.base]]
|
![[Products.base#Type]]
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ type: []
|
|||||||
org: []
|
org: []
|
||||||
start:
|
start:
|
||||||
year:
|
year:
|
||||||
tags:
|
|
||||||
- projects
|
|
||||||
url:
|
url:
|
||||||
status:
|
status:
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
---
|
---
|
||||||
|
categories:
|
||||||
|
- "[[Quotes]]"
|
||||||
attribution: []
|
attribution: []
|
||||||
source:
|
source:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
tags:
|
|
||||||
- quotes
|
|
||||||
topics: []
|
topics: []
|
||||||
via:
|
via:
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[Real estate]]"
|
- "[[Places]]"
|
||||||
tags:
|
|
||||||
- places
|
|
||||||
type: []
|
type: []
|
||||||
address:
|
address:
|
||||||
rating:
|
rating:
|
||||||
|
|||||||
@@ -9,8 +9,6 @@ url:
|
|||||||
rating:
|
rating:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
tags:
|
|
||||||
- recipes
|
|
||||||
---
|
---
|
||||||
## Ingredients
|
## Ingredients
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,4 @@ loc:
|
|||||||
rating:
|
rating:
|
||||||
created: {{date}}
|
created: {{date}}
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
tags:
|
|
||||||
- places
|
|
||||||
- restaurants
|
|
||||||
---
|
---
|
||||||
## [[{{date}}]]
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user