vote up 18 vote down star
28

I used to use Snippets Text Database, but now I switched to Evernote. At some point I need to migrate all of my old stuff there too. What about you?

flag
show 8 more comments

41 Answers

1 2 next
vote up 27 vote down check

I like to write it up on my blog for two reasons. It helps me improve my writing and ensures I thoroughly explain the snippet. It also makes it quite accessible from wherever I may be.

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

I usually keep them in Visual Studio, although I got a fairly large amount of random .txt files in my Dev-Folder on my hard drive blush

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

If they're common code patterns I integrate them into my text editor, for context-specific insertion with a few keystrokes. [Textmate Snippets]

If I'm going to discuss a snippet of code, historically I used pastie, but I imagine in the future I'll use gist.

link|flag
vote up 9 vote down

Google Notebook. I have a notebook for code snippits and notes about languages, with each language having its own section. If, someday, that gets too large, I'll just break it down by category (eg languages and scripting languages). It's searchable, I can add comments below the notes, and I can share them with others.

link|flag
show 7 more comments
vote up 12 vote down

I have MediaWiki installed on a thumb drive (using PortableApps). I use it as a personal knowledge base for code snippets and any other useful programming tidbit I don't want to forget. This way I can take it with me anywhere and pull it up on virtually any computer I'm on.

link|flag
vote up 3 vote down

I use http://snippets.dzone.com/ - helps other people as well (or so I hope)...

link|flag
1  
The social aspect is nice, but the ability to arbitrarily tag each item for organization is key. I really like this one because it's like delicious for code. – spoulson Jan 28 at 19:14
vote up 1 vote down

I use Instiki, which is a very simple to setup, no frills, WIKI.

You could run this on any disk (e.g. portable USB drive, harddrive) and under any OS (I'm using it under Mac OS X). I keep it running in the background as I am working and switch over to it to add/view any kind of notes (including code snipplets) as needed and it works like a charm.

link|flag
vote up 0 vote down

I have a big folder on my Desktop :), which looks a bit like this:

LJCombined.cs
LJRuby.rb
LJPython.py
LJDelphi.pas
ljcutil.h
LJBashUtil.sh

Yep, that's bash there! It actually has lots of things for using ANSI escape sequences but...
My "system" is designed so that I can just copy them use import LJPython or source LJBashutil.sh. Even in C#. It works quite well for me, because I hate having to get out of "the zone" to open a website or an application - an explorer window or a CMD is much easier.

link|flag
vote up 0 vote down

Some of them I just leave inside programs. I have at this point mostly memorized where the applicable snippets are stored. A few of them I stuck on SO hidden in various questions and answers, some of which are favorited by myself.

Some of them are stuck inside utility classes so that snippet use is not needed at all. DRY is your friend therefore having a lot of snippets lying around is a bad sign.

link|flag
vote up 2 vote down

I'm using snipplr.com to store my code snippets. Mostly because it has a really nice integration with Textmate and an api which makes it possible to integrate it in other tools as well.

link|flag
vote up 0 vote down

If you're running Mac OS X 10.4 or greater, Spotlight works a treat. Just shove them all into one folder (or separate folders). Click on a file, and then press Cmd+I for "Get Info", then put something in the Spotlight comments so you can easily find it later. You don't even have to do that though, if your files are plain text or RTF, Spotlight will look inside the file, so you can just have some text in your snippets like:

// C code to count number of bits in 32-bit integer

int population (unsigned int i)
{
    // code goes here.
}
link|flag
vote up 1 vote down

we use the Snippet Manger in vs08, and keep the .snippet files that could be used company-wide on the fileserver in a common location.

We also (being a share-point studio) have a Team site on our Sharepoint server with a list of snippets where they can be catagorized, sorted, and filtered.

link|flag
vote up 32 vote down

Anything that's really reusable becomes a class in my core library, so I don't really keep a collection of snippets.

And like any good library, I keep it in source control and regularly build new releases. Any of my projects that depend on the library get automatic bugfixes and performance optimizations whenever I release a new version.

Much better than a snippets library, if you ask me.


EDIT:

AnonJr's makes a good comment below, basically saying that the weight of the library can become a burden.

I totally agree. My personal core library (in Java) has more than 100,000 lines of code, and very few of my projects actually use all that stuff.

When I distribute an application based on that library, I actually use a dependency-analyzer (GenJar) to build a new JAR file, based only on the classes from that library that I've actually used in the application.

It's all part of the build-script, so I hardly even think about it anymore.

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

If they're useful, I usually have them somewhere in the source code. If they're common, I put them in appropriate *Utils class (or) in my commons package. If they're made of drinkable magnificentness, I'll think about posting them on Stackoverflow or writing a blog post about it.

Apart from that, I don't really have snippets collection. Too much work maintaining it, and not once have I used some piece of code I thought was worth saving!

link|flag
vote up 4 vote down

I use gist, github's little pal.

link|flag
vote up 1 vote down

If it is a snippet that I use often, for example:

#!/usr/bin/perl

Then I'll throw

map #P O#!/usr/bin/perl

into my .vimrc file. Mapping #P to type out the snippet.

if it's significantly large, I use google notebook.

link|flag
vote up 3 vote down

I'm using my brain - I've found it the most portable solution, and the lookup speed is unmatched by anything else. If memory assisted by IDE autocomplete can't easily reproduce it, it's probaby too "clever" to belong in production code, or should be part of an API library.

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

