2023-09-13 14:52:57
This commit is contained in:
18
Databases/Albums.md
Normal file
18
Databases/Albums.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
tags:
|
||||
- music
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
14
Databases/Board games.md
Normal file
14
Databases/Board games.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Game,
|
||||
rating as Rating,
|
||||
last as Last
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
```
|
||||
18
Databases/Books.md
Normal file
18
Databases/Books.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
16
Databases/Clippings.md
Normal file
16
Databases/Clippings.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
14
Databases/Companies.md
Normal file
14
Databases/Companies.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
12
Databases/Events.md
Normal file
12
Databases/Events.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Event
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
```
|
||||
17
Databases/Games.md
Normal file
17
Databases/Games.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
16
Databases/Meetings.md
Normal file
16
Databases/Meetings.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
34
Databases/Movies.md
Normal file
34
Databases/Movies.md
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
## Favorites
|
||||
|
||||
```dataview
|
||||
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
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
last != "" and !contains(file.name, "Template")
|
||||
sort last desc
|
||||
limit 100
|
||||
```
|
||||
13
Databases/People.md
Normal file
13
Databases/People.md
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
25
Databases/Places.md
Normal file
25
Databases/Places.md
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
```leaflet
|
||||
id: places
|
||||
markerTag: places
|
||||
maxZoom:15
|
||||
height:50%
|
||||
```
|
||||
|
||||
## Places
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Place,
|
||||
loc 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
|
||||
```
|
||||
17
Databases/Podcast episodes.md
Normal file
17
Databases/Podcast episodes.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
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"
|
||||
where
|
||||
contains(category,this.file.link) and
|
||||
!contains(file.name, "Template")
|
||||
sort published desc
|
||||
```
|
||||
11
Databases/Podcasts.md
Normal file
11
Databases/Podcasts.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
related: "[[Podcast episodes]]"
|
||||
---
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
13
Databases/Recipes.md
Normal file
13
Databases/Recipes.md
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
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
|
||||
```
|
||||
0
Databases/Shows.md
Normal file
0
Databases/Shows.md
Normal file
17
Databases/Trips.md
Normal file
17
Databases/Trips.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
tags:
|
||||
- databases
|
||||
---
|
||||
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Trip,
|
||||
loc as Location,
|
||||
start as Start,
|
||||
end as End
|
||||
where
|
||||
contains(category,[[Trips]]) and
|
||||
!contains(file.name, "Template") and
|
||||
!contains(file.name, "Planning")
|
||||
sort start desc
|
||||
```
|
||||
Reference in New Issue
Block a user