I'm one of those people who can't get anything done without a to-do list. If it isn't on the list it doesn't exist.

Notepad Method:

When I'm programming I've been keeping notepad open with a list of to-do's for my current project. I'll constantly re-arrange these based off priority and I cross them off and move them to the completed section when I'm finished with that particular task.

Code Comments:

Some programmers pepper their projects source code with:

// TODO: Fix this completely atrocious code before anyone sees it

Plus, I know that there are some tools that show you a list of all TODOs in your code as well.

Website Task Tracker:

What have you found to be the best method of keeping track of your to-do lists for multiple projects?


Related Question: What can someone do to get organized around here?
Related Question: Getting Organized; the to-do list.

link|improve this question
show 1 more comment
feedback

34 Answers

1 2

Pen and paper.

Combined with the genious PocketMod, it's totally perfect. Striking TODOs is soooo satisfying!

link|improve this answer
1  
I've filled mine with sudoku grids :\ – gridzbi Oct 26 '09 at 22:37
show 2 more comments
feedback

Like others, I pepper them about my code, but I use the warning directive to generate a compiler warning too:

#warning TODO: Implement foobar

This way I can still search for "TODO" but they also shout at me whenever I build.

link|improve this answer
show 2 more comments
feedback

I can't speak for other IDE's, but Eclipse will search your project's source files for TODO comments (as well as FIXME and XXX by default) and create tasks for you in the tasks view.

This leads to intriguing situations where you check the tasks view, double-click on a TODO task, and read the comment:

// TODO: Add this functionality.

Eclipse will also add TODO comments when generating certain code blocks, like method implementations, catch blocks for exceptions, etc.

link|improve this answer
show 1 more comment
feedback

TODO (and other) comments are great with Visual Studio and ReSharper installed:

To-Do Explorer

link|improve this answer
show 3 more comments
feedback

NextAction, from TimeSnapper

link|improve this answer
feedback

I use Pen and Paper to jot down notes. I also use TODO/FIXME tags in code that gets highlighted yellow in Vim and tracked by the TODO extension in Komodo.

