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

 



Forgot your password?
typodupeerror
×
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."
Programming

What Do You Call People Who "Do HTML"? 586

gilgongo writes "It's more than 10 years since people started making a living writing web page markup, yet the job title (and role) has yet to settle down. Not only that, but there are different types of people who write markup: those that approach the craft as essentially an integration task, and those that see it as part of UI design overall. The situation is further complicated by the existence of other roles in the workplace such as graphic designer and information architect. This is making recruitment for this role a real headache. So, how do you describe people who 'do HTML' (and CSS and maybe a bit of JavaScript and graphics manipulation)? Some job titles I've seen include: Design Technologist, Web Developer, Front-end Developer, HTML/CSS Developer, Client-side Developer and UI Engineer. Do you have any favourite job titles for this role?"

Slashdot Top Deals

I've noticed several design suggestions in your code.

Working...