Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Google

Submission + - CyanogenMod 6.0 Released In To The Wild 8

Jeagoss writes: CyanogenMod is the leading open source replacement ROM for Android based phones. With the 6.0 release, a targeted 8 models of phones have been hit with version 2.2 (Froyo) of Google's Android operating system for mobiles. Have a rooted phone? Been wanting a reason for rooting your phone? Head on over to http://www.cyanogenmod.com/ and check out the forums. I think you'll be quite surprised.
Books

Five Top Publishers Plan Rival to Kindle Format 123

eldavojohn writes "Time Inc., News Corp., Conde Nast, Hearst Corp., and Meredith Corp. are teaming up to create a digital newsstand and somewhat open format that 'can render our content beautifully on those devices that come to market' instead of the gray inked Kindle's energy conscious display. Devices are being made for the new format with the launch coming next year. The format will also target smart phones and tablet computers. Will this pose a threat at all to the Kindle?"

Comment Re:Is This Bus Syndrome? (Score 1) 492

My belief is that projects like CentOS are there because people want to skate on the backs of people and companies who have spent time and money making a good product, just because they don't want to pay for that hard work. I believe this is the flaw in the GNU license, and not open source in general.

As opposed to what, BSD? The GPL is viral in that all derivative products must be contributed back to the community, whereas a less strict open source license would allow CentOS to keep the modified source to themselves as long as they gave due credit. I'm not a fan of the GPL, but this is a complete misrepresentation.

Comment Re:Why are we so worried about RAM (Score 1, Informative) 505

This is a false dichotomy. Most software that uses less RAM is actually also faster.

Nowadays, it's usually faster to recompute than read it all back from RAM, and if an interactive program uses a lot of RAM, then it's likely keeping a lot of junk in memory that it doesn't need.

Wow, this is a perfect example of completely misunderstanding memory-CPU tradeoffs. No. For a non-trivial amount of data, it is never cheaper to recompute the data, at access-time. It may be faster overall, as you might be able to use the freed RAM in a better way elsewhere, but it will never speed the accessing task up.

If you recompute the data constantly, it has to hit RAM and then read it back, unless you're dealing with a dataset small enough to be stored completely in cache, in which case this is a nonissue anyway. More caching is never a bad thing, so long as you set smart defaults for how the caching is done, and you allow the users to configure it. More RAM, in the hands of a smart developer, is a Good Thing (TM).

The Courts

Mininova Starts Filtering Torrents 267

Dreen writes with this snippet from TorrentFreak: "Just a few days before their court appearance, Mininova, the largest BitTorrent site on the Internet, has started to filter content. The site is using a third-party content recognition system that will detect and remove torrent files that link to copyright-infringing files."

Slashdot Top Deals

It is easier to write an incorrect program than understand a correct one.

Working...