<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Bill Gates: “Our Most Potent Operating System Competitor is Linux”</title>
	<atom:link href="http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/</link>
	<description>Free Software Sentry – watching and reporting maneuvers of those threatened by software freedom</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:00:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: CHub</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67684</link>
		<dc:creator>CHub</dc:creator>
		<pubDate>Wed, 24 Jun 2009 23:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67684</guid>
		<description>Just a few spello&#039;s  like it&#039;s for its.  And in one place I used &#039;have&#039; in place of &#039;has&#039;.</description>
		<content:encoded><![CDATA[<p>Just a few spello&#8217;s  like it&#8217;s for its.  And in one place I used &#8216;have&#8217; in place of &#8216;has&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciprian Mustiata</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67641</link>
		<dc:creator>Ciprian Mustiata</dc:creator>
		<pubDate>Wed, 24 Jun 2009 20:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67641</guid>
		<description>http://en.wikipedia.org/wiki/Comparison_of_C_Sharp_and_Java#Generics
http://en.wikipedia.org/wiki/Type_erasure
Here is one case: (code from wikipedia)
ArrayList li = new ArrayList();
ArrayList lf = new ArrayList();
if (li.getClass() == lf.getClass()) // evaluates to true
  System.out.println(&quot;Equal&quot;);
Also look here:
T instantiateElementType(List arg)
{
  return new T(); //causes a compile error
}

In fact the second case is somehow wide spread in our codebase as  we need it as a part of type enforcement.</description>
		<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Comparison_of_C_Sharp_and_Java#Generics" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_C_Sharp_and_Java#Generics</a><br />
<a href="http://en.wikipedia.org/wiki/Type_erasure" rel="nofollow">http://en.wikipedia.org/wiki/Type_erasure</a><br />
Here is one case: (code from wikipedia)<br />
ArrayList li = new ArrayList();<br />
ArrayList lf = new ArrayList();<br />
if (li.getClass() == lf.getClass()) // evaluates to true<br />
  System.out.println(&#8220;Equal&#8221;);<br />
Also look here:<br />
T instantiateElementType(List arg)<br />
{<br />
  return new T(); //causes a compile error<br />
}</p>
<p>In fact the second case is somehow wide spread in our codebase as  we need it as a part of type enforcement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciprian Mustiata</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67635</link>
		<dc:creator>Ciprian Mustiata</dc:creator>
		<pubDate>Wed, 24 Jun 2009 20:15:30 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67635</guid>
		<description>Mr Roy, I so not want to take here this as a platform war, as it has no purpose. For instance when I&#039;ve said C++ as it has big compile time, the list does not stop here. Here is not about to blame one platform component or another. The &quot;compilation time&quot; as argument for C++ was in short: it is really hard to contribute on a entry level machine when the project grows. Think on OpenOffice and is hard to set up the bar of contributing as machine and codebase you want to contribute is not very easy to comprehend. Also on list of C++ are missing of UML integration (both SD and Visual Studio have them), unit testing (it can be done with Qt, but is trickier for entry level), no refactor support (excluding Eclipse&#039;s rename identifier), bad code completion support on high usage of macros (which happen to be OpenCascade + Qt world).

Ok, please note that I had carefully said that JVM have no support of Generics. The Generics encapsulation are checked at compiling level. This approach keeps binary compatibility (so is for good reasons) but in fact you can take a &quot;generic&quot; class and replace with one non generic. Also, without wanting to enter in details, I say that this is why .NET 4.0 adds support of covariance just because the .NET 2.0 offers support for Generics. Java have no such problem as it does not &quot;care&quot; at the bytecode level.

So in Java, ArrayList is translated at bytecode level as ArrayList, when in C#, List is in no way compatible with List, so using other type instead will make at runtime level to nothing happen.

The type enforcement can be done in a lot of ways, there are adnotations (the preferred way to do it on Java 5 and up, which adnotations are much better implemented in Java), but is not based on Generics. In Java also a complex generic code goes to a lot of conversions with generics, so it gets down in speed, when the equivalent .NET implementation of generics, will improve performance and memory consumption (excluding the fact that you functions associated with every type).

At the end I want to say a thing: both C++ and Java have their own strengths. C++ is snappy, no JIT occur at any given time, it integrates seamlessly with any C or C++ library, and with Qt things goes pretty decent. I am sure that is a very good reason to implement Photoshop Elements in it, or the best use case IMHO is for phones because no JIT-ing is involved. Java also it have a lot of professional grade tools. And at least for web development using EE frameworks is great. A bit big, but is great.

Anyway, C# at least in combination with word: Desktop (and you may note: only on Windows) is pretty great competitor. Language/VM wise is a powerful implementation, let&#039;s say comparable with Java. Also, SharpDevelop (I don&#039;t care about full priced VS) offers as the last stable release: code quality checker, code coverage, unit testing integration, integrated profiler with minimal overhead, one build tool, versioning control integration, visual designer tool. This as features at least is the same with NetBeans on desktop, but yet I think that Windows Forms looks better than Swing on Windows. And at the end is: on our project, was better fitted than other platforms. It does not mean that other were bad, but in our evaluation, .NET as development platform was the best on that given moment.</description>
		<content:encoded><![CDATA[<p>Mr Roy, I so not want to take here this as a platform war, as it has no purpose. For instance when I&#8217;ve said C++ as it has big compile time, the list does not stop here. Here is not about to blame one platform component or another. The &#8220;compilation time&#8221; as argument for C++ was in short: it is really hard to contribute on a entry level machine when the project grows. Think on OpenOffice and is hard to set up the bar of contributing as machine and codebase you want to contribute is not very easy to comprehend. Also on list of C++ are missing of UML integration (both SD and Visual Studio have them), unit testing (it can be done with Qt, but is trickier for entry level), no refactor support (excluding Eclipse&#8217;s rename identifier), bad code completion support on high usage of macros (which happen to be OpenCascade + Qt world).</p>
<p>Ok, please note that I had carefully said that JVM have no support of Generics. The Generics encapsulation are checked at compiling level. This approach keeps binary compatibility (so is for good reasons) but in fact you can take a &#8220;generic&#8221; class and replace with one non generic. Also, without wanting to enter in details, I say that this is why .NET 4.0 adds support of covariance just because the .NET 2.0 offers support for Generics. Java have no such problem as it does not &#8220;care&#8221; at the bytecode level.</p>
<p>So in Java, ArrayList is translated at bytecode level as ArrayList, when in C#, List is in no way compatible with List, so using other type instead will make at runtime level to nothing happen.</p>
<p>The type enforcement can be done in a lot of ways, there are adnotations (the preferred way to do it on Java 5 and up, which adnotations are much better implemented in Java), but is not based on Generics. In Java also a complex generic code goes to a lot of conversions with generics, so it gets down in speed, when the equivalent .NET implementation of generics, will improve performance and memory consumption (excluding the fact that you functions associated with every type).</p>
<p>At the end I want to say a thing: both C++ and Java have their own strengths. C++ is snappy, no JIT occur at any given time, it integrates seamlessly with any C or C++ library, and with Qt things goes pretty decent. I am sure that is a very good reason to implement Photoshop Elements in it, or the best use case IMHO is for phones because no JIT-ing is involved. Java also it have a lot of professional grade tools. And at least for web development using EE frameworks is great. A bit big, but is great.</p>
<p>Anyway, C# at least in combination with word: Desktop (and you may note: only on Windows) is pretty great competitor. Language/VM wise is a powerful implementation, let&#8217;s say comparable with Java. Also, SharpDevelop (I don&#8217;t care about full priced VS) offers as the last stable release: code quality checker, code coverage, unit testing integration, integrated profiler with minimal overhead, one build tool, versioning control integration, visual designer tool. This as features at least is the same with NetBeans on desktop, but yet I think that Windows Forms looks better than Swing on Windows. And at the end is: on our project, was better fitted than other platforms. It does not mean that other were bad, but in our evaluation, .NET as development platform was the best on that given moment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Bixler</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67630</link>
		<dc:creator>Roy Bixler</dc:creator>
		<pubDate>Wed, 24 Jun 2009 19:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67630</guid>
		<description>According the Wikipedia, generics have existed in Java since 2004:

http://en.wikipedia.org/wiki/Generics_in_Java

In any case, I hope you are keeping your options open.</description>
		<content:encoded><![CDATA[<p>According the Wikipedia, generics have existed in Java since 2004:</p>
<p><a href="http://en.wikipedia.org/wiki/Generics_in_Java" rel="nofollow">http://en.wikipedia.org/wiki/Generics_in_Java</a></p>
<p>In any case, I hope you are keeping your options open.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciprian Mustiata</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67626</link>
		<dc:creator>Ciprian Mustiata</dc:creator>
		<pubDate>Wed, 24 Jun 2009 17:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67626</guid>
		<description>Yes, I&#039;ve did. That was the option regarding C++. The issue was the build times on it. On SharpDevelop I have right now 5 seconds (on my workstation) to 40 (on an Atom based CPU) build times for this project which has 650 classes. Even considering that I will do build time tricks (which I can do them on .NET also, but this is not the point), I hardly can achieve under 1 minute build on the same machine using Qt that took few seconds afterward (with the actual code ported).

The single compelling option as platform was Java, but JVM have no generics support and as CAM/CAE parameters and parametric modelling programming may break very easy your data, so the second technology was not preferred. 

So here was only about picking a technology that few developers (to be more precise: two) can create under an year on top of a CAD opensource framework (OpenCascade) a full working concept of a CAD/CAM/CAE application. Linux WAS considered as an option but there were many small limitations (and the biggest was the build time and harder to setup environment for some, as QMake was fairly easy to use) that makes us run away.</description>
		<content:encoded><![CDATA[<p>Yes, I&#8217;ve did. That was the option regarding C++. The issue was the build times on it. On SharpDevelop I have right now 5 seconds (on my workstation) to 40 (on an Atom based CPU) build times for this project which has 650 classes. Even considering that I will do build time tricks (which I can do them on .NET also, but this is not the point), I hardly can achieve under 1 minute build on the same machine using Qt that took few seconds afterward (with the actual code ported).</p>
<p>The single compelling option as platform was Java, but JVM have no generics support and as CAM/CAE parameters and parametric modelling programming may break very easy your data, so the second technology was not preferred. </p>
<p>So here was only about picking a technology that few developers (to be more precise: two) can create under an year on top of a CAD opensource framework (OpenCascade) a full working concept of a CAD/CAM/CAE application. Linux WAS considered as an option but there were many small limitations (and the biggest was the build time and harder to setup environment for some, as QMake was fairly easy to use) that makes us run away.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Schestowitz</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67623</link>
		<dc:creator>Roy Schestowitz</dc:creator>
		<pubDate>Wed, 24 Jun 2009 16:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67623</guid>
		<description>Have you considered Qt yet? I liked it when I developed with it and it works smoothly across platforms.</description>
		<content:encoded><![CDATA[<p>Have you considered Qt yet? I liked it when I developed with it and it works smoothly across platforms.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciprian Mustiata</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67622</link>
		<dc:creator>Ciprian Mustiata</dc:creator>
		<pubDate>Wed, 24 Jun 2009 16:03:34 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67622</guid>
		<description>I don&#039;t understand. I am a .NET software developer. I work on opensource project. I tried to port it to Linux (trough Mono). I work for a CAD application. When it comes to develop the same thing using Java, it freaks me out. Language is weak on Generics (it does not support them), is fairily comparable on integrating scripting languages.The reason that WIndows/.NET still stands is on desktop applications.

Can you imagine other framework than Qt or Python to make a desktop application that look almost integrated in your desktop? Gtk and GLib OO programming is a joke. Also, if you put the IDE power on the platform as a PAID developer that need to feed family and to invest in hardware to contribute back to opensource (as most software works today), even paying an IDE in a closed source environment I think is not have critics as long as I do have productivity.

As matter of fact I use SharpDevelop and I test small details on Visual C# Express.

It&#039;s easy to speak about freedom as long as you consume it, but I know that I have to write a highly complex parametric code, that generics are mandatory and I remain with two options (Java is not one of them) on Linux: Mono and C++. If you put that C++ for large projects translates in 1 hour build time, I think that if someone will come and say: take your project and rewrite to use Mono, I would say: I will give to you my help, when you want to donate time to do it?

The last thing that I complain on Linux is that I bought an ATI board (because AMD was pretty opensource for some time) and even now it&#039;s OpenGL does not work smooth. Is a 4850 and is an entry level professional card. I use for a &quot;single game&quot;, Vista Aero which works almost without a glitch. 

What I want to point here is the fine border between freedom and hypocrisy and persons dictates over their personal preferences to write a thing in this or that, but it does not match when we talk on real life developers that have some time to spare, and if tools are wrong, they should better use a SharpDevelop (let&#039;s say) and at the end to port it to Mono, than to use makefiles and other abnormalities like C/GLib only because an user would like for their fun to consider that this framework is their first love, but not doing programming with it, but only making fun of developers to use that framework. Look on Gnome 3 that will work for at least one year to remove deprecated symbols and technologies. Sounds as fun, isn&#039;t so?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t understand. I am a .NET software developer. I work on opensource project. I tried to port it to Linux (trough Mono). I work for a CAD application. When it comes to develop the same thing using Java, it freaks me out. Language is weak on Generics (it does not support them), is fairily comparable on integrating scripting languages.The reason that WIndows/.NET still stands is on desktop applications.</p>
<p>Can you imagine other framework than Qt or Python to make a desktop application that look almost integrated in your desktop? Gtk and GLib OO programming is a joke. Also, if you put the IDE power on the platform as a PAID developer that need to feed family and to invest in hardware to contribute back to opensource (as most software works today), even paying an IDE in a closed source environment I think is not have critics as long as I do have productivity.</p>
<p>As matter of fact I use SharpDevelop and I test small details on Visual C# Express.</p>
<p>It&#8217;s easy to speak about freedom as long as you consume it, but I know that I have to write a highly complex parametric code, that generics are mandatory and I remain with two options (Java is not one of them) on Linux: Mono and C++. If you put that C++ for large projects translates in 1 hour build time, I think that if someone will come and say: take your project and rewrite to use Mono, I would say: I will give to you my help, when you want to donate time to do it?</p>
<p>The last thing that I complain on Linux is that I bought an ATI board (because AMD was pretty opensource for some time) and even now it&#8217;s OpenGL does not work smooth. Is a 4850 and is an entry level professional card. I use for a &#8220;single game&#8221;, Vista Aero which works almost without a glitch. </p>
<p>What I want to point here is the fine border between freedom and hypocrisy and persons dictates over their personal preferences to write a thing in this or that, but it does not match when we talk on real life developers that have some time to spare, and if tools are wrong, they should better use a SharpDevelop (let&#8217;s say) and at the end to port it to Mono, than to use makefiles and other abnormalities like C/GLib only because an user would like for their fun to consider that this framework is their first love, but not doing programming with it, but only making fun of developers to use that framework. Look on Gnome 3 that will work for at least one year to remove deprecated symbols and technologies. Sounds as fun, isn&#8217;t so?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: josvazg</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67586</link>
		<dc:creator>josvazg</dc:creator>
		<pubDate>Wed, 24 Jun 2009 11:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67586</guid>
		<description>2001? 
The halloween docs again?

Well, even if it really happens it is taking so much time that Microsoft will do a lot of cash in their way down.

Am a linux user since the late 90&#039;s and I use it as my default lilo/grub boot option since 2002 or so, but I still can&#039;t recommend it to people too used to Windows and/or too dependant on apps that ONLY run in Windows (and that have no opensource &quot;alter-ego&quot;) 

Microsoft monopoly has too much inertia to be removed.</description>
		<content:encoded><![CDATA[<p>2001?<br />
The halloween docs again?</p>
<p>Well, even if it really happens it is taking so much time that Microsoft will do a lot of cash in their way down.</p>
<p>Am a linux user since the late 90&#8242;s and I use it as my default lilo/grub boot option since 2002 or so, but I still can&#8217;t recommend it to people too used to Windows and/or too dependant on apps that ONLY run in Windows (and that have no opensource &#8220;alter-ego&#8221;) </p>
<p>Microsoft monopoly has too much inertia to be removed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Schestowitz</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67541</link>
		<dc:creator>Roy Schestowitz</dc:creator>
		<pubDate>Wed, 24 Jun 2009 00:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67541</guid>
		<description>The &lt;a href=&quot;http://boycottnovell.com/2009/04/23/msft-net-earnings-down-32-percent/&quot; rel=&quot;nofollow&quot;&gt;actual cost of Windows declines&lt;/a&gt; just to keep up with GNU/Linux. It is not sustainable for Windows.

In &lt;a href=&quot;http://www.businessweek.com/magazine/content/09_26/b4137044277552.htm&quot; rel=&quot;nofollow&quot;&gt;the news&lt;/a&gt;:

&quot;The situation puts Microsoft in a quandary. If the company lowers the price of Windows 7, it could hurt revenues and profits. If it keeps the price high, PC makers might bolt to alternatives, such as the free Linux operating system.&quot;</description>
		<content:encoded><![CDATA[<p>The <a href="http://boycottnovell.com/2009/04/23/msft-net-earnings-down-32-percent/" rel="nofollow">actual cost of Windows declines</a> just to keep up with GNU/Linux. It is not sustainable for Windows.</p>
<p>In <a href="http://www.businessweek.com/magazine/content/09_26/b4137044277552.htm" rel="nofollow">the news</a>:</p>
<p>&#8220;The situation puts Microsoft in a quandary. If the company lowers the price of Windows 7, it could hurt revenues and profits. If it keeps the price high, PC makers might bolt to alternatives, such as the free Linux operating system.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FreeBooteR</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-2/#comment-67539</link>
		<dc:creator>FreeBooteR</dc:creator>
		<pubDate>Tue, 23 Jun 2009 23:41:32 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67539</guid>
		<description>Anyone notice Mac doesn&#039;t seem to be on their radar at all (even given that this is back in 2001)? GNU/Linux is their real competition. They know that Apple&#039;s proprietary hardware limits its market share. GNU/Linux is the real threat, and they are feeling it big time with the flop that Vista was in today&#039;s OS climate.

People keep blasting what year is the year of the GNU/Linux desktop. I have to say it was over 3, close to 4 years for me. Every year is the year of the GNU/Linux desktop. Growth is far faster and viral than people realize and that it&#039;s momentum is an inexorable, unstoppable force.</description>
		<content:encoded><![CDATA[<p>Anyone notice Mac doesn&#8217;t seem to be on their radar at all (even given that this is back in 2001)? GNU/Linux is their real competition. They know that Apple&#8217;s proprietary hardware limits its market share. GNU/Linux is the real threat, and they are feeling it big time with the flop that Vista was in today&#8217;s OS climate.</p>
<p>People keep blasting what year is the year of the GNU/Linux desktop. I have to say it was over 3, close to 4 years for me. Every year is the year of the GNU/Linux desktop. Growth is far faster and viral than people realize and that it&#8217;s momentum is an inexorable, unstoppable force.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67533</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Tue, 23 Jun 2009 22:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67533</guid>
		<description>This really doesn&#039;t mean much, it was written in 2001. 2001!!!!  Where has Linux gone, it looks better but it only has 5% of the market?  If Linux would have 15-20% of the market by now I would say this memo has some meaning.

My thought is the next OS to truly be revolutionary will then win...weather if that is Windows, Linux, Mac OS or some new OS being developed.  It would have to really be revolutionary, something that people will want to go to.  It won&#039;t matter if its free or cost money, if the next revolutionary OS (not just evolutionary) has something people want and will make things easier.  Maybe it&#039;ll have excellent and seamless voice recognition, maybe it&#039;ll have an easy to use touch screen or virtual screen and maybe it&#039;ll have both voice recognition and a virtual screen?  Maybe it&#039;ll be controlled with the brain (may sound silly but people are working on it).  I think as long as we&#039;re using a mouse and keyboard, Windows will be the top OS and thats because its backwards compatible.  As long as Microsoft keeps some sort of backwards compatibility, its not going anywhere.  Unless a linux distribution can give a high amount of easy compatibility with Windows programs, Windows will be on tip.  This new OS will have to make people say &quot;screw backwards compatibility&quot; and want to start from scratch.  Mac OS isn&#039;t doing that and Linux isn&#039;t doing that.  

Another thing that can maybe change Windows from being #1 is right now the computer is something we use in our house and work, we use it for fun and for business, but for the most part its an appliance. For another OS to take over they&#039;ll have to make it a seamless extension of our lives.  Meaning weather if we&#039;re in our house, car, work or anywhere in the world we can access all our information, programs and games.  Its not about transferring media from your home PC to your PDA phone, but to just have it work without transferring. Being able to go on a trip and to be able to get stuff easily from your home or work computer seamlessly, quick and easily.  Having this work without even having to think about it, it just does.  No need to have several computers in your house for each person who lives there, just have one that everyone can share anywhere in the house on several different medias weather it be a terminal, or handheld device.  

If either of these two ways...or both come out then Windows will have a problem.   Maybe it&#039;ll be a single computer in your house and you&#039;ll be able to access it from anywhere, maybe it&#039;ll be what Google talks about, apps that are run from the browser and it doesn&#039;t matter what OS you use.  I&#039;ll be light and simple and you can have it on your PDA phone, and home server and they&#039;ll be able to communicate with each other and everything that is on one will be accessible on the other.  Work servers will run off of it and with permissions you can easily get of your work off those too.

Thats my theory and thoughts on it and no 2001 memo is going to make me think differently.  Sure MS is worried about Linux and Mac OS, and anyone else thats thinking of an OS.  Because any year some company can come out with an OS that will make people want to switch, but its going to have to be a great OS and we&#039;re going to have to be WOW&#039;d.  Nothing has come out yet that does this, when will it happen? Who knows.  Will it be Microsoft or some other company that develops it, that is yet to be seen.</description>
		<content:encoded><![CDATA[<p>This really doesn&#8217;t mean much, it was written in 2001. 2001!!!!  Where has Linux gone, it looks better but it only has 5% of the market?  If Linux would have 15-20% of the market by now I would say this memo has some meaning.</p>
<p>My thought is the next OS to truly be revolutionary will then win&#8230;weather if that is Windows, Linux, Mac OS or some new OS being developed.  It would have to really be revolutionary, something that people will want to go to.  It won&#8217;t matter if its free or cost money, if the next revolutionary OS (not just evolutionary) has something people want and will make things easier.  Maybe it&#8217;ll have excellent and seamless voice recognition, maybe it&#8217;ll have an easy to use touch screen or virtual screen and maybe it&#8217;ll have both voice recognition and a virtual screen?  Maybe it&#8217;ll be controlled with the brain (may sound silly but people are working on it).  I think as long as we&#8217;re using a mouse and keyboard, Windows will be the top OS and thats because its backwards compatible.  As long as Microsoft keeps some sort of backwards compatibility, its not going anywhere.  Unless a linux distribution can give a high amount of easy compatibility with Windows programs, Windows will be on tip.  This new OS will have to make people say &#8220;screw backwards compatibility&#8221; and want to start from scratch.  Mac OS isn&#8217;t doing that and Linux isn&#8217;t doing that.  </p>
<p>Another thing that can maybe change Windows from being #1 is right now the computer is something we use in our house and work, we use it for fun and for business, but for the most part its an appliance. For another OS to take over they&#8217;ll have to make it a seamless extension of our lives.  Meaning weather if we&#8217;re in our house, car, work or anywhere in the world we can access all our information, programs and games.  Its not about transferring media from your home PC to your PDA phone, but to just have it work without transferring. Being able to go on a trip and to be able to get stuff easily from your home or work computer seamlessly, quick and easily.  Having this work without even having to think about it, it just does.  No need to have several computers in your house for each person who lives there, just have one that everyone can share anywhere in the house on several different medias weather it be a terminal, or handheld device.  </p>
<p>If either of these two ways&#8230;or both come out then Windows will have a problem.   Maybe it&#8217;ll be a single computer in your house and you&#8217;ll be able to access it from anywhere, maybe it&#8217;ll be what Google talks about, apps that are run from the browser and it doesn&#8217;t matter what OS you use.  I&#8217;ll be light and simple and you can have it on your PDA phone, and home server and they&#8217;ll be able to communicate with each other and everything that is on one will be accessible on the other.  Work servers will run off of it and with permissions you can easily get of your work off those too.</p>
<p>Thats my theory and thoughts on it and no 2001 memo is going to make me think differently.  Sure MS is worried about Linux and Mac OS, and anyone else thats thinking of an OS.  Because any year some company can come out with an OS that will make people want to switch, but its going to have to be a great OS and we&#8217;re going to have to be WOW&#8217;d.  Nothing has come out yet that does this, when will it happen? Who knows.  Will it be Microsoft or some other company that develops it, that is yet to be seen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Schestowitz</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67530</link>
		<dc:creator>Roy Schestowitz</dc:creator>
		<pubDate>Tue, 23 Jun 2009 19:15:10 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67530</guid>
		<description>Let me know how to edit it and I will.</description>
		<content:encoded><![CDATA[<p>Let me know how to edit it and I will.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Schestowitz</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67529</link>
		<dc:creator>Roy Schestowitz</dc:creator>
		<pubDate>Tue, 23 Jun 2009 19:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67529</guid>
		<description>We already have something better than .NET. It is called Java and it is GPLv2-licensed. ;-)</description>
		<content:encoded><![CDATA[<p>We already have something better than .NET. It is called Java and it is GPLv2-licensed. <img src='http://techrights.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CHub</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67528</link>
		<dc:creator>CHub</dc:creator>
		<pubDate>Tue, 23 Jun 2009 19:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67528</guid>
		<description>Needed to edit my last post..,</description>
		<content:encoded><![CDATA[<p>Needed to edit my last post..,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CHub</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67527</link>
		<dc:creator>CHub</dc:creator>
		<pubDate>Tue, 23 Jun 2009 18:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67527</guid>
		<description>Open community needs to come up with it&#039;s own Intermediate Language, an alternative to MSIL/.Net .  The other side to this would be to press Microsoft in announcing that .Net is truly open and free to use.  I think they may come to the party if they know a rival could hamper their movements.

The winning OS will be the one that have all bases covered.  A OS that a workplace wants to use as it knows it&#039;s workers use it at home.  A OS easy to use and fast.  An OS that doesn&#039;t restrict the user.

When Bill talks about Window being an appliance in the product sense, he&#039;s really nailing down Window&#039;s restrictions.  We must play on that.

A great slogan for Linux/gnu would be, &quot;Everything is happening on Linux&quot;. Community and Hobbyist themes are our best shots.</description>
		<content:encoded><![CDATA[<p>Open community needs to come up with it&#8217;s own Intermediate Language, an alternative to MSIL/.Net .  The other side to this would be to press Microsoft in announcing that .Net is truly open and free to use.  I think they may come to the party if they know a rival could hamper their movements.</p>
<p>The winning OS will be the one that have all bases covered.  A OS that a workplace wants to use as it knows it&#8217;s workers use it at home.  A OS easy to use and fast.  An OS that doesn&#8217;t restrict the user.</p>
<p>When Bill talks about Window being an appliance in the product sense, he&#8217;s really nailing down Window&#8217;s restrictions.  We must play on that.</p>
<p>A great slogan for Linux/gnu would be, &#8220;Everything is happening on Linux&#8221;. Community and Hobbyist themes are our best shots.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aeshna23</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67508</link>
		<dc:creator>aeshna23</dc:creator>
		<pubDate>Tue, 23 Jun 2009 15:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67508</guid>
		<description>&lt;blockquote&gt;You should want freedom for its own sake and this is why M$ is evil.&lt;/blockquote&gt;


We fundamentally disagree.  I don&#039;t value freedom in itself.  I just value what can be done with it.  With software, freedom enables an atmosphere where wonderful things can be done.  With land ownership, freedom enables the draining of wetlands and all sorts of evil.  Some lack of freedom is necessary if we want to live on a wonderful green planet.

It seems quite relevant to note that there are no negative externalities from software development, but there certainly are from real estate&quot;development&quot;.</description>
		<content:encoded><![CDATA[<blockquote><p>You should want freedom for its own sake and this is why M$ is evil.</p></blockquote>
<p>We fundamentally disagree.  I don&#8217;t value freedom in itself.  I just value what can be done with it.  With software, freedom enables an atmosphere where wonderful things can be done.  With land ownership, freedom enables the draining of wetlands and all sorts of evil.  Some lack of freedom is necessary if we want to live on a wonderful green planet.</p>
<p>It seems quite relevant to note that there are no negative externalities from software development, but there certainly are from real estate&#8221;development&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: twitter</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67507</link>
		<dc:creator>twitter</dc:creator>
		<pubDate>Tue, 23 Jun 2009 14:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67507</guid>
		<description>You should want freedom for its own sake and this is why M$ is evil. Creativity comes from freedom, M$&#039;s business model has always been to tax the creativity of others.  In the beginning, &lt;a href=&quot;http://www.blinkenlights.com/classiccmp/gateswhine.html&quot; rel=&quot;nofollow&quot;&gt;he and other software owners could pretend they were doing a service by attacking people who shared&lt;/a&gt;.  He promissed improvements and usability for the money and flexibility he took.  It was not true then and it&#039;s less true now.  The &lt;a href=&quot;http://en.wikipedia.org/wiki/86-DOS&quot; rel=&quot;nofollow&quot;&gt;quick and dirty OS  (QDOS)&lt;/a&gt; he sold IBM was the result of individual creativity and freedom.  &lt;a href=&quot;http://en.wikipedia.org/wiki/Maxima_(software)&quot; rel=&quot;nofollow&quot;&gt;Symbolic manipulation&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/Spyglass,_Inc.&quot; rel=&quot;nofollow&quot;&gt;web browsing programs&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Mosaic_(web_browser)&quot; rel=&quot;nofollow&quot;&gt;created by government&lt;/a&gt;, were stolen by greedy owners who robbed each other and sold the public what it should have had as free software.  Today, it is obvious that no one needs software owners.  Despite &lt;a href=&quot;http://slashdot.org/~twitter/journal/183403&quot; rel=&quot;nofollow&quot;&gt;many attempts to thwart GNU/Linux&lt;/a&gt;, anyone can download a live CD and see for themselves what software freedom can do for them.  M$ is and always has been an enemy of software freedom because their business model claims such a thing is impossible.  &lt;a href=&quot;http://slashdot.org/~twitter/journal/213707&quot; rel=&quot;nofollow&quot;&gt;Reality is asserting itself&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>You should want freedom for its own sake and this is why M$ is evil. Creativity comes from freedom, M$&#8217;s business model has always been to tax the creativity of others.  In the beginning, <a href="http://www.blinkenlights.com/classiccmp/gateswhine.html" rel="nofollow">he and other software owners could pretend they were doing a service by attacking people who shared</a>.  He promissed improvements and usability for the money and flexibility he took.  It was not true then and it&#8217;s less true now.  The <a href="http://en.wikipedia.org/wiki/86-DOS" rel="nofollow">quick and dirty OS  (QDOS)</a> he sold IBM was the result of individual creativity and freedom.  <a href="http://en.wikipedia.org/wiki/Maxima_(software)" rel="nofollow">Symbolic manipulation</a> and <a href="http://en.wikipedia.org/wiki/Spyglass,_Inc." rel="nofollow">web browsing programs</a>, <a href="http://en.wikipedia.org/wiki/Mosaic_(web_browser)" rel="nofollow">created by government</a>, were stolen by greedy owners who robbed each other and sold the public what it should have had as free software.  Today, it is obvious that no one needs software owners.  Despite <a href="http://slashdot.org/~twitter/journal/183403" rel="nofollow">many attempts to thwart GNU/Linux</a>, anyone can download a live CD and see for themselves what software freedom can do for them.  M$ is and always has been an enemy of software freedom because their business model claims such a thing is impossible.  <a href="http://slashdot.org/~twitter/journal/213707" rel="nofollow">Reality is asserting itself</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aeshna23</title>
		<link>http://techrights.org/2009/06/23/bill-gates-afraid-of-gnu-linux/comment-page-1/#comment-67504</link>
		<dc:creator>aeshna23</dc:creator>
		<pubDate>Tue, 23 Jun 2009 13:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://boycottnovell.com/?p=13726#comment-67504</guid>
		<description>&lt;blockquote&gt;We need other creative ideas to allow Windows to match the viral nature of Linux. &lt;/blockquote&gt;

This is ultimately the reason why Linux will triumph.  It&#039;s not costs for the consumer.  It&#039;s not even freedom.  It&#039;s creativity.  Microsoft is a large bureaucracy that squelches creative ideas.  Linux lets the thousand flowers bloom and thus Linux evolves.</description>
		<content:encoded><![CDATA[<blockquote><p>We need other creative ideas to allow Windows to match the viral nature of Linux. </p></blockquote>
<p>This is ultimately the reason why Linux will triumph.  It&#8217;s not costs for the consumer.  It&#8217;s not even freedom.  It&#8217;s creativity.  Microsoft is a large bureaucracy that squelches creative ideas.  Linux lets the thousand flowers bloom and thus Linux evolves.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

