Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
Caldera

Novell Wins vs. SCO 380

Aim Here writes "According to Novell's website, and the Salt Lake Tribune, the jury in the SCO v. Novell trial has returned a verdict: Novell owns the Unix copyrights. This also means that SCO's case against IBM must surely collapse too, and likely the now bankrupt SCO group itself. It's taken 7 years, but the US court system has eventually done the right thing ..." No doubt this is the last we will ever hear of any of this.
Medicine

High Fructose Corn Syrup Causes Bigger Weight Gain In Rats 542

krou writes "In an experiment conducted by a Princeton University team, 'Rats with access to high-fructose corn syrup gained significantly more weight than those with access to table sugar, even when their overall caloric intake was the same.' Long-term consumption also 'led to abnormal increases in body fat, especially in the abdomen, and a rise in circulating blood fats called triglycerides.' Psychology professor Bart Hoebel commented that 'When rats are drinking high-fructose corn syrup at levels well below those in soda pop, they're becoming obese — every single one, across the board. Even when rats are fed a high-fat diet, you don't see this; they don't all gain extra weight.'"
Science

Study Shows People In Power Make Better Liars 265

oDDmON oUT writes "MSNBC is reporting that a Columbia Business School study shows those who hold power over others make better liars. According to one of the study's coauthors, 'It just doesn't hurt them as much to do it.' For the average liar, she said, the act of lying elicits negative emotions, physiological stress and the fear of getting caught in a lie. As a result, she added, liars will often send out cues that they are lying by doing things like fidgeting in a chair or changing the rate of their speech. But for the powerful, the impact is very different: 'Power, it seems, enhances the same emotional, cognitive, and physiological systems that lie-telling depletes. People with power enjoy positive emotions, increases in cognitive function, and physiological resilience such as lower levels of the stress hormone cortisol. Thus, holding power over others might make it easier for people to tell lies.'"
Programming

"Mythical Man-Month" Supposedly Busted By MIT Startup 231

An anonymous reader writes "We all know about the Mythical Man-Month, the argument that adding more programmers to a software project just makes it later and later. A Linux startup out of MIT claims to have busted the myth, using an MIT holiday month to hire 20 college student interns to get all their work done and quadrupling its productivity."

Comment Re:Logic? (Score 1) 198

Right. They are ignoring the huge volume of legitimate mail that hotmail/msn silently deletes in violation of the RFCs.

Hotmail doesn't represent the majority of e-mail accounts, and usually it seems to be down solely to the incompetence of whoever is administering hotmail, rather than intentionally violating RFC. Same difference, I suppose, but it's certainly not a majority of the legitimate e-mail they get to them, anyway.

Comment Re:Auto-update feature in Drupal 7 (Score 1) 55

Wrong - the auto-update feature is new to 7.x, so actual sites running 6.x (or earlier) doesn't benefit from it. Also, the new feature will only install and update modules and themes, not 'core', so I'm guessing updating core from 7.0 to 7.1 is probably going to require about as many manipulation steps as you need to go from 6.14 to 6.15. I don't have a lot of experience, but I would not say it's "extremely easy": the stable 6.x version requires you to do a lot of file and configuration manipulation just to go from 6.14 to 6.15 (if you follow all the recommended steps, which I did for my test site recently). It's not hard, it's just not automated.

If you set everything up properly, you just overwrite everything not in the sites directory with the new files, and then possibly run the database update script. Quite trivial.

I actually set up Drupal sites by symlinking to a main drupal installation for files and common modules. All the benefit of the /sites directory without having to use a single root favicon, deal with script-loaded sitemaps, etc.

The Internet

FCC Wants More Time To Craft Broadband Plan 140

adeelarshad82 writes "Julius Genachowski, Federal Communications Commission Chairman, has sent out a letter to Congress requesting more time for the commission to deliver its national broadband plan. According to the stimulus bill passed in early 2009, the FCC was to come up with a plan to provide all citizens with access to broadband services and deliver it to the committee by February 17, 2010. Even though an outline of the plan was released last month, FCC is requesting till March 17, 2010 to finalize the plan."
Education

Ocean-Crossing Dragonflies Discovered 95

grrlscientist writes "While living and working as a marine biologist in Maldives, Charles Anderson noticed sudden explosions of dragonflies at certain times of year. He explains how he carefully tracked the path of a plain, little dragonfly called the Globe Skimmer, Pantala flavescens, only to discover that it had the longest migratory journey of any insect in the world."

Comment Re:10:1... Really? (Score 2, Informative) 752

PHP's primary issue in the database department is it doesn't have a clean way of say, maintaining prepared statement declarations across connection instances. Which is frustrating. APC's handling of shared memory is not the best, either, and the memcached extensions for it need polish. Don't get me started on how PHP treats constants.

Where PHP really fails, however, is in memory usage. It takes up dozens of times as much RAM as a well-built C program would. Facebook would not reduce their computer count by a factor of ten because PHP is that much less efficient at its job, but because more memory would be available in a given machine to handle more instances at once.

Note: PHP 5.3 addresses a lot of this, but though I haven't tested it, I doubt the memory efficiency of PHP is going to get far into the double-digit percentiles of C++ in one shot.

Slashdot Top Deals

A formal parsing algorithm should not always be used. -- D. Gries

Working...