One of the most useful additions for me has been using Samurize to embed a plain text file onto my desktop (http://lifehacker.com/software/plain-text/geek-to-live--incorporate-text-files-onto-your-desktop-213280.php). I have 3 virtual desktops and it lives on my email desktop which is where I wind up first thing every morning. It contains a text file with the items that I need to do and it rarely runs more than a week ahead.

Wednesday 2/11/2009
- Item 1
- Item 2
Thursday 2/12/2009
- Item 3

I use Executor that has a keyword "todo" that automatically opens gvim with this file when I want to edit/add/remove items. This makes it about 3 keystrokes to get it open and ready to modify. It helps me remember the Monday morning production moves before I get buried in email and meetings. As soon as I edit, it's reflected on the desktop.

Obviously for longer and more detailed things, I rely on Roundup, Outlook reminders, etc. but this has been a handy way to jot things down so they won't get lost in the shuffle.

link|improve this answer
feedback

Here is a similar stackoverflow question with lots of answers.

link|improve this answer
show 1 more comment
feedback

Although I didn't try it I really like the idea of tests as todos. What else should get you going if not a failed test?

link|improve this answer
feedback

I use inline TODO: comments as Visual Studio will track these for me, of course I still have to look at the task list to see them. I cannot count the number of times I have found a TODO: comments whilst reviewing some code I thought was complete.

link|improve this answer
feedback

For every task in a project i create a new entry in the issue tracker (Bugzilla for me).

  • A big advantage is that you can track back every changes made by the issue ID.
  • You can report customers or project members the status of your task.
  • You can create a new bug type like "task", "todo" or "feature-request".
  • It's a central solution. No local stuff...

I our development team there is a rule which says: "Do never change any code without a corresponding entry in the issue tracker. Never!"

link|improve this answer
feedback

Personal Abstract Todos

I use Tomboy Notes or paper to make a quick list of abstract high level tasks. Often when I'm on the phone with my manager, I just need to get things written down.

Source Code Specfic Todos

I use the inline TODO: / @todo comment marker in my code and then use the Netbeans plugins that give me a running list of todos throughout the project. Since Netbeans can aggregate todo markers from multiple projects, it does not make a difference how many different projects I'm running.

Multiperson Tasks / Todos

Once I have to keep track of todos for more than myself, I move to project management software like OpenProj, MS Project, etc. Also, if the todos involve bugs or feature requests, I use our bugtracker. Other todos, can be manged by a helpdesk system as well.

link|improve this answer
feedback

I would make a clear difference between FIXME and TODO. FIXME is a critical and must be fixed before commit/release. TODO can live a bit longer but should be cleaned away eventually.

link|improve this answer
feedback

A simple plain text file (TODO) in the top level of the project's cvs/svn area works for me for simple projects.

link|improve this answer
feedback

Like others have mentioned, I use the standard FIXME/TODO/XXX in my code comments, and then can find the list of tasks within my IDE using their various tools. I also use hudson's task scanner plugin to keep track of everything, since I'm a sucker for graphs.

link|improve this answer
feedback

I created a build task that picks out //TODO: lines from my code files and generates a report I include in team city. It gives you a quick way of see any outstandings on a project without having to check it out.

you can also use the CodeTagsPlugin with Trac

link|improve this answer
feedback

When programming Java in Eclipse, I find it really useful to, as you say "pepper my source code with // TODO: comments - mainly because Eclipse looks up each one in the project and compiles a task list for me =) In Visual Studio, there is a Task List panel, which I use sometimes, but I don't find it as streamlined as just having the comments in Eclipse.

link|improve this answer
feedback

I use eclipse as IDE, which collects all TODO's to a list and shows it in an outline. Very easy and usable.

link|improve this answer
feedback

I use ToDoList from AbstractSpoon. It lets you divide your ToDo list into projects and can even be used by a number of users for larger projects using a shared network drive.

link|improve this answer
feedback

Having done an extensive search for a suitable "to do list" application I settled on mylyn - the one that comes supplied with Eclipse.

It is easy to create and manage tasks. Tasks can be imported and linked to Bugzilla or a number of other different task repositories. It also has a "task context" which enables files that are relevant to a task to be highlighted and those that are irrelevant to be hidden (which is far more useful than I anticipated it would be).

link|improve this answer
feedback

Eclipse tracks your TODO and list them in a proper windows automatically. I find it powerful enough if you don't need advanced features.

link|improve this answer
feedback

I'm quite fond of tracks. It has the flavour of GTD without getting too regimented about it.

I can quickly whack stuff in there as I think of it, and then not have to worry about forgetting after that.

link|improve this answer
feedback

What have you found to be the best method of keeping track of your to-do lists for multiple projects?

A wife. And I'm not kidding.

link|improve this answer
feedback

Wow, I just had this question yesterday. After some searching, I settled on the ReminderFox Firefox extension. It's completely integrated into the browser and has pop ups to remind you every time you open your browser when a task is due.

link|improve this answer
feedback

I like Mylyn a lot: integrated into Eclipse, works with many trackers as well as without (local tasks) and realizes new concepts like the focused UI.

link|improve this answer
feedback

There is also Task Scanner Plugin for Hudson (in case it fits in your environment). With that you can track number of TODOs/FIXMEs on your continuous integration build reports.

link|improve this answer
feedback

doxygen can track such issues

link|improve this answer
feedback

One of our source code modules is absolutely littered with inline #pragma todo lines. The build output is polluted so we never can really tell when there are any new compiler warnings. Some of the todos have been there for years and the original developer has long since left the company.

link|improve this answer
feedback

I use emacs org-mode to keep track of not only code TODOs, but my whole life. It works as an extremely powerful outliner with some spreadsheet and calendar features as well. I use mercurial for lightweight version handling and simple replication between different machings.

It works surprisingly well.

link|improve this answer
feedback

When I have many many todos I discovered that it is useless to track them. You end up with hundreds of todos that can't be done.

Only write what you are asked (boss ) and do what bring the biggest benefits everyday.

I however have a next list. I wrote what I'm currently doing at the top and things I need to fix to complete it. My next list can be done in hours or days usually.

link|improve this answer
show 1 more comment
feedback

OmniFocus - I've tried a lot of ways of tracking ToDos and this has been the best by far. If you've got a Mac this is the way to go. The iPhone app is great too.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.