2023-09-13 14:12:55
This commit is contained in:
12
Albums.md
12
Albums.md
@@ -4,8 +4,14 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Album, artist as Artist, rating as Rating, year as Year, genre as Genre
|
||||
from #albums
|
||||
where !contains(file.name, "Template")
|
||||
table without id
|
||||
file.link as Album,
|
||||
artist as Artist,
|
||||
rating as Rating,
|
||||
year as Year,
|
||||
genre as Genre
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort rating desc
|
||||
```
|
||||
@@ -3,6 +3,11 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Game, rating as Rating, last as Last
|
||||
where contains(category,[[Board games]]) and !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Game,
|
||||
rating as Rating,
|
||||
last as Last
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
```
|
||||
13
Books.md
13
Books.md
@@ -4,8 +4,15 @@ tags:
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id file.link as Book, author as Author, year as Year, rating as Rating, created as Added, genre as Genre
|
||||
from #books
|
||||
where !contains(file.name, "Template") and rating > 5
|
||||
table without id
|
||||
file.link as Book,
|
||||
author as Author,
|
||||
year as Year,
|
||||
rating as Rating,
|
||||
created as Added,
|
||||
genre as Genre
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort rating desc, date asc
|
||||
```
|
||||
|
||||
11
Clippings.md
11
Clippings.md
@@ -3,8 +3,13 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Title, author as Author, created as Clipped, published as Published
|
||||
from #clippings
|
||||
where !contains(file.name, "Template")
|
||||
table without id
|
||||
file.link as Title,
|
||||
author as Author,
|
||||
created as Clipped,
|
||||
published as Published
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort clipped desc
|
||||
```
|
||||
@@ -3,8 +3,11 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Company, url as Link
|
||||
from [[Companies]]
|
||||
where !contains(file.name, "Template")
|
||||
table without id
|
||||
file.link as Company,
|
||||
url as Link
|
||||
where
|
||||
contains(category,this.file.link)
|
||||
and !contains(file.name, "Template")
|
||||
sort file.mtime desc
|
||||
```
|
||||
@@ -3,7 +3,9 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Event
|
||||
from #events
|
||||
where !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Event
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
```
|
||||
13
Games.md
13
Games.md
@@ -4,8 +4,15 @@ tags:
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id file.link as Game, maker as Maker, genre as Genre, year as Year, rating as Rating, last as "Last played"
|
||||
from #games
|
||||
where !contains(file.name, "Template")
|
||||
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(category,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort last desc
|
||||
```
|
||||
11
Meetings.md
11
Meetings.md
@@ -3,9 +3,14 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Meeting, type as Type, people as People, date as Date
|
||||
from #meetings
|
||||
where !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Meeting,
|
||||
type as Type,
|
||||
people as People,
|
||||
date as Date
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort date desc
|
||||
limit 100
|
||||
```
|
||||
24
Movies.md
24
Movies.md
@@ -5,18 +5,30 @@ tags:
|
||||
## Favorites
|
||||
|
||||
```dataview
|
||||
table without id file.link as Movie, year as "Year", ratingImdb as "Rating", last as "Last seen", director as "Director"
|
||||
from #movies
|
||||
where rating > 9
|
||||
table without id
|
||||
file.link as Movie,
|
||||
year as Year,
|
||||
rating as Rating,
|
||||
last as "Last seen",
|
||||
director as Director
|
||||
where
|
||||
contains(category,this.file.link)
|
||||
and rating > 9
|
||||
sort rating desc
|
||||
```
|
||||
|
||||
## Last seen
|
||||
|
||||
```dataview
|
||||
table without id file.link as Movie, year as "Year", rating as "Rating", last as "Last seen", director as "Director"
|
||||
from #movies
|
||||
where last != "" and !contains(file.name, "Template")
|
||||
table without id
|
||||
file.link as Movie,
|
||||
year as Year,
|
||||
rating as Rating,
|
||||
last as "Last seen",
|
||||
director as Director
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
last != "" and !contains(file.name, "Template")
|
||||
sort last desc
|
||||
limit 100
|
||||
```
|
||||
@@ -3,8 +3,11 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Person, filter(file.tags, (t) => t !="#people") as Tags
|
||||
from #people
|
||||
where !contains(file.name,"Template") and !contains(file.tags,"people/type")
|
||||
table without id
|
||||
file.link as Person,
|
||||
filter(file.tags, (t) => t !="#people") as Tags
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
12
Places.md
12
Places.md
@@ -11,8 +11,14 @@ height:50%
|
||||
|
||||
|
||||
```dataview
|
||||
table without id file.link as Place, location as "Location", type as Type, rating as "Rating"
|
||||
from #places
|
||||
where !contains(file.tags,"places/types") and !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Place,
|
||||
location as Location,
|
||||
type as Type,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.tags,"places/types") and
|
||||
!contains(file.name,"Template")
|
||||
sort last desc
|
||||
```
|
||||
@@ -3,8 +3,15 @@ tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
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"
|
||||
from #podcast and #episodes
|
||||
where !contains(file.name, "Template")
|
||||
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(category,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort published desc
|
||||
```
|
||||
@@ -2,8 +2,10 @@
|
||||
related: "[[Podcast episodes]]"
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Podcast, host as "Host"
|
||||
from #podcast and !#episodes
|
||||
where !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Podcast, host as "Host"
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
@@ -1,6 +1,8 @@
|
||||
```dataview
|
||||
table without id file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating
|
||||
from #recipes
|
||||
where !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort created desc
|
||||
```
|
||||
@@ -1,7 +1,9 @@
|
||||
---
|
||||
category:
|
||||
- "[[Recipes]]"
|
||||
cuisine:
|
||||
- "[[Clippings]]"
|
||||
cuisine:
|
||||
- "[[American]]"
|
||||
type:
|
||||
- "[[Dessert]]"
|
||||
ingredients:
|
||||
@@ -9,7 +11,9 @@ ingredients:
|
||||
author:
|
||||
- "[[Steph Ango]]"
|
||||
url: https://stephango.com/brown-butter-nectarine-tart
|
||||
servings: 8 slices (11 inch tart)
|
||||
rating: 7
|
||||
published: 2023-07-30
|
||||
created: 2023-09-12
|
||||
last: 2023-09-12
|
||||
tags:
|
||||
|
||||
@@ -4,8 +4,13 @@ tags:
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id file.link as Album, artist as "Artist", genre as "Genre", rating as "Rating"
|
||||
table without id
|
||||
file.link as Album,
|
||||
artist as Artist,
|
||||
genre as Genre,
|
||||
rating as Rating
|
||||
from #albums
|
||||
where genre = this.file.link or contains(genre,this.file.link)
|
||||
where
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -9,16 +9,22 @@ created: 2023-09-12
|
||||
## Books
|
||||
|
||||
```dataview
|
||||
table without id file.link as Title, year as "Year", rating as "Rating"
|
||||
table without id
|
||||
file.link as Title,
|
||||
year as Year,
|
||||
rating as Rating
|
||||
from #books
|
||||
where author = this.file.link or contains(author,this.file.link)
|
||||
where
|
||||
contains(author,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
|
||||
# Clippings
|
||||
|
||||
```dataview
|
||||
table without id file.link as Title, published as Published
|
||||
table without id
|
||||
file.link as Title,
|
||||
published as Published
|
||||
from #clippings
|
||||
where author = this.file.link or contains(author,this.file.link)
|
||||
sort rating desc
|
||||
@@ -27,7 +33,9 @@ sort rating desc
|
||||
# Podcast episodes
|
||||
|
||||
```dataview
|
||||
table without id file.link as Podcast, published as Published
|
||||
table without id
|
||||
file.link as Podcast,
|
||||
published as Published
|
||||
from #episodes
|
||||
where contains(guests,this.file.link)
|
||||
sort rating desc
|
||||
|
||||
@@ -9,8 +9,12 @@ created: 2023-09-13
|
||||
## Albums
|
||||
|
||||
```dataview
|
||||
table without id file.link as Album, artist as "Artist", rating as "Rating"
|
||||
from #albums
|
||||
where artist = this.file.link or contains(artist,this.file.link)
|
||||
table without id
|
||||
file.link as Album,
|
||||
artist as Artist,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Albums]]) and
|
||||
contains(artist,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -13,7 +13,8 @@ url: https://stephango.com/
|
||||
## Clippings
|
||||
|
||||
```dataview
|
||||
table without id file.link as Title, published as Publish
|
||||
table without id
|
||||
file.link as Title, published as Publish
|
||||
where author = this.file.link or contains(author,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -21,7 +22,8 @@ sort rating desc
|
||||
## Meetings
|
||||
|
||||
```dataview
|
||||
table without id file.link as Meeting, date as Date
|
||||
table without id
|
||||
file.link as Meeting, date as Date
|
||||
where contains(people,this.file.link)
|
||||
sort file.name desc
|
||||
```
|
||||
|
||||
@@ -10,8 +10,12 @@ tags:
|
||||
## Episodes
|
||||
|
||||
```dataview
|
||||
table without id link(file.link, "Ep. " + string(episode)) as Episode, guests as "Guest", rating as "Rating"
|
||||
from #podcast and #episodes
|
||||
where show = this.file.link
|
||||
table without id
|
||||
link(file.link, "Ep. " + string(episode)) as Episode,
|
||||
guests as Guest,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Podcast episodes]]) and
|
||||
contains(show,this.file.link)
|
||||
sort episode desc
|
||||
```
|
||||
@@ -7,8 +7,12 @@ tags:
|
||||
## Movies
|
||||
|
||||
```dataview
|
||||
table without id file.link as Movie, year as "Year", ratingImdb as "Rating"
|
||||
from #movies
|
||||
where cast = this.file.link or contains(cast,this.file.link)
|
||||
sort ratingImdb desc
|
||||
table without id
|
||||
file.link as Movie,
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Movies]]) and
|
||||
contains(cast,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -7,7 +7,8 @@ tags:
|
||||
## Books
|
||||
|
||||
```dataview
|
||||
table without id file.link as Title, year as "Year", rating as "Rating"
|
||||
table without id
|
||||
file.link as Title, year as Year, rating as Rating
|
||||
from #books
|
||||
where author = this.file.link or contains(author,this.file.link)
|
||||
sort rating desc
|
||||
|
||||
@@ -33,7 +33,7 @@ coordinates: [[Madrid]]
|
||||
```
|
||||
|
||||
```dataview
|
||||
table rating as "Rating", type as "Type"
|
||||
table rating as Rating, type as "Type"
|
||||
from #places
|
||||
where contains(loc, this.file.link)
|
||||
sort rating desc
|
||||
|
||||
@@ -9,8 +9,12 @@ created: {{date}}
|
||||
## Movies
|
||||
|
||||
```dataview
|
||||
table without id file.link as Movie, year as "Year", ratingImdb as "Rating"
|
||||
from #movies
|
||||
where director = this.file.link or contains(director,this.file.link)
|
||||
sort ratingImdb desc
|
||||
table without id
|
||||
file.link as Movie,
|
||||
year as Year,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Movies]]) and
|
||||
contains(director,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -7,7 +7,7 @@ tags:
|
||||
## Games
|
||||
|
||||
```dataview
|
||||
table year as "Year", rating as "Rating"
|
||||
table year as Year, rating as Rating
|
||||
from #games
|
||||
where maker = this.file.link or contains(maker,this.file.link)
|
||||
sort year desc
|
||||
|
||||
12
Templates/Genre Template.md
Normal file
12
Templates/Genre Template.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
tags:
|
||||
- genres
|
||||
---
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Title,
|
||||
rating as "Rating"
|
||||
where
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -5,7 +5,8 @@ tags:
|
||||
|
||||
|
||||
```dataview
|
||||
table without id file.link as Meeting, people as People, date as Date
|
||||
table without id
|
||||
file.link as Meeting, people as People, date as Date
|
||||
from #meetings or #dates
|
||||
where !contains(file.name,"Template") and contains(type,this.file.link)
|
||||
sort date desc
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
```dataview
|
||||
table without id file.link as Meeting, date as Date
|
||||
table without id
|
||||
file.link as Meeting, date as Date
|
||||
from [[Meetings]]
|
||||
where contains(people,this.file.link)
|
||||
sort date desc
|
||||
|
||||
@@ -3,8 +3,11 @@ tags:
|
||||
- movies/genres
|
||||
---
|
||||
```dataview
|
||||
table ratingImdb as "Rating"
|
||||
from #references
|
||||
where genre = this.file.link or contains(genre,this.file.link)
|
||||
sort ratingImdb desc
|
||||
table without id
|
||||
file.link as Movie,
|
||||
rating as "Rating"
|
||||
where
|
||||
contains(category,[[Movies]]) and
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -4,8 +4,13 @@ tags:
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id file.link as Album, artist as "Artist", genre as "Genre", rating as "Rating"
|
||||
from #albums
|
||||
where genre = this.file.link or contains(genre,this.file.link)
|
||||
table without id
|
||||
file.link as Album,
|
||||
artist as Artist,
|
||||
genre as Genre,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Albums]]) and
|
||||
contains(genre,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -8,8 +8,13 @@ created: {{date}}
|
||||
## Albums
|
||||
|
||||
```dataview
|
||||
table without id file.link as Album, artist as "Artist", rating as "Rating"
|
||||
from #albums
|
||||
where artist = this.file.link or contains(artist,this.file.link)
|
||||
table without id
|
||||
file.link as Album,
|
||||
artist as Artist,
|
||||
genre as Genre,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Albums]]) and
|
||||
contains(artist,this.file.link)
|
||||
sort rating desc
|
||||
```
|
||||
@@ -10,8 +10,11 @@ created: {{date}}
|
||||
## Meetings
|
||||
|
||||
```dataview
|
||||
table without id file.link as Meeting, date as Date
|
||||
from #meetings
|
||||
where contains(people,this.file.link)
|
||||
table without id
|
||||
file.link as Meeting,
|
||||
date as Date
|
||||
where
|
||||
contains(category,[[Meetings]]) and
|
||||
contains(people,this.file.link)
|
||||
sort file.name desc
|
||||
```
|
||||
@@ -3,8 +3,10 @@ tags:
|
||||
- people/types
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Name
|
||||
from #actors
|
||||
where !contains(file.name,"Template")
|
||||
table without id
|
||||
file.link as Name
|
||||
from #people
|
||||
where
|
||||
!contains(file.name,"Template")
|
||||
sort file.name asc
|
||||
```
|
||||
@@ -13,7 +13,11 @@ height: 50%
|
||||
```
|
||||
|
||||
```dataview
|
||||
table without id file.link as Place, rating as "Rating", loc as "Location"
|
||||
table without id
|
||||
file.link as Place,
|
||||
rating as Rating,
|
||||
location as Location
|
||||
from #places
|
||||
where contains(type, this.file.link)
|
||||
where
|
||||
contains(type, this.file.link)
|
||||
```
|
||||
@@ -9,8 +9,12 @@ tags:
|
||||
## Episodes
|
||||
|
||||
```dataview
|
||||
table without id link(file.link, "Ep. " + string(episode)) as Episode, guests as "Guest", rating as "Rating"
|
||||
from #podcast and #episodes
|
||||
where show = this.file.link
|
||||
table without id
|
||||
link(file.link, "Ep. " + string(episode)) as Episode,
|
||||
guests as Guest,
|
||||
rating as Rating
|
||||
where
|
||||
contains(category,[[Podcast episodes]]) and
|
||||
contains(show,this.file.link)
|
||||
sort episode desc
|
||||
```
|
||||
@@ -3,7 +3,8 @@ tags:
|
||||
- products/types
|
||||
---
|
||||
```dataview
|
||||
table without id file.link as Item, maker as "Maker", price as "Price", rating as "Rating", purchased as Purchased
|
||||
table without id
|
||||
file.link as Item, maker as "Maker", price as "Price", rating as Rating, purchased as Purchased
|
||||
from #products
|
||||
where type = this.file.link or contains(type,this.file.link)
|
||||
sort purchased desc, rating desc, file.mtime desc
|
||||
|
||||
@@ -3,7 +3,7 @@ tags:
|
||||
- games/genres
|
||||
---
|
||||
```dataview
|
||||
table maker as "Maker", year as "Year", rating as "Rating"
|
||||
table maker as "Maker", year as Year, rating as Rating
|
||||
from #games
|
||||
where !contains(file.name, "Template") and contains(genre, this.file.link)
|
||||
sort rating desc
|
||||
|
||||
Reference in New Issue
Block a user