38
votes
30answers
3k views
What is your most useful C/C++ snippet?
Hello all,
It seems that every project has an "util" module with various code snippets used throughout other files and which don't fit any particular pattern. I want to improve my …
0
votes
1answer
80 views
Insert a snippet from a Visual Studio macro
I have a situation where I want to run a Visual Studio macro that has the user type something in an InputBox, then inserts a snippet and includes that text somewhere in it. Unfort …
0
votes
0answers
106 views
How would you improve this function?
This is a single function from the presenter in an MVP triad.
public void NewAccount(string accountType)
{
IAccount account = _accountFactory.Create(accountType);
account. …
62
votes
19answers
13k views
How to avoid “!= null” statements in Java?
I work with java all day long. The most used idiom (code snippet) I'm programing in java, is to test if an object != null before I use it, to avoid a NullPointerException of course …
0
votes
2answers
34 views
can anyone explain this javascript textmate snippet to me please
hi all,
the following code is a textmate javascript snippet, can anyone explain it please? cuz i want to use this feature in my own snippets. greate thanks.
document.getElement${1 …
0
votes
0answers
19 views
Replace text in a Visual Studio Code Snippet Literal
Is it possible to replace text in a Visual Studio Snippet literal after the enter key is pressed and the snippet exits its edit mode?
For example, given a snippet like this:
pub …
0
votes
3answers
103 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 snippe …
-1
votes
4answers
78 views
favorite personal code snippets [closed]
I'm sure we all have our favorite snippets of code which we re-use all the time. I have just discovered a new one for myself and would like to share.
To determine if in the last i …
0
votes
0answers
14 views
A VS 2008 code snippet doesn’t get inserted fully
I have the Javascript one liner below as a code snippet in VS 2008 SP1. When I insert it in the code (C#) window, only 'var SelectedVal =' gets inserted, instead of the whole state …
1
vote
1answer
86 views
TinyMCE + Wrapping code snippets
Is there a tinymce plugin that wraps text within the tag? Something similar to the formatting option from the WYSIWYG of SO
1
vote
4answers
622 views
A good Code snippet tool or plugin for word documents?
Does anyone know of a good tool or plugin that enables MS Word or OpenOffice Writer to add code snippets to a document in a clean manner?
I'm not sure if such a plug-in even exis …
0
votes
1answer
104 views
Visual Studio 2008 Team System Upgrade Removes Code Snippets
I've been using VS 2008 for several months now and received a copy of VSTS 08 from work and installed without any issues. I upgraded VS 08 to VSTS 08 by running the VSTS installer …
2
votes
2answers
48 views
Displaying code snippets in wordpress.
Ok, not technically a programming question but I want a plugin for my wordpress blog that displays code snippets.
Can anyone here recommend a good one? Also, do you guys know whic …
3
votes
9answers
714 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, …
6
votes
7answers
211 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 sn …
