todo(todo.txt-cli, todo.txt and nostr)? #435
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'm not entirely sure how I ended up on this thread but I'm all for avoiding a dependency on Dropbox, Google Drive, etc. Personally, I've been using I've also heard Syncthing can work well. |
Beta Was this translation helpful? Give feedback.
I'm not entirely sure how I ended up on this thread but I'm all for avoiding a dependency on Dropbox, Google Drive, etc.
Personally, I've been using
git
to synchronize mytodo.txt
. There used to be a project called SparkleShare that I used, but it's basically justwhile true; do git commit -am "Snapshot"; git pull --rebase; git push; sleep 60; done
. And of course, you can host your owngit
repository very simply. I don't know if any of this can work well on iOS, but there are a few ways of makinggit
play nice with Android.I've also heard Syncthing can work well.