Live data from Hacker News

Ask HN: What do you use to track your todo's?

news.ycombinator.com

11–20 of 34 posts

Re: Ask HN: What do you use to track your todo's?

#11
I use Trello.

Three lists: TODO, DOING, DONE

Items in DONE get archived the next day. Items in DOING get moved back to TODO if not completed. I organise them in their list by importance - i.e. ones at the top are most important.

I use labels pretty heavily too such as red for BLOCKED.

Re: Ask HN: What do you use to track your todo's?

#14
Trello board with lists setup like so:

[Inbox][Queue][This Week][Today][Done][Done Apr 2nd]

Text files version controlled in git:

  /notes/ 
  /notes/project1/todo.txt 
  /notes/project2/todo.txt 
  /notes/project3/todo.txt
Since I'm in terminal all day I quickly jot down todos in .txt files as I go. The real management of them is done in Trello.

Re: Ask HN: What do you use to track your todo's?

#15
I use a notebook and write a * followed by a one-line description of the task. If I create a task, I have to do it. When I finish it, I cross out the whole link. When I finish all the tasks on a page (I put notes in there too) I put a checkmark in the top lefthand corner of the page. I have a todo.txt for work stuff that contains all ongoing todo items.

Re: Ask HN: What do you use to track your todo's?

#16
I use my side project, MindAUX.

Creating Todos is pretty easy; i can create as many as I want at once via an email or entry in the search.

Categorizing them is the next trick: I get emails every other day for todos I created that aren't classified yet.

After that, they get regularly reviewed and timestamped as reviewed so they don't need to reappear for a while. I get emails for any todos that have never been reviewed, or that are overdue for a review.

When I'm deciding what to do in the next i select several I think I can tackle and add them to my list of active todos, then sort them based on priority.

Anything with a due date gets noisy (pesters me via email) as the date approaches as well as if its overdue; until it's removed or completed.

I could but haven't needed to use contexts yet or time estimates; primarily it's been a matter of making sure something is at least in the system and being tracked/reviewed in a way that I can forget about because I know it remembers and will remind me through a variety of ways.

I also get a weekly report of open todos, new todos, and other statistics.

This works for me, because it is easy to do brain dumps of this or that, while also making it harder for me to drop a particularly important ball, or lose track of it.

Re: Ask HN: What do you use to track your todo's?

#17
I'm using Workflowy. Tried it for a few hours and I was pretty sold on it. Got a whole year sub for it. Got buyer's remorse shortly after. Gave it another shot and now I can't live without it.

I use it mainly to track ALL of the things that is going on at work.

Re: Ask HN: What do you use to track your todo's?

#19
I use Git and a markdown file.

I keep a repo on all my systems that track a Gitlab repo (any Git repo would work). This repo contains a primary ToDo file with an overall list. When necessary, I spawn dedicated lists for specific projects or events. This is all written in Markdown (usually Github flavored).

The text editor is left to the reader's preference :) I'm strongly preferential of Vim, and use a few different Markdown plugins to ease writing.

Occasionally, if needed I build a printable PDF using Pandoc. Usually I only do this when I need to bring it with me.

Of course this doesn't bring any sort of notifications or reminders, so I supplement this with Google Calendar (and more recently Google Keep) when needed.

Post reply on HN