A snippet is a small region of re-usable source code, machine code or text. Ordinarily, these are formally-defined operative units to incorporate into larger programming modules. Snippets are often used to clarify the meaning of an otherwise "cluttered" function, or to minimize the use of repeated ...
143
votes
28answers
87k 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 ...
447
votes
33answers
190k 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 ...
41
votes
31answers
4k views
Handy F# snippets [closed]
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 ...
14
votes
3answers
17k 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 ...
24
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 ...
6
votes
7answers
2k views
Quick and dirty way to profile your code
What method do you use when you want to get performance data about specific code paths?
3
votes
13answers
1k views
General Development Notes [closed]
During a typical day programming, I implement functions in a way that I would like to remember. For instance, say I tuned a DB insert function that, when I come across the situation again, I want to ...
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.
7
votes
8answers
803 views
What is your preferred site for code snippets
Do you use any public websites for code-snippets? If so, can you let me know which ones you would recommend?
Clarification
I'm not looking for anything specific to a particular language, as ...
14
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?
8
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 ...
1
vote
2answers
510 views
Code snippets shortkey in VB.NET?
Is there a way in VB.NET to replicate C# behavior on code snippets in case of capturing events?
I.E.
in C#:
Btn.Click+=
and then double-tab. Creates an handler for btn.click event.
41
votes
6answers
4k 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 ...
17
votes
4answers
15k 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 ...
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, ...
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: ...
13
votes
5answers
923 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
2answers
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 ...
9
votes
3answers
5k 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.
11
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>
2
votes
5answers
901 views
Code snippet library for a team
I would like a general purpose code snippets library, that I could use to store bits of code for any language, organized in folders. When any developer on the network adds a snippet, it should get ...
7
votes
1answer
2k views
Finding the selected Radiobutton's value in ASP.NET
Coding Platform: ASP.NET 4.0 WebForms with C#
I have two asp:RadioButton controls which are having the same GroupName which essentially makes them mutually exclusive.
Example markup
...
6
votes
1answer
5k 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 ...
4
votes
1answer
271 views
How to manage utility modules and code snippets with git, boost,
When programming I accumulate code snippets and utility classes. I want to store those for practical future use.
The question briefly is what is the best way to do this. More elaborate with an ...
2
votes
4answers
553 views
1
vote
2answers
139 views
What is crossplatform code snippet for getting totall cores amount in C++? [closed]
Possible Duplicate:
Programatically detect number of physical processors/cores or if hyper-threading is active on Windows, Mac and Linux
I wonder if there is any crossplatform (std or boost ...
1
vote
2answers
2k views
How to add date into C# snippet
I would like to add to my c# Visual C# Express (no macros) snippet current date and time tag. How to do it? When I will use intellisense to create code with this snippet I would like to have current ...
0
votes
0answers
50 views
Edit the EventHandler snippet in Visual Studio
I am having a hard time finding the snippet or template for the new EventHandler in Visual Studio.
That is, when I write
myObject.OnEvent +=
I get the visual studio help to create a new ...
11
votes
16answers
972 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#.
17
votes
6answers
752 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 ...
20
votes
5answers
1k 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 ...
9
votes
6answers
557 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 ...
4
votes
3answers
1k views
Code Snippet Managers for Linux desktops?
In the spirit of http://stackoverflow.com/questions/3349990/code-snippet-managers-for-os-x
What are some good code snippet managers for Linux?
My quick search didn't turn up much. Eclipse, emacs, ...
12
votes
5answers
270 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 ...
10
votes
4answers
8k 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 ...
4
votes
2answers
556 views
REPL / LINQpad / F# interactive alternative for C++0x?
I love using LINQpad and FSI while developing code for C# and F#. For haskell, I've used hugs. And of course, scripting languages almost always come with a REPL. Pretty much every modern browser ...
5
votes
4answers
6k views
How to use the “sysout” snippet in Eclipse with selected text?
I am aware of the Eclipse snippet "sysout" which is neatly replaced with System.out.println(); when tab-completed.
This is very useful but sometimes, I need to wrap some existing code in a ...
4
votes
6answers
3k views
Vim html.erb snippets?? snipMate Need a vim tip!
I've started using Vim for my rails development (who hasn't!)..
And i'm loving it except that when im in a html.erb file (HTML and Ruby)..
I get no snipMate snippets,
I would like both html and ...
0
votes
0answers
712 views
Scaling/Panning a UIImageView using pinch and swipe gestures (Free Code) [closed]
I couldn't find any great examples of doing pinch to scale and rotate and swiping to pan. Here is some code that hopefully someone will find useful. You can drop this in anywhere just need to hookup ...
9
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
3k 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 ...
3
votes
0answers
64 views
Good place to find different procedual and non-procedual generation algorithms
Does anyone know a good place to find different algorithms for generating worlds, universes, maps, etc. ?
I have searched several places but most of the times the pages only tell you about the theory ...
3
votes
3answers
274 views
Snippet code to create constructor in VS2010 Express
Is there any ready for use code snippet in VS 2010 Express edition (for C#), to create constructor with parameters from selected properties?
When I create a new class and I've written following ...
3
votes
5answers
2k views
How to convert imperial units of length into metric?
Here I am faced with an issue that I believe(or at least hope) was solved 1 million times already.
What I got as the input is a string that represents a length of an object in imperial units. It can ...
2
votes
1answer
68 views
How to make a GitHub README page display HTML code as is
I've got this small piece of HTML (a blockquote element containing a p and a footer) that I want to display on a GitHub README page as code. I've tried indenting it 4 spaces, but then it just displays ...
2
votes
1answer
293 views
NETBEANS custom code folds
I am confused why netbeans in version 7 still doesn't support jQuery... specially for code folding...
I have code snippets like this...
$('#something').click(function(e)){
....
});
and of ...
2
votes
5answers
625 views
how to generate the snippet like generated by google with PHP and MySQL?
Say,it just returns the snippet around which the searching keyword exists.
And part of the text is replaced by "...".
Is it possible to achieve that goal with PHP and MySQL?
1
vote
2answers
454 views
Posting source code in blogger- fails with C# containers
I tried the solutions that are posted in this related SO question and for the most part the code snippets are working, but there are some cases that are still getting garbled by Blogger when it ...
1
vote
2answers
293 views
Are there any alternatives to FastSharp?
Are there any alternatives to Matt Manela's FastSharp tool? I have a vague recollection that there was at least one alternative.
Here FastSharp is the download link.