Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Hmmm .... (Score 1) 125

I went to Jamaica in 2001, and all those poor, poor Jamaicans running the tourist nick nack stalls had cell phones.

But did they have refrigerators?

Back in the 80s and 90s, there was sort of a stigma to having a cell phone in America--namely only rich/important people had cell phones because wired phones in the home were relatively inexpensive. We spent a ton of money wiring America back in the 1930s and 1940s because that was the only way to do it back then. So people had telephones in their houses because the government essentially subsidized the expense of a phone.

Compared with the expense of running wires all over the place, cell towers are a heck of a lot cheaper. Build a tower over here, serve 1000 people. No need to run 1000 wires. Which is why they became popular in countries which didn't have the infrastructure to begin with.

Comment Re:Not me. (Score 1) 140

I do think "Should I fire-up Subsonic and pre-load a bunch of music for later off-line use or stream now from Pandora?"

And the reason you have to think that way is due to various real world limitations.

Why in the world would you want to pre-load a bunch of music for later off-line use? Well, obviously, because you're going somewhere where you will be unable to access the Internet conveniently. You're taking a plane ride (and don't want to pay for Internet access). You're visiting a canyon or a tropical island where Internet access is not available.

If I have a sudden urge to listen to Illmatic, I think, "I want to listen to Illmatic." What I want is to do is press a couple of buttons on my phone and have it start playing. Wherever I am. That's what I want.

But the reality of the world is that I, unfortunately, have to think about these things.

Comment Re:4 of 5 contained zero of the claimed ingredient (Score 1) 412

The ones I hear talking about this say that government and regulation should be as SMALL as possible; that OVER REGULATION and large government is bad.

It's interesting, though, that these regulations usually come along when things go wrong. The ones who complain about "over regulation" are the ones who want to get away with something but they can't because there are regulations against it.

In other words, who defines what "Over regulation" is? Can you give me an example of an industry that is "over regulated"? Of what particular regulations would be "over"?

Comment Re:Fraudulent herbal supplements? (Score 1) 412

There was nothing preventing concerned citizens from performing their own private testing of products, publishing the results, and then initiating lawsuits against the offenders.

Right. I could take some of the pills I buy and stick it in the DNA analyzer that I just happen to have in my backyard.

What? You don't have a DNA Analyzer in your backyard? I thought everybody had one...

Comment Re:No Kidding (Score 1) 220

Actually, the one I hate is:

if ($variable == false) {
      doSomethingInteresting($variable);
}

and one of my co-workers does:

if ($variable == false)
      {
      doSomethingInteresting($variable);
      }

Of course, my code is beautiful and everyone else's is terse and ugly and everyone should write code the same way that I do. Try suggesting that to a group of programmers and see how far it gets you. Generally, it's not worth the argument--you will waste tons of everyone's time trying to come up with an agreement.

As the thread suggests, one advantage to different coding styles is that you can generally tell who wrote what and, if there seems to be a bug, you can track them down and tell them to fix it in that ugly mess. In our office, we have the rule that if you go around changing code style, you now own that code and are responsible for it. About the only issue we've run into is that people's styles evolve over time. So the guy right out of school may have a certain style that changes as he is exposed to more styles.

My favorite story was when someone was trying to push variable naming standards. If it was a C string, the variable name should begin with "sz" (for string, zero terminated). I suggested that instead of doing that, maybe we should just put a dollar-sign at the end. Laughter ensued and that ended that.

Slashdot Top Deals

Understanding is always the understanding of a smaller problem in relation to a bigger problem. -- P.D. Ouspensky

Working...