Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aca2993b8e | ||
|
|
08da8df936 | ||
|
|
aae37bf7ca | ||
|
|
202f8e3065 | ||
|
|
d33fbe8283 | ||
|
|
dd7cb4e6f4 | ||
|
|
69bc2f5b14 | ||
|
|
b0e50255f2 | ||
|
|
a35651a27d | ||
|
|
c58f017573 | ||
|
|
4ea8f749a9 | ||
|
|
47b8b962de | ||
|
|
1ca183e879 | ||
|
|
579cdbddbf | ||
|
|
cbbfefdf7b | ||
|
|
631b90611a | ||
|
|
4f23d36c7e | ||
|
|
66fdb29fbc | ||
|
|
c4300a86dd | ||
|
|
3372f128c3 | ||
|
|
b160d8bec5 |
3
.obsidian/app.json
vendored
3
.obsidian/app.json
vendored
@@ -1,3 +1,4 @@
|
|||||||
{
|
{
|
||||||
"attachmentFolderPath": "Attachments"
|
"attachmentFolderPath": "Attachments",
|
||||||
|
"alwaysUpdateLinks": true
|
||||||
}
|
}
|
||||||
55
.obsidian/core-plugins.json
vendored
55
.obsidian/core-plugins.json
vendored
@@ -1,22 +1,33 @@
|
|||||||
[
|
{
|
||||||
"file-explorer",
|
"file-explorer": true,
|
||||||
"global-search",
|
"global-search": true,
|
||||||
"switcher",
|
"switcher": true,
|
||||||
"graph",
|
"graph": true,
|
||||||
"backlink",
|
"backlink": true,
|
||||||
"canvas",
|
"outgoing-link": false,
|
||||||
"tag-pane",
|
"tag-pane": true,
|
||||||
"page-preview",
|
"page-preview": true,
|
||||||
"daily-notes",
|
"daily-notes": true,
|
||||||
"templates",
|
"templates": true,
|
||||||
"note-composer",
|
"note-composer": true,
|
||||||
"command-palette",
|
"command-palette": true,
|
||||||
"editor-status",
|
"slash-command": false,
|
||||||
"bookmarks",
|
"editor-status": true,
|
||||||
"markdown-importer",
|
"markdown-importer": true,
|
||||||
"zk-prefixer",
|
"zk-prefixer": true,
|
||||||
"random-note",
|
"random-note": true,
|
||||||
"outline",
|
"outline": true,
|
||||||
"workspaces",
|
"word-count": false,
|
||||||
"file-recovery"
|
"slides": false,
|
||||||
]
|
"audio-recorder": false,
|
||||||
|
"workspaces": true,
|
||||||
|
"file-recovery": true,
|
||||||
|
"publish": false,
|
||||||
|
"sync": false,
|
||||||
|
"canvas": true,
|
||||||
|
"properties": false,
|
||||||
|
"bookmarks": true,
|
||||||
|
"footnotes": false,
|
||||||
|
"bases": true,
|
||||||
|
"webviewer": false
|
||||||
|
}
|
||||||
6
.obsidian/types.json
vendored
6
.obsidian/types.json
vendored
@@ -33,7 +33,6 @@
|
|||||||
"process": "text",
|
"process": "text",
|
||||||
"phone": "text",
|
"phone": "text",
|
||||||
"role": "text",
|
"role": "text",
|
||||||
"length": "text",
|
|
||||||
"birthday": "date",
|
"birthday": "date",
|
||||||
"guests": "multitext",
|
"guests": "multitext",
|
||||||
"cuisine": "multitext",
|
"cuisine": "multitext",
|
||||||
@@ -48,6 +47,9 @@
|
|||||||
"published": "date",
|
"published": "date",
|
||||||
"where": "multitext",
|
"where": "multitext",
|
||||||
"loc": "multitext",
|
"loc": "multitext",
|
||||||
"monthly-uses": "number"
|
"monthly-uses": "number",
|
||||||
|
"runtime": "number",
|
||||||
|
"pages": "number",
|
||||||
|
"acquired": "date"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,15 +4,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Albums.base]]
|
||||||
table without id
|
|
||||||
file.link as Album,
|
|
||||||
artist as Artist,
|
|
||||||
rating as Rating,
|
|
||||||
year as Year,
|
|
||||||
genre as Genre
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -3,12 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Board games.base]]
|
||||||
table without id
|
|
||||||
file.link as Game,
|
|
||||||
rating as Rating,
|
|
||||||
last as Last
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
```
|
|
||||||
@@ -3,16 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Books.base]]
|
||||||
table without id
|
|
||||||
file.link as Book,
|
|
||||||
author as Author,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating,
|
|
||||||
created as Added,
|
|
||||||
genre as Genre
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort rating desc, date asc
|
|
||||||
```
|
|
||||||
@@ -3,14 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Clippings.base]]
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
author as Author,
|
|
||||||
created as Clipped,
|
|
||||||
published as Published
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort clipped desc
|
|
||||||
```
|
|
||||||
@@ -3,12 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Companies.base]]
|
||||||
table without id
|
|
||||||
file.link as Company,
|
|
||||||
url as Link
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link)
|
|
||||||
and !contains(file.name, "Template")
|
|
||||||
sort file.mtime desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,10 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Events.base]]
|
||||||
table without id
|
|
||||||
file.link as Event
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
```
|
|
||||||
@@ -4,12 +4,4 @@ tags:
|
|||||||
---
|
---
|
||||||
An evergreen note is an idea. It doesn't have to be something that I agree with, but something is [[Composability|composable]]. In a way, every idiom is a kind of evergreen idea.
|
An evergreen note is an idea. It doesn't have to be something that I agree with, but something is [[Composability|composable]]. In a way, every idiom is a kind of evergreen idea.
|
||||||
|
|
||||||
```dataview
|
![[Evergreen.base]]
|
||||||
table without id
|
|
||||||
file.link as Name,
|
|
||||||
created as Created
|
|
||||||
from #0🌲
|
|
||||||
where
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort created desc
|
|
||||||
```
|
|
||||||
@@ -3,16 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Games.base]]
|
||||||
table without id
|
|
||||||
file.link as Game,
|
|
||||||
maker as Maker,
|
|
||||||
genre as Genre,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating,
|
|
||||||
last as "Last played"
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort last desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,12 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Journal.base]]
|
||||||
table without id
|
|
||||||
file.link as Entry,
|
|
||||||
created as Created
|
|
||||||
from #journal
|
|
||||||
where
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort created desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -2,16 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
![[Meetings.base]]
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Meeting,
|
|
||||||
type as Type,
|
|
||||||
people as People,
|
|
||||||
date as Date
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort date desc
|
|
||||||
limit 100
|
|
||||||
```
|
|
||||||
@@ -4,31 +4,11 @@ tags:
|
|||||||
---
|
---
|
||||||
## Favorites
|
## Favorites
|
||||||
|
|
||||||
```dataview
|
![[Movies.base#Favorites]]
|
||||||
table without id
|
|
||||||
file.link as Movie,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating,
|
|
||||||
last as "Last seen",
|
|
||||||
director as Director
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link)
|
|
||||||
and rating > 6
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
|
|
||||||
## Last seen
|
## Last seen
|
||||||
|
|
||||||
```dataview
|
![[Movies.base#Last seen]]
|
||||||
table without id
|
|
||||||
file.link as Movie,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating,
|
|
||||||
last as "Last seen",
|
|
||||||
director as Director
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
last != "" and !contains(file.name, "Template")
|
|
||||||
sort last desc
|
|
||||||
limit 100
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,12 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[People.base]]
|
||||||
table without id
|
|
||||||
file.link as Person,
|
|
||||||
filter(file.tags, (t) => t !="#people") as Tags
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort file.name asc
|
|
||||||
```
|
|
||||||
@@ -11,15 +11,4 @@ height:400px
|
|||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
```dataview
|
![[Places.base]]
|
||||||
table without id
|
|
||||||
file.link as Place,
|
|
||||||
loc as Location,
|
|
||||||
type as Type,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.tags,"places/types") and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort last desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,16 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Podcast episodes.base]]
|
||||||
table without id
|
|
||||||
link(file.link, "Ep. " + string(episode)) as Episode,
|
|
||||||
show as Show,
|
|
||||||
guests as Guest,
|
|
||||||
episode as Ep,
|
|
||||||
rating as Rating,
|
|
||||||
published as "Published"
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort published desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -1,12 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
tags:
|
||||||
|
- categories
|
||||||
related: "[[Podcast episodes]]"
|
related: "[[Podcast episodes]]"
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Podcasts.base]]
|
||||||
table without id
|
|
||||||
file.link as Podcast, host as "Host"
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort file.name asc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -2,13 +2,5 @@
|
|||||||
tags:
|
tags:
|
||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
```dataview
|
|
||||||
table without id
|
![[Posts.base]]
|
||||||
file.link as Title,
|
|
||||||
status as Status,
|
|
||||||
published as Published
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort published desc
|
|
||||||
```
|
|
||||||
@@ -3,19 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Products.base]]
|
||||||
table without id
|
|
||||||
file.link as Product,
|
|
||||||
rating as Rating,
|
|
||||||
acquired as Acquired,
|
|
||||||
type as Type,
|
|
||||||
maker as Maker
|
|
||||||
where
|
|
||||||
!contains(file.name, "Template") and
|
|
||||||
contains(categories, [[Products]])
|
|
||||||
sort
|
|
||||||
acquired desc,
|
|
||||||
file.name,
|
|
||||||
rating desc,
|
|
||||||
file.mtime desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,14 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Projects.base]]
|
||||||
table
|
|
||||||
type as Type,
|
|
||||||
year as Year,
|
|
||||||
status as Status,
|
|
||||||
url as URL
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort year desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,11 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Recipes.base]]
|
||||||
table without id
|
|
||||||
file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort created desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,13 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Shows.base]]
|
||||||
table without id
|
|
||||||
file.link as Show,
|
|
||||||
rating as Rating,
|
|
||||||
last as "Last seen"
|
|
||||||
where
|
|
||||||
contains(categories, this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort last desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -3,15 +3,4 @@ tags:
|
|||||||
- categories
|
- categories
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Trips.base]]
|
||||||
table without id
|
|
||||||
file.link as Trip,
|
|
||||||
loc as Location,
|
|
||||||
start as Start,
|
|
||||||
end as End
|
|
||||||
where
|
|
||||||
contains(categories,this.file.link) and
|
|
||||||
!contains(file.name, "Template") and
|
|
||||||
!contains(file.name, "Planning")
|
|
||||||
sort start desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -4,12 +4,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
```dataview
|
![[Daily.base]]
|
||||||
list
|
|
||||||
where
|
|
||||||
!contains(file.tags, "daily") and
|
|
||||||
contains(file.outlinks, this.file.link) or
|
|
||||||
contains(string(file.frontmatter), string(dateformat(this.file.day,"yyyy-MM-dd")))
|
|
||||||
sort file.ctime asc
|
|
||||||
limit 50
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -4,12 +4,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
```dataview
|
![[Daily.base]]
|
||||||
list
|
|
||||||
where
|
|
||||||
!contains(file.tags, "daily") and
|
|
||||||
contains(file.outlinks, this.file.link) or
|
|
||||||
contains(string(file.frontmatter), string(dateformat(this.file.day,"yyyy-MM-dd")))
|
|
||||||
sort file.ctime asc
|
|
||||||
limit 50
|
|
||||||
```
|
|
||||||
@@ -1,19 +1,3 @@
|
|||||||
Analysis of cost per use, see [[Buy wisely]]
|
Analysis of cost per use, see [[Buy wisely]]
|
||||||
|
|
||||||
```dataview
|
![[Products.base#Cost per use]]
|
||||||
table without id
|
|
||||||
file.link as Product,
|
|
||||||
rating as Rating,
|
|
||||||
"$" + round(price/(monthly-uses*((date(today) - acquired).months)),2) as "Per use",
|
|
||||||
monthly-uses as "Uses/month",
|
|
||||||
dateformat(acquired, "yyyy-MM") as Acquired,
|
|
||||||
round((date(today) - acquired).months,1) as "Months",
|
|
||||||
"$" + string(round(price, 2)) as Price,
|
|
||||||
round(monthly-uses*((date(today) - acquired).months),0) as "Total uses",
|
|
||||||
type as Type
|
|
||||||
where
|
|
||||||
monthly-uses > 0 and
|
|
||||||
contains(categories, [[Products]])
|
|
||||||
sort
|
|
||||||
round(price/(monthly-uses*((date(today) - acquired).months)),2) asc
|
|
||||||
```
|
|
||||||
@@ -3,14 +3,4 @@ tags:
|
|||||||
- music/genres
|
- music/genres
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Albums.base#Genre]]
|
||||||
table without id
|
|
||||||
file.link as Album,
|
|
||||||
artist as Artist,
|
|
||||||
genre as Genre,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories, [[Albums]]) and
|
|
||||||
contains(genre,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -8,37 +8,12 @@ created: 2023-09-12
|
|||||||
---
|
---
|
||||||
## Books
|
## Books
|
||||||
|
|
||||||
```dataview
|
![[Books.base#Author]]
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Books]]) and
|
|
||||||
contains(author,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
|
|
||||||
# Clippings
|
# Clippings
|
||||||
|
|
||||||
```dataview
|
![[Clippings.base#Author]]
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
published as Published
|
|
||||||
where
|
|
||||||
contains(categories,[[Clippings]]) and
|
|
||||||
contains(author,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
|
|
||||||
# Podcast episodes
|
# Podcast episodes
|
||||||
|
|
||||||
```dataview
|
![[Podcast episodes.base#Guest]]
|
||||||
table without id
|
|
||||||
file.link as Podcast,
|
|
||||||
published as Published
|
|
||||||
where
|
|
||||||
contains(categories,[[Podcast episodes]]) and
|
|
||||||
contains(guests,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -16,16 +16,7 @@ created: 2023-09-12
|
|||||||
---
|
---
|
||||||
## Trips
|
## Trips
|
||||||
|
|
||||||
```dataview
|
![[Trips.base#Related trips]]
|
||||||
table without id
|
|
||||||
file.link as Trip,
|
|
||||||
start as Start,
|
|
||||||
end as End
|
|
||||||
where
|
|
||||||
contains(categories, [[Trips]]) and
|
|
||||||
contains(loc, this.file.link)
|
|
||||||
sort file.name desc
|
|
||||||
```
|
|
||||||
|
|
||||||
## Map
|
## Map
|
||||||
|
|
||||||
@@ -42,13 +33,4 @@ coordinates: [[Kyoto]]
|
|||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
```dataview
|
![[Places.base#Location]]
|
||||||
table without id
|
|
||||||
file.link as Place,
|
|
||||||
rating as Rating,
|
|
||||||
type as Type
|
|
||||||
where
|
|
||||||
contains(categories, [[Places]]) and
|
|
||||||
contains(loc, this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -4,7 +4,7 @@ categories:
|
|||||||
cover: "[[out-of-control.jpg]]"
|
cover: "[[out-of-control.jpg]]"
|
||||||
isbn: 201483408
|
isbn: 201483408
|
||||||
isbn13: 9780201483406
|
isbn13: 9780201483406
|
||||||
length: "528"
|
pages: 528
|
||||||
year: 1992
|
year: 1992
|
||||||
author:
|
author:
|
||||||
- "[[Kevin Kelly]]"
|
- "[[Kevin Kelly]]"
|
||||||
|
|||||||
@@ -8,13 +8,4 @@ created: 2023-09-13
|
|||||||
---
|
---
|
||||||
## Albums
|
## Albums
|
||||||
|
|
||||||
```dataview
|
![[Albums.base#Related albums]]
|
||||||
table without id
|
|
||||||
file.link as Album,
|
|
||||||
artist as Artist,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Albums]]) and
|
|
||||||
contains(artist,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -2,13 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- genres
|
- genres
|
||||||
---
|
---
|
||||||
|
![[Genre.base]]
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
categories as categories,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(genre,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -12,23 +12,8 @@ url: https://stephango.com/
|
|||||||
---
|
---
|
||||||
## Clippings
|
## Clippings
|
||||||
|
|
||||||
```dataview
|
![[Clippings.base#Author]]
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
published as Published
|
|
||||||
where
|
|
||||||
contains(author,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
|
|
||||||
## Meetings
|
## Meetings
|
||||||
|
|
||||||
```dataview
|
![[Meetings.base#Person]]
|
||||||
table without id
|
|
||||||
file.link as Meeting,
|
|
||||||
date as Date
|
|
||||||
where
|
|
||||||
contains(people,this.file.link)
|
|
||||||
sort file.name desc
|
|
||||||
```
|
|
||||||
|
|
||||||
@@ -9,13 +9,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Episodes
|
## Episodes
|
||||||
|
|
||||||
```dataview
|
![[Podcast episodes.base#Show]]
|
||||||
table without id
|
|
||||||
link(file.link, "Ep. " + string(episode)) as Episode,
|
|
||||||
guests as Guest,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Podcast episodes]]) and
|
|
||||||
contains(show,this.file.link)
|
|
||||||
sort episode desc
|
|
||||||
```
|
|
||||||
@@ -6,13 +6,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Movies
|
## Movies
|
||||||
|
|
||||||
```dataview
|
![[Movies.base#Actor]]
|
||||||
table without id
|
|
||||||
file.link as Movie,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Movies]]) and
|
|
||||||
contains(cast,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -6,13 +6,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Books
|
## Books
|
||||||
|
|
||||||
```dataview
|
![[Books.base#Author]]
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Books]]) and
|
|
||||||
contains(author,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
```dataview
|
|
||||||
list
|
|
||||||
where
|
|
||||||
contains(type, this.file.link) and
|
|
||||||
!contains(file.name, "Template")
|
|
||||||
sort file.ctime asc
|
|
||||||
```
|
|
||||||
42
Templates/Bases/Albums.base
Normal file
42
Templates/Bases/Albums.base
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
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
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Albums
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- artist
|
||||||
|
- rating
|
||||||
|
- year
|
||||||
|
- genre
|
||||||
|
- type: table
|
||||||
|
name: Artist
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(artist).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- artist
|
||||||
|
- rating
|
||||||
|
- year
|
||||||
|
- genre
|
||||||
|
- type: table
|
||||||
|
name: Genre
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(genre).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- artist
|
||||||
|
- rating
|
||||||
|
- year
|
||||||
|
- genre
|
||||||
32
Templates/Bases/Attachments.base
Normal file
32
Templates/Bases/Attachments.base
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
formulas:
|
||||||
|
Embeds: if(file.embeds[0].containsAny("jpg","gif","webp","jpeg","avif"), file.embeds[0])
|
||||||
|
Date: if(created,created,if(start,start))
|
||||||
|
links: file.
|
||||||
|
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: table
|
||||||
|
name: Images 2
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- file.links
|
||||||
|
- formula.links
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
image: file.file
|
||||||
|
cardSize: 90
|
||||||
31
Templates/Bases/Backlinks.base
Normal file
31
Templates/Bases/Backlinks.base
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- file.hasLink(this)
|
||||||
|
formulas:
|
||||||
|
Path: file.path
|
||||||
|
properties:
|
||||||
|
note.created:
|
||||||
|
displayName: Date
|
||||||
|
file.name:
|
||||||
|
displayName: Title
|
||||||
|
note.categories:
|
||||||
|
displayName: Categories
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Backlinks
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- categories
|
||||||
|
- created
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Recent entries
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- created
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
limit: 20
|
||||||
18
Templates/Bases/Board games.base
Normal file
18
Templates/Bases/Board games.base
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- categories.contains(link("Board games"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Game
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Table
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
57
Templates/Bases/Books.base
Normal file
57
Templates/Bases/Books.base
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- categories.contains(link("Books"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
note.author:
|
||||||
|
displayName: Author
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.year:
|
||||||
|
displayName: Year
|
||||||
|
note.genre:
|
||||||
|
displayName: Genre
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Books
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- author
|
||||||
|
- length
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- topics
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Top rated
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Author
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- 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:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- genre
|
||||||
39
Templates/Bases/Clippings.base
Normal file
39
Templates/Bases/Clippings.base
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Clippings"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Title
|
||||||
|
note.author:
|
||||||
|
displayName: Author
|
||||||
|
note.created:
|
||||||
|
displayName: Clipped
|
||||||
|
note.published:
|
||||||
|
displayName: Published
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Clippings
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- author
|
||||||
|
- created
|
||||||
|
- published
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
note.author: 140
|
||||||
|
- type: table
|
||||||
|
name: Author
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(author).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- author
|
||||||
|
- created
|
||||||
|
- published
|
||||||
|
sort:
|
||||||
|
- property: clipped
|
||||||
|
direction: DESC
|
||||||
22
Templates/Bases/Companies.base
Normal file
22
Templates/Bases/Companies.base
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- 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:
|
||||||
|
- type: table
|
||||||
|
name: Companies
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- url
|
||||||
|
- people
|
||||||
|
columnSize:
|
||||||
|
note.url: 239
|
||||||
69
Templates/Bases/Daily.base
Normal file
69
Templates/Bases/Daily.base
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
filters:
|
||||||
|
or:
|
||||||
|
- file.name.contains(this.file.name)
|
||||||
|
- created.toString().contains(this.file.name)
|
||||||
|
- start.toString().contains(this.file.name)
|
||||||
|
- end.toString().contains(this.file.name)
|
||||||
|
- file.links.contains(this.file)
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Entry
|
||||||
|
note.categories:
|
||||||
|
displayName: Categories
|
||||||
|
note.created:
|
||||||
|
displayName: Created
|
||||||
|
note.tags:
|
||||||
|
displayName: Tags
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Daily notes
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!tags.contains("daily")'
|
||||||
|
- '!tags.contains("monthly")'
|
||||||
|
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:
|
||||||
|
- '!tags.contains("daily")'
|
||||||
|
- '!tags.contains("monthly")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- categories
|
||||||
|
- created
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: created
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Yearly
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!tags.contains("daily")'
|
||||||
|
- '!tags.contains("monthly")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- categories
|
||||||
|
- created
|
||||||
|
sort:
|
||||||
|
- property: created
|
||||||
|
direction: ASC
|
||||||
46
Templates/Bases/Events.base
Normal file
46
Templates/Bases/Events.base
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- categories.contains(link("Events"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
note.end:
|
||||||
|
displayName: End
|
||||||
|
note.loc:
|
||||||
|
displayName: Location
|
||||||
|
note.start:
|
||||||
|
displayName: Start
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Events
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- end
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- property: start
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Type
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(type).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- property: start
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Location
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(loc).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- property: start
|
||||||
|
direction: DESC
|
||||||
18
Templates/Bases/Evergreen.base
Normal file
18
Templates/Bases/Evergreen.base
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- tags.contains("0🌲")
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.created:
|
||||||
|
displayName: Created
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Evergreen
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- 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
|
||||||
45
Templates/Bases/Games.base
Normal file
45
Templates/Bases/Games.base
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Games"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
display:
|
||||||
|
file.name: Games
|
||||||
|
note.year: Year
|
||||||
|
note.maker: Maker
|
||||||
|
note.rating: Rating
|
||||||
|
note.genre: Genre
|
||||||
|
note.last: Last played
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Games
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- maker
|
||||||
|
- genre
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- type: table
|
||||||
|
name: Studio
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(maker).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- maker
|
||||||
|
- genre
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- type: table
|
||||||
|
name: Genre
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(genre).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- maker
|
||||||
|
- genre
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
24
Templates/Bases/Genre.base
Normal file
24
Templates/Bases/Genre.base
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(genre).contains(this)
|
||||||
|
display:
|
||||||
|
note.rating: Rating
|
||||||
|
note.categories: Category
|
||||||
|
note.last: Last
|
||||||
|
file.name: Name
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Genre
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- categories
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- column: note.rating
|
||||||
|
direction: DESC
|
||||||
|
- column: note.last
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 248
|
||||||
|
note.categories: 170
|
||||||
15
Templates/Bases/Journal.base
Normal file
15
Templates/Bases/Journal.base
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
- tags.contains("journal")
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Entry
|
||||||
|
note.created:
|
||||||
|
displayName: Created
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Table
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- created
|
||||||
52
Templates/Bases/Meetings.base
Normal file
52
Templates/Bases/Meetings.base
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- categories.contains(link("Meetings"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
note.date:
|
||||||
|
displayName: Date
|
||||||
|
note.people:
|
||||||
|
displayName: People
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
file.name:
|
||||||
|
displayName: Meeting
|
||||||
|
note.org:
|
||||||
|
displayName: Org
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Meetings
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- date
|
||||||
|
- type
|
||||||
|
- people
|
||||||
|
sort:
|
||||||
|
- property: date
|
||||||
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Person
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(people).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- date
|
||||||
|
- type
|
||||||
|
- people
|
||||||
|
sort:
|
||||||
|
- property: date
|
||||||
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Type
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(type).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- date
|
||||||
|
- people
|
||||||
|
- org
|
||||||
|
sort:
|
||||||
|
- property: date
|
||||||
|
direction: DESC
|
||||||
240
Templates/Bases/Movies.base
Normal file
240
Templates/Bases/Movies.base
Normal file
@@ -0,0 +1,240 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- categories.contains(link("Movies"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
formulas: {}
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
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:
|
||||||
|
- type: table
|
||||||
|
name: All
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- director
|
||||||
|
- rating
|
||||||
|
- 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
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- 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.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
|
||||||
|
name: Last seen
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- "!last.isEmpty()"
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
limit: 20
|
||||||
|
- type: table
|
||||||
|
name: Actor
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(cast).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
- ratingImdb
|
||||||
|
sort:
|
||||||
|
- property: ratingImdb
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Genre
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(genre).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- year
|
||||||
|
- director
|
||||||
|
- last
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: genre
|
||||||
|
direction: ASC
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
note.director: 166
|
||||||
|
note.last: 115
|
||||||
|
- type: table
|
||||||
|
name: Director
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(director).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: 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
|
||||||
33
Templates/Bases/People.base
Normal file
33
Templates/Bases/People.base
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
- note.tags.contains("people")
|
||||||
|
formulas:
|
||||||
|
Age: (now() - birthday).years.floor()
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.tags:
|
||||||
|
displayName: Tags
|
||||||
|
note.birthday:
|
||||||
|
displayName: Birthday
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: All people
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- tags
|
||||||
|
- birthday
|
||||||
|
- formula.Age
|
||||||
|
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
|
||||||
115
Templates/Bases/Places.base
Normal file
115
Templates/Bases/Places.base
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Places"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.loc:
|
||||||
|
displayName: Location
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Places
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- loc
|
||||||
|
- type
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: type
|
||||||
|
direction: ASC
|
||||||
|
- property: loc
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
file.name: 162
|
||||||
|
note.loc: 145
|
||||||
|
note.type: 199
|
||||||
|
- type: table
|
||||||
|
name: Location
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(loc).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- type
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: rating
|
||||||
|
direction: DESC
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: loc
|
||||||
|
direction: ASC
|
||||||
|
columnSize:
|
||||||
|
note.type: 197
|
||||||
|
- type: table
|
||||||
|
name: Type
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(type).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- type
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
sort:
|
||||||
|
- property: last
|
||||||
|
direction: DESC
|
||||||
|
- property: loc
|
||||||
|
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
|
||||||
49
Templates/Bases/Podcast episodes.base
Normal file
49
Templates/Bases/Podcast episodes.base
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
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
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: All episodes
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- show
|
||||||
|
- guests
|
||||||
|
- episode
|
||||||
|
- rating
|
||||||
|
- published
|
||||||
|
sort:
|
||||||
|
- column: note.published
|
||||||
|
direction: DESC
|
||||||
|
- type: table
|
||||||
|
name: Show
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(show).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- show
|
||||||
|
- episode
|
||||||
|
- rating
|
||||||
|
- published
|
||||||
|
- guest
|
||||||
|
- type: table
|
||||||
|
name: Guest
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(guest).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- show
|
||||||
|
- guests
|
||||||
|
- episode
|
||||||
|
- rating
|
||||||
|
- published
|
||||||
15
Templates/Bases/Podcasts.base
Normal file
15
Templates/Bases/Podcasts.base
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Podcasts"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Podcast
|
||||||
|
note.host:
|
||||||
|
displayName: Host
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Table
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- host
|
||||||
21
Templates/Bases/Posts.base
Normal file
21
Templates/Bases/Posts.base
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Title
|
||||||
|
note.status:
|
||||||
|
displayName: Status
|
||||||
|
note.published:
|
||||||
|
displayName: Published
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: All
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(categories).contains(link("Posts"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- status
|
||||||
|
- published
|
||||||
|
sort:
|
||||||
|
- column: note.published
|
||||||
|
direction: DESC
|
||||||
149
Templates/Bases/Products.base
Normal file
149
Templates/Bases/Products.base
Normal file
@@ -0,0 +1,149 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Products"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
formulas:
|
||||||
|
Owned: ((now() - acquired).months).round()
|
||||||
|
totalUses: monthlyUses * formula.Owned.round()
|
||||||
|
perUse: (price / formula.totalUses).toFixed(2)
|
||||||
|
properties:
|
||||||
|
note.monthlyUses:
|
||||||
|
displayName: Uses/month
|
||||||
|
formula.Owned:
|
||||||
|
displayName: Months
|
||||||
|
formula.totalUses:
|
||||||
|
displayName: Total uses
|
||||||
|
formula.perUse:
|
||||||
|
displayName: Per use
|
||||||
|
note.price:
|
||||||
|
displayName: Price
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.acquired:
|
||||||
|
displayName: Acquired
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
file.name:
|
||||||
|
displayName: Product
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Products
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- acquired
|
||||||
|
- rating
|
||||||
|
- price
|
||||||
|
- monthlyUses
|
||||||
|
- formula.perUse
|
||||||
|
- formula.Owned
|
||||||
|
- formula.totalUses
|
||||||
|
- 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:
|
||||||
|
file.name: 209
|
||||||
|
note.acquired: 112
|
||||||
|
note.price: 78
|
||||||
|
note.monthlyUses: 123
|
||||||
|
formula.perUse: 102
|
||||||
|
formula.Owned: 113
|
||||||
|
formula.totalUses: 115
|
||||||
|
- type: table
|
||||||
|
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:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- formula.perUse
|
||||||
|
- monthlyUses
|
||||||
|
- price
|
||||||
|
- formula.totalUses
|
||||||
|
- formula.Owned
|
||||||
|
- acquired
|
||||||
|
- type
|
||||||
|
sort:
|
||||||
|
- property: file.name
|
||||||
|
direction: ASC
|
||||||
|
- property: formula.totalUses
|
||||||
|
direction: DESC
|
||||||
|
- property: acquired
|
||||||
|
direction: DESC
|
||||||
|
- property: monthlyUses
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 209
|
||||||
|
note.monthlyUses: 82
|
||||||
|
formula.totalUses: 115
|
||||||
|
- type: table
|
||||||
|
name: Type
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(type).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- rating
|
||||||
|
- formula.perUse
|
||||||
|
- monthlyUses
|
||||||
|
- price
|
||||||
|
- formula.totalUses
|
||||||
|
- formula.Owned
|
||||||
|
- acquired
|
||||||
|
- 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:
|
||||||
|
file.name: 209
|
||||||
|
note.monthlyUses: 82
|
||||||
|
formula.totalUses: 115
|
||||||
32
Templates/Bases/Projects.base
Normal file
32
Templates/Bases/Projects.base
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
- note.categories.contains(link("Projects"))
|
||||||
|
properties:
|
||||||
|
note.status:
|
||||||
|
displayName: Status
|
||||||
|
note.url:
|
||||||
|
displayName: URL
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
note.year:
|
||||||
|
displayName: Year
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Table
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- type
|
||||||
|
- year
|
||||||
|
- status
|
||||||
|
- 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
|
||||||
30
Templates/Bases/Recipes.base
Normal file
30
Templates/Bases/Recipes.base
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Recipes"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.author:
|
||||||
|
displayName: Author
|
||||||
|
note.type:
|
||||||
|
displayName: Type
|
||||||
|
note.ingredients:
|
||||||
|
displayName: Ingredients
|
||||||
|
note.cuisine:
|
||||||
|
displayName: Cuisine
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: Recipes
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- type
|
||||||
|
- cuisine
|
||||||
|
- author
|
||||||
|
- ingredients
|
||||||
|
- rating
|
||||||
|
columnSize:
|
||||||
|
note.type: 201
|
||||||
|
note.cuisine: 174
|
||||||
94
Templates/Bases/Shows.base
Normal file
94
Templates/Bases/Shows.base
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
- note.categories.contains(link("Shows"))
|
||||||
|
properties:
|
||||||
|
file.name:
|
||||||
|
displayName: Name
|
||||||
|
note.last:
|
||||||
|
displayName: Last
|
||||||
|
note.rating:
|
||||||
|
displayName: Rating
|
||||||
|
note.year:
|
||||||
|
displayName: Year
|
||||||
|
note.director:
|
||||||
|
displayName: Director
|
||||||
|
note.genre:
|
||||||
|
displayName: Genre
|
||||||
|
note.cast:
|
||||||
|
displayName: Cast
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: All
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- column: note.rating
|
||||||
|
direction: DESC
|
||||||
|
- column: file.name
|
||||||
|
direction: ASC
|
||||||
|
- column: note.director
|
||||||
|
direction: ASC
|
||||||
|
- type: table
|
||||||
|
name: Favorites
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.rating > 6
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
- type: table
|
||||||
|
name: Last seen
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- not(empty(note.last))
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- rating
|
||||||
|
- last
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
sort:
|
||||||
|
- column: note.last
|
||||||
|
direction: DESC
|
||||||
|
limit: 20
|
||||||
|
- type: table
|
||||||
|
name: Actor
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(cast).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
- type: table
|
||||||
|
name: Genre
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(genre).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- director
|
||||||
|
- genre
|
||||||
|
- type: table
|
||||||
|
name: Director
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(director).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- year
|
||||||
|
- cast
|
||||||
|
- genre
|
||||||
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
|
||||||
38
Templates/Bases/Trips.base
Normal file
38
Templates/Bases/Trips.base
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- note.categories.contains(link("Trips"))
|
||||||
|
- '!file.name.contains("Template")'
|
||||||
|
properties:
|
||||||
|
note.start:
|
||||||
|
displayName: Start
|
||||||
|
note.end:
|
||||||
|
displayName: End
|
||||||
|
file.name:
|
||||||
|
displayName: Trip
|
||||||
|
note.loc:
|
||||||
|
displayName: Location
|
||||||
|
views:
|
||||||
|
- type: table
|
||||||
|
name: All trips
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- '!file.name.contains("Planning")'
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- end
|
||||||
|
- loc
|
||||||
|
sort:
|
||||||
|
- column: note.end
|
||||||
|
direction: DESC
|
||||||
|
columnSize:
|
||||||
|
file.name: 255
|
||||||
|
- type: table
|
||||||
|
name: Location
|
||||||
|
filters:
|
||||||
|
and:
|
||||||
|
- list(loc).contains(this)
|
||||||
|
order:
|
||||||
|
- file.name
|
||||||
|
- start
|
||||||
|
- end
|
||||||
@@ -4,7 +4,7 @@ categories:
|
|||||||
author: []
|
author: []
|
||||||
cover:
|
cover:
|
||||||
genre: []
|
genre: []
|
||||||
length:
|
pages:
|
||||||
isbn:
|
isbn:
|
||||||
isbn13:
|
isbn13:
|
||||||
year:
|
year:
|
||||||
|
|||||||
@@ -16,16 +16,7 @@ location:
|
|||||||
---
|
---
|
||||||
## Trips
|
## Trips
|
||||||
|
|
||||||
```dataview
|
![[Trips.base#Related trips]]
|
||||||
table without id
|
|
||||||
file.link as Trip,
|
|
||||||
start as Start,
|
|
||||||
end as End
|
|
||||||
where
|
|
||||||
contains(categories, [[Trips]]) and
|
|
||||||
contains(loc, this.file.link)
|
|
||||||
sort file.name desc
|
|
||||||
```
|
|
||||||
|
|
||||||
## Map
|
## Map
|
||||||
|
|
||||||
@@ -42,13 +33,4 @@ coordinates: [[Kyoto]]
|
|||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
```dataview
|
![[Places.base#Location]]
|
||||||
table without id
|
|
||||||
file.link as Place,
|
|
||||||
rating as Rating,
|
|
||||||
type as Type
|
|
||||||
where
|
|
||||||
contains(categories, [[Places]]) and
|
|
||||||
contains(loc, this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
categories:
|
categories:
|
||||||
- "[[People]]"
|
- "[[People]]"
|
||||||
|
tags:
|
||||||
|
- people
|
||||||
phone:
|
phone:
|
||||||
twitter:
|
twitter:
|
||||||
org:
|
org:
|
||||||
|
|||||||
@@ -4,12 +4,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
```dataview
|
![[Daily.base]]
|
||||||
list
|
|
||||||
where
|
|
||||||
!contains(file.tags, "daily") and
|
|
||||||
contains(file.outlinks, this.file.link) or
|
|
||||||
contains(string(file.frontmatter), string(dateformat(this.file.day,"yyyy-MM-dd")))
|
|
||||||
sort file.ctime asc
|
|
||||||
limit 50
|
|
||||||
```
|
|
||||||
@@ -8,13 +8,4 @@ created: {{date}}
|
|||||||
---
|
---
|
||||||
## Movies
|
## Movies
|
||||||
|
|
||||||
```dataview
|
![[Movies.base#Director]]
|
||||||
table without id
|
|
||||||
file.link as Movie,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Movies]]) and
|
|
||||||
contains(director,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -4,15 +4,7 @@ categories:
|
|||||||
tags:
|
tags:
|
||||||
- companies
|
- companies
|
||||||
---
|
---
|
||||||
|
|
||||||
## Games
|
## Games
|
||||||
|
|
||||||
```dataview
|
![[Games.base#Studio]]
|
||||||
table without id
|
|
||||||
file.link as Game,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Games]]) and
|
|
||||||
contains(maker,this.file.link)
|
|
||||||
sort year desc
|
|
||||||
```
|
|
||||||
@@ -2,13 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- genres
|
- genres
|
||||||
---
|
---
|
||||||
|
![[Genre.base]]
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Title,
|
|
||||||
categories as categories,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(genre,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -2,17 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- meetings/type
|
- meetings/type
|
||||||
---
|
---
|
||||||
|
![[Meetings.base#Type]]
|
||||||
|
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Meeting,
|
|
||||||
people as People,
|
|
||||||
date as Date
|
|
||||||
where
|
|
||||||
contains(categories, [[Meetings]]) and
|
|
||||||
!contains(file.name,"Template") and
|
|
||||||
contains(type,this.file.link)
|
|
||||||
sort date desc
|
|
||||||
limit 50
|
|
||||||
```
|
|
||||||
@@ -1,8 +1 @@
|
|||||||
```dataview
|
![[Meetings.base#Person]]
|
||||||
table without id
|
|
||||||
file.link as Meeting, date as Date
|
|
||||||
from [[Meetings]]
|
|
||||||
where contains(people,this.file.link)
|
|
||||||
sort date desc
|
|
||||||
limit 50
|
|
||||||
```
|
|
||||||
@@ -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,13 +8,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Entries
|
## Entries
|
||||||
|
|
||||||
```dataview
|
![[Daily.base#Monthly]]
|
||||||
list
|
|
||||||
where
|
|
||||||
contains(file.name,this.file.name) or
|
|
||||||
contains(file.outlinks.file.name,this.file.name) or
|
|
||||||
contains(string(file.frontmatter),this.file.name)
|
|
||||||
where !contains(file.tags, "daily")
|
|
||||||
where !contains(file.tags, "monthly")
|
|
||||||
sort file.name asc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -2,13 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- movies/genres
|
- movies/genres
|
||||||
---
|
---
|
||||||
|
![[Movies.base#Genre]]
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Movie,
|
|
||||||
rating as "Rating"
|
|
||||||
where
|
|
||||||
contains(categories,[[Movies]]) and
|
|
||||||
contains(genre,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -5,6 +5,7 @@ cover:
|
|||||||
genre: []
|
genre: []
|
||||||
director:
|
director:
|
||||||
cast: []
|
cast: []
|
||||||
|
runtime:
|
||||||
rating:
|
rating:
|
||||||
year:
|
year:
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
@@ -15,5 +16,3 @@ tags:
|
|||||||
- references
|
- references
|
||||||
---
|
---
|
||||||
|
|
||||||
[[{{date}}]]
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,14 +3,4 @@ tags:
|
|||||||
- music/genres
|
- music/genres
|
||||||
---
|
---
|
||||||
|
|
||||||
```dataview
|
![[Albums.base#Genre]]
|
||||||
table without id
|
|
||||||
file.link as Album,
|
|
||||||
artist as Artist,
|
|
||||||
genre as Genre,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Albums]]) and
|
|
||||||
contains(genre,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -7,14 +7,4 @@ created: {{date}}
|
|||||||
---
|
---
|
||||||
## Albums
|
## Albums
|
||||||
|
|
||||||
```dataview
|
![[Albums.base#Artist]]
|
||||||
table without id
|
|
||||||
file.link as Album,
|
|
||||||
artist as Artist,
|
|
||||||
genre as Genre,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Albums]]) and
|
|
||||||
contains(artist,this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -9,12 +9,4 @@ created: {{date}}
|
|||||||
---
|
---
|
||||||
## Meetings
|
## Meetings
|
||||||
|
|
||||||
```dataview
|
![[Meetings.base#Person]]
|
||||||
table without id
|
|
||||||
file.link as Meeting,
|
|
||||||
date as Date
|
|
||||||
where
|
|
||||||
contains(categories,[[Meetings]]) and
|
|
||||||
contains(people,this.file.link)
|
|
||||||
sort file.name desc
|
|
||||||
```
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
tags:
|
|
||||||
- people/types
|
|
||||||
---
|
|
||||||
|
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Name
|
|
||||||
where
|
|
||||||
contains(categories, [[People]]) and
|
|
||||||
!contains(file.name,"Template")
|
|
||||||
sort file.name asc
|
|
||||||
```
|
|
||||||
@@ -14,13 +14,4 @@ height: 400px
|
|||||||
|
|
||||||
## Places
|
## Places
|
||||||
|
|
||||||
```dataview
|
![[Places.base#Type]]
|
||||||
table without id
|
|
||||||
file.link as Place,
|
|
||||||
rating as Rating,
|
|
||||||
loc as Location
|
|
||||||
where
|
|
||||||
contains(categories, [[Places]]) and
|
|
||||||
!contains(file.name,"Template") and
|
|
||||||
contains(type, this.file.link)
|
|
||||||
```
|
|
||||||
@@ -13,4 +13,3 @@ rating:
|
|||||||
published:
|
published:
|
||||||
last: {{date}}
|
last: {{date}}
|
||||||
---
|
---
|
||||||
-
|
|
||||||
@@ -8,13 +8,4 @@ tags:
|
|||||||
---
|
---
|
||||||
## Episodes
|
## Episodes
|
||||||
|
|
||||||
```dataview
|
![[Podcast episodes.base#Show]]
|
||||||
table without id
|
|
||||||
link(file.link, "Ep. " + string(episode)) as Episode,
|
|
||||||
guests as Guest,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories,[[Podcast episodes]]) and
|
|
||||||
contains(show,this.file.link)
|
|
||||||
sort episode desc
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -6,8 +6,7 @@ tags:
|
|||||||
author:
|
author:
|
||||||
- "[[Me]]"
|
- "[[Me]]"
|
||||||
url:
|
url:
|
||||||
created:
|
created: {{date}}
|
||||||
"{ date }":
|
|
||||||
published:
|
published:
|
||||||
topics: []
|
topics: []
|
||||||
status:
|
status:
|
||||||
|
|||||||
@@ -2,20 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- products/types
|
- products/types
|
||||||
---
|
---
|
||||||
|
![[Products.base]]
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Item,
|
|
||||||
maker as Maker,
|
|
||||||
price as Price,
|
|
||||||
rating as Rating,
|
|
||||||
acquired as Acquired
|
|
||||||
where
|
|
||||||
contains(categories, [[Products]]) and
|
|
||||||
!contains(file.name,"Template") and
|
|
||||||
contains(type,this.file.link)
|
|
||||||
sort
|
|
||||||
acquired desc,
|
|
||||||
rating desc,
|
|
||||||
file.mtime desc
|
|
||||||
```
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# Recent entries
|
|
||||||
|
|
||||||
```dataview
|
|
||||||
table
|
|
||||||
created as Date
|
|
||||||
where
|
|
||||||
contains(file.outlinks, this.file.link)
|
|
||||||
sort created desc
|
|
||||||
limit 20
|
|
||||||
```
|
|
||||||
@@ -11,4 +11,3 @@ tags:
|
|||||||
- places
|
- places
|
||||||
- restaurants
|
- restaurants
|
||||||
---
|
---
|
||||||
## [[{{date}}]]
|
|
||||||
@@ -11,5 +11,3 @@ tags:
|
|||||||
- episodes
|
- episodes
|
||||||
- references
|
- references
|
||||||
---
|
---
|
||||||
## [[{{date}}]]
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,5 +11,3 @@ tags:
|
|||||||
- shows
|
- shows
|
||||||
- references
|
- references
|
||||||
---
|
---
|
||||||
## [[{{date}}]]
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
ticker: AAPL
|
|
||||||
scale: Logarithmic
|
|
||||||
chartType: Area
|
|
||||||
---
|
|
||||||
|
|
||||||
```dataviewjs
|
|
||||||
await dv.el("div", "", { cls: "stock-container" });
|
|
||||||
|
|
||||||
const container = document.querySelectorAll('.stock-container')[0];
|
|
||||||
const ticker = `${dv.current().file.frontmatter.ticker}`;
|
|
||||||
const scale = `${dv.current().file.frontmatter.scale}`;
|
|
||||||
const chartType = `${dv.current().file.frontmatter.chartType}`;
|
|
||||||
|
|
||||||
const embedUrl = `https://s.tradingview.com/embed-widget/symbol-overview/?locale=en#%7B%22symbols%22%3A%5B%5B%22` + `${ticker}` + `%7C1D%22%5D%5D%2C%22chartOnly%22%3Afalse%2C%22width%22%3A%22100%25%22%2C%22height%22%3A%22100%25%22%2C%22colorTheme%22%3A%22dark%22%2C%22showVolume%22%3Afalse%2C%22showMA%22%3Afalse%2C%22hideDateRanges%22%3Afalse%2C%22hideMarketStatus%22%3Atrue%2C%22hideSymbolLogo%22%3Afalse%2C%22scalePosition%22%3A%22right%22%2C%22scaleMode%22%3A%22` + `${scale}` + `%22%2C%22fontFamily%22%3A%22-apple-system%2C%20BlinkMacSystemFont%2C%20sans-serif%22%2C%22fontSize%22%3A%2212%22%2C%22noTimeScale%22%3Afalse%2C%22valuesTracking%22%3A%221%22%2C%22changeMode%22%3A%22price-and-percent%22%2C%22chartType%22%3A%22` + `${chartType}` + `%22%2C%22fontColor%22%3A%22rgba(100%2C%20100%2C%20100%2C%20.8)%22%2C%22backgroundColor%22%3A%22rgba(0%2C%200%2C%200%2C%200)%22%2C%22widgetFontColor%22%3A%22rgba(150%2C%20150%2C%20150%2C%200.8)%22%2C%22gridLineColor%22%3A%22rgba(200%2C%20200%2C%20200%2C%200.06)%22%2C%22lineWidth%22%3A2%2C%22lineType%22%3A0%2C%22dateRanges%22%3A%5B%221d%7C1%22%2C%221m%7C30%22%2C%223m%7C60%22%2C%2212m%7C1D%22%2C%2260m%7C1W%22%2C%22all%7C1M%22%5D%2C%22dateFormat%22%3A%22dd%20MMM%20'yy%22%2C%22timeHoursFormat%22%3A%2224-hours%22%7D`
|
|
||||||
|
|
||||||
container.innerHTML = `<iframe class="stock-chart" src="${embedUrl}"></iframe>`;
|
|
||||||
await dv.el("div", container);
|
|
||||||
```
|
|
||||||
@@ -2,16 +2,4 @@
|
|||||||
tags:
|
tags:
|
||||||
- games/genres
|
- games/genres
|
||||||
---
|
---
|
||||||
|
![[Games.base#Genre]]
|
||||||
```dataview
|
|
||||||
table without id
|
|
||||||
file.link as Game,
|
|
||||||
maker as Maker,
|
|
||||||
year as Year,
|
|
||||||
rating as Rating
|
|
||||||
where
|
|
||||||
contains(categories, [[Games]]) and
|
|
||||||
!contains(file.name, "Template") and
|
|
||||||
contains(genre, this.file.link)
|
|
||||||
sort rating desc
|
|
||||||
```
|
|
||||||
@@ -12,5 +12,3 @@ tags:
|
|||||||
- games
|
- games
|
||||||
- references
|
- references
|
||||||
---
|
---
|
||||||
## [[{{date}}]]
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user