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?
|
30
|
|||
|
|
|
|
+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:
|
|||
|
|
|
|
I have a big folder on my Desktop :), which looks a bit like this:
Yep, that's bash there! It actually has lots of things for using ANSI escape sequences but... |
|||
|
|
|
|
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. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
In version control, in a user directory. It's available for all, under SCM and out of the any project's directory. |
|||
|
|
|
|
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:
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:
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. |
|||
|
|
