## All Inputs
- Like how he has a deep dive in one thing, then answers to questions
- Makes it shareable and coherent, even for beginners?
- Maybe I can do something similar for [[My podcast]]? ^8m4g4k
```dataview
table Status, Created
from [[]] and #inputCollection
```
## By Status
### No Status `#π₯`
```dataview
table Created, rating, source
FROM [[]] and #input AND !"Hidden"
where !Status AND contains(Collection, [[]]) AND (contains(file.tags, "π₯") OR contains(file.frontmatter.Status, "π₯"))
SORT Created desc
```
### Not Started `#π₯`
```dataview
table Created, rating, source
FROM [[]] and #input AND #π₯ AND !"Hidden"
where contains(Collection, [[]]) AND (contains(file.tags, "π₯") OR contains(file.frontmatter.Status, "π₯"))
SORT Created desc
```
### Consuming Media `#π§`
```dataview
table Created, rating, source
FROM [[]] and #input AND #π§ AND !"Hidden"
where contains(Collection, [[]]) AND (contains(file.tags, "π§") OR contains(file.frontmatter.Status, "π§"))
SORT Created desc
```
### Implementation `#π¨`
```dataview
table Created, rating, source
FROM [[]] and #input AND #π¨ AND !"Hidden"
where contains(Collection, [[]]) AND (contains(file.tags, "π¨") OR contains(file.frontmatter.Status, "π¨"))
SORT file.ctime desc
```
### Finished `#π©`
```dataview
table Finished, rating, source
FROM [[]] and #input AND #π© AND !"Hidden"
where contains(Collection, [[]]) AND (contains(file.tags, "π©") OR contains(file.frontmatter.Status, "π©"))
SORT Created desc
```
### Archived `#β¬`
```dataview
table Finished, rating, source
FROM [[]] and #input AND #β¬ AND !"Hidden"
where contains(Collection, [[]]) AND (contains(file.tags, "β¬") OR contains(file.frontmatter.Status, "β¬"))
SORT Created desc
```