Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Tell the company what's in it for them (Score 3, Insightful) 167

I recently successfully persuaded the company that I freelance for to open source a core part of their product line. The part we open sourced was essentially the engine that powers several other products. I had a whole page of benefits prepared, but the main one was this:

"Your developers don't seem to realise that the core engine is supposed to be a general purpose platform, almost like an operating system - it needs to be very well documented, and it absolutely can't have any code in it that is specific to one of the applications that runs on it. If you open source it and give it its own website and code repo, your developers will finally understand what it is, and stop dumping application specific code into it when then need to implement a new application-level feature. This will save you time because you won't have to be constantly refactoring application code out of the platform."

Also, "open source is cool, and having an open source product will make it easier hiring new developers" seemed to go down well.

The Internet

Blizzard Previews Revamped Battle.net 188

Blizzard updated the official StarCraft II site today with a preview of how the revamped Battle.net will function. They emphasize the social features, competitive matchmaking system, and the ease of sharing mods and maps. Quoting: "When the legacy Battle.net service introduced support for user-created mods such as DotA, Tower Defense, and many others, these user-created game types became immensely popular. But while Battle.net supported mods at a basic level, integration with tools and the mod community wasn't where it needed to be for a game releasing in 2010. The new Battle.net service will see some major improvements in this area. StarCraft II will include a full-featured content-creation toolkit — the same tools used by the StarCraft II design team to create the single-player campaign. To fully harness the community's mapmaking prowess, Battle.net will introduce a feature called Map Publishing. Map Publishing will let users upload their maps to the service and share them with the rest of the community immediately on the service. This also ties in with the goal of making Battle.net an always-connected experience — you can publish, browse, and download maps directly via the Battle.net client. Finding games based on specific mods will also be much easier with our all-new custom game system, placing the full breadth of the modding community's efforts at your fingertips."
Medicine

Startup Tests Drugs Aimed at Autism 171

An anonymous reader sends in this link from Technology Review about a startup company testing drugs that may help those with autism-spectrum disorders — even adults. "Seaside Therapeutics, a startup based in Cambridge, MA, is testing two compounds for the treatment of fragile X syndrome, a rare, inherited form of intellectual disability linked to autism. The treatments have emerged from molecular studies of animal models that mirror the genetic mutations seen in humans. Researchers hope that the drugs, which are designed to correct abnormalities at the connections between neurons, will ultimately prove effective in other forms of autism spectrum disorders. ... The company is funded almost entirely by an undisclosed family investment of $60 million, with $6 million from the National Institutes of Health. [A spokesman] says that Seaside has enough funding to take its compounds through clinical testing and approval."
Image

Surgeon Makes Tutorial DVD For Conscious Open-Heart Surgery 170

Lanxon writes "Swaroup Anand, 23, from Bangalore, was fully conscious as he underwent open-heart surgery. An epidural to the neck, administered at the city’s Wockhardt Hospital, numbed his body during the procedure. Dr Vivek Jawali pioneered the technique ten years ago and has recently released a tutorial on DVD, which gives a step-by-step guide to the procedure for other surgeons to watch and learn from."

Comment There is a good technical reason why this is done (Score 3, Informative) 346

Google is obsessive about reducing HTML size for fast delivery, and that explains two of your observations.

The JS obfuscation is code reduction - all the variable names are replaced with a single letter and the white space stripped in all of google's JS code to reduce the script length (though no doubt they like the fact that this makes reverse engineering hard too.)

Adding the events after the page loads means you can loop over the array of links returned by document.getElementsByTagName("A"), instead of adding the handler as text to every link.

Slashdot Top Deals

"Here's something to think about: How come you never see a headline like `Psychic Wins Lottery.'" -- Comedian Jay Leno

Working...