vote up 19 vote down star
30

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
vote up 1 vote down

+1 for DropBox (which, for those who don't know, is a very clean implementation of the local-folder-tree-synced-to-the-cloud idea). Here's why:

  • Your snippets file is stored locally so you can get to it very fast with local index searches such as Spotlight. Web-based services seem like they'd be a lot slower, keystroke for keystroke. (I can get to almost any snippet without touching the mouse.)
  • It's just a file in the local file system, so there's no need to leave a browser window open or log in to anything.
  • It's cross-platform Win/Mac/nix, for those of us who develop on various platforms.
  • If you put it in your /Public folder, it's also on the web, for indexing, sharing, linking, etc.
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 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 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 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
vote up 0 vote down

I use StackOverflow. Simple code (such as hexadecimal conversion) to interesting algorithms (polygon rendering) to tips and tricks.

The reason why is that no single repository I've ever used has suited me - I need to access it everywhere, on any computer, it needs to be easily searchable, and it needs to require little to no effort to keep up to date, modify, note, find, test, etc.

Google does the searching for me, and StackOverflow holds it. Further, others improve it - almost like an open source project - noting corner cases, problems, suitable and unsuitable uses, etc.

The internet is my brain, and I don't have to worry about cross platform issues, moving it from one type of media or platform to another, backing it up, etc.

What other tool is so powerful and useful?

The only drawback is that I don't have access when I don't have the internet. That's really not an issue, though, these days. The internet is as important a programming resource, nearly, as the compiler.

-Adam

link|flag
vote up 0 vote down

StackOverflow! If you have a code snippet worth saving then it's probably the answer to a question that others will have as well. Ask that question and then post your snippet as an answer. Next time you need it you don't have to even remember that you put posted it on StackOverflow -- it should come up in a google search.

link|flag
vote up 0 vote down

Opera , Blogger, Gmail and Gears.

In Opera Ctrl + 5, to open my Edit posts window , start search and view. With Code Formatter I might even get some syntax highlighting ; ) When I do add some new code snippet Blogger sends an email to my Gmail and when properly tagged it could be found from there by searching: from:me good tags, Enter

link|flag
vote up 0 vote down

In version control, in a user directory. It's available for all, under SCM and out of the any project's directory.

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
1 2

Your Answer

Get an OpenID
or
never shown

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