vote up 415 vote down star
352

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
24  
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 next
vote up 0 vote down

I've tried and liked both ScrapBook and Zotero -- they're both primarily targeted at capturing local copies of stuff from the web, but (I believe) they also include simple note-taking.

link|flag
vote up 0 vote down

I've started using ShoveBox (Wonder Warp Software; OS X only), available for free from MacHeist.com. Drag files, images, text snippets or URLs to the icon on the taskbar and it stores them all. Searchable, exportable, all that stuff. It's not developer-centric but works for me.

link|flag
vote up 0 vote down

I am developing my own web app to keep my notes, urls, todos and files. It is an open source project : http://sourceforge.net/projects/easytc/

link|flag
vote up 0 vote down

I use Google Notebook. It's gerat and I use it for any type of note not only just programming related. Although I've heard that unfortunately Google stooped their work on it for now...

link|flag
vote up 0 vote down

I sujest using Microsoft Live Thumbtack

Thumbtack is an easy way to save links, photos, and anything else you can find on bunch of different Web sites to a single place. Grab the stuff you want, put it into a Thumbtack collection, then get to it from anywhere you can get online. Share it with your friends, or just keep it for yourself. It’s way easier than sending a bunch of links in an e-mail, and even easier than setting lots of favorites in your browser.

link|flag
vote up 0 vote down

Some excellent notes here already...

Evernote is great because it bridges the analog/digital gap, in a way Google Notebook couldn't. Now that Notebook is leaving google, Ever note will begin to look more impressive. Think of Evernote as a personal butler, that will take scribbles, cameraphone screenshots of basic plans and tie them all together. It still needs effort in tying work to each project you are working on however.

The feel of doing on paper work for creative work cannot be lost neither - scribbling basic web layouts is still (for me) faster on a page, done as crudely as the timeline gives me. Having this is something I can refine latter on if needed - and Evernote will let me scribble on it while retaining the original copy.

link|flag
vote up 0 vote down

I use Microsoft OneNote.

When I start talking to someone about a project I start an outline in OneNote. It could start very simple like the results of a first phone call to setup an appointment without much more than a project name and some very basic information.

As I ask questions, talk to other people and do my own investigation I add to and with OneNote can easily modify the outline very quickly.

If possible I'll put the outline up on a screen and develop the design and requirements in collaboration and in real time with the people who know and care about the project.

In all cases I will email, show or print the outline to the stakeholders to see if this is a good representation of what they want.

My next step is to refine the outline now taking into account to how the data will be organized, what type of program (web, windows forms, windows service, etc.) and continue the design so that I have a clear path to start on actual database and software implementation.

As I go along in the project I can further refine particularly complicated parts and be left with some good design documentation.

For a new or prospective client, during the first interview I can capture what they say and provide some detailed feedback via email after the meeting which usually has a very positive effect!

link|flag
vote up 1 vote down

Tomboy combined with Gnome-Do. Part of Gnome on Ubuntu. It's not developer specific, but it's unreasonably useful, and integrates with Do brilliantly. I press Ctrl-Space, type some stuff, press tab, type note and then go to create or search, and it searches all my notes for that text, and brings up a list of results, or it creates a new one with that title. Works perfectly, and keeps everything indexed, which is a real problem I've always had with making paper notes. Where's the bit with my plans for this bit?

Also, you can combine this with dropbox with a bit of neat symlinking, and have all your notes kept in sync (with revision control) on all your computers, and backed up to the internets. Beautiful.

link|flag
vote up 0 vote down

I use the now abandoned but still enormously useful application from tranglos software called KeyNote. Its the best hierarchical note taking editor that I have ever come across till date. And IMO it still does it job pretty well.

link|flag
vote up 2 vote down

ToDoList, main file kept on multiple machines and synchronised using Dropbox

link|flag
vote up 0 vote down

I'll echo the general sentiment that a wiki is the best way to go. I am currently using drupal to store all my notes. It has a great taxonomy system. I've walled mine off (https and password) from the rest of the web though so I don't feel so bad about it not being polished. From there, its a quick copy and paste of the terminal, and I've got it...

link|flag
vote up 0 vote down

