vote up 406 vote down star
334

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

423 Answers

1 2 3 4 5 15 next
vote up 222 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
vote up 23 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 1 more comment
vote up 55 vote down

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

link|flag
show 7 more comments
vote up 14 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 181 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
3  
tiddlybackpack.com is an easier to use version of TiddlyWiki – James McMahon Jul 2 at 14:46
show 17 more comments
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 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 444 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
18  
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
30  
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
6  
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
9  
Not searchable, lame. – steveth45 Sep 21 '08 at 20:34
13  
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 27 more comments
vote up 18 vote down

It's not developer centric but I find a really natural way of keeping notes is TiddlyWiki. I find the natural structure afforded by the wiki metaphor a really quick and easy way to organize notes well.

I always use it when condensing a large text about a technology into a small piece of reference material or when planning a piece of work.

There are some issues when saving locally with the Java applet though so be careful to make sure it is working before making extensive notes.

Edit: None of this is a replacement for being able to Hold a Program in One's Head.

link|flag
vote up 2 vote down

Set up a wiki. Its free and easy. Check out MediaWiki, the software that powers Wikipedia. I set that up on Fedora a couple of years ago. It was pretty easy to set up and use.

At my current job we use Microsoft OneNote which is also nice, but you have to have the software installed. Its easier to author, but if you want a wide audience then a wiki might be the better solution.

link|flag
vote up 11 vote down

I find that the less time spent on the tool the better. I often have 2 files going: ideas.rtf and todo.rtf. The former is a collection of random thoughts while the latter thoughts that have a temporal nature (e.g. tasks, etc). The reason I bring up the format and not the editor is because my notes then end up being portable and editable by almost any tool .

However, if I had to name a tool I would say TextEdit on the Mac. You can't beat the cmd-+ keystroke for enlarging text. A quick way to establish structure and layout in a notes document is essential.

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

I've like to evolve my notes in a wiki site (I use SharePoint but any wiki system would do) to share internally with my team members. From there, depending on the topic and how much "churn" there is with the content, I migrate notes into more formal documents that can be version controlled.

My concept is not really specific for developer-centric purposes, but the idea of a wiki works great for situations involving a team of peers.

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

A variety of tools depending on exactly what I'm saving. I use Evernote for saving notes, webclips, links, code snippets and the like. I really like it so far. Tasks and checklists go in Remember the Milk (though I just started trying out OmniFocus). Random ideas get written on vertically ruled index cards for the initial note and get filed away in one of the electronic systems.

link|flag
vote up 1 vote down

Honestly I keep notes on projects, solutions and other notes in a more traditional fashion. I use a moleskine notebook, personally. I originally used a piece of personal wiki software called "Notebook". It works like just about any other wiki but it lacks image support and table support. However I found it was a hassle to add information. I'd spend way too much time formatting the information and get sidetracked from my main task. With a traditional notebook, I spent far less time formatting, and more time jotting down what I needed and resuming my work.

The main website seems to be down so I'll simply post the Wikipedia article about the software. http://en.wikipedia.org/wiki/Notebook_(software) I do highly recommend it if you do want a wiki approach with a small footprint.

link|flag
vote up 1 vote down

I just use slickrun's jot to quickly store/read things with a quick shortcut. Probably not the best technique, but it's quicker than ^"100s if post-its", IMHO.

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

We use Confluence (wiki) where I work: http://www.atlassian.com/software/confluence/

You have to pay for this one but there are free ones out there as others have mentioned.

we used instiki int he past: http://www.instiki.org/show/HomePage

it was pretty nice and free.

link|flag
vote up 56 vote down

FWIW, I'm really digging Evernote right now. The searching works great making it really easy to find code snippets. The tagging is nice also. Honestly, best feature by far is having a Mac, Windows, and Web client that auto syncs. Your notes/snippets are available anywhere..

oh.. and it's free..

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

On wikis, I like Daisy. It's like a wiki on steroids, and I find it great for documentation, brainstorming and keeping notes. It's also easy to share the information with other devs too.

link|flag
vote up 9 vote down

Snippley is a neat little Adobe Air app done by the guys who manage MooTools, made specifically for storing little snippets of code. You might find it useful: http://code.google.com/p/snippely/

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

An oft over-looked application is OneNote. You can share your notes on a network share, over the Internet as well as from within SharePoint: http://www.microsoft.com/onenote (or just keep them private on your own PC).

If you're a heavy Windows user, OneNote integrates with every other MS Office application. Will sync with Outlook todo lists as well as with PDA's and Smart Phones.

I've been using OneNote for at least 5 years now and would be lost without it!

link|flag
2  
Do you use it in tablet form? I found it a bit cumbersome, but I adored the fact it auto-cited anything clipped from a website... – Kearns Sep 18 '08 at 14:38
1  
We've just started using One Note at our company and it is very useful. – Tony Peterson Nov 20 '08 at 11:59
1  
The combination of OneNote and MSN Live Mesh has become invaluable to me lately... Truly a great product from Microsoft. – GordonB Feb 26 at 8:24
1  
OneNote is very good if you have a tablet pc or a graphics tablet, otherwise i find it a little cumbersome. Paper and Pen when im at work and not tablet access. – Pondidum May 15 at 12:54
1  
OneNote is fantastic. It's the only MS product I like, but it's great. It beats paper and pencil because 1) it can be searched, 2) it can be backed up, 3) you can insert in something you've already written, 4) sensitive entries can be encrypted, 5) one can easily make cross-reference links, etc, etc. I use it on a tablet, and it's great, for example, for deriving equations, as you can write the equation with the pen, and then type a paragraph of descriptive text, and insert a link from the web. I wish it was available for Linux, as it's the only reason I use Windows. – tom10 Jun 11 at 19:42
show 9 more comments
vote up 8 vote down

