Tagged Questions
The tips-and-tricks tag has no wiki summary.
1408
votes
296answers
207k views
Hidden Features of C#?
This came to my mind after I learned the following from this question:
where T : struct
We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.
Some ...
498
votes
40answers
28k views
jQuery Tips and Tricks [closed]
Syntax
Shorthand for the ready-event by roosteronacid
Line breaks and chainability by roosteronacid
Nesting filters by Nathan Long
Cache a collection and execute commands on the same line by ...
290
votes
53answers
20k views
Hidden Features of ASP.NET
This question exists because it has
historical significance, but it is not
considered a good, on-topic question
for this site, so please do not use it
as evidence that you can ask similar
...
224
votes
22answers
126k views
How to align checkboxes and their labels consistently cross-browsers
This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
207
votes
84answers
16k views
Hidden Features of SQL Server
What are some hidden features of SQL Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody ...
195
votes
31answers
52k views
WiX tricks and tips [closed]
We've been using WiX for a while now, and despite the usual gripes about ease of use, it's going reasonably well. What I'm looking for is useful advice regarding:
Setting up a WiX project (layout, ...
171
votes
31answers
16k views
Performance optimization strategies of last resort?
There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature ...
161
votes
12answers
15k views
ASP.NET MVC Best Practices, Tips and Tricks [closed]
Please, share your ideas which could serve as best practices or guidelines for creating ASP.NET MVC web applications. These ideas and/or coding samples should be relevant to ASP.NET MVC application ...
145
votes
78answers
27k views
Hidden features of Perl?
What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?
Guidelines:
Try to limit answers to the Perl core and not CPAN
Please ...
139
votes
23answers
85k 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 ...
138
votes
55answers
22k views
Hidden features of C
I know there is a standard behind all C compiler implementations, so there should be no hidden features. Despite that, I am sure all C developers have hidden/secret tricks they use all the time.
135
votes
38answers
35k views
What is your favorite C programming trick? [closed]
For example, I recently came across this in the linux kernel:
/* Force a compilation error if condition is true */
#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
So, in ...
123
votes
9answers
10k views
Effective Android Programming Techniques
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 ...
119
votes
25answers
12k views
Hidden features of WPF and XAML?
Here is a large number of hidden features discussed for variety of languages. Now I am curious about some hidden features of XAML and WPF?
One I have found is the header click event of a ListView
...
96
votes
6answers
16k views
Adding a guideline to the editor in Visual Studio [closed]
Introduction
I've always been searching for a way to make Visual Studio draw a line after a certain amount of characters:
Below is a guide to enable these so called guidelines for various versions ...
88
votes
35answers
10k views
What is the most useful R trick? [closed]
In order to share some more tips and tricks for R, what is your single-most useful feature or trick? Clever vectorization? Data input/output? Visualization and graphics? Statistical analysis? ...
80
votes
30answers
9k views
Hidden Features and Dark Corners of STL?
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 ...
72
votes
3answers
18k views
How to “Add Existing Item” an entire directory structure in Visual Studio
I feel ridiculous for asking this because it seems like it should be so simple, however I have been unable to discover an answer to this question.
I have a free standing set of files not affiliated ...
70
votes
14answers
4k views
Visual Studio debugger tips & tricks for .NET
I've been working for years with VS's debugger, but every now and then I come across a feature I have never noticed before, and think "Damn! How could I have missed that? It's so useful!"
...
64
votes
33answers
3k views
What is the most under-valued part of .NET?
The .NET framework is massive. I've used it for years and I've still not used most of it.
I'd like to expand my knowledge of the Framework's backwaters but just reading thought it seems daunting. So ...
63
votes
16answers
2k views
Things in .NET Framework 4 that every programmer should know
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 ...
61
votes
18answers
2k views
How do you cope with coders coma?
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 ...
54
votes
28answers
12k views
Lua Patterns,Tips and Tricks [closed]
This is a Tips & Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua.
Lua is a great scripting language, however there is a lack of documented ...
53
votes
10answers
3k views
Perl Myths [closed]
I keep seeing people trip over common misconceptions of how Perl exists and what it does.
There are generally 2 types of Perl Myth.
Type 1:
Things that people think about the language itself, ...
50
votes
4answers
5k views
What really happens in a try { return x; } finally { x = null; } statement?
I saw this tip in another question and was wondering if someone could explain to me how on earth this works?
try { return x; } finally { x = null; }
I mean, does the finally clause really execute ...
47
votes
14answers
6k 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 ...
45
votes
13answers
11k views
Xcode 4 Tips and Tricks for Xcode 3 users
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 ...
45
votes
22answers
8k views
NetBeans Tips and Tricks
I just saw an Eclipse tips & tricks post and was wondering if anyone had any tips & tricks for my IDE of choice: NetBeans.
Here's a few I know and find to be useful:
Removing a package: ...
42
votes
29answers
5k views
Perl - Common gotchas?
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 ...
39
votes
17answers
6k 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?
36
votes
3answers
5k views
How does the vim “write with sudo” trick work?
Many of you have probably seen the command that allows you to write on a file that needs root permission, even when you forgot to open vim with sudo:
:w !sudo tee %
The thing is that I don't get ...
36
votes
20answers
3k views
What is your favorite Firebug tip or trick?
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 ...
33
votes
21answers
7k views
What is your favourite Windbg tip/trick?
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?
...
31
votes
30answers
2k 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 ...
30
votes
8answers
1k views
The Coolest Parts of Windows API
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 ...
30
votes
6answers
18k views
Simplest way to profile a PHP script
What's the easiest way to profile a PHP script?
I'd love tacking something on that shows me a dump of all function calls and how long they took but I'm also OK with putting something around specific ...
28
votes
26answers
3k views
How do you keep your Windows development machine from slowing down?
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
28answers
3k views
Java - Common Gotchas
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 ...
27
votes
50answers
3k views
Favourite command line trick [closed]
bash, bat, whatever...
What is your favourite command line hyperproductivity trick?
25
votes
8answers
805 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 ...
25
votes
24answers
2k views
Common mistakes for CSS-designers to avoid? [closed]
What are some of the most common mistakes made by CSS-Designers?
24
votes
17answers
1k views
slick one-lineRs [closed]
What's your favorite one-liner in R?
Include a short companion example, and limit to one tip per post, please.
Note, ; is cheating.
Example: calculate x[i] / x[i-1] for a vector x,
x <- 1:10
...
23
votes
11answers
3k 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 ...
22
votes
5answers
1k 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.
22
votes
12answers
2k views
Eclipse PDT “tips”?
(Yes, this is a quite opened and general and subjective question -- it's by design, cause I want tips you think are great !)
I'm using Eclipse PDT 2.1 to work in PHP, either for small and/or big ...
21
votes
25answers
3k 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 ...
19
votes
8answers
1k views
Is there some ninja trick to make a variable constant after its declaration?
I know the answer is 99.99% no, but I figured it was worth a try, you never know.
void SomeFunction(int a)
{
// Here some processing happens on a, for example:
a *= 50;
a %= 10;
...
19
votes
6answers
3k views
Want to sell own application. Where to start?
I developed a handy little application that can help a lot of people. I would like to sell it for a few dollars/license, but I do not have any infrastructure for hosting or big money for ...
19
votes
6answers
2k views
Tips and tricks for working with Microsoft Visual Studio solutions and project
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
10answers
2k views
Hidden Features IntelliJ IDEA
Just another Hidden features and tips and tricks WIKI.
After seeing the hidden features of eclipse, java, spring framework I thought we need to have a list of the features, TIPS for IntelliJ too ...