DO NOT USE - Removed as part of "The great Stack Overflow tag/question cleanup of 2012" - See link in Tag Wiki for more information.

learn more… | top users | synonyms (1)

445
votes
23answers
188k views

Tricks to speed up Eclipse [closed]

Which tricks do you know to make the experience with Eclipse faster? For instance: I disable the all the plugins I don't need (Mylyn, Subclipse, …). Instead of using a plugin for Mercurial ...
166
votes
9answers
24k views

Effective Android Programming Techniques [closed]

Please Help me compile a list of Effective Android Programming techniques Don't forget to free resources after use. Lot of resources like Cursors are overlooked. Free them too. Don't Use magic ...
104
votes
30answers
15k views

Hidden Features and Dark Corners of STL? [closed]

C++ developers, all know the basics of C++: Declarations, conditionals, loops, operators, etc. Some of us even mastered the stuff like templates, object model, complex I/O, etc. But what are the ...
66
votes
16answers
5k views

Things in .NET Framework 4 that every programmer should know [closed]

I recently moved to Visual Studio 2010 and upgraded my website to work with .NET Framework 4. (From VS 2008 - Framework 3.5) What are things I need to know to improve site speed, readability or ...
64
votes
17answers
2k views

How do you cope with coders coma? [closed]

As a programmer I sometimes find myself in the position of being dealt a task which is utterly tedious and downright boring. This is not surprising, it would be odd if all aspects of programming were ...
55
votes
14answers
8k views

.Net Compact Framework Tips, Tricks, and Gotchas [closed]

We work extensively in the .Net Compact Framework and Windows Mobile. I've seen plenty of questions come up regarding specifics to development of ASP.Net apps or other .Net based desktop apps but ...
52
votes
17answers
8k views

PowerShell Tips & Tricks for Developers [closed]

What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
49
votes
29answers
7k views

Perl - Common gotchas? [closed]

The question on Hidden features of Perl yielded at least one response that could be regarded as either a feature or a mis-feature. It seemed logical to follow up with this question: what are common ...
47
votes
13answers
14k views

Xcode 4 Tips and Tricks for Xcode 3 users [closed]

As most of you have probably seen, Xcode 4 has been released officially today. Now I know that plenty of devs out there have been using the preview versions, and it'd be great if people could post ...
43
votes
20answers
12k views

What is your favourite Windbg tip/trick? [closed]

I have come to realize that Windbg is a very powerful debugger for the Windows platform & I learn something new about it once in a while. Can fellow Windbg users share some of their mad skills? ...
40
votes
20answers
4k views

What is your favorite Firebug tip or trick? [closed]

I think every web developer loves Firefox's Firebug extension for solving CSS, JavaScript or HTTP problems. I use it very often, but I'm sure that I'm not aware of some hidden gems. What is your ...
37
votes
8answers
3k views

As a Java programmer learning Python, what should I look out for?

Much of my programming background is in Java, and I'm still doing most of my programming in Java. However, I'm starting to learn Python for some side projects at work, and I'd like to learn it as ...
37
votes
8answers
3k views

The Coolest Parts of Windows API [closed]

I have noticed that there are quite a few community wikis about "Tips & Tricks" or "Hidden Features" in programming languages and APIs here at Stack Overflow. But I could not find any about my own ...
34
votes
28answers
7k views

Java - Common Gotchas [closed]

In the same spirit of other platforms, it seemed logical to follow up with this question: What are common non-obvious mistakes in Java? Things that seem like they ought to work, but don't. I won't ...
32
votes
30answers
3k views

What's your Modus Operandi for solving a (programming) problem? [closed]

While solving any programming problem, what is your modus operandi? How do you fix a problem? Do you write everything you can about the observable behaviors of the bug or problem? Take me through ...
32
votes
14answers
34k views

How to improve Netbeans performance?

Is there a real way to get Netbeans to load and work faster? It is too slow and gets worse when you have been coding for some time. It eats all my RAM. I am on a Windows machine, specifically ...
32
votes
6answers
15k views

How to search all open files in Eclipse?

