For issues relating to the creation, use, and maintenance of code snippets.
360
votes
31answers
149k views
How to avoid “!= null” statements in Java?
I work with java all day long. The most used idiom (code snippet) I'm programming in java, is to test if an object != null before I use it, to avoid a NullPointerException of course. But the code ...
120
votes
26answers
70k views
How to detect if JavaScript is disabled?
There was a post this morning asking about: How many people disable javascript. Then I began to wonder what techniques might be used to determine if the user has it disabled. Anyone know of some ...
112
votes
38answers
12k views
What is your most useful C/C++ utility? [closed]
It seems that every project has a "utility" module with various code snippets used throughout other files and which doesn't fit any particular pattern.
What utility classes, functions, and macros do ...
41
votes
31answers
4k views
Handy F# snippets
There are already two questions about F#/functional snippets.
However what I'm looking for here are useful snippets, little 'helper' functions that are reusable. Or obscure but nifty patterns that ...
36
votes
45answers
9k views
Where do you store your code snippets?
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?
33
votes
5answers
3k views
Looking for replacement for Snippet Compiler
I have been using Snippet Compiler for a few years, and it's great. Unfortunately, it isn't getting maintained, and is falling behind. Doesn't support .NET 4, which we recently switched to, and even ...
26
votes
12answers
2k views
What legal issues can I run into if I use example code (say from stackoverflow) in my projects?
A couple of questions I've read today discuss the legal implications of using someones code in your project:
Can I
legally incorporate GPL & LGPL,
open-sourced software in a
proprietary, ...
22
votes
20answers
4k views
Short (and useful) python snippets
In spirit of the existing "what's your most useful C/C++ snippet" - thread:
Do you guys have short, monofunctional Python snippets that you use (often) and would like to share with the StackOverlow ...
18
votes
1answer
351 views
Replace parameter multiple times in Xcode code snippets
Can I create a custom snippet that takes a parameter that is replaced multiple times inside the code?
I tried something like:
<#class#> instanceOf<#class#>;
but it doesn't replace both ...
17
votes
4answers
2k views
What is the best code template facility for Emacs?
Particularly, what is the best snippets package out there?
Features:
easy to define new snippets (plain text, custom input with defaults)
simple navigation between predefined positions in the ...
16
votes
6answers
620 views
Short and useful Objective-C snippets?
Since XCode 4, there is now a Code Snippets section which offers the snippets via auto-complete when typing. I'd be very interested in snippets you all have stored in there. What snippets save you the ...
15
votes
4answers
12k views
Storing code snippets in eclipse
I'm a recent semi-convert to Eclipse after 20 years of using vi and gvim. One of the things I miss about gvim is that I could cut a bunch of different snippets of code into named buffers, and paste ...
14
votes
41answers
2k views
What is the code snippet you are most proud of?
I am sure that at some point we all come up with a way of doing something that make us proud. It may not be something "worthy of production" because of performance or whatever, but you still like the ...
13
votes
9answers
1k views
Do you have any recommended code-snippets for Microsoft Visual Studio? [closed]
What are some macros that you have found useful in Visual Studio for code manipulation and automation? Since good code can be useful in all languages, this question is not language specific.
12
votes
5answers
260 views
Looking for a source of middle sized code chunks
The longer I'm working as a C developer I find myself lacking some source of middle sized code chunks.
I have source of code snippets and libraries, but I can't find a good source for code sized in ...
12
votes
5answers
868 views
List of Functional code snippets for Procedural Programmers?
Sometimes I still get stuck trying to translate procedural code into functional code.
Is there a list of functional idioms/snippets that are mapped to procedural idioms/snippets?
Edit
Since there ...
12
votes
3answers
1k views
What are the best software and templates for a programming blog?
I have a programming blog that was implemented using the default theme of Movable Type. To that, I have added myself a syntax highlighting plugin for adding code snippets. It's not the best thing in ...
12
votes
5answers
9k views
Create custom code snippet in Visual Studio 2008
Like the title says, how do you create custom code snippets in Visual Studio 2008?
11
votes
3answers
365 views
Help me understand the code snippet in c#
I am reading this blog: Pipes and filters pattern
I am confused by this code snippet:
public class Pipeline<T>
{
private readonly List<IOperation<T>> operations = new ...
11
votes
5answers
796 views
How do you manage your gists on github?
I love github and their gist service and that's why I'm keeping a lot of code snippets and even development notes as a gist on my github account. It also makes it easy to share them with my ...
11
votes
13answers
2k views
What websites do you use to post temporary code snippets?
Following on the heels of What is your preferred site for code snippets, I'm looking for a website to post a short blurb of formatted code.
I don't want to create a login. I'm looking for a simple: ...
11
votes
16answers
955 views
Where do you get the best in-depth information for C# programming?
Where do you get the best in-depth information for C# programming? I'm looking for tutorials, examples, blogs, specialized forums etc. dedicated to c#.
11
votes
4answers
690 views
What license should I use for code snippets released on my blog?
How should I license the code snippets used in my blog posts so that people feel free to use it without painful restrictions?
My (very limited) understanding of copyright tells me that without any ...
10
votes
1answer
271 views
PHP in Aptana - function declarations?
I was wondering if there is an easier (or just any) way to declare functions in PHP files. For example, let's say we have following function:
function myfunc($parama = '', $paramb = 0) {}
Would it ...
10
votes
2answers
178 views
Is there a script to manage/search python snippets which understands python code like nullege.com?
I have a folder full of python snippets and want to search it in a more intelligent way than grep. Is there already a script which parses python snippets to AST and lets you search it, like ...
10
votes
1answer
897 views
Visual studio code snippets Cursor
In visual studio (2008) when you insert a snippet and finish inserting literals the cursor jumps to the beginning of the snippet.
Now I'd like to tell visual studio where the cursor should go ...
10
votes
3answers
603 views
Best blogging software for developer [closed]
What's the best blogging software for a developer? In addition to the normal blogging stuff I want:
Code snippets with highlighting in many languages, though primarily python and C++
Good markup ...
10
votes
3answers
1k views
Change default XML comment snippet in Visual Studio
When I hit /// in Visual Studio, is it possible to change the resulting snippet from this:
/// <summary>
///
/// </summary>
to this?:
/// <summary></summary>
9
votes
7answers
334 views
Can Someone Explain This Snippet (Why Are These Braces Here)?
I apologize for this overly simplistic question, but I can't seem to figure out this example in the book I'm reading:
void f5()
{
int x;
{
int y;
}
}
What are the braces ...
9
votes
4answers
4k views
Short cut to create properties in Visual Studio?
I have seen some people creating properties in C# really fast but I don't know how they did it.
Does anyone know what short cut are available in Visual Studio (currently using 2010) to create ...
9
votes
3answers
485 views
Best way to store all javascript snippets?
What is the best way to store all javascript snippets?
jsFiddle seems nice!
But one cannot create an account.
Here is my dream solution:
I create an account.
I type in all my snippets.
I run my ...
9
votes
2answers
2k views
With VIM, use both snipMate and pydiction together (share the <tab> key?)
I am trying to use snipMate and pydiction in vim together - however, both use the <tab> key to perform their genius-auto-completion-snippet-rendering-goodness-that-I-so-desire.
When pydiction ...
9
votes
6answers
479 views
Tools for code snippet execution
By "code snippet execution", I mean the ability to write a few lines of code, run and test it without having to fire up an IDE and create a dummy project.
It's incredibly useful for helping people ...
9
votes
1answer
1k views
Formatting Literal parameters of a C# code snippet
Is there any way that I can change how a Literal of a code snippet renders when it is used in the code that the snippet generates?
Specifically I'd like to know if I can have a literal called say, ...
8
votes
13answers
2k views
Notepad++ replacement
I've been using Notepad++ for a while now, but I noticed it doesn't have code snippets (I found the QuickText plug-in, but it doesn't work anymore), so I'd like to switch editor and my requirements ...
8
votes
6answers
1k views
How do you store your personal snippets database in order to use it everywhere (work, etc)?
I've read the several discussions about storing code snippets but I did't find the info that I'm looking for, so let's define it:
At home, I have several side projects, most of them quite small, one ...
7
votes
1answer
2k views
Useful list of visual studio 2010 C# intellisense code snippets [closed]
I'm seeking a list of C# code snippets that would make our work faster inside visual studio 2010.
PS. I'm talking about code snippets in visual studio as the extension. Ctrl+K, Ctrl+X, to access code ...
7
votes
3answers
11k views
Choose File Dialog
Does anyone know of a complete choose file dialog? Maybe one where you can filter out all files except for ones with specific extensions? The internet needs such an example. I have not found anything ...
7
votes
3answers
1k views
Using VS Code Snippets with Resharper
I am trying to use Code Contract's Code Snippets but since I turned Resharper back on it doesn't recognize them. On the other hand, it is recognizing some snippets I've implemented myself in the past.
...
7
votes
3answers
2k views
C++ snippet support in visual studio?
I'm writing code in native C++ (not C++/CLR). I know that there is no built-in support for C++ with regards to the snippet manager and snipper picker interfaces, however I found a utility called ...
7
votes
1answer
556 views
Sharing Visual Studio Code Snippets amongst a team of developers
Has anyone come up with a good way to share a set of Visual Studio Code Snippets (actual .snippet files that Visual studio uses) amongst a team of developers automatically? It would be great for ...
7
votes
9answers
3k views
What Code Snippet Editor Do You Use?
Part of my "sort your development life out, Rob" push has been me taking note of the fact that I do not have a library of code snippets (and Jeff did a post too). Now I have a few, but I know I should ...
6
votes
3answers
3k views
Notepad++ code snippets manager
Is there any plugin for notepad++ that manages code snippets with backup for the database and code highlighting?
Or is there any other software that does this and that is free?
Thanks.
6
votes
2answers
408 views
Visual Studio: Is it possible to define custom functions for use in one's own Code Snippets?
I want to write a Visual Studio snippet which allows me to quickly create a class of the form:
public SomeClass
{
public SomeType SomeProperty { get; private set; }
public SomeClass(SomeType ...
6
votes
6answers
677 views
Python Code Snippets
Is there any online resource or a book that provides common code snippets? I really like the "Python Phrasebook", but it doesn't cover Python 3.1.
I'd appreciate your comments and advices. Thanks!
6
votes
3answers
241 views
Snippets for productivity - collect good code
I was wondering whether there're recommendable sites, that host collections of good and useful code-snippets.
Searching stackoverflow, to be honest, sometimes is priceless.
- But if you know sites ...
6
votes
8answers
456 views
Very simple map implemention in C (for caching purpose)?
I have a program that read urls in a file and does a gethostbyname() on each URL host. This call is quite consuming. I want to cache them.
Is there a very simple map-base code snippet in C out there ...
6
votes
3answers
985 views
Can I define custom “surround with” templates in Visual Studio 2008?
Can I define custom "surround with" templates in Visual Studio 2008?
6
votes
1answer
4k views
Insert current datetime in Visual Studio Snippet
Does anyone know of a way that I can insert the current date & time in a visual studio 2008 snippet? What I want is something like this in the body of my .snippet file...
<Code ...
6
votes
2answers
343 views
Anyone have any cool code snippets
Code snippets are a pretty underused feature in Visaul Studio and it can really save you alot of time. What custom code snippets do you guys use in your everyday coding?
Let me list some of mine:
...