Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:COBOL (Score 4, Funny) 387

Reminds me of a good joke:

In 2010, a COBOL programmer developed a rare fatal disease for which there was no known cure. The programmer was cryogenically frozen, to be revived when a cure had been found.

In the year 9999, the programmer is revived. When he wakes up, he asks the doctors what year it is, and when they tell him, he asks if they finally found a cure for his disease. They answered, "We're sorry, but no, we still haven't found a cure. But it's almost the year 10,000, you see, and you know COBOL..."

Comment Re:It's not 99 cents (Score 1) 134

Even if the monthly fee is the same as the fee for a service-only contract (in which case the USA phone market is even more screwed up than I thought)

You haven't been following mobile phone stories on Slashdot much, have you? For years, you paid the same price for monthly service whether you got a subsidized phone from the carrier, had completed the two-year contract, or didn't get a phone from the carrier at all and brought your own. T-Mobile changed that about 5 years ago, when they started offering a plan that was $20/month cheaper if you didn't have a contract and subsidized phone. Now that T-Mobile is advertising this more, the other carriers are just starting to implement similar plans.

Comment Re:Actionscript Scoping (Score 1) 729

I ran into one really bizarre bug in ActionScript several years ago. I can't remember all the details exactly, but I think that if you try to redeclare a variable as a different type in the same function, the redeclaration is ignored and the type stays the same.

Integer a;
... bunch of code ...
String b;
b = "foo";

That code would give an error about assigning a string to an integer variable. Of all possible ways to handle redeclaring a variable, ActionScript picked the worst.

Slashdot Top Deals

"Gravitation cannot be held responsible for people falling in love." -- Albert Einstein

Working...