149
votes
239answers
23k views
Confessions of your worst WTF Moment. (What not to do.)
What wonderful advice can we learn from the "What not to do" school of hard knocks?
1
vote
0answers
84 views
Insanely slow web site performance [closed]
Hi everyone,
I recently started development work on an existing web site that has been loading pages extremely slowly. I know that it is being served by Apache, but I don't have a …
1
vote
3answers
43 views
ImmutableObjectAttribute : WTF ?
I was looking for a built-in attribute to specify that a type is immutable, and I found only this one :
System.ComponentModel.ImmutableObjectAttribute
Using Reflector, I checked …
14
votes
6answers
987 views
I don’t get this C/C++ Joke
Hi,
after reading this article on thedailywtf.com, I'm not sure that I really got the joke...
It says there that some guy changed the code from
int function()
{
int x;
cha …
1
vote
2answers
44 views
Why is EventListenerList traversed backwards in fireFooXXX()?
I don't understand the rationale of this code, taken from javax.swing.event.EventListenerList docs:
protected void fireFooXXX() {
// Guaranteed to return a non-null array
…
9
votes
7answers
499 views
Java Reflection: Why is it so bad?
I've always avoided Java reflection soley based on its reputation for slowness. I reached a point in the design of my current project where being able to use it would make my code …
0
votes
0answers
92 views
stackoverflow alerts [closed]
Why can't stackoverflow just email me immediately when someone responds to my questions? I feel like an ahole when I find out someone posted on a comment I asked a month ago and I …
1
vote
3answers
352 views
Ubuntu + virtualenv = a mess? virtualenv hates dist-packages, wants site-packages
Can someone please explain to me what is going on with python in ubuntu 9.04?
I'm trying to spin up virtualenv, and the --no-site-packages flag seems to do nothing with ubuntu. I …
0
votes
3answers
124 views
“Microsoft.CSharp.targets” file is missing
My
C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.CSharp.targets
file is missing from my computer. I closed my IDE, went on lunch, and then when I opened my IDE again no C# proj …
3
votes
4answers
173 views
Why does Cache.Add return an object that represents the cached item?
Hi folks,
this is from MSDN about the differences between Adding or Inserting an item the ASP.NET Cache:
Note: The Add and Insert methods have
the same signature, but there …
5
votes
13answers
501 views
What would you do if you just had this code dumped in your lap?
Man, I just had this project given to me - expand on this they say.
This is an example of ONE function:
<?php
//500+ lines of pure wonder.
function page_content_vc($content) …
15
votes
14answers
921 views
What’s the most unsound program you’ve had to maintain?
I periodically am called upon to do maintenance work on a system that was built by a real rocket surgeon. There's so much wrong with it that it's hard to know where to start.
N …
12
votes
14answers
2k views
Why do people hate SQL cursors so much?
I can understand wanting to avoid having to use a cursor due to the overhead and inconvenience, but it looks like there's some serious cursor-phobia-mania going on where people are …
2
votes
4answers
265 views
Some questions about special operators i’ve never seen in C++ code.
I have downloaded the Phoenix SDK June 2008 (Tools for compilers) and when I'm reading the code of the Hello sample, I really feel lost.
public
ref class Hello
{
//--------------- …
5
votes
2answers
521 views
WTF is wtf? (in WebKit code base)
I downloaded Chromium's code base and ran across the WTF namespace.
namespace WTF {
/*
* C++'s idea of a reinterpret_cast lacks sufficient cojones.
*/
template&l …
