
Linus Torvalds, leader of the cult of Linux,
took a swipe at Apple's OS X and Microsoft Vista in the same breath at a conference in Australia last week. Speaking at the linux.conf.au conference in Melbourne, Australia, a few weeks ago, Torvalds called Leopard 'utter crap' and bashed the proprietary OS makers for being greedy, according to Australian reporter Nick Miller in the The Age.
"I don't think they're equally flawed - I think Leopard is a much better system," Torvalds said.
"(But) OS X in some ways is actually worse than Windows to program for. Their file system is complete and utter crap, which is scary." He also scoffed at his rivals' practice of revenue-through-renewal by launching upgrades that require new purchases.
"An operating system should be completely invisible," Torvalds said.
"To Microsoft and Apple (it is) a way to control the whole environment - to force people to upgrade their applications and hardware."
Member since:
2006-01-12
#include (angled bracket)stdio.h(angled bracket)
#include (angled bracket)stdlib.h(angled bracket)
#define THRESHOLD 10
int main ( int argc, char * argv [] )
{
long linux_converts ;
if ( argc != 2 ) {
printf("Usage: %s [number-of-new-linux-installs-this-week]\n", argv[0]);
exit(1);
}
linux_converts = strtol(argv[1], NULL, 10);
if ( linux_converts < THRESHOLD )
printf("WARNING! Must start a FUD war and call every other OS crap!\n");
else
printf("Just keep the peace for now... Talk about 'git' some more.\n");
return 0;
}