Personal project/idea database and tracking - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T07:44:19Zhttp://stackoverflow.com/feeds/question/488229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking6Personal project/idea database and trackingcbrulak2009-01-28T16:12:57Z2009-01-28T18:12:29Z
<p>How do you keep track of your personal projects and ideas? </p>
<p>If you come up with this amazing idea how do you write it down? Notepad? Some text file somewhere? </p>
<p>How do you track your progress,etc? </p>
<p>I'm not talking about FogBugz,etc as they are for tracking team work, I'm talking about tracking my ideas and projects and any associated content (notes,screenshots,etc)</p>
<p>Can you put your solution on a thumb drive?</p>
<p>Any suggestions for other developers?</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488235#4882354Answer by ocdecio for Personal project/idea database and trackingocdecio2009-01-28T16:14:45Z2009-01-28T16:14:45Z<p>I use a personal wiki. Confluence.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488244#4882441Answer by Gabe Hollombe for Personal project/idea database and trackingGabe Hollombe2009-01-28T16:18:08Z2009-01-28T16:45:08Z<p><a href="http://backpackit.com" rel="nofollow">Backpack</a> from 37Signals. Since it's a hosted app, you can't run it off a USB thumb drive, but I have enough connectivity these days that I haven't needed an offline solution.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488254#4882544Answer by Jekke for Personal project/idea database and trackingJekke2009-01-28T16:20:28Z2009-01-28T16:20:28Z<p>I rarely write my ideas down when I first have them. Ideas are cheap. Work is expensive. And, in a personal context, metawork (work that you do to document and plan your real work in advance) is often an excuse to avoid actually sitting down and getting the real work done.</p>
<p>I'll occasionally sketch out an idea on scrap paper if I want to fix it in my mind. But, I generally think a new idea over, then go on to something else. The good ideas, the ones I'm actually going to maintain enough passion to complete, will fulminate to the top of my mind over and over again until I can't ignore them.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488262#4882620Answer by kellan for Personal project/idea database and trackingkellan2009-01-28T16:21:15Z2009-01-28T16:21:15Z<p>Wiki, hosted on my dev server. </p>
<p>Key features include:</p>
<ul>
<li>history, ideas brew for years some times before you can work on them.</li>
<li>I host it remotely and haved hacked up an email-to-wiki mail script so I can add new ideas from my phone's email client. (my best thoughts come while walking)</li>
<li>Make sure its shareable, collaboration is the only way to find out if an idea is as good as it sounds to you.</li>
</ul>
<p>And make backups, some people might find it liberating to lose their project list, but most of us find it devastating. And if you're running this on your devserver (all coders should have a personal devserver) you'll probably burn it down and re-install periodically and you want your projects list backed up already when you do that.</p>
<p>And thumb drives get lost, store it in the cloud! ;)</p>
<p>p.s. Confluence is a bit heavy, but some of the productive hackers I know use it as their personal wiki/ideas repository, I prefer the lighter weight options like Doku (or Tiddly if you're going for a local option)</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488268#4882681Answer by Paul Tomblin for Personal project/idea database and trackingPaul Tomblin2009-01-28T16:22:11Z2009-01-28T16:22:11Z<p>I already have a blog, so I just put them in my blog. If I ever think of a million dollar idea that I don't want somebody to copy, I'll make it private, but that hasn't happened yet. (Or has it? mwua-ha-ha!)</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488271#4882710Answer by David for Personal project/idea database and trackingDavid2009-01-28T16:22:25Z2009-01-28T16:22:25Z<p>I actually use a 3-ring binder to develop new ideas. I like that with paper, I can draw and make quick diagrams, and I feel more intimately connected with my new idea. A 3-ring binder allows me to group pages relating the same idea, and to use different types of paper (graph paper, lined paper, music paper) as my needs demand.</p>
<p>Once I am working on a project, I keep track of my development items in an Excel spreadsheet that follows Joel Spolsky's <a href="http://www.joelonsoftware.com/articles/fog0000000245.html" rel="nofollow">Painless Software Schedules</a>.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488274#4882741Answer by Conrad for Personal project/idea database and trackingConrad2009-01-28T16:22:43Z2009-01-28T16:22:43Z<p>I personally recommend good old pen and paper. I always carry around a small notebook because i find ideas hit me in the strangest places indeed, generally when I am nowhere near a computer.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488282#4882820Answer by coobird for Personal project/idea database and trackingcoobird2009-01-28T16:23:44Z2009-01-28T16:36:13Z<p>The first place my ideas go to are usually <strong>scratch paper</strong> that I have on my desk.</p>
<p>After jotting a few ideas down, I will then decide whether it's worth typing it up. If I do type it up, it will be a text file or a word processor document, if I feel having formatting will benefit the expression of the idea. Then, the file will be placed into source control.</p>
<p>Related question: </p>
<ul>
<li><a href="http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer">What do you use to keep notes as a developer?</a></li>
</ul>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488283#4882830Answer by dotnetdev for Personal project/idea database and trackingdotnetdev2009-01-28T16:24:24Z2009-01-28T16:24:24Z<p>I write the idea in a Microsoft word (well I use openoffice) document. This document contains everything such as the stack I will use, decisions made (e.g. how to persist state, caching techniques), contingency plans, and also SEO stuff.</p>
<p>I will move to a wiki though as I will need to store configuration information and stuff.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488284#4882846Answer by Abel Martin for Personal project/idea database and trackingAbel Martin2009-01-28T16:24:25Z2009-01-28T16:24:25Z<p>I keep track using a combination of technology and friends. My friends and I share a <a href="http://www.backpackit.com/" rel="nofollow">Backpack</a> page and find it to be super helpful. Mostly we make lists of the things we want to get accomplished before the Monday of the following week. </p>
<p>For example, my list for this week looks like this:</p>
<p><strong>Abel - Feb 2</strong></p>
<p><strong>--[Project Name]:</strong> Finish implementing design changes for game room</p>
<p><strong>--[Project Name]:</strong> Implement code to prevent multiple submissions</p>
<p>The good thing about this system is that we can all see the what we've promised ourselves. When we slip on getting things done, our penalty is to buy a round of beer the next time we see each other. We also have reward system too. If you bang out a lot of things in 7 days, you can pull beers off your tally.</p>
<p>Backpack is also great because it has a pages where you can jot down ideas as well. It won't fit on a thumb drive, but at least you can access it anywhere you have an internet connection.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488320#4883200Answer by Robert Gould for Personal project/idea database and trackingRobert Gould2009-01-28T16:28:45Z2009-01-28T16:28:45Z<p>Nanoki (a Lua wiki) on a flashbdisk, since I work on 3 different OSs Nanoki's nice.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488340#4883401Answer by Bob Nadler for Personal project/idea database and trackingBob Nadler2009-01-28T16:31:15Z2009-01-28T16:31:15Z<p>From <a href="http://stackoverflow.com/questions/1352/what-is-your-single-favorite-gtd-tool">here</a>: </p>
<p>I use <a href="http://monkeygtd.tiddlyspot.com/#MonkeyGTD" rel="nofollow">MonkeyGTD</a> Alpha 3.0. It can easily be put on a thumb drive or used on-line from anywhere via <a href="http://tiddlyspot.com/" rel="nofollow">Tiddlyspot</a>.</p>
<p>MonkeyGTD is labeled as an Alpha, but it's gotten very stable over the last few months. I use it with Firefox and have not had any problems. In addition to the GTD structure, the TiddlyWiki functionality is a natural way to squirrel away useful information that's easily found later with the built-in search.</p>
<p>There is a learning curve, but once over it, you get hooked.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488510#4885100Answer by Gabi for Personal project/idea database and trackingGabi2009-01-28T17:21:08Z2009-01-28T17:21:08Z<p>I have a small whiteboard that sits on the wall of my room. When ideas come, I use the whiteboard to draw, sketch, plan... it is very easy to delete and redraw, I can use colored markers... When I get to something that seems worth of something, I take a photo of the whiteboard and put that in the computer. Most often it remains forgotten, but if at any moment I need it (to further develop the ideas), I know where to find it.</p>
<p>Before I used to use paper, but I always ended up with piles of paper that eventually got thrown away, so I decided to switch to the whiteboard.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488605#4886050Answer by kalish for Personal project/idea database and trackingkalish2009-01-28T17:43:18Z2009-01-28T17:43:18Z<p>I normally do that in Evernote or MindMap. Try using them excellent piece of softwares. Have been a great help to me.</p>
http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488702#4887020Answer by Youssef for Personal project/idea database and trackingYoussef2009-01-28T18:12:29Z2009-01-28T18:12:29Z<p>I use Emacs with Org-mode and remember.</p>