Simple question: how do I search all the files currently open in Eclipse? Note: I don't wanna search all the files I have in that workspace, just the ones open in tabs. Is there an easy way to do ...
30
votes
26answers
3k views

How do you keep your Windows development machine from slowing down? [closed]

After using Windows for some time, any computer can begin to suffer from "Slow Computer Syndrome", or "winrot", so I am interested to hear what you are doing to prevent this. I am not looking for ...
28
votes
13answers
30k views

Convert an array into an index hash in Ruby

I have an array, and I want to make a hash so I can quickly ask "is X in the array?". In perl, there is an easy (and fast) way to do this: my @array = qw( 1 2 3 ); my %hash; @hash{@array} = undef; ...
27
votes
5answers
12k views

In VIM, how do I break one really long line into multiple lines?

Say I have a super long line in the VIM editor (say around 300+ characters). How would I break that up into multiple lines so that the word boundaries roughly break at 80 characters? Example: This ...
26
votes
26answers
7k views

PHP Optimization Tips

I'm looking for PHP Optimization tips. Coding practices and other methodologies which will make my PHP execute faster. One tip per answer, please, and include why it makes the code faster! This is ...
26
votes
11answers
5k views

CodeRush Tricks of the Trade [closed]

I was using CodeRush quite while ago and now I'm planning to use it again. I've installed the trial but I forgot all the cool features except Alt + Home (drop a marker). And when you don't know some ...
25
votes
11answers
8k views

3D Game Development tips (especially game architecture) [closed]

