- Feature Articles
- CodeSOD
- Error'd
- Forums
-
Other Articles
- Random Article
- Other Series
- Alex's Soapbox
- Announcements
- Best of…
- Best of Email
- Best of the Sidebar
- Bring Your Own Code
- Coded Smorgasbord
- Mandatory Fun Day
- Off Topic
- Representative Line
- News Roundup
- Editor's Soapbox
- Software on the Rocks
- Souvenir Potpourri
- Sponsor Post
- Tales from the Interview
- The Daily WTF: Live
- Virtudyne
Admin
Looks fine to me: [image]
Admin
Admin
This is obviously a client side error. His browser is not Kosher compatible.
Admin
TopC0d3r, I suspect you're being generous (as always) to your colleagues. I bet you personally handle the machine language portions of those sites, which you've lovingly crafted into a nine-tier architectural framework. That way, instead of having to worry about gibberish like MOVSB and PUSH, your colleagues (underlings?) get to use easily understood high-level classes with names like "SecureSessionOptimizationStorePlugIn" and "PersistanceMediumWidgetMarshaller<UrlSnippetManager>."
Am I wrong?
Admin
He's not lying. The "choppity chop chop cha-pow" is real!
Admin
Man that ASP.NET site is full of WTF-y goodness. Besides the weirdness of the pickles, the first question is why they are apparently compiling a live site with custom errors off (which is why you see the ASP.NET detailed error page) and debugging on (which is why you see the source code).
Furthermore, they are using a SqlConnection withou putting it in a Using block, and the warning about a variable declaration without an As class means they are compiling with Option Explicit Off, which tends to be a good way to turn compilation errors into runtime errors (and isn't even the default, so they set it explicitly).
Admin
Who still uses ie3?
Admin
How do you know that the aluminum in the blocks wasn't going to transmute into something else (like mercury) on January 1, 2000? Did you do any testing to make sure it wouldn't?
GE was only trying to be safe!
Admin
How can they be all the same? You can't compare number of boxes to length or area.
Admin
You can flame the creator of that site directly. He's posted on this thread.
Name was Russell (I mean Steve).
Admin
Shouldn't it be the "Temple of D'oh"?
Admin
The "Y2k Ready" stickers were clearly a tongue-in-cheek marketing gimmick, not a WTF.
Admin
Admin
Admin
Related to the Python serialization library, perhaps?
http://www.python.org/doc/2.5.2/lib/module-pickle.html
Admin
Sorry. Didn't read before posting.
Admin
Then say "hu", possessive form "hus".
Admin
Rubbers at both ends? Sorry, I don't swing that way.
Admin
Am I missing something here, or was P.T.Barnum an early advocate of machine code as opposed to ludicrous and unwieldy frameworks?
Admin
The Google page works fine in Firefox + Safari + Opera. The real WTF is Stephen Shwarz and whatever retarded browser he's using.
Admin
"There's a sucker born every minute."
The implication being that cthulhu got trolled.
Admin
Admin
I rather code my websites using Good Ol' Assembler...
(RLY? ASM to IL)
Admin
Admin
What gets me about pickles is that its not just some random throwaway "foo" local variable thats being declared. "Pickles" is the name of the class. Da fuck?
Admin
Why can't Tyler see the three whitespaces in the captcha image??? pfffft
Admin
I do. I've got a couple of old computers still running Win98, and since Microsoft Update requires IE 5.5 or later, it's not possible to upgrade.
Admin
Admin
Windows 98 shipped with IE 4. Why not use it (or better yet, do some searching to find installers for IE 5 and 5.5, and then use Windows Upgrade to get the latest IE 6)?
(I never imagined I would be telling someone to install IE 6)
Admin
Dish Network, where we never have user visible software bugs. Eve
Admin
Agreed. Why would anyone want to type teh codes when they can have it emailed to them instead?
Admin
What is that, IE4?
Captcha: haero - to be brought to a standstill. Seems appt.
Admin
The real WTF is that people are actually defending TopCoder's argument.
Admin
Well, so this just leaves to ask... how do you scratch your head on several levels? Isn't that painful?
pa-tching!
Admin
I witnessed the Canadian military Y2K testing a ship. They were putting stickers on every item in the inventory that was Y2K compliant. There were stickers on fire-extinguishers and tools like drills. Where they had trouble though was when manufacturers(one was a wall clock) told them to bugger-off when asked about their tool's Y2K status.
Admin
My favourite Y2K story is from the Rinkworks Computer Stupidites pages - it's about an Intranet page with the messages:
29.12.99 (...some headline...) 29.12.99 (...some headline...) 30.12.99 (...some headline...) 02.01.100 Success! No Y2K bugs!
Admin
Admin
And I thought finding a "Y2K Ready" sticker on a telephone cable terminal was odd
CAPTCHA: luptatum
Admin
The bike could have an onboard computer displaying the time and date.
Admin
Yeah but your using what IE 4 in that example. IE4 didn't know a modern CSS style if it walked up and sucker punched him.
Admin
The web gurus for This American Life are particularly notorious, apparently, for silliness. Not much of a surprise considering the show and its very entertaining cast.
Links to their show MP3s, for instance, look like this:
http://audio.thisamericanlife.org/jomamashouse/ismymamashouse/314.mp3
Speaking of their show MP3s:
http://www.dirtygreek.org/journal/journalId/2006
Admin
Process run amok.
One more reason not to work for any behemoth company.
Admin
(old thread, I know) ... something else rather WTF-y from This American Life is their keypress handling javascript:
function checkCR(evt) { var evt = (evt) ? evt : ((event) ? event : null); var node = (evt.target) ? evt.target : (evt.srcElement) ? evt.srcElement : null); if ((evt.keyCode == 13) && (node.type=="text")) {return false;} } document.onkeypress = checkCR;
whoa. I like ?: as much as (probably more than) your average coder, but that is mind-bending. Reminds me of the eleven-ary operator article from a while ago...