How do you flag code so that you can come back later and work on it? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:29:10Z http://stackoverflow.com/feeds/question/335378 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it 15 How do you flag code so that you can come back later and work on it? Jon Tackabury 2008-12-02T20:42:51Z 2009-02-10T16:55:24Z <p>In C# I use the #warning and #error directives.</p> <pre><code>#warning This is dirty code... #error Fix this before everything explodes! </code></pre> <p>This way the compiler will let me know that I still have work to do. What technique do you use to mark code so you won't forget about it?</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335385#335385 20 Answer by Guge for How do you flag code so that you can come back later and work on it? Guge 2008-12-02T20:44:18Z 2008-12-02T20:44:18Z <p>I mark it with //TODO: comments that show up in the task pane in Visual Studio.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335386#335386 1 Answer by dotnetdev for How do you flag code so that you can come back later and work on it? dotnetdev 2008-12-02T20:44:36Z 2008-12-02T20:44:36Z <p>Todo Comment.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335389#335389 6 Answer by Elie for How do you flag code so that you can come back later and work on it? Elie 2008-12-02T20:46:06Z 2008-12-02T20:46:06Z <p>//TODO: Person's name - please fix this.</p> <p>This is in Java, you can then look at tasks in Eclipse which will locate all references to this tag, and can group them by person so that you can assign a TODO to someone else, or only look at your own.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335392#335392 4 Answer by Dustin for How do you flag code so that you can come back later and work on it? Dustin 2008-12-02T20:46:34Z 2008-12-02T20:46:34Z <p>Add a test in a disabled state. They show up in all the build reports.</p> <p>If that doesn't work, I file a bug.</p> <p>In particular, I haven't seen TODO comments ever decrease in quantity in any meaningful way. If I didn't have time to do it when I wrote the comment, I don't know why I'd have time later.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335395#335395 -6 Answer by tehp for How do you flag code so that you can come back later and work on it? tehp 2008-12-02T20:47:31Z 2008-12-02T20:47:31Z <pre><code>ShowMessage("Make sure you come back here"); </code></pre> <p>This has the added bonus of providing good messages for the users if I forget to ever go back. </p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335398#335398 2 Answer by Paul Tomblin for How do you flag code so that you can come back later and work on it? Paul Tomblin 2008-12-02T20:48:03Z 2008-12-02T20:48:03Z <p>gvim highlights both "// XXX" and "// TODO" in yellow, which amazed me the first time I marked some code that way to remind myself to come back to it.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335402#335402 5 Answer by John MacIntyre for How do you flag code so that you can come back later and work on it? John MacIntyre 2008-12-02T20:48:32Z 2008-12-02T21:23:15Z <p>If I've got to drop everything in the middle of a change, then </p> <pre><code>#error finish this </code></pre> <p>If it's something I should do later, it goes into my bug tracker (which is used for all tasks).</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335403#335403 5 Answer by McKenzieG1 for How do you flag code so that you can come back later and work on it? McKenzieG1 2008-12-02T20:48:32Z 2008-12-02T20:48:32Z <p>'To do' comments are great in theory, but not so good in practice, at least in my experience. If you are going to be pulled away for long enough to need them, then they tend to get forgotten.</p> <p>I favor Jon T's general strategy, but I usually do it by just plain breaking the code temporarily - I often insert a deliberately undefined method reference and let the compiler remind me about what I need to get back to:</p> <pre><code>PutTheUpdateCodeHere(); </code></pre> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335404#335404 10 Answer by Ulf Lindback for How do you flag code so that you can come back later and work on it? Ulf Lindback 2008-12-02T20:48:43Z 2008-12-02T20:48:43Z <p>Todo comment as well. </p> <p>We've also added a special keyword NOCHECKIN, we've added a commit-hook to our source control system (very easy to do with at least cvs or svn) where it scans all files and refuses to check in the file if it finds the text NOCHECKIN anywhere.</p> <p>This is very useful if you just want to test something out and be certain that it doesn't accidentaly gets checked in (passed the watchful eyes during the diff of everything thats commited to source control).</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335405#335405 4 Answer by Chris for How do you flag code so that you can come back later and work on it? Chris 2008-12-02T20:48:49Z 2008-12-02T20:48:49Z <p>I use a combination of //TODO: //HACK: and throw new NotImplementedException(); on my methods to denote work that was not done. Also I add bookmarks in visual studio on lines that are incomplete.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335423#335423 3 Answer by idan315 for How do you flag code so that you can come back later and work on it? idan315 2008-12-02T20:53:23Z 2008-12-02T20:53:23Z <p>An approach that I've really liked is "Hack Bombing", as demonstrated by Oren Eini <a href="http://ayende.com/Blog/archive/2007/02/04/Hack-bombing.aspx" rel="nofollow">here</a>.</p> <pre><code>try { //do stuff return true; } catch // no idea how to prevent an exception here at the moment, this make it work for now... { if (DateTime.Today &gt; new DateTime(2007, 2, 7)) throw new InvalidOperationException("fix me already!! no catching exceptions like this!"); return false; } </code></pre> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335515#335515 1 Answer by Chris Nava for How do you flag code so that you can come back later and work on it? Chris Nava 2008-12-02T21:27:00Z 2008-12-02T21:27:00Z <p>I use // TODO: or // HACK: as a reminder that something is unfinished with a note explaining why. I often (read 'rarely') go back and finish those things due to time constraints. However, when I'm looking over the code I have a record of what was left uncompleted and more importantly WHY.</p> <p>One more comment I use often at the end of the day or week:</p> <p>// START HERE CHRIS</p> <p>^^^^^^^^^^^^^^^^^^^^ Tells me where I left off so I can minimize my bootstrap time on Monday morning.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335557#335557 0 Answer by GalacticCowboy for How do you flag code so that you can come back later and work on it? GalacticCowboy 2008-12-02T21:38:30Z 2008-12-02T21:38:30Z <pre><code>// TODO: &lt;explanation&gt; </code></pre> <p>if it's something that I haven't gotten around to implementing, and don't want to forget.</p> <pre><code>// FIXME: &lt;explanation&gt; </code></pre> <p>if it's something that I don't think works right, and want to come back later or have other eyes look at it.</p> <p>Never thought of the #error/#warning options. Those could come in handy too.</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/335777#335777 0 Answer by Brian Rudolph for How do you flag code so that you can come back later and work on it? Brian Rudolph 2008-12-02T23:09:20Z 2008-12-02T23:09:20Z <pre><code>//TODO: Finish this </code></pre> <p>If you use VS you can setup your own Task Tags under Tools>Options>Environment>Task List</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/336317#336317 1 Answer by Software Monkey for How do you flag code so that you can come back later and work on it? Software Monkey 2008-12-03T05:45:37Z 2008-12-03T05:45:37Z <p>I use //FIXME: xxx for broken code, and //CHGME: xxx for code that needs attention but works (perhaps only in a limited context).</p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/337433#337433 0 Answer by Jeremiah for How do you flag code so that you can come back later and work on it? Jeremiah 2008-12-03T15:07:20Z 2008-12-03T15:07:20Z <p>These are the three different ways I have found helpful to flag something that needs to be addressed.</p> <ol> <li><p>Place a comment flag next to the code that needs to be looked at. Most compilers can recognize common flags and display them in an organized fashion. Usually your IDE has a watch window specifically designed for these flags. The most common comment flag is: //TODO This how you would use it:</p> <p>//TODO: Fix this before it is released. This causes an access violation because it is using memory that isn't created yet.</p></li> <li><p>One way to flag something that needs to be addressed before release would be to create a useless variable. Most compilers will warn you if you have a variable that isn't used. Here is how you could use this technique:</p> <p>int This_Is_An_Access_Violation = 0;</p></li> <li><p>IDE Bookmarks. Most products will come with a way to place a bookmark in your code for future reference. This is a good idea, except that it can only be seen by you. When you share your code most IDE's won't share your bookmarks. You can check the help file system of your IDE to see how to use it's bookmarking features.</p></li> </ol> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/421368#421368 0 Answer by JW for How do you flag code so that you can come back later and work on it? JW 2009-01-07T18:12:09Z 2009-01-07T18:12:09Z <p>I also use TODO: comments. I understand the criticism that they rarely actually get fixed, and that they'd be better off reported as bugs. However, I think that misses a couple points:</p> <ul> <li><p>I use them most during heavy development, when I'm constantly refactoring and redesigning things. So I'm looking at them all the time. In situations like that, most of them actually do get addressed. Plus it's easy to do a search for TODO: to make sure I didn't miss anything.</p></li> <li><p>It can be very helpful for people reading your code, to know the spots that you think were poorly written or hacked together. If I'm reading unfamiliar code, I tend to look for organizational patterns, naming conventions, consistent logic, etc.. If that consistency had to be violated one or two times for expediency, I'd rather see a note to that effect. That way I don't waste time trying to find logic where there is none.</p></li> </ul> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/448291#448291 0 Answer by Greg Dean for How do you flag code so that you can come back later and work on it? Greg Dean 2009-01-15T20:18:22Z 2009-01-15T20:18:22Z <p>Has anyone said <a href="http://blogs.msdn.com/larryosterman/archive/2005/03/29/403439.aspx" rel="nofollow">// BUGBUG:</a></p> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/532461#532461 0 Answer by migu for How do you flag code so that you can come back later and work on it? migu 2009-02-10T14:04:58Z 2009-02-10T14:04:58Z <p>As most programmers seem to do here, I use TODO comments. Additionally, I use Eclipse's task interface <a href="http://www.eclipse.org/mylyn/" rel="nofollow">Mylyn</a>. When a task is active, Mylyn remembers all resources I have opened. This way I can track</p> <ol> <li>where in a file I have to do something (and what),</li> <li>in which files I have to do it, and</li> <li>to what task they are related.</li> </ol> http://stackoverflow.com/questions/335378/how-do-you-flag-code-so-that-you-can-come-back-later-and-work-on-it/533194#533194 0 Answer by Kurt W. Leucht for How do you flag code so that you can come back later and work on it? Kurt W. Leucht 2009-02-10T16:55:24Z 2009-02-10T16:55:24Z <p>Besides keying off the "TODO:" comment, many IDE's also key off the "TASK:" comment. Some IDE's even let you configure your own special identifier. </p>