vote up 407 vote down star
341

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
18  
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 2 3 4 5 15 next
vote up 5 vote down

After 25+ years as a developer, many of them spent writing notes (I'm an inveterate scribbler) I'm really over paper notes.

They are bulky, you can't search them, can't back them up and can't carry them around that easily.

Modern OS, especially OS/X which I use as my main desktop, are really good at finding things so the most important thing is just write stuff down. You can worry about getting the where right later. That's also a lesson for wiki users - we had a very successful wiki (using Twiki) at CSIRO where I worked with many scientists and the number-one lesson was to record now, edit later.

Having said all that, I'm naturally a tactile and then visual thinker. I tend to sketch solutions. To keep everything searchable, simple, diffable and able to be used in a wiki and in Doxygen, I do many of my diagrams with GraphViz. That way I just have to describe the diagram in a simple text form and the picture is generated. I use GraphViz (strictly, the dot tool) for schema documentation, calling sequences and casual architecture diagrams because it's the fastest possible way to get a picture recorded.

As a self-education and self-improvement excercise, whilst it is useful and fun to be able to leaf through past notes in a notebook, I think it is actually better to be actively editing and commenting on past work. I think you're more likely to lay down new associations in your brain if you're handling the material by pulling bits out and writing them up or classifying them in relation to other bits of knowledge. This is also one thing you can do to mitigate the linear style of blogs - maintain index pages pointing to your better postings.

link|flag
vote up 5 vote down

I've been programming for over 20 years and sadly I have had the same problem as the OP, until I discovered the LiveScribe pen this year.

http://www.livescribe.com/

It has totally changed my note-takeing life! It has 4 main benefits:

  1. It's a pen. At the end of the day it's a pen, so you can scribble/doodle/write notes, just as you always do...but...
  2. It's a RECORDING pen. When you dock the pen with your Mac/PC, it uploads what you've written and then OCRs it! And the OCR is remarkable. I have THE worst handwriting I've seen. Really, it's terrible, yet this thing nails it every time. Which leads me to...
  3. Your rantings are searchable. Because everything is OCRd, you can actually find what you scribbled a year ago. This means as you fill up more and more pads, you can always find what you want.
  4. (this is beautiful) You can tap 'record' and scribble a mark anywhere you want on a page, and start talking out loud (like a dictaphone). At any point in the future, you just tap your scribble on any page and the recording is played back instantly. All of the audio is uploaded to your Mac/PC upon docking the pen too. This is pure gold, and frankly is the killer feature for me. I can actually think out loud while I'm writing, or record a meeting and go back to what was said at any point. So incredibly useful.

I honestly can't recommend this enough. It's like GPS for me; once you've used it, you can never go back!

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

A combination of good old physical notebook and notebook in the cloud (Google docs).

Physical notebook is simply much better when I want to quickly scribble my thoughts and draw diagrams. And I can do this anywhere. Notebook in the cloud is good for copy-pasting code snippets. And it's nice because somebody else is doing the backup for me, and I can use it as long as there's internet access. I wish Google docs could do basic drawing and diagram though.

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

I'm old school. Plain old text file using my favorite text editor TextPad - http://www.textpad.com/

link|flag
1  
I use this too ... and I have work notes going back 15 years. – cplotts Sep 25 at 22:12
vote up 4 vote down

Dropbox

Just combine dropbox, your favourite text editor, and a folder of markdown formatted text files.

It has the following advantages:

  • You can't get text out of your brain any faster than in a text editor.
  • You spend zero time syncing between computers.
  • No computer? Just find a web browser.
  • Instant HTML if required
link|flag
show 1 more comment
vote up 4 vote down
  • If you are using VS try CodeKeep ( just in case you did not read about it above )

  • Start blogging ( Even if nobody reads it ... as mine ; )

  • copy , paste to blogger

I use small copy paste snippets to Blogger. It sends automatically e-mails to my Gmail account. Install Google Gears - for example I do have my regular searches such as "cmd cheat sheet" or "perl cheat sheet". I tag each code snippet with easy to remember tags ... Thus later on when I need them : Start - Run , type Opera , Ctrl + 1 - access Gmail type / to focus on the search tab , type "tag " , hit Enter

whell it is most probably there , Copy Paste and use it.

  • use a fake class I also have the following type of fake class, which does help if you type HowTo.DoSomethingSuggestedByVSIntellisense

    using System.Text; using System.Diagnostics; using System.Collections.Generic; using System.Collections;

    namespace GenApp.Utils.Theory { /// /// This is fake class for quick copy paste. Usage: /// type HowTo. - the intellisense will display the names you have figured out for each fake method /// select the name from the , click in it , right button , G , will get you there , /// copy paste the text , Alt + F, C to close and remember to delete the fake call. /// public class HowTo {

    	public static void UseRegexesWithWhiteSpace ()
    	{
    		//how-to use regexes with white space 
    		//                Regex re = new Regex( 
    		//                    @"           # This pattern matches Foo
    		//                        (?i)     # turn on insensitivity
    		//                                 # The Foo bit
    		//                        \b(Foo)\b "
    		//                , RegexOptions.IgnorePatternWhitespace ) ;
    		//                for ( Match m = re.Match( "foo bar Foo" ) ; m.Success ; m = m.NextMatch() ;
    
    
    
    } //eof method 
    
    
    public static void DisplayJavaScriptConfirmationDialog ()
    {
    	//Active_chkbox.Attributes.Add("OnClick" , "return (confirm('Do you want do disable this user'));");
    } //eof method 
    
    
    public static void RegisterPageStartUpScript ()
    {
    
    
    	//how-to Page.RegisterStartupScript(@"startup",@"<script>alert('Thank you!');</script>");
    	//string JaScript = "<script language=’javascript’> alert('User Details saved successfully') </script> " ;
    	//Response.Write( JaScript );
    
    
    } //eof method RegionsterPageStartUpScript
    
    
    public static void AddCallingMethodNameToDebug ()
    {
    	string code = @"
    
    System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace(); string mName = st.GetFrame(1).GetMethod().Name; ";
    } //eof method AddCallingMethodNameToDebug
    
    
    public static void SettersAndGetters ()
    {
    	string help = @"
    

    how-to generate those in textpad F8 how-to Generate member accessors , properties for C# asp.net with textpad how-to setters and getters find:^(.*)$ replace:private string _\1 ; \n public string \1 { \n \t\t get { return _\1 ; } \n \t\t set { \1 = value ; } \n } //comm -- eof \1 property \n\n find:^(.) (.*)$ private string s\1 ; \n public string \1 { \n \t\t get { return s\1 ; } \n \t\t set { s\1 = value ; } \n } //comm -- eof \1 property \n\n

    FIND:first remove all the [] from the copy paste of the table create screipt ^\t[([a-zA-Z_])](.)$ FIND type and var ^(.) (.)$ REPLACE Properties

    region \2 \n private \1 _\2 ; \npublic \1 \2 { \n \t\t get { return _\2 ; } \n \t\t set { _\2 = value ; } \n } //eof property \2 \n\n\n #endregion \2 \n\

    //for the constructor _\2= this.\2 ;

    //for the passing to the constuctor \1 _\2 ,

    /* ^(.) (.)$

    region \2 \nprivate List<\1> _\2;\npublic List<\1> \2 { get { return _\2; } set { _\2 = value; } }\n#endregion \2\n\n

    ";

    	} //eof method SettersAndGetters
    
    
    
    public static void ListAllDbObjects ()
    {
    	/*
    	--HOW-TO LIST ALL PROCEDURE IN A DATABASE
    	select s.name from sys.objects s where type = 'P' or type='UP'
    	-- GET THE GENERATED ONES ONLY 
    	 select s.name from sysobjects s where type = 'P' and s.name like '%gsp%'
    	--HOW-TO LIST ALL TRIGGERS BY NAME IN A DATABASE
    	select s.name from sysobjects s where type = 'TR'
    	--HOW-TO LIST TABLES IN A DATABASE 
    	select s.name from sysobjects s where type = 'U'
    	--how-to list all system tables in a database
    	select s.name from sysobjects s where type = 's'
    	--how-to list all the views in a database
    	select s.name from sysobjects s where type = 'v'
    
    
    	Similarly you can find out other objects created by user, simple change type = 
    
    
    	C = CHECK constraint 
    
    
    	D = Default or DEFAULT constraint 
    
    
    	F = FOREIGN KEY constraint 
    
    
    	L = Log 
    
    
    	FN = Scalar function 
    
    
    	IF = In-lined table-function 
    
    
    	P = Stored procedure 
    
    
    	PK = PRIMARY KEY constraint (type is K) 
    
    
    	RF = Replication filter stored procedure
    
    
    	S = System table 
    
    
    	TF = Table function 
    
    
    	TR = Trigger 
    
    
    	U = User table ( this is the one I discussed above in the example)
    
    
    	UQ = UNIQUE constraint (type is K) 
    
    
    	V = View 
    
    
    	X = Extended stored procedure
    	*/
    } //eof method 
    
    
    public static void GetProcedureMetaData ()
    {
    	string answer = @"
    
    select PARAMETER_NAME as 'COLUMN_NAME', DATA_TYPE , CHARACTER_MAXIMUM_LENGTH AS 'MAX_LENGTH', IS_RESULT , PARAMETER_MODE from INFORMATION_SCHEMA.PARAMETERS where SPECIFIC_NAME='Login_Check' Select * from INFORMATION_SCHEMA.Routines --returns stored procedures and functions exec sp_HelpText 'Login_Check' "; answer = string.Empty;
    } //eof method 
    
    
    public static void GetRowColumnValuesFromDs ()
    {
    	//(ds.Tables["TableName"].Rows[0]["ColumnName"] == DBNull.Value) ? false : (bool)ds.Tables["TableName"].Rows[0]["ColumnName"]; 
    
    
    } //eof method 
    
    
    public static void CopyMeAsTemplateMethod ()
    { } //eof method 
    
    
    public static void ReflectionExample ()
    {
    
    
    	//Type objectType = testObject.GetType();
    
    
    	//ConstructorInfo[] info = objectType.GetConstructors();
    	//MethodInfo[] methods = objectType.GetMethods();
    
    
    	//// get all the constructors
    	//Console.WriteLine("Constructors:");
    	//foreach (ConstructorInfo cf in info)
    	//{
    	//  Console.WriteLine(cf);
    	//}
    
    
    	//Console.WriteLine();
    	//// get all the methods
    	//Console.WriteLine("Methods:");
    	//foreach (MethodInfo mf in methods)
    	//{
    	//  Console.WriteLine(mf);
    	//}
    
    
    }
    
    
    public static void shortcuts ()
    {
    	string _shortcuts =
    
    
    	@"
    
    //how-to shortcuts Ctrl + Shift + F -- recursive find F3 -- find next occurence Ctrl + H -- find and replace Ctrl + M + M -- collapse method Ctrl + B --- set a break point CTRL + “-” and CTRL + SHIFT + “-” -- web browser like backward and forward in code Ctrl + Tab --- shift tabs Shift + F5 --- stop debugging Ctrl + I --- fast search F5 -- start debugging Tryf = try and finally block Prop = property with get and set accessor Switch = switch statement with default Alt + W , L -- close all windows Alt + W , 1 -- open the first window Alt + F , F , 1 -- open the latest file I closed Ctrl + F2 , Tab -- go to the methods dropdown , type a letter to get to the name of the method Alt + L --- select the Solution Explorer Ctrl + Shift + Z -- press 2 (needs arsclip (google download arsclip)) -- get the second latest entry from my clipboard ";
    } //eof shortcuts
    
    
    public static void redirectToCurrentUrl ()
    {
    	string _redirectToCurrentUrl =
    	@"
    
    Response.Redirect ( System.IO.Path.GetFileName ( System.Web.HttpContext.Current.Request.Url.AbsolutePath ) , false ); "; } //eof method
    public static void formTypes ()
    {
    	string _formTypes =
    	@"
    
    //how-to forms 1 - Empty Search Form , 2 - Filled Form , 3 - Empty New form ( new Margin Data , new Project ) //how-to formTypes //, 4 - filled search form from get by id procedure // 5 - FilledSearchForm (coming from params) "; } //eof formTypes
    public static void GetTheFileNameWithoutTheExtension ()
    {
    	/*					
    	System.IO.Path.GetFileNameWithoutExtension ( System.Web.HttpContext.Current.Request.Url.AbsolutePath ) );
    	 */
    
    
    } //eof methoed 
    
    
    public static void GetThePhysicalRootPathNoExtension ()
    {
    	//how-to get the physical root path on the file system of the application 
    	//Utils.Dbg.Debugger.WriteIf ( "My rootPath is " + rootPath );
    } //eof method 
    
    
    public static void AccessConfVariables ()
    {
    	//how-to access conf variables BL.Conf.Instance.Vars [ "varName" ] would give you "theVarName ;
    } //eof method 
    
    
    public static void GetRowColumnValue ()
    {
    	//how-to get row column value 
    	//(ds.Tables["TableName"].Rows[0]["ColumnName"] == DBNull.Value ) ? false : (bool)ds.Tables["TableName"].Rows[0]["ColumnName"] ; 
    
    
    } //eof method 
    
    
    public static void GenerateExtendedPropertiesForATable ()
    {
    
    
    	//table column
    	//find:^(.*) (.*)$
    	//Replace:
    	//EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'title="\2",visible="1",fs="Basic Details",readonly="1"' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'\1', @level2type=N'COLUMN',@level2name=N'\2'
    } //eof method 
    
    
    public static void RedirectToTheCurrentURL ()
    {
    	//how-to redirect to current url = users.aspx or projects.aspx 
    	/*
    
    
    	Response.Redirect( System.IO.Path.GetFileName ( System.Web.HttpContext.Current.Request.Url.AbsolutePath ) , false );
    
    
    	 */
    } //eof method 
    
    
    public static void THEORY ()
    {
    	//EVENTS AND DELEGATES IN ASP.NET -- http://msdn.microsoft.com/en-us/library/17sde2xt.aspx
    
    
    } //eof method 
    
    
    public static void ReplaceDebugging ()
    {
    	/* find : replace 
    ^(.*)([^\/\/])(Utils\.Debugger)
    \t\t\t\t\t//Utils.Dbg.Debugger
    	 */
    }
    
    
    public static void UseStringBuilderInsteadOfString ()
    {
    	//Bad
    	string s = "This ";
    	s += "is ";
    	s += "not ";
    	s += "the ";
    	s += "best ";
    	s += "way.";
    
    
    	//Good:
    	StringBuilder sb = new StringBuilder ();
    	sb.Append ( "This " );
    	sb.Append ( "is " );
    	sb.Append ( "much " );
    	sb.Append ( "better. " );
    
    
    } //eof method
    
    #region SomeObject.Value = SomeValue ?? null; class SomeObject { public string Value { get; set; } } public static void DummyAssignValueIfNotNull ( string SomeValue ) { SomeObject SomeObject = new SomeObject (); if (SomeValue == null) SomeObject.Value = null; else SomeObject.Value = SomeValue; } public static void SmartyAssignValueIfNotNull ( string SomeValue ) { //Instead of this: SomeObject SomeObject = new SomeObject (); SomeObject.Value = SomeValue ?? null; } #endregion SomeObject.Value = SomeValue ?? null; //<source>http://stackoverflow.com/questions/28637/is-datetime-now-the-best-way-to-measure-a-functions-performance</source> public static void MeasureMethodPerformance () { Stopwatch sw = new Stopwatch (); sw.Start (); // Do Work to measure sw.Stop (); string StrDebug = string.Format ( "Elapsed time: {0}", sw.Elapsed.TotalMilliseconds ); } //eof method
    public static void GenerateResxFileOutOfListing ()
    {
    

    /* FIND: ^(.*)$ REPLACE: \n value\n comment \n\n

    */

    	} //eof method 
    } //eof class
    

    #region implement IEnumerable for a type public class ClassImplementingIEnumerable : IEnumerable { public IEnumerator GetEnumerator() { yield return "x"; yield return "y"; }

    // Explicit interface implementation for nongeneric interface
    IEnumerator IEnumerable.GetEnumerator ()
    {
        return GetEnumerator(); // Just return the generic version
    }
    

    } //eof class #endregion #region implement IEnumerable for a type

    } //eof names

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

I use a paper notepad and either windows' notepad or linux' kjots. Additionally I keep notes in the source code I am working on (mostly the 'why' something was down).

As someone said before: "Make sure to write everyhting down.".

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 3 vote down

I use PersonalBrain as my knowledge base. For me, it excels in storing code tidbits, patterns, project-specific data and general notes. Information is easily linked to other information, and I can quickly find any piece of information that I need in seconds.

For blazing quick creation and retrieval of stored knowledge, nothing else beats it.

(You'll find that the makers of PB try to sell it as a mind-mapping tool, I find other tools better like FreeMind better for that job.)

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

Um, I use the source code? Really. That's where you (or if open source/free software), somebody else will look for the algorithm, ideas and background to the code. Code snippets become examples or utilities. Checklists or release scripts become version-controlled admin scripts. This doesn't deal too well with diagrams, I admit.

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

I'm using leo for this kind of stuff.

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

I regularly use Emacs and org-mode for note keeping. Its flat text format is easy to post in emails, diff with text processing tools, store in SCM systems in a meaningful manner, and so on. The nice UI shortcuts to add new 'note nodes', promote notes, demote notes, move them around, expand and collapse them, and the almost free-form style of the note text is nice when one spends a lot of time editing text (documentation, sources, etc).

For more details, if you are already using Emacs, check out: http://orgmode.org/

link|flag
vote up 3 vote down

I am really liking EverNote for general note management.

The older I get, the less information I seem to be able to retain, and I’m finding it increasingly necessary to write things down so I can reference them later. Since it seems I have forgotten how to use a pen or pencil to make legible characters on a piece of paper, I usually type this information into the computer. I have tried a number of ways to organize these digital "sticky notes". For awhile I was using the Notes feature in Microsoft Outlook , but that doesn’t really allow me to access my notes wherever I am, and it was awkward to use. I discovered I could use Yahoo! Notepad to sync with Outlook Notes, so I began to use that quite a bit - until I moved to Vista and Office 2007. For a long time, there wasn’t a sync client from Yahoo! that would work, and I found myself looking at other alternatives. A couple of weeks ago I discovered an application that is really working well for me. Evernote describes itself this way:

Evernote allows you to easily capture information in any environment using whatever device or platform you find most convenient, and makes this information accessible and searchable at any time, from anywhere.

What’s nice about Evernote is that it is provides a Windows client that synchronizes with a web interface, so your information is truly available to you wherever you go. There are Mac, Windows Mobile, and IPhone clients as well.

This is not just for text. There is a simple rich text editor for taking notes in meetings or entering the bits of information you need to do your job or manage your life. Beyond that, you can store entire web sites (or just selected portions) quite easily using a Firefox extension. The program will also store scanned images, PDF files, and audio clips, but I haven’t really taken it that far.

Searching works well, and they claim to also search PDF files and text within images. Like Outlook Notes and Yahoo! Notepad, each note is assigned a title based on the first line. Evernote, however, allows you to rename the title. Notes can be organized into folders and assigned tags.

Synchronization also works well - even behind the firewall at work (it appears to use whatever HTTP proxy is configured in Internet Explorer). By default it syncs once an hour, but this is configurable, and you can force a sync at any time. I haven’t really tried using the web client. I have the Windows client running in the system tray so it quickly accessible.

Did I mention it was free? There is a monthly cap, but in my regular use I am not even coming close to the allotted upload allowance. The premium version is $45/year, which gives you SSL encryption as well as a much larger upload allowance.

If you are like me and need an application that will allow you to create your own personal knowledgebase , than I highly recommend Evernote .

link|flag
vote up 3 vote down

I use GMail - it is searchable and available anywhere I have internet, and is long term memory.

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

I use http://www.backpackit.com/ by 37signals. I can create pages add lists, notes, files, pictures, writeboards and tags and then search anything I previously added. It is not developer specific, but it works for me.

For snippets I have one page for each language I use and each snippet is a note with files (sometimes).

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

I find it surprising that nobody has mentioned the notes built-in support in Opera. You can access the notes whenever you're browsing with a shortcut (Ctrl-Alt E), which will prompt you to the notes tab searchbar, You can even synchronize your notes so that you'll only have one big repository of notes in any Opera browser that you use, thus you can be in Linux, Windows, Mac and still read your notes.
   I use it all the time whenever I can't recall how I did something before but that I have a hunch that I might have made a note for it, I just bring the notes from Opera and type whatever I can remember from that note, and voila!  There it is.
Although, it could be said that one of the drawbacks of Opera notes is that you can't format your text.

link|flag
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 3 vote down

For my work on enterprise applications:

  1. Lots of notepads. I diagram a lot, and scratching it out is quick and easy. I can take it with me to a meeting or to QA or -gasp- a customer.

  2. OneNote. Window Key + S. Instant Sizable Screenshots are worth their weight in gold. The notebooks are pretty useful to.

  3. Code Comments and text help files in the repository. Thinking of your code as a product that has to be consumed by other developers, packaging it correctly can be a big help.

  4. To do list. Wherever I can make them. Word, WordPad, Notepad, notebooks, OneNote, whittled into my desk. Should probably be number one. If you work on an application that can be your notepad, try that, too. It helps you find bugs.

For my web development

  1. Trac. I love that thing!

  2. See above.

link|flag
vote up 3 vote down

Pencil and Paper are fine until that calamitous flood or fire comes along, also paper isn't very efficient for searching or copy/paste.

I use ToDoList for TODO lists and a folder hierarchy of text files which I search and categorize (by folder name) through a custom explorer-like notepad app I wrote.

link|flag
vote up 3 vote down

I'm surprised no one has mentioned Pocketmod yet. It's basically a DIY origami notebook. You can customize the pages to suit your needs. Personally, it's either lined pages or graph paper. I'll usually have a few in my backpack for different projects.

While on the computer, I'll send myself an e-mail with my note. Using GMail's search engine, I can usually find any note quickly.

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

I'm now using Snipt (http://snipt.net)

It has a nice clean interface + syntax highlighting.

link|flag
show 1 more comment
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 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 2 vote down

Moleskine!

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

Ultra Recall - The most awesomest PIM / personal database / document manager evar. http://ultrarecall.com

Unfortunately it's Windows-only.

link|flag
vote up 2 vote down

I use Vim and the Viki plugin - effectively a wiki using plain text and a plain text editor.

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

Notebooks (pen and paper), One Note (when using tablet) and Sharepoint for more formal doc management.

link|flag
vote up 2 vote down

Index cards and a spiral notebook.

link|flag
vote up 2 vote down

todo.txt in the autostart-folder :)

To be able to track changes and remember how i thought 6 months ago i use a simple blog, together with my own sketching-homepage, Cosketch, to get some kind of image-support in the blog.

link|flag
vote up 2 vote down

I use wikipad which is basically a note taking tool that uses Wiki-like syntax

See: http://groups.google.com/group/wikidpad/web/home

link|flag
show 1 more comment
prev 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.