Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Real problem? (Score 1) 107

Oyster shells are ground up and fed to chickens as a source of calcium. Chickens need a lot of calcium to keep laying eggs every day, and if they get deficient, they can lay the eggs with thin or even no shells.

Actually, I wouldn't be too surprised if they actually used them in human calcium supplements as well. (I have no idea if they do, but it would seem reasonable.)

Comment Re:wow, what insight... (Score 2) 98

Yes, the human ear can distinguish vertical position as well. Ever wonder why the outer ear (the pinna) is shaped so weird? It's so it will distort sound coming from different directions differently.

Here's an demonstration I saw at the Exploratorium in San Fransisco, but you can easily reproduce this at home.

Close your eyes, and have someone standing beside you jingle a ring of keys near your ear, above, below, and adjacent. It's easy to tell where the sound is coming from.

Now bend the top cartilage over, so the shape of the ear is distorted, and repeat the previous experiment. Now the easy task of detecting direction becomes almost impossible.

Businesses

Submission + - Good News About The Cloud: Everything Fails (forbes.com)

SpitefulBen writes: What lessons should architects of high-availability services take from events such as the March 2011 earthquake and tsunami in Japan and the Amazon Web Services outage of April 2011?

Michael Crandell writes in Forbes, "These events prove that neither public clouds nor private data centers constitute a magic bullet for all the needs of today's businesses. In the case of the Amazon cloud, it may in fact have been its remarkable record of operational excellence that led customers to assume that the inherent scalable, redundant and global nature of the cloud would protect them from having their systems go down. It'(TM)s the ability to fail over to alternative cloud resources pools quickly and seamlessly that is critical to maintaining continuous operations. Already, ZDNet Japan has reported on several new cloud deployments by private companies and government agencies as a direct result of the earthquake."

Science

Submission + - Activists destroy scientific GMO experiment (deredactie.be)

Freggy writes: "In Belgium, a group of activists calling themselves the Field Liberation Movement has destroyed a field which was being used for a scientific experiment with genetically modified potatoes. In spite of the presence of 60 police officers protecting the field, activists succeeded pulling out the plants and sprayed insecticides over them, ruining the experiment. The goal of the experiment was to test potato plants which are genetically modified to be resistant to potato blight. It's a sad day for the freedom of scientific research."

Comment Re:Why put tabs in code anyway? (Score 1) 390

I used to indent parameters across multiple lines like that, but they're just too much of a hassle to maintain like that. I think it's just as readable and less work if you put each parameter on its own line, just give it normal indention:

if (AThing)
{
--->MyFunction(
------->parameter1,
------->parameter2);
}

or normal indention + 1 indent:

if (AThing)
{
--->MyFunction(
----------->parameter1,
----------->parameter2);
}

Comment Testing as interviews (Score 0) 440

If I were applying for jobs, I'd be dubious about one that required an explicit "test" as part of the interview process, since it's hard to know what you mean by "test". Are you going to test my typing speed, or whether I know obscure language trivia (quick: Where was Bjarne Stroustrup working when he invented C++? How do you pronounce "Bjarne Stroustrup"? What does "restrict" mean in C?), or whether it's really a standard interview in disguise.

A normal technical interview process really should be a "test", for all intents and purposes. It's fairly easy to put a candidate in front of a whiteboard and figure out whether the candidate can write a function in your language of choice. (At least, it's easier to test coding ability than many other professional jobs.)

Slashdot Top Deals

And it should be the law: If you use the word `paradigm' without knowing what the dictionary says it means, you go to jail. No exceptions. -- David Jones

Working...