init
This commit is contained in:
commit
c5cd492449
475 changed files with 27928 additions and 0 deletions
90
MetaIndex.md
Normal file
90
MetaIndex.md
Normal file
|
@ -0,0 +1,90 @@
|
|||
---
|
||||
obj: meta
|
||||
---
|
||||
|
||||
# Index
|
||||
## Frontmatter
|
||||
### Notes with websites
|
||||
```dataview
|
||||
table website from "/" where website != null
|
||||
```
|
||||
|
||||
### Notes with repositories
|
||||
```dataview
|
||||
table repo from "/" where repo != null
|
||||
```
|
||||
|
||||
### Notes with Sources
|
||||
```dataview
|
||||
table source from "/" where source != null
|
||||
```
|
||||
|
||||
### Notes with Wiki
|
||||
```dataview
|
||||
table wiki from "/" where wiki != null
|
||||
```
|
||||
|
||||
### Notes with Arch Wiki
|
||||
```dataview
|
||||
table arch-wiki from "/" where arch-wiki != null
|
||||
```
|
||||
|
||||
### Notes with RFC
|
||||
```dataview
|
||||
table rfc from "/" where rfc != null
|
||||
```
|
||||
|
||||
### Notes with Object Type
|
||||
```dataview
|
||||
table obj from "/" where obj != null
|
||||
```
|
||||
|
||||
## Object Type
|
||||
### Applications
|
||||
```dataview
|
||||
table android-id, flatpak-id from "/" where startswith(lower(obj), "application")
|
||||
```
|
||||
|
||||
### Operating Systems
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "os")
|
||||
```
|
||||
|
||||
### Codecs
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "codec")
|
||||
```
|
||||
|
||||
### Filesystems
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "filesystem")
|
||||
```
|
||||
|
||||
### Emulators
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "emulator")
|
||||
```
|
||||
|
||||
### Concepts
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "concept")
|
||||
```
|
||||
|
||||
### Meta Notes
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "meta")
|
||||
```
|
||||
|
||||
### Device Notes
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "device")
|
||||
```
|
||||
|
||||
### Science Notes
|
||||
```dataview
|
||||
list from "/" where startswith(lower(obj), "science")
|
||||
```
|
||||
### Website Notes
|
||||
```dataview
|
||||
table website, category, status from "/" where startswith(lower(obj), "website")
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue