vote up 407 vote down star
342

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
19  
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 2 more comments

425 Answers

prev 1 5 6 7 8 9 15 next
vote up 3 vote down

I blog at geekrant.org - Google searches it, I get third party comments, it's great.

link|flag
vote up 0 vote down

Keeper is a note taking application, more intended for use by writers but has many of the features the other note applications mentioned here have. Notes are quick to add (ctrl + n) and there are a variety of note types and brainstorming features. Keyword tagging and search available as well.

link|flag
vote up 0 vote down

I used to use office's note for my work. It's full of tips related to work. I then move everything to Google Note since I can search and use it anywhere. The drawback is that I can't narrow my search in certain notebook. It would be great to try other tools.

I also like to use physical notebook to draw out ideas and use UltraEdit when I need to look at some one time data.

link|flag
vote up 0 vote down

Simple text file on a remote server.

link|flag
vote up 1 vote down

I use MediaWiki for keeping large notes (i.e., diagrams, specs). For short-lived snippets, I use this alias so that I can just type "wiki" at the command line:

alias wiki="pushd .; cd /home/simoncpu/notes; vim wiki; popd"
link|flag
vote up 0 vote down

Check Off on the Mac is cool, hides away nicely and pops out when you need it. For any important calendar events / deadlines I use iCal.

link|flag
vote up 0 vote down

may be it just fetish, but I use my molesckine :)

link|flag
vote up 0 vote down

Personally, I've found a Wiki in general to be the best. Especially if I can get to if from anywhere. Specifically, I've grown quite fond of DekiWiki. It's open source, written strangely in PHP and C#, and runs under Mono on just about any OS available (Linux, Windoze, Mac OS X or otherwise).

Piko

link|flag
vote up 0 vote down

As indicated by the amount of replies here, there are many options. Which you choose depends on your requirements, which might include:

  • fast text entry
  • versioning
  • organizing notes
  • drawing images / graphs
  • searching through notes
  • archiving of your notes
  • distribution / accessibility

The main advantages that paper have over any digital options are in drawing images, as well as fast text entry -- it is often much easier to reach for a notebook than to find a program on the computer, if only because usually, my desk is a lot bigger than my monitor, and is used ony to store paper things (and coffee mugs, off course).

In the digital realm, simple text files with a versioning tool (subversion or darcs) seem to satisfy all the requirements very well, so that is what I use whenever I just want to jot down text (I type a lot faster than I can write). Fast text entry is my most important issue though -- I type a lot more notes than I ever re-read. An absolute requirement for me is therefore that I can just summon an empty note with a single keystroke from any context.

link|flag
vote up 0 vote down

I also use MediaWiki, personally as well as in team projects.

link|flag
vote up 0 vote down

I use Google Notepad

link|flag
vote up 0 vote down

I have started using CardMeeting to keep track of my different tasks. Great if you want to share notes within a team as well.

link|flag
vote up 2 vote down

Four things give me the ability to record and find every note I need for a software project.

  1. A text editor I know by heart. This incudes vim &TextMate, but there's no reason you can't be proficient at emacs, Notepad 2, TextPad, or BBedit. I'm looking forward to learning sam.
  2. A search tool I know by heart. This tends to be grep, find, and Quicksilver.
  3. Automated tests. I prefer a behaviour driven development framework like rspec. Ideally you can generate documentation from those tests, saying which pass, which fail, and which are pending or ignored.
  4. Version control. If you don't have a record of when you create and edit your notes, you'd have to do that yourself. I suggest Subversion, svn, or Mercurial, hg.
link|flag
vote up 1 vote down

I use Yojimbo. It works well for keeping not just text but images, PDF documents, web sites (links and full archives), etc.

I have collections for common things that are not tied to any single project (syntax cheat sheets, interface guidelines, etc.). I create a separate collection for each specific project where I put things like web research, code snippets, requirements docs, and engineering notes. Yojimbo allows the same item to be in more than one collection so it's easy to aggregate project-specific and general-but-related information in one place.

Yojimbo syncs all its information (via MobileMe) to all of my machines so I have the data wherever I am. But unlike web-only solutions the information is actually stored locally on each machine. That means I can work offline (I usually commute by train) and everything syncs up the next time I connect.

link|flag
vote up 0 vote down

I tend to use a simple text file organized in folders what convey what the notes are about..for example a GWT folder for google web toolkit notes

link|flag
vote up 0 vote down

emacs modes like org or planner.

link|flag
vote up 0 vote down

TreeDBNotes Free

link|flag
vote up 1 vote down

I use Org-mode in GNU Emacs. It's pure text: you can easily backup your notes, or handle them via a versioning system. You can also export them to various formats, with code highlighting. Very nice.

link|flag
vote up 0 vote down

Notes on the Dashboard (MacOSX)

link|flag
vote up 0 vote down

I make notes on a white board in my office, on my own and when other team members are part of the discussion.

I then take a digital photograph with my mobile phone.

These images are then sorted and listed in my SDF (Software Development File).

I also use a physical notebook. I find myself more productive (when thinking) if I am not behind a keyboard.

link|flag
vote up 0 vote down

I use a small home-made database, driven by a simple search box.

link|flag
vote up 0 vote down

For long term notes use a wiki. We use Dokuwiki.

We also use a bug tracking or change request system like Mantis. Here you can handle requests for change in code. Developers and requesters can vote on and discuss changes and bugs. This way you keep a history of the discussion which is also very useful.

An interesting approach I found some time ago is to establish a local IRC, let everybody discuss their problems, log all conversation and make the log searchable. This way, someone on vacation can spend the first day to read the conversations and get on track with what happened the weeks they were away.

link|flag
vote up 1 vote down

Check out Gist at GitHub

link|flag
vote up 0 vote down

Basecamp

link|flag
vote up 1 vote down

For general observations and "what have I learned today" type things, I second the notion of using a blog. If nothing else, it'll be something interesting to go back to.

For code snippets, I'm quite enamored of basKet on linux.

link|flag
vote up 0 vote down

I have currently begun using sharepoint. More because VS Team Foundation automatically creates a sharepoint site for each project created. This, so far has been an excellent place to put documents about the project (Design docs, 3rd party utility docs etc) as well as forum like dicussion boards etc.

Now, that being said, that is project / team based. We also have a division level sharepoint site where we do much the same.

Personally (Outside of the company) I have tried onenote but I will certainly checkout some of the suggestions made here.

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

I use a combination of physical notebooks, Emacs modes and LaTeX (just so that I do not lose my typesetting skills - they're invaluable.)

link|flag
vote up 0 vote down

Paper and pen!

link|flag
vote up 0 vote down

During the thinking process a sheet of paper is great for me - I can sketck, draw, mark, put number while debugging, etc. This is for temporary memos, however. For more general and long-term information I use docs and/or spreadsheets, depending on the information itself.

For most important, mid-duration memos I like to use source files and simple text files - todos, marks for needing optimization / further reviewing - all fit very well among the code, since this keeps them well up to date.

Also sometimes when I am really into something and I have to interrupt - I put a small summary, in the current source file, of what the current state is and what are immediate steps that must be taken to continue - this helps me to restart very fast when back.

link|flag
vote up 0 vote down

Tinderbox for everything. Links, outlines, maps, agents, search, export, you name it. Can be as simple or complex as you want. I live there.

link|flag
prev 1 5 6 7 8 9 15 next

Your Answer

Get an OpenID
or

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