Crates.io | dear |
lib.rs | dear |
version | 0.1.1 |
source | src |
created_at | 2022-02-12 09:21:45.903145 |
updated_at | 2022-04-24 18:42:53.462176 |
description | |
homepage | |
repository | |
max_upload_size | |
id | 531260 |
size | 26,785 |
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
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
# Minimal Note
dear save --title "My First Note"
# Note with description
dear save --title "My Second Note" -d "I'm just testing out this, dear"
# Notes might have several tags
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
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