2023-09-13 14:12:55

This commit is contained in:
Steph Ango
2023-09-13 14:12:55 -07:00
parent 3150bc526d
commit 97e1da4d2b
37 changed files with 244 additions and 95 deletions

View File

@@ -4,8 +4,14 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Album, artist as Artist, rating as Rating, year as Year, genre as Genre table without id
from #albums file.link as Album,
where !contains(file.name, "Template") 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 sort rating desc
``` ```

View File

@@ -3,6 +3,11 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Game, rating as Rating, last as Last table without id
where contains(category,[[Board games]]) and !contains(file.name,"Template") file.link as Game,
rating as Rating,
last as Last
where
contains(category,this.file.link) and
!contains(file.name,"Template")
``` ```

View File

@@ -4,8 +4,15 @@ tags:
--- ---
```dataview ```dataview
table without id file.link as Book, author as Author, year as Year, rating as Rating, created as Added, genre as Genre table without id
from #books file.link as Book,
where !contains(file.name, "Template") and rating > 5 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 sort rating desc, date asc
``` ```

View File

@@ -3,8 +3,13 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Title, author as Author, created as Clipped, published as Published table without id
from #clippings file.link as Title,
where !contains(file.name, "Template") author as Author,
created as Clipped,
published as Published
where
contains(category,this.file.link) and
!contains(file.name, "Template")
sort clipped desc sort clipped desc
``` ```

View File

@@ -3,8 +3,11 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Company, url as Link table without id
from [[Companies]] file.link as Company,
where !contains(file.name, "Template") url as Link
where
contains(category,this.file.link)
and !contains(file.name, "Template")
sort file.mtime desc sort file.mtime desc
``` ```

View File

@@ -3,7 +3,9 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Event table without id
from #events file.link as Event
where !contains(file.name,"Template") where
contains(category,this.file.link) and
!contains(file.name,"Template")
``` ```

View File

@@ -4,8 +4,15 @@ tags:
--- ---
```dataview ```dataview
table without id file.link as Game, maker as Maker, genre as Genre, year as Year, rating as Rating, last as "Last played" table without id
from #games file.link as Game,
where !contains(file.name, "Template") 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 sort last desc
``` ```

View File

@@ -3,9 +3,14 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Meeting, type as Type, people as People, date as Date table without id
from #meetings file.link as Meeting,
where !contains(file.name,"Template") type as Type,
people as People,
date as Date
where
contains(category,this.file.link) and
!contains(file.name,"Template")
sort date desc sort date desc
limit 100 limit 100
``` ```

View File

@@ -5,18 +5,30 @@ tags:
## Favorites ## Favorites
```dataview ```dataview
table without id file.link as Movie, year as "Year", ratingImdb as "Rating", last as "Last seen", director as "Director" table without id
from #movies file.link as Movie,
where rating > 9 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 sort rating desc
``` ```
## Last seen ## Last seen
```dataview ```dataview
table without id file.link as Movie, year as "Year", rating as "Rating", last as "Last seen", director as "Director" table without id
from #movies file.link as Movie,
where last != "" and !contains(file.name, "Template") 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 sort last desc
limit 100 limit 100
``` ```

View File

@@ -3,8 +3,11 @@ tags:
- databases - databases
--- ---
```dataview ```dataview
table without id file.link as Person, filter(file.tags, (t) => t !="#people") as Tags table without id
from #people file.link as Person,
where !contains(file.name,"Template") and !contains(file.tags,"people/type") filter(file.tags, (t) => t !="#people") as Tags
where
contains(category,this.file.link) and
!contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -11,8 +11,14 @@ height:50%
```dataview ```dataview
table without id file.link as Place, location as "Location", type as Type, rating as "Rating" table without id
from #places file.link as Place,
where !contains(file.tags,"places/types") and !contains(file.name,"Template") 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 sort last desc
``` ```

View File

@@ -3,8 +3,15 @@ tags:
- databases - databases
--- ---
```dataview ```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" table without id
from #podcast and #episodes link(file.link, "Ep. " + string(episode)) as Episode,
where !contains(file.name, "Template") 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 sort published desc
``` ```

View File

@@ -2,8 +2,10 @@
related: "[[Podcast episodes]]" related: "[[Podcast episodes]]"
--- ---
```dataview ```dataview
table without id file.link as Podcast, host as "Host" table without id
from #podcast and !#episodes file.link as Podcast, host as "Host"
where !contains(file.name,"Template") where
contains(category,this.file.link) and
!contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -1,6 +1,8 @@
```dataview ```dataview
table without id file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating table without id
from #recipes file.link as Recipe, type as Type, author as Author, ingredients as Ingredients, rating as Rating
where !contains(file.name,"Template") where
contains(category,this.file.link) and
!contains(file.name,"Template")
sort created desc sort created desc
``` ```