tl;dr version: What is the best advice (that you learned by experience and not from books) that you can give me, with regards to 3D game architecture? (as in, how to design and connect the components ...
24
votes
7answers
4k views

Vala: Gotchas, Tips and Tricks

As a programmer who is new to Vala, what is your number one piece of advice to someone who is new to the language?
23
votes
5answers
2k views

How to find a checksum of the same checksum? (job-interview question)

Devise a simple algorithm which creates a file which contains nothing but its own checksum. Let's say it is CRC-32, so this file must be 4 bytes long.
23
votes
5answers
3k views

What best practices do you use for programming in R? [closed]

What are some good practices for programming in R? Since R is a special-purpose language that I don't use all the time, I typically just hack together some quick scripts that do what I need. But ...
20
votes
2answers
8k views

python ? (conditional/ternary) operator for assignments

C and many other languages have a conditional (aka ternary) operator. This allows you to make very terse choices between two values based on the truth of a condition, which makes expressions, ...
20
votes
7answers
4k views

Android Development Tips, Tricks & Gotchas

I'm starting down the road of Android Development. At this point I'm looking for some insight from other developers who have been doing 'droid development and have some experience to share with ...
19
votes
3answers
3k views

Hidden Features of Google Guice [closed]

Google Guice provides some great dependency injection features. I came across the @Nullable feature recently which allows you to mark constructor arguments as optional (permitting null) since Guice ...
18
votes
13answers
641 views

Color Reference: Where do you get your ideas? [closed]

I am the only dev in a very small IT shop and as such I have no one to turn to when it comes to the look of my applications. I am left to my own devices as to what looks good with what and what ...
18
votes
6answers
2k views

Tips and tricks for working with Microsoft Visual Studio solutions and project [closed]

After answering on this question I thought it would be nice to collect some tips & tricks for working with MSVS solutions and projects. Here is my list: How to avoid saving new projects ...
18
votes
5answers
2k views

Open a file at line with “filename:line” syntax

Very often, compilations errors are displayed with the file:line syntax. It would be nice to copy-paste this directly to open the file at the right ligne. Emacs already has some mode to handle this ...
18
votes
5answers
2k views

TextMate tips for Rails Development

Working on Rails code for a bit has started me on the spiral into obsessively customising my dev environment (I say obsessive as at the last Rails meetup I went to there was some guy who was raving ...
17
votes
5answers
1k views

Tips from ASP.NET MVC and lessons for ASP.NET WebForms developers

What are some helpful things that ASP.NET MVC developers could suggest that would help us ASP.NET WebForms developers to write better code/web apps? I'm a WebForms guy but with all the new hype ...
16
votes
15answers
7k views

WPF simple tips-and-tricks?

I was fooling around with margins and padding and found that a negative value was acceptable and gives a nice effect in appropriate circumstances. For instance, if you have a border with a filled ...
15
votes
3answers
5k views

Vim - yank into search register

Is there any easy/quick way to "yank" into vim's "last search" register ("/)? From the vim documentation, it appears that the answer is no, but that it can be assigned via a "let" command: It is ...
15
votes
7answers
2k views

Is there anyway to tell Visual Studio not to open all the documents when I load solution?

When you open a solution in Visual Studio 2008 (or ealier versions for that matter), it opens all the documents that you did not close before you closed Visual Studio. Is there anyway to turn this ...
14
votes
8answers
4k views

What's the most elegant way of commenting / uncommenting blocks of ruby code in Vim?

In VIM, at the moment when I need to comment out a section of Ruby code: I navigate to the first column in the row I want to comment out I press CTRL-v to enter visual block mode I navigate down ...
14
votes
5answers
421 views

What kind of syntactic sugar is available in Perl to reduce code for l/rvalue operators vs. if statements?

There's a bunch out there, as Perl is a pretty sugary language, but the most used statements in any language is the combination of if statements and setting values. I think I've found many of them, ...
13
votes
14answers
2k views

Fast dot product for a very special case

Given a vector X of size L, where every scalar element of X is from a binary set {0,1}, it is to find a dot product z=dot(X,Y) if vector Y of size L consists of the integer-valued elements. I suggest, ...
13
votes
6answers
1k views

Visual Studio 2008 — Can I change which “add reference” tab is selected by default?

Every time you start Visual Studio, the first time you click "Add Reference" to add a DLL reference to a project, by default, the .NET tab on that dialog box is selected. As most people reading this ...
13
votes
1answer
3k views

UIColor `-colorWithPatternImage:` alpha blending problem solution. (iOS SDK 4.1)

Solution note, not a question. I used this code to set background as a pattern image: UIImage *bg = SomeImage(); UIColor *bgc = [UIColor colorWithPatternImage:bg]; [self ...
12
votes
24answers
9k views

What is your latest useful Perl one-liner (or a pipe involving Perl)? [closed]

The one-liner should: solve a real-world problem not be extensively cryptic (should be easy to understand and reproduce) be worth the time it takes to write it (should not be too clever) I'm ...
12
votes
11answers
6k views

JavaScript Tips and Tricks; JavaScript Best Practices [closed]

Please, share your tips and tricks related to JavaScript coding. The ones which make code more elegant and faster. See also: http://stackoverflow.com/questions/61088/hidden-features-of-javascript ...
12
votes
13answers
1k views

Favorite ruby trick? [closed]

I'm interested in hearing what your favorite ruby trick is. I'm a big fan of using inject in new and unique ways. You?
12
votes
3answers
648 views

Trick for “reusing” arguments in Haskell?

From time to time I stumble over the problem that I want to express "please use the last argument twice", e.g. in order to write pointfree style or to avoid a lambda. E.g. sqr x = x * x could be ...
12
votes
3answers
3k views

Tips and tricks for emacs' viper-mode and the likes

Basically, I really like vi[m]'s key-bindings, but not the rest of the editor. I really dislike emacs key-bindings, but like the rest of the editor. viper-mode seems like the best of both worlds, but ...
11
votes
5answers
23k views

What shapes can you Draw in Css? [closed]

I recently came across a trick for drawing triangles in css (it's the 'point' of the comment). And it's obvious how to draw a circle and rectangle/square. It seems like this would be enough to draw ...
11
votes
7answers
4k views

What are your favourite UITableView / UITableViewCell tricks?

UITableView is a very powerful class, powering many navigation and preference views on iPhone. Many people have come up with useful UITableView tips, tricks and samples: various ways to use ...
11
votes
4answers
1k views

What is the worst gotcha in WPF?

I've started to make myself a list of "WPF gotchas": things that bug me and that I had to write down to remember because I fall for them every time.... Now, I'm pretty sure you all stumbled upon ...

1 2 3 4 5 7