42 lines
617 B
Markdown
42 lines
617 B
Markdown
---
|
|
type: moc
|
|
domain: learning
|
|
---
|
|
|
|
# 📚 MOC — Learning
|
|
|
|
> Your reading list, learning queue, and knowledge inputs.
|
|
|
|
---
|
|
|
|
## Currently Reading
|
|
```dataview
|
|
table author, status
|
|
from "50 - Resources/Books"
|
|
where status = "reading"
|
|
```
|
|
|
|
## Finished This Year
|
|
```dataview
|
|
table author, rating, finished
|
|
from "50 - Resources/Books"
|
|
where status = "finished"
|
|
sort finished desc
|
|
```
|
|
|
|
## To Read
|
|
```dataview
|
|
table author
|
|
from "50 - Resources/Books"
|
|
where status = "to-read"
|
|
```
|
|
|
|
## Recent Articles
|
|
```dataview
|
|
list from "50 - Resources/Articles"
|
|
sort file.mtime desc
|
|
limit 10
|
|
```
|
|
|
|
## Top Permanent Notes (from reading)
|
|
-
|