View File

@@ -1,7 +1,9 @@
--- ---
category: category:
- "[[Recipes]]" - "[[Recipes]]"
cuisine: - "[[Clippings]]"
cuisine:
- "[[American]]"
type: type:
- "[[Dessert]]" - "[[Dessert]]"
ingredients: ingredients:
@@ -9,7 +11,9 @@ ingredients:
author: author:
- "[[Steph Ango]]" - "[[Steph Ango]]"
url: https://stephango.com/brown-butter-nectarine-tart url: https://stephango.com/brown-butter-nectarine-tart
servings: 8 slices (11 inch tart)
rating: 7 rating: 7
published: 2023-07-30
created: 2023-09-12 created: 2023-09-12
last: 2023-09-12 last: 2023-09-12
tags: tags:

View File

@@ -4,8 +4,13 @@ tags:
--- ---
```dataview ```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 from #albums
where genre = this.file.link or contains(genre,this.file.link) where
contains(genre,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -9,16 +9,22 @@ created: 2023-09-12
## Books ## Books
```dataview ```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 from #books
where author = this.file.link or contains(author,this.file.link) where
contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
# Clippings # Clippings
```dataview ```dataview
table without id file.link as Title, published as Published table without id
file.link as Title,
published as Published
from #clippings from #clippings
where author = this.file.link or contains(author,this.file.link) where author = this.file.link or contains(author,this.file.link)
sort rating desc sort rating desc
@@ -27,7 +33,9 @@ sort rating desc
# Podcast episodes # Podcast episodes
```dataview ```dataview
table without id file.link as Podcast, published as Published table without id
file.link as Podcast,
published as Published
from #episodes from #episodes
where contains(guests,this.file.link) where contains(guests,this.file.link)
sort rating desc sort rating desc

View File

@@ -9,8 +9,12 @@ created: 2023-09-13
## Albums ## Albums
```dataview ```dataview
table without id file.link as Album, artist as "Artist", rating as "Rating" table without id
from #albums file.link as Album,
where artist = this.file.link or contains(artist,this.file.link) artist as Artist,
rating as Rating
where
contains(category,[[Albums]]) and
contains(artist,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -13,7 +13,8 @@ url: https://stephango.com/
## Clippings ## Clippings
```dataview ```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) where author = this.file.link or contains(author,this.file.link)
sort rating desc sort rating desc
``` ```
@@ -21,7 +22,8 @@ sort rating desc
## Meetings ## Meetings
```dataview ```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) where contains(people,this.file.link)
sort file.name desc sort file.name desc
``` ```

View File

@@ -10,8 +10,12 @@ tags:
## Episodes ## Episodes
```dataview ```dataview
table without id link(file.link, "Ep. " + string(episode)) as Episode, guests as "Guest", rating as "Rating" table without id
from #podcast and #episodes link(file.link, "Ep. " + string(episode)) as Episode,
where show = this.file.link guests as Guest,
rating as Rating
where
contains(category,[[Podcast episodes]]) and
contains(show,this.file.link)
sort episode desc sort episode desc
``` ```

View File

@@ -7,8 +7,12 @@ tags:
## Movies ## Movies
```dataview ```dataview
table without id file.link as Movie, year as "Year", ratingImdb as "Rating" table without id
from #movies file.link as Movie,
where cast = this.file.link or contains(cast,this.file.link) year as Year,
sort ratingImdb desc rating as Rating
where
contains(category,[[Movies]]) and
contains(cast,this.file.link)
sort rating desc
``` ```

View File

@@ -7,7 +7,8 @@ tags:
## Books ## Books
```dataview ```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 from #books
where author = this.file.link or contains(author,this.file.link) where author = this.file.link or contains(author,this.file.link)
sort rating desc sort rating desc

View File

@@ -33,7 +33,7 @@ coordinates: [[Madrid]]
``` ```
```dataview ```dataview
table rating as "Rating", type as "Type" table rating as Rating, type as "Type"
from #places from #places
where contains(loc, this.file.link) where contains(loc, this.file.link)
sort rating desc sort rating desc

View File

