# [[Lightning rods]]
## Notes by the number of outgoing links, top 30
```dataview
TABLE length(file.outlinks) as "Outgoing", length(file.inlinks) as "Incoming"
where !contains(file.path,"private") and
!contains(file.path,"review") and
!contains(file.path,"ttrpgs") and
!contains(file.path,"readwise") and
!contains(file.path,"system") and
!contains(file.publish,"false")
SORT length(file.outlinks) DESC
LIMIT 30
```
## Notes by the number of incoming links, top 20
```dataview
TABLE length(file.outlinks) as "Outgoing", length(file.inlinks) as "Incoming"
where !contains(file.path,"private") and
!contains(file.path,"review") and
!contains(file.path,"ttrpgs") and
!contains(file.path,"readwise") and
!contains(file.path,"System")
SORT length(file.inlinks) DESC
LIMIT 20
```
## Embedded search for keyword
```query
line:(observability tracing)
```
## Orphans
Notes not linked to anything
```dataview
TABLE file.path as "Path", length(file.outlinks) as "Outgoing", length(file.inlinks) as "Incoming"
where length(file.outlinks) = 0 and
length(file.inlinks) = 0 and
!contains(file.path,"private/gente") and
!contains(file.path,"Daily") and
!contains(file.path,"ttrpgs") and
!contains(file.path,"readwise") and
!contains(file.path,"System") and
!contains(file.path,"private/meeting") and
!contains(file.path,"Private") and
!contains(file.path,"Weekly") and
publish != false and
!contains(file.path,"Presentation") and
!contains(file.path,"templates") and
!contains(file.tags,"TVZ") and
!contains(file.path,"Tasks") and
!contains(file.path,"Excalidraw") and
!contains(file.path,"Book") and
!contains(file.path,"readwise") and
!contains(file.path,"video-database") and
!contains(file.path,"Music") and
!contains(file.path,"Article") and
!contains(file.path,"Video") and
!contains(file.path,"Excalidraw") and
!contains(file.path,"Whitepaper") and
!contains(file.path,"Spaced") and
!contains(file.path,"Tweet") and
!contains(file.path,"monsters") and
!contains(file.path,"textgenerator") and
!contains(file.path,"spaced")
```