Tagged Questions

0
votes
3answers
129 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 …
5
votes
11answers
423 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 …
17
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 …
3
votes
9answers
382 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 < …
2
votes
8answers
1k 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 th …