@@ -9,8 +9,12 @@ created: {{date}}
## Movies ## Movies
```dataview ```dataview
table without id file.link as Movie, year as "Year", ratingImdb as "Rating" table without id
from #movies file.link as Movie,
where director = this.file.link or contains(director,this.file.link) year as Year,
sort ratingImdb desc rating as Rating
where
contains(category,[[Movies]]) and
contains(director,this.file.link)
sort rating desc
``` ```

View File

@@ -7,7 +7,7 @@ tags:
## Games ## Games
```dataview ```dataview
table year as "Year", rating as "Rating" table year as Year, rating as Rating
from #games from #games
where maker = this.file.link or contains(maker,this.file.link) where maker = this.file.link or contains(maker,this.file.link)
sort year desc sort year desc

View 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
```

View File

@@ -5,7 +5,8 @@ tags:
```dataview ```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 from #meetings or #dates
where !contains(file.name,"Template") and contains(type,this.file.link) where !contains(file.name,"Template") and contains(type,this.file.link)
sort date desc sort date desc

View File

@@ -1,5 +1,6 @@
```dataview ```dataview
table without id file.link as Meeting, date as Date table without id
file.link as Meeting, date as Date
from [[Meetings]] from [[Meetings]]
where contains(people,this.file.link) where contains(people,this.file.link)
sort date desc sort date desc

View File

@@ -3,8 +3,11 @@ tags:
- movies/genres - movies/genres
--- ---
```dataview ```dataview
table ratingImdb as "Rating" table without id
from #references file.link as Movie,
where genre = this.file.link or contains(genre,this.file.link) rating as "Rating"
sort ratingImdb desc where
contains(category,[[Movies]]) and
contains(genre,this.file.link)
sort rating desc
``` ```

View File

@@ -4,8 +4,13 @@ tags:
--- ---
```dataview ```dataview
table without id file.link as Album, artist as "Artist", genre as "Genre", rating as "Rating" table without id
from #albums file.link as Album,
where genre = this.file.link or contains(genre,this.file.link) artist as Artist,
genre as Genre,
rating as Rating
where
contains(category,[[Albums]]) and
contains(genre,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -8,8 +8,13 @@ created: {{date}}
## Albums ## Albums
```dataview ```dataview
table without id file.link as Album, artist as "Artist", rating as "Rating" table without id
from #albums file.link as Album,
where artist = this.file.link or contains(artist,this.file.link) artist as Artist,
genre as Genre,
rating as Rating
where
contains(category,[[Albums]]) and
contains(artist,this.file.link)
sort rating desc sort rating desc
``` ```

View File

@@ -10,8 +10,11 @@ created: {{date}}
## Meetings ## Meetings
```dataview ```dataview
table without id file.link as Meeting, date as Date table without id
from #meetings file.link as Meeting,
where contains(people,this.file.link) date as Date
where
contains(category,[[Meetings]]) and
contains(people,this.file.link)
sort file.name desc sort file.name desc
``` ```

View File

@@ -3,8 +3,10 @@ tags:
- people/types - people/types
--- ---
```dataview ```dataview
table without id file.link as Name table without id
from #actors file.link as Name
where !contains(file.name,"Template") from #people
where
!contains(file.name,"Template")
sort file.name asc sort file.name asc
``` ```

View File

@@ -13,7 +13,11 @@ height: 50%
``` ```
```dataview ```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 from #places
where contains(type, this.file.link) where
contains(type, this.file.link)
``` ```

View File

@@ -9,8 +9,12 @@ tags:
## Episodes ## Episodes
```dataview ```dataview
table without id link(file.link, "Ep. " + string(episode)) as Episode, guests as "Guest", rating as "Rating" table without id
from #podcast and #episodes link(file.link, "Ep. " + string(episode)) as Episode,
where show = this.file.link guests as Guest,
rating as Rating
where
contains(category,[[Podcast episodes]]) and
contains(show,this.file.link)
sort episode desc sort episode desc
``` ```

View File

@@ -3,7 +3,8 @@ tags:
- products/types - products/types
--- ---
```dataview ```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 from #products
where type = this.file.link or contains(type,this.file.link) where type = this.file.link or contains(type,this.file.link)
sort purchased desc, rating desc, file.mtime desc sort purchased desc, rating desc, file.mtime desc

View File

@@ -3,7 +3,7 @@ tags:
- games/genres - games/genres
--- ---
```dataview ```dataview
table maker as "Maker", year as "Year", rating as "Rating" table maker as "Maker", year as Year, rating as Rating
from #games from #games
where !contains(file.name, "Template") and contains(genre, this.file.link) where !contains(file.name, "Template") and contains(genre, this.file.link)
sort rating desc sort rating desc