I use CodeKeep, this way my snippets are close at hand. If I'm at the office or at home i always have access to my most valued snippets (and a few thousand others!)

link|flag
vote up 2 vote down

I use GMail and label them with "Code".. Very easy to search and accessible everywhere. Good luck!

link|flag
vote up 2 vote down

As silly as this sounds (and not to put myself on any kind of pedastal), I wrote my own snippet tool. I have to go back and check the links above, but at the time (a year or so ago without SOFLow) I just couldn't find a basic tool that wasn't free, or required me to have some additional IDE or anything installed.

So I wrote my own. It gave me a great change to try out SQLite (how I store the snippets) and it allows me to store my VB/C#/TSQL/HTML/CSS/Whatever snippets in an independent fashion. Plus it has the drag/drop, quick copy/paste type stuff I was looking for. It was a great coding exercise for me, I have a couple of colleagues using it at work, and I can easily port or export the app as needed.

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

I use http://snipt.net/ for the majority of my code, but I also use Code Collector Pro for some bootstrapping templates.

link|flag
vote up 3 vote down

There is no "Acceptable Answer" - use whatever works best for you and your work. For the few snippets I need handy I keep them in Dreamweaver's snippet repository. I also have a few .txt files for references that I keep on my flash drive for when I travel and use either someone else's program or my portable Notepad++ - But that's just me.

I could use Evernote, OneNote, Ubernote, a TiddlyWiki, or any of a million other things. In the end, what works for me may not work for someone else. Look at your workflow, and figure out something that works best for you and your situation.

link|flag
vote up -1 vote down

I dont use code snippets any more. Just storing them in somewhere ready for copy & paste has the same disadvantages any copy & paste code has: when you find a bug, you have to fix it in many places.

I have tried to get rid of snippets by making it extremely convenient to put this working code into a reusable form. Now I have this setup: I have a Java project, with this layout:

  • java-independent-snippets
    • math
      • src
      • test
      • etc
    • swing_factory
      • src
      • test
      • etc
    • and so on...
    • build.xml

The directories "math" and "swing_factory" etc. each contain completely separate working code, usually just one source file with one or more methods. The build script iterates over all the directories and compiles each separately. So basically I have a directory and a source file for each snippet. To reuse a snippet, just create a subversion external directly to the sourcecode, or make a svn copy of the directory.

The next step is to add unit tests into the test directory, these too are automatically picked up and used in a continuous integration server.

Also, some sourcecode is for different java runtimes. For this I can have an optional build.properties in the etc directory of each of the mini projects, which is automatically picked up by the buildscript. This file also contains the maturity of the project, which I use to generate an overview of all the libraries:

# Maturity levels
# 1:  Pre-Alpha
# 2:  Alpha
# 3:  Beta
# 4:  Production/Stable
# 5:  Mature
project.maturity=3

With all this I have a very scalable system. It is extremely simple to add a new snippet / project, just create a directory and add the source file. The minimum requirement is just to compile, and if I want it can be extended with tests and more code as required.

link|flag
vote up 0 vote down

If code in Django, use www.djangosnippets.org.

For my personal snippets I use gist.github.com and use it for team work.

Also since I code in VIM, I use SnippetsEMU.

link|flag
vote up 1 vote down

I don't keep snippets. Usually they're too specific to the project or data structure I'm working on. Plus, I'll probably have a better-fitting way of accomplishing the task next time.

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

ActionOutline allows you to store text in a tree structure as you see fit.

link|flag
vote up 1 vote down

I suggest Surfulater at www.surfulater.com.

With Surfulater you can permanently save anything you find on the web, in other applications and on your hard drive, and organize it however you want. You can categorize, cross reference and do full text searches. Plus tag, annotate and edit whatever you have saved to make it all the more valuable. And it has a powerful search facility.

Code snippets can be just one of your many categories of things you save for reference. The place you got them gets automatically annotated for you. They have a special template specifically for code snippets.

They have lots of testimonials there, e.g.:

Your software is a really great help for me. I am using Surfulater for lots of things. I use it to store computer hardware reviews, to categorize my downloaded programming codes and tips. I also use it to organize interesting topics on programming forums I'm currently subscribed to.

Before I used Surfulater, I had to manually save web pages and documents, manually create folders and save it. Now, everything's all in one place and searching is amazingly fast as well.

Surfulater screen shot

link|flag
vote up 2 vote down

I just store them in .snip files and let the IDE "Find in all" or google desktop search find them when I want them. I've mapped the file extension onto the IDE, so opening a snippet file gives me code highlighting and an easy way to copy the snippet into my code.

It's not very exciting, but it works for me.

link|flag
vote up 1 vote down

I use my case management / software development software... Fogbugz.

I just make a case, or email in the code with a suitable title in the subject so i can search for it later. I am considering creating an account of snip@domain.com so i can auto file them away as snippets I want to keep or links I want to remember.

What this does is provide me an instant search engine on the contents of the snippet in-line with my case manager.

link|flag
vote up 0 vote down

I keep all my code snippets in a code repository. I've been using Subversion for 3-4 years, but recently I'm contemplating the move to GIT.

The snippets are loosely organized into object libraries based on their function. As I make changes to the snippets I check in the changes.

I'm a OSX user, when I need to find something, if I can't find it via the file structure (based on function), then I use Spotlight to locate the snippet I'm looking for.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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