This dashboard is a work in progress, the goal is to give myself a place to start editing notes that were either Orphans(Olivers haha) meaning no links in or out, files that were too small or zero (meaning I probably should add content), or too large (meaning I should pare it down or break it apart into more atomic sized notes).
I have a Dashboard note for this code in my ‘000 Inbox’ folder. My Daily Notes and Tasks note are in my ‘001 Daily’ folder.
You’ll see that I ended up adding filter statements in the snippets to avoid my Templates folder files, or my Daily Notes, etc. If you use my snippets, you will have to edit the paths or remove those sections as needed.
The #io tag I filter out stands for Information Only, meaning they are small notes that may have no links but I want to keep them as is for information purposes only. But I don’t need to see them in the limited space of the dashboard.
You can change the limit on the tables. I made it 5 so I’m forced to deal with the ones it shows me instead of scrolling down a long list.
++++++++
OLIVERS - Zero Links In or Out (without #io tag)
```dataview
LIST
from “”
where length(file.inlinks) =0 and length(file.outlinks) = 0 and file.folder != “4. ARCHIVE” and file.folder != “4. ARCHIVE/TEMPLATES” and !contains(file.tags, “#io”) and file.folder != “001 DAILY” and file.folder != “001 DAILY/PAST”
```
FILES BY SIZE (Low)
```dataview
TABLE file.size as “File Size”
SORT file.size asc
LIMIT 5
```
FILES BY SIZE (High)
```dataview
TABLE file.size as “File Size”
SORT file.size desc
where file.name != “obsidian.css”
LIMIT 5
```