$ head -1 todo.mdgives me next todo item to work on.
to add items i just edit file in vi:
$ vi todo.mdbonus: i keep todo items blocked by other people in another file:
$ vi wait.mdand completed items moved to done.md stamped with date
$ echo "$(date +%Y%m%d) $(head -1 todo.md)" >> done.mdbonus 2: send a copy to my phone
$ sed -i .bak '1d' todo.md
$ rsync -litr ~/src/todo/ phone:storage/shared/src/todo/
@hi I love it, even though this feels like it has hints of org-mode in it!
a few flat plaintext files work really well and helps me stay focused. i haven't tried emacs, but i guess this is a pretty common pattern :)
@hi org-mode is powerful and awesome, but simple it is not. I’ll try something like your system for a bit, thank you for sharing!