I have a directory called "notes" with just three sub folders, unix, java and confs (for working config and property files). It is backed up in subversion and mirrored between my laptop, work laptop, work desktop and my server. Many of the files have names like "find-command-examples.txt" , "cusip-validate-via-regex.txt" or "jboss-jndi-with-openldap.txt"

Plain text is the way to go. And fewer folders is better since you don't waste time deciding if something should go into "unix", "shell" or "scripts"

On my Mac I use spotlight to search. On unix I use grep. On windows I use the cygwin find command.

If you need formating, consider rtf since you'll still be able to grep. Or use find with rtf2txt to keep plain text versions.

link|flag
vote up 0 vote down

I used tiddlywiki. It was easy to use and generally fits the bill for my needs. The tagging works well.

I suppose, however, that having an indexed drive would work just as well w/out having the need to use a special tool.

link|flag
vote up 3 vote down

Ok, this is a mac-centric answer...

I used to use voodoo pad, which is a desktop wiki program. It's quite nice to use because it's a fully integrated mac app. You can copy and paste rich text into it and preserve the fonts and formatting and so forth. It's really pretty nice to be able to dump procedures, notes, stuff you received in email and so forth. And it has a great search feature.

One thing I should note -- I initially bought this application because I thought I could have a nice-to-edit desktop wiki, and be able to access it remotely through a webserver/wiki type interface. It never lived up to the hype though. Maybe it's better now.

Then I used Omni Outliner. This had many of the great qualities of Voodoo pad, but would allow me to hide and rearrange things. It gave me the ability to prioritize stuff, and conversely, hide unimportant stuff. And search too.

Now, I'm using Omni Focus. The Omni Group came out with it after they came out with Omni Outliner, so I switched. It does most of the stuff Omni Outliner does, but with all the Getting Things Done (GTD) goodies that helps you manage the tasks.

To be honest, I haven't really taken advantage of the OmniFocus extras, but it's part of the plan...

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

I ran into the same thing about 2 years ago. I wrote a little program that sits in the top right corner of my desktop that drops down and has notes and contacts. I'm not sure if the published version still works well, but the code is there so you can fix any bugs you want.

You can get it at http://desktopcontacts.sourceforge.net.

It is a little buggy. It was one of my first ventures into custom painting, but I find it useful.

link|flag
vote up 13 vote down

Personally? While I'm planning and designing, I'm a big proponent of good old fashioned pencil and paper. I have yet to encounter a diagramming tool that's as natural as sketching out the boxes and arrows myself, and during the design phase my work is equal parts pseudocode, quasi-UML, interface sketches, and checklists.

For notes that I want to share with my team, I prefer to use the wiki that's built in to Trac. It's integrated with rest of the issue-tracking environment, so you can do things like easily link to tickets, source code, revisions and changelogs. We've found it to be a great place for the kind of notes and discussions that you mention.

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

Like previous posters, I also use TiddlyWiki for my notetaking needs. I will expound on why, from a programmer point of view.

First, note that "tiddler" is a note object in TiddlyWiki parlance.

Each medium to large project gets a TiddlyWiki file all to its own. The default tiddlers are an overall project overview, and a "master" class that links to other objects. Each object has notes about that specific class or object, things that work or don't work, etc. Most of this ends up being in classes, but as we all know, there's additional notes we take while writing code, including external libraries and supporting programs.

link|flag
vote up 30 vote down

I have just started using Evernote. Its searchable, you can publish it to the net and accessible from anywhere.

Scan in your original diagrams to go along with the code.

And its free.

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

We have a team-wide wiki to record all project details/documentation/design, everything really. Because it is just a wiki though, it requires some guidelines to make sure it remains organised. We are definitely looking out for improvements to the wiki software that allows us to organise the information better.

The important thing is the visibility the wiki provides to the team, and has become invaluable when team members move on from our company. The last thing we want to do is trawl through someones private documents to recover important information.

Make sure you think about this when writing notes: "Is this information going to be useful to anyone else other than me?".

link|flag
vote up 0 vote down

Every good text editor (and by good I mean Emacs and TextMate) has a mode/bundle for note taking, organization, etc.

Try ORG mode on Emacs, or the notes Bundle in TextMate. I use the latter.

link|flag
vote up 1 vote down

I use The Journal found at http://www.davidrm.com/thejournal/

It's a great tool that use for keep scratch notes, my daily journal entries in date format. I keep the sources for connecting to my blog, which is nice to have an offline archive. I keep general programming notes and code snippets in a Loose Leaf format organized by language. I keep a Bug/Error Listing for those @#($&@#(*$ they didn't document THAT moments and the appropriate workarounds. There are customizable templates you can create to save time on repetitious entries. For me these are the built in headers and bullets for my revision notes, daily time logs and workout notes.

Generally I keep my other writing projects, including my novel in here too. The program is very flexible and just plain works well for how I function. I also love how I can install it on my USB Jump Drive, just like my PIM/Business mail program and keep it with me regardless of what computers/machines I am using.

To those whom have mentioned mindmaps, I use those for brainstorming primarily, but that for me needs to be a paper/whiteboard exercise. There is something about the process of creating mindmaps for me that needs to remain somewhat organic. Generally after I complete a map I will either post it on my cork board or scan it/draw it to include in whatever the map was made for. There are a few good programs out there for creating them, particularly MindJets MindManager, but I only did the trial on it and can't say for long term how useful it is.

link|flag
1 2 3 4 5 15 next

Your Answer

Get an OpenID
or

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