Forgot your password?
typodupeerror
Government

Sen. Bond Disses Internet 'Kill Switch' Bill 171

GovTechGuy writes "Sen. Kit Bond (R-Mo.) has introduced his own cybersecurity legislation with Sen. Orrin Hatch, and he had some harsh words for a competing bill sponsored by the Senate Committee on Homeland Security. Bond said that bill, which has been criticized for allegedly giving the president a 'kill switch' over the Internet, weighs down the private sector with mandates and puts too much on the plate of the already overburdened Department of Homeland Security. Sen. Bond's bill would create a new position in the Pentagon, reporting directly to the president, in charge of coordinating all civilian cybersecurity. Any private-sector involvement would be voluntary and free from legal challenge, rather than mandated."

Comment Re:EOL XP already... (Score 1) 458

One way it can directly hurt other people is by allowing the computer running it to be exploited and turned into a node in a crap spewing botnet.

It also indirectly harms other users because while it maintains a considerable user share people either have to develop for it as a baseline (a way to degrade to this), ensure some sort of compatibility (read: essentially develop two applications), or limit development to the capabilities of IE6.
IE6 having the capacity to slow down the of HTML5 "revolution" scares me.
Wine

Wine Project Frustration and Forking 470

Elektroschock writes "Wine attempts to implement the Windows API layer on Linux. There are some limitations and an important one is the missing DIB engine, bug 421. Chris Howe comprehends the dissatisfaction of core developers with the arbitrary project governance: 'Sorry to sound like a stuck record but the Wine website still lists "write a DIB engine" as a requirement, and every time someone does, the patches disappear down a hole because they're "not right." Someone document what "would be right," or take "write a DIB engine" off the list. I'd love to have a go at documenting it myself, but I don't have the time to reverse engineer it from a few years' worth of rejected solutions.' The latest attempt of Massimo Del Fedel satisfied all requirements set previously for the long standing bug 421, and his optional engine seems to work fine by all Wine quality standards. He seems to be extraordinary stubborn and insusceptible to mobbing. Usually it is extremely frustrating for developers when the goalpost is constantly moved. When is the right time for project members to fork when their chief maintainer does not respond anymore or pursues an adverse commercial agenda?"
Education

Students, the Other Unprotected Lab Animals 236

theodp writes "Slate reports on the horrible — and preventable — death of a young UCLA biochemist in a t-butyl lithium incident, which led a Chemical Health and Safety columnist to the disheartening conclusion that most academic laboratories are unsafe venues for work or study. It's estimated that accidents and injuries occur hundreds of times more frequently in academic labs than in industrial ones. Why? For one thing, Slate says, occupational safety and health laws that protect workers in hazardous jobs apply only to employees, not to undergrads, grad students, or research fellows who receive stipends from outside funders."

Comment Re:Sigh (Score 1) 757

Windows XP is the worlds most widely deployed Desktop operating system. Because of its design, most users run as "Administrator" because that is the default, and it is a pain in the ass to do otherwise. UNIX was developed from the ground up as a multiuser operating system with a clearly defined separation of powers where running as a normal user is fine until you need root, at which point you can easily and temporarily gain privileges when you need them. (Vista has made inroads on this problem, but still has issues.) This means that when you download a file off the net, to install it you have to present a password, which forces the (intelligent) user to think about the repercussions of running code that you just downloaded from *somewhere*. Also, most UNIX-like operating systems (Linux, *BSD, and there is an implementation for OSX [but it isn't as widely used]) use some form of software repository system (apt, yum, ports, etc...) where there is a reasonable expectation that you are getting the 'legitimate' version of the software sans trojans. Honestly, I am having a hard time remembering the last time I needed to 'just download' a binary package since moving to Linux; sure there is the occasional ./configure, make, make install that I have to go through, and sure there could be a trojan in the source, but again it is usually downloaded from mostly trusted repositories that have restrictions on who has commit access. In the Windows world you are forced to download binary packages and hope for the best (Is every rapidshare uploader of that application really out to help you?)
Unix

Taking a Look at Nexenta's Blend of Solaris and Ubuntu 248

Ahmed Kamal writes "What happens when you take a solid system such as Ubuntu Hardy, unplug its Linux kernel, and plug in a replacement OpenSolaris kernel? Then you marry Debian's apt-get to Solaris' zfs file-system? What you get is Nexenta Core Platform OS. Let's take Nexenta for a quick spin, installing and configuring this young but promising system."
The Almighty Buck

$700 Billion Bailout Signed Into Law 857

Many readers reminded us of what no-one can have failed to hear: that the Congress passed and the President signed a $700B bailout bill in an attempt to avert the meltdown of the US economy. The bill allocates $700 billion to the Treasury Department for the purchase of so-called "toxic assets" that have been weighing down Wall Street balance sheets. This isn't particularly a tech story, though tech will be affected as will virtually all parts of the economy, and not just in the US. Among the $110B in so-called pork added to the bill to sway reluctant legislators are extensions of popular tax benefits for business R&D and alternative energy, relief for the growing pool of people subject to the alternative minimum tax, and a provision raising the FDIC's ceiling of guaranteed deposits to $250,000. Some limits were also imposed on executive compensation, though it's unclear whether they will be effective.
Bug

e1000e Bug Squashed — Linux Kernel Patch Released 111

ruphus13 writes "As mentioned earlier, there was a kernel bug in the alpha/beta version of the Linux kernel (up to 2.6.27 rc7), which was corrupting (and rendering useless) the EEPROM/NVM of adapters. Thankfully, a patch is now out that prevents writing to the EEPROM once the driver is loaded, and this follows a patch released by Intel earlier in the week. From the article: 'The Intel team is currently working on narrowing down the details of how and why these chipsets were affected. They also plan on releasing patches shortly to restore the EEPROM on any adapters that have been affected, via saved images using ethtool -e or from identical systems.' This is good news as we move towards a production release!"
Movies

Ghostbusters Is First Film Released On USB Key 448

arcticstoat writes "Are you the USB keymaster? You could be soon if you pick up PNY's new 2GB USB flashdrive, which comes pre-loaded with Ghostbusters. A spokesperson for PNY explained that it comes with a form of DRM that prevents you from copying the movie. 'They have DRM protection,' explained the spokesperson, 'so customers can download the movie onto their laptop or PC if they wish, but they have to have the USB drive plugged in to watch the movie, as the DRM is locked in the USB drive.' The music industry has been playing around with USB flash drives for a few years now, but it hasn't been a massive success yet; will USB movies fare any better?"
Mozilla

Firefox Gets Massive JavaScript Performance Boost 462

monkeymonkey writes "Mozilla has integrated tracing optimization into SpiderMonkey, the JavaScript interpreter in Firefox. This improvement has boosted JavaScript performance by a factor of 20 to 40 in certain contexts. Ars Technica interviewed Mozilla CTO Brendan Eich (the original creator of JavaScript) and Mozilla's vice president of engineering, Mike Shaver. They say that tracing optimization will 'take JavaScript performance into the next tier' and 'get people thinking about JavaScript as a more general-purpose language.' The eventual goal is to make JavaScript run as fast as C code. Ars reports: 'Mozilla is leveraging an impressive new optimization technique to bring a big performance boost to the Firefox JavaScript engine. ...They aim to improve execution speed so that it is comparable to that of native code. This will redefine the boundaries of client-side performance and enable the development of a whole new generation of more computationally-intensive web applications.' Mozilla has also published a video that demonstrates the performance difference." An anonymous reader contributes links the blogs of Eich and Shaver, where they have some further benchmarks.

Comment Re:Recomendation to dissidents (Score 3, Interesting) 155

The RIAA wouldn't need to send the police for your computers since they can subpoena Google to get the evidence that they need. They do that for search queries now. Uploading your personal data gives law enforcement one stop shopping to your information. A "portal" to all of your personal information. How convenient...

Slashdot Top Deals

The computer is to the information industry roughly what the central power station is to the electrical industry. -- Peter Drucker

Working...