vote up 413 vote down star
351

Where, as a developer, do you like to keep your code snippets, links, checklists, final solutions to problems etc?

I've fooled with Google Notebook, MS Onenote, TreePad, textfiles, and Evernote a bit (currently leaning toward Evernote). All have pros and cons but none seem to be really suited to developers. Is anyone super-happy with a collection / note system that's not just generic GTD, but with developer-centric utility?

Note: before posting an answer, check if your note-keeping method is already mentioned among the 400+ answers. Vote up existing posts instead of adding duplicates!

flag
2  
A text file or set of text files checked into a revision control system.... – Curt Sampson Jun 26 at 3:42
23  
Regarding **Note**: Do you really expect people to check 400+ answers to see if theirs is already mentioned? :) – Jonathan Sampson Aug 27 at 12:56
4  
@Jonathan Sampson: There are plenty of great suggestions, and SO provides sorting by votes or by newest. If an answer isn't worth a duplicate check amongst the great ones already posted, the answer isn't worth posting. – James Sep 15 at 14:20
show 4 more comments

427 Answers

prev 1 11 12 13 14 15
vote up 11 vote down

I strongly recommend FlashNote.

It is so convenient - just ALT-S and type then ALT-S away.

I find the newer version interface is the tiniest bit clunkier than the old version but it's still the smoothest note taker around.

I can't recommend this program any more - every person I've introduced to it, developer or not, loves it and uses it.

NB: Windows Only

link|flag
vote up 20 vote down

I use Emacs, and dump everything into text files, typically in a src/snippets directory. Then I make sure that my OS provides fast full-text search. For group projects, I use MediaWiki and a searchable bug tracker.

Blog posts are great for more involved answers.

link|flag
show 1 more comment
vote up 187 vote down

TiddlyWiki

It's great all your notes get cross referenced.

TiddlyWiki is a single HTML file which contains all the articles ("tiddlers") for a small wiki. It also contains all the styling and javascript to make it work as a wiki (displaying / hiding articles, generating menus, etc). Fans find it a very intuitive way of constructing a document.
... although it's not just a document - one might almost say it's a tiddly wiki!

Edit (summarise comments):

The only problem is how to keep it in sync in multiple locations.
Possible solutions are:

link|flag
4  
tiddlybackpack.com is an easier to use version of TiddlyWiki – James McMahon Jul 2 at 14:46
1  
"TiddlyWiki is a single html file which has all the characteristics of a wiki" is a bit of a lie, it's 2 files and one is a Jar. – Chris S Nov 16 at 16:50
show 19 more comments
vote up 15 vote down

I go through 100s of post-its a month.
Then I also have a WordPress blog with some code syntax hilighting plugins that is behind an .htacces password.

link|flag
show 5 more comments
vote up 58 vote down

Use a Wiki. I personally use ScrewTurn Wiki - Desktop Edition

link|flag
show 8 more comments
vote up 24 vote down

I use a password protected, private instance of Media Wiki. (It's the same backend that Wikipedia is based on).

link|flag
show 2 more comments
vote up 228 vote down

Start a blog. This way, not only you benefit, but so do others who may have the same problem. There are also combination blog/wiki systems, ranging from Drupal to Hiki. Also, consider that having your notes on a host (with regular back ups) will ensure that they survive you dropping your laptop down a flight of concrete stairs, and that they will be available even when you're away from your primary working machine.

Oh, and some people really like mind maps for brainstorming and such, but I'm not sure that they're that valuable for long-term note taking/storage.

UPDATE: If you don't really want to run your own site, or a blog is too much of a time investment, another option is to start posting on RefactorMyCode or Snipplr. You get a searchable database of your code snippets, plus perhaps people will comment on your code and suggest improvements. The "Code reviews on the web" thread might have more ideas over time.

link|flag
6  
The blog is a good idea, but I always shied away from it because of confidentiality issues. Its an extra step of mental effort to take your ramblings and 'generify' them, such that you're not actually disclosing your employer's work product on the internet. – GWLlosa Feb 2 at 21:07
2  
If all you need is a note to say something like "{some construct} - unexpected bad perf; use {other construct} instead", splitting off to then write a blog is an interruption in the train of thought. If you write a lot of notes, then working out what you then need to blog about just ends up eating into otherwise productive time. – Chris J Oct 16 at 7:53
show 11 more comments
prev 1 11 12 13 14 15

Your Answer

Get an OpenID
or

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