The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
6answers
3k 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]; ... ...
15
votes
4answers
4k 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 ...
9
votes
10answers
9k 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 ...
4
votes
3answers
141 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
472 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) { ...
2
votes
1answer
360 views

Android mediaPlayer - is there an “isPrepared()” or “getStatus()” method?

I'm having issues with Android's MediaPlayer. It seems like it's missing important functionality, mainly a way to get the current status of MediaPlayer or to find out if it's prepared. I know there's ...
1
vote
1answer
519 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 ...