vote up 415 vote down star
354

Where as a developer do like to you 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?

flag
2  
A text file or set of text files checked into a revision control system.... – Curt Sampson Jun 26 at 3:42
26  
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

closed as not a real question by Welbog, Rich B, George Stocker, John Rudy, voyager Dec 17 at 19:24

428 Answers

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

I like physical notebooks. Preferably small ones (4x6 or 5x8, not 8.5x11), permanently bound (spiral bound, book binding, etc.).

One notebook per project, typically, unless they're really small projects, in which case I reach for a partially used notebook and add to it.

I find it very helpful to grab a notebook off my shelf and re-read my maunderings from when I was thinking my way through something. Scribbling on paper lets me record partial thoughts instead of doing a 'finished' write-up. This lets me revisit my thought process in addition to the solutions I found -- and that tends to be more enlightening than merely recording a solution.

UPDATE: I'm extremely gratified at the response of my peers to this simple answer, and so I thought perhaps I should elaborate on my methods.

First off, I find the typical Moleskine notebooks to be too small, and they tend to be expensive. I usually use something like this one from Staples.

Top of each page: Project name, Page number, and Date I started writing on this page.

Daily: Draw a line across the page, and write the current date (and sometimes the time) down before adding more notes. It's helpful to see the gaps of time in working out ideas. And I often find my best ideas turn up just below one of these lines -- that is, after I've thought for a while and come up with something.

Review and Redact: If I've written out a few ideas of directions to go, and later I decide on one of them, I make sure to go back to the original list of ideas and add notes; specifically, I'll hilight the chosen solution somehow (underline, circle, etc.), and add a reference to the new page where I wrote down why I chose this solution. Also, I try to make these revision notes in a different color ink, or written at a different angle, or make them in some other way obviously not part of the old information.

Reference: If I flip back to look at something, I consider jotting down 'see pg. 13' so I don't have to go flipping around for that information again. I also never hesitate to refer to other project notebooks, noting them with 'See proj. Alpha, pg 23' or something similar. Sometimes I backlink that notebook as well, say in Alpha pg 23 a note 'Very helpful for proj Beta pg 7!'. These sorts of notes across projects are fairly rare.

I'm sure I've left out some of my other ideas and techniques. Perhaps others could add their ideas and techniques here as well? I know I'd appreciate hearing them!

link|flag
23  
How do you search physical notebooks? If you have collected many notebooks, >10, isn't it cumbersome to find specific things? – Brettski Sep 18 '08 at 17:50
35  
Same thing. I find it hilarious, actually.. We're programmers. Shouldn't we have built an amazing solution by now? It just proves.. technology can't solve everything. – Nick Stinemates Sep 18 '08 at 20:17
7  
I just went out and purchased my entire development team notebooks! We also have decided to have separate notebooks for our projects, meetings, and personal projects/notes. Thanks for the advice!!! – mattruma Sep 19 '08 at 12:34
12  
Not searchable, lame. – steveth45 Sep 21 '08 at 20:34
15  
I can't say how many times I've uttered the words, "Man, am I glad I wrote that down last week." – Ryan Thames Dec 9 '08 at 5:50
show 28 more comments
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 59 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 3 more comments
vote up 230 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

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