Tagged Questions
The thedailywtf tag has no wiki summary.
25
votes
6answers
2k views
I don't get this C/C++ Joke
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;
char data_string[15];
...
...
22
votes
28answers
2k views
Is this a typical work environment, or am I just unlucky?
I've graduated from college last May with a CS degree and have been working for a state-government agency ever since. This place, however, isn't like how I imagined the "real world" would be:
I've ...
10
votes
3answers
1k views
IE doesn't apply css loaded through ajax
As every web developer finds out the hard way sooner or later, IE does not apply css styles loaded via ajax. I know I could just put that css in a more global place, but I'm wondering if there happens ...
5
votes
11answers
519 views
What's the most ridiculous name you've given to a method?
Rules:
You have to be the one who named it.
It has to have made it into production.
Mine: (the comment is the original comment I added)
//WTF?? this should be rethough
private static ...
4
votes
3answers
133 views
Unable to locate the Bug
I was recently on The Daily WTF when I came across this old post. In it the author mentions that one of the programmers changed this code:
int main (int argc, char **argv)
{
int x;
char ...
3
votes
7answers
449 views
How would you implement the pilloried function in the Daily WTF?
The Daily WTF for 2008-11-28 pillories the following code:
static char *nice_num(long n)
{
int neg = 0, d = 3;
char *buffer = prtbuf;
int bufsize = 20;
if (n < 0)
{
...
3
votes
8answers
5k views
Finding the LCM of a range of numbers
I read an interesting DailyWTF post today, "Out of All The Possible Answers..." and it interested me enough to dig up the original forum post where it was submitted. This got me thinking how I would ...
1
vote
1answer
316 views
FileSystemObject moves a file even when is being copied over FTP
I have a program that checks periodically for new files, and then process them.
Because I want to be safe that the file is not being copied over FTP, I move the file first.
The strange thing is that ...
0
votes
3answers
146 views
Help with a function I found in a VB.NET 2.0 app I am maintaining
I was going through some reports that were supposed to be displaying 2/1/2009 - 2/28/2009, but instead was displaying 2/1/2009 - 3/1/2009. I have narrowed the bug down to this code, any suggestions?
...