Live data from Hacker News

The best todo list app for any developer

coderwall.com

1–10 of 67 posts

Re: The best todo list app for any developer

#4

What if your todolist is too large? Store it somewhere else (in you homedir, no need for a sudo) and add head -n 10 ~/todo.md to your .bashrc/.zshrc to show 10 most prioritised tasks on each session startup.

Nice, store todo.md in a cloud drive and you'll have it show up on all of your computers.

Re: The best todo list app for any developer

#7
post #4

What if your todolist is too large? Store it somewhere else (in you homedir, no need for a sudo) and add head -n 10 ~/todo.md to your .bashrc/.zshrc to show 10 most prioritised tasks on each session startup.

Nice, store todo.md in a cloud drive and you'll have it show up on all of your computers.

So you're storing a file on a public server that is beyond your control and you make your shell read it every time you launch it ?

What could possibly go wrong ?! ;-)

Re: The best todo list app for any developer

#8

What if your todolist is too large? Store it somewhere else (in you homedir, no need for a sudo) and add head -n 10 ~/todo.md to your .bashrc/.zshrc to show 10 most prioritised tasks on each session startup.

This may break scp when copying from a remote host which has this in the .bashrc.
Post reply on HN