Follow

@neauoire I'm considering to create a database with books, movies and bookmarks in Lisp instead of JSON / CSV / etc
I've seen people do that.

Also query the database like:
```
(org-ql (org-agenda-files)
(and (not (done))
(tags "bills")
(deadline <=))
:sort deadline)
```
This is so beautiful 😭