No description
  • Go 90.7%
  • SCSS 7.4%
  • Shell 1.4%
  • Makefile 0.2%
  • JavaScript 0.2%
Find a file
Sung Won Cho fa1da50fc5
Implement state-based sync (#144)
* Migrate uuids of books that already exist in server

* Remove actions

* Add dirty flag for notes and books

* Drop actions table

* Implement sync

* Add debug

* Update uuid after posting resources to the server

* Fix dev script
2018-12-02 11:04:16 +10:00
assets 0.2.0 (#57) 2018-01-21 15:25:16 +11:00
client Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
cmd Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
core Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
infra Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
log Add debug statements (#109) 2018-09-08 16:21:55 +10:00
migrate Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
scripts Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
testutils Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
utils Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
.gitignore Cross compile (#135) 2018-10-14 14:51:11 +10:00
.travis.yml Sync across multiple machine (#51) 2018-01-06 17:53:07 +11:00
COMMANDS.md Add debug statements (#109) 2018-09-08 16:21:55 +10:00
CONBTRIBUTING.md Cross compile (#135) 2018-10-14 14:51:11 +10:00
Gopkg.lock v0.4.5 (#128) 2018-10-13 15:35:03 +10:00
Gopkg.toml v0.4.5 (#128) 2018-10-13 15:35:03 +10:00
install.sh Drop platform suports due to cross compilation with cgo (#134) 2018-10-14 10:56:17 +10:00
LICENSE Add license 2017-03-31 10:09:35 +11:00
main.go Revert "Remove deprecated ls and cat commands (#142)" (#143) 2018-12-02 07:46:52 +10:00
main_test.go Implement state-based sync (#144) 2018-12-02 11:04:16 +10:00
Makefile Cross compile (#135) 2018-10-14 14:51:11 +10:00
README.md Implement migration (#120) 2018-10-07 20:37:02 +10:00

Dnote CLI

A command line interface for spontaneously capturing the things you learn while coding.

Dnote

Install

On macOS, you can install using Homebrew:

brew tap dnote/dnote
brew install dnote

# to upgrade to the latest version
brew upgrade dnote

On Linux or macOS, you can use the installation script:

curl -s https://raw.githubusercontent.com/dnote/cli/master/install.sh | sh

In some cases, you might need an elevated permission:

curl -s https://raw.githubusercontent.com/dnote/cli/master/install.sh | sudo sh

Otherwise, you can download the binary for your platform manually from the releases page.

Overview

Write technical notes without getting distracted from programming. The reasons are:

  • We forget exponentially unless we write down what we learn and come back.
  • Ideas cannot be grokked unless we can put them down in clear words.

Examples

  • Add a note to a book named linux
dnote add linux -c "find - recursively walk the directory"
  • See the notes in a book
dnote view linux

• on book linux
(0) find - recursively walk the directory

Commands

Please refer to commands.

License

MIT

Build Status