Dear is a yet another note taking app.
It was born mainly from my desire for learning Rust... I realised that working on a personal project that I could actually use and improve while it became more complex would be a great fun learning experience.
Obs.: Still there is no published binary
Using cargo
bash
cargo install dear
Dear is currently able to save and list Notes. They are stored as plain text in a configurable location. A Note has a title and it might have a description and any number of tags.
TODO
```bash
dear save --title "My First Note"
dear save --title "My Second Note" -d "I'm just testing out this, dear"
dear save --title "Rust is amazing" -t rust dear save --title "My dog's schedule" -d "Walk at 9 and 18 | Eat at 12 and 20" -t dog -t home ```
```bash dear list ┌──────────────────────────────────────────────────────────────────────────────┐ │ My dog's schedule │ │ │ │ Walk at 9 and 18 | Eat at 12 and 20 │ │ │ │ [dog][home]│ └──────────────────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────────────────┐ │ My First Note │ │ │ │ │ │ │ │ │ └──────────────────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────────────────┐ │ Rust is amazing │ │ │ │ │ │ │ │ [rust]│ └──────────────────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────────────────┐ │ My Second Note │ │ │ │ I'm just testing out this, dear │ │ │ │ │ └──────────────────────────────────────────────────────────────────────────────┘ ```
TODO