867
votes
247answers
74k 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, o …
3
votes
5answers
33 views
SQLite column aliasing
Premise
I recently ran into a bug in a select statement in my code. It was fairly trivial to fix after I realized what was going on, but I'm interested in finding a way to make s …
1
vote
6answers
82 views
Tips or tricks for translating sql joins from literal language to SQL syntax?
I often know exactly what I want, and know how tables are related in order to get it, but I have a real hard time translating that literal language knowledge to SQL syntax when it …
29
votes
30answers
4k 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.
…
6
votes
11answers
301 views
Is localization always “A Good thing”? [closed]
It seems that localization of your application is all the rage these days, and sure enough the people I know outside the IT industry seem to prefer it.
I can't help but wonder if …
0
votes
0answers
97 views
Hidden features of Go? [closed]
Might be a little bit early to ask, but what "hidden" features have you found while playing with Go?
5
votes
4answers
108 views
What shapes can you Draw in Css?
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 …
7
votes
21answers
820 views
What’s your Modus Operandi to solving a (programming) problem?
While solving any programming problem, what is your modus operandi? How do you fix a problem?
Write everything you can about the observable behaviors of the bug or problem?
Take …
55
votes
20answers
1k 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 ev …
54
votes
45answers
9k 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 …
87
votes
24answers
5k views
jQuery Tips and Tricks
In the spirit of all the meta-questions of tips and tricks for various languages:
No conflict-mode
jQuery.noConflict();
"Run this function to give control of the $ variable …
14
votes
23answers
2k views
What is the most useful R trick?
In order to share some more tips and tricks for R, what is you single-most useful feature or trick? Clever vectorization? Data input/output? Visualization and graphics? Statist …
6
votes
9answers
247 views
What are some quick tips for increasing jQuery performance?
What are some quick tips for increasing jQuery performance?
1
vote
1answer
47 views
Quick way to find what thread asserted in gdb?
When my Cocoa app hits an assertion in the code, gdb gives me a prompt as expected, but it's never (ok, rarely) in the right thread.
I know I can use Xcode's GUI debugger and it …
-6
votes
5answers
352 views
What hidden functionality do you put in your software?
In my software, I put in the following functionality that helps me debug the program:
By typing crashme into a text field I can crash the application deliberately. We use this to …