I use a combination of:

  • Plain Text Wiki for TextMate
  • a Moleskine journal
  • OmniOutliner
  • OmniGraffle
link|flag
vote up 0 vote down

I just use google notebook for URLs etc and a physical notebook for others :)

link|flag
vote up 0 vote down

Eclipse's @TODO feature - I use this for any notes and TODOs related to the Java project I am currently working in.
Physical notebook - For notes and TODOs that does not fall on the above category but is still related to the project I am currently working in.
Email - I use these for sending notes and TODOs from my office email to my personal email. But these are not related to work. These are mostly links, and texts about anything I want to research at home.

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

i use treepad. i create a tree that looks like this:

- 2009
-- 01
--- 2009-01-01
---- client/project 2009-01-01 a description of what was done
---- client/project 2009-01-01 a description of the 2nd thing
--- 2009-01-02
and so on

i don't think it matters much if you use a wiki or treepad or whatever as long as its searchable. i like to keep things organized by day. at the "day level" of the tree i record and overview of what i did. in the children of that node, i put the details (sql queries, sometimes code snippets, etc). the big thing imo is to make sure it is searchable. treepad has a relatively fast search capability that lets me find when i did what and for whom i did it.

i started doing things this way in 2005. before that i kept a paper diary of sorts. before that (pre 2000) i didn't keep track of anything. i have to say that starting my daily treepad diary is the single most productive thing that i've ever done. i use it religiously and the rewards have been many.

-don

link|flag
vote up 0 vote down

I am surprised that nobody has not mentioned yet Devtodo, which is great app.

Emacs's org mode is also great in note taking and organising.

link|flag
vote up 0 vote down

i use my gmail to keep track of my important files ,so basically and send an eamil to myself with tags in the content so i can perform searching.

link|flag
vote up 0 vote down

Hello,

I use Zotero (Firefox extension) to keep web search, script, solutin, document. Also i use Trac to keep my tasks, checklist etc. And i use iPod.

And last one, my friend use iBob (i will explain it in our webpage www.javaloper.com)

link|flag
vote up 1 vote down

I use google sites to keep my notes and knowledge base.

This gives me web access, good integration with other google office tools, search, etc...

link|flag
vote up 1 vote down

My head usualy works well, but for the times it does not, I use a small note pad, right in front of the monitor.

link|flag
vote up 0 vote down

I love Basecamp, we trialled it at work and never looked back. You've got to-dos, messages, writeboards, time tracking and some other stuff.

It's incredibly well-designed too, every part of the interface has been really thought out. It really does make our lives easier.

link|flag
vote up 0 vote down

I keep my reference documents for problems I tackled in a private wiki. This gets round issues of confidentiality, as the code I write is not open source.

link|flag
vote up 1 vote down

Microsoft Onenote - excellent tool

It works on my PC and on my Windows Mobile phone.

link|flag
vote up 0 vote down

For me it's always been easier and more practical to just use the old pen and notepad. I do that for notes and to backup small tasks that otherwise I'd probably forget.

link|flag
vote up 1 vote down

I used to use Basket Note Pads in KDE 3.5.x. However, after migrating to KDE 4.x, I am waiting for a KDE 4 version of it.

Currently, I rely on `physical' notebooks.

link|flag
vote up 0 vote down

FireFox Scrapbook (to hold pieces of useful info found on the internet), FireFox X-Marks (for synchronized bookmarks between all computers), EverNote and ... MS OneNote which is very good

link|flag
vote up 1 vote down

I put everything in Evernote. Windows, Mac, iPhone & wev clients and it's all kept in sync. I even put PDF docs and PDF books in my Evernote notebooks, then I can access them anywhere.

link|flag
vote up 0 vote down

I often use an online outliner/task management system, http://checkvist.com . It allows to share my notes with other people, simple, and really keyboard friendly.

I was looking for a tool like this some time before, and didn't find one which would meet my expectations regarding user experience.

So CheckVist was written.

link|flag
vote up 2 vote down

Postit Notes! Stickem to the monitor. Also NotePad and WordPad.

link|flag
prev 1 11 12 13 14 15 next

Your Answer

Get an OpenID
or

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