<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>I C E Y C A K E &#187; Technology</title>
	<atom:link href="http://www.iceycake.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iceycake.com</link>
	<description>廢話 fei hua ㄈㄟˋ ㄏㄨㄚˋ 部落格  blog 博客</description>
	<lastBuildDate>Fri, 13 Aug 2010 16:21:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Wait for the White iPhone 4?</title>
		<link>http://www.iceycake.com/2010/07/wait-for-the-white-iphone-4/</link>
		<comments>http://www.iceycake.com/2010/07/wait-for-the-white-iphone-4/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 05:32:37 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[iPhone/iPod]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/2010/07/wait-for-the-white-iphone-4/</guid>
		<description><![CDATA[Should I wait for the white iPhone 4? I believe a lot of people are asking this question themselves. I am one of them and I have tons of friends have the same question. I end up bought a black 32GB iPhone 4 today at a local Apple store. Let me tell you why. White [...]]]></description>
			<content:encoded><![CDATA[<p>Should I wait for the white iPhone 4?  I believe a lot of people are asking this question themselves.  I am one of them and I have tons of friends have the same question.  I end up bought a black 32GB iPhone 4 today at a local Apple store.  Let me tell you why.</p>

<ol>
<li><p>White iPhone delivery date keeps postpone.  At first, its end of June.  Then end of July and now unknown.  Who know may be its the end of the year?  So after 6 months, there will be iPhone 4s or iPhone 5?</p></li>
<li><p>Apple never honestly explains why they keep postponing the white iPhone.  At first, its the paint problem.  Then its the glass problem.  And now the light lacking problem.  Or Apple is secretly fixing the antenna problem?  Dont care what exactly the problem is&#8230; I wont take the risk to get a product that has so many production issue.  I had 2 white iPhone before and they do have some issues with the case.</p></li>
<li><p>White does look better?  May be not&#8230; The white iPhone has an extra window for the sensor.  It looks ugly in my opinion.</p></li>
</ol>

<p>If you have a 3GS and you really want to have the white iPhone 4, I will suggest wait for the next version of iPhone instead.  Unless you need the iPhone 4 new features badly (for me, I want the new high resolution display to read books and blogs).</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2010/07/wait-for-the-white-iphone-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL or NOSQL</title>
		<link>http://www.iceycake.com/2010/07/sql-or-nosql/</link>
		<comments>http://www.iceycake.com/2010/07/sql-or-nosql/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 05:33:19 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[nosql]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=409</guid>
		<description><![CDATA[I was working on a project for about 10 months using Oracle Coherence as the object repository. Our goal is storing all our domain objects into the data grid so we can share the objects to the rest of the enterprise in real time. We have used Oracle Coherence as read through cache and it [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on a project for about 10 months using Oracle Coherence as the object repository.  Our goal is storing all our domain objects into the data grid so we can share the objects to the rest of the enterprise in real time.  We have used Oracle Coherence as read through cache and it works pretty well (I am sure all the other open sourced non-RDBMS solutions would work very good as well).  However, we really did have an issue&#8230;</p>

<p>Oracle Coherence does not only works as a key-value paired distributed cache.  It does also support distributed data processing (not exactly like map-reduce but it works actually like parallel processing).  Also, it can read-through and write-behind Oracle database.  It sounds like a perfect solution as our primary domain object storage.</p>

<p>We have about 240GB memory for storage (20 server x 3 JVM x 4GB heap) storage nodes.  Due to the number of servers, we decide to have zero backup count.  In this scenario, when a node fails, we will lots the data that stored in the node.  We assume as long as we have the Oracle database as the permanent storage (thru write behind), we can always read through the missing data.</p>

<p>During our performance testing in the staging environment, Coherence does not performance if we try to random access (add, query, and delete at the same time).  To be worse, for each new search index will consume 10-15% more storage.  It is really expensive to use RAM for storage!!!</p>

<p>Write behind does not working at all due to our data throughput.  Since we have 60 nodes, we have 60 x N JDBC connections.  Oracle database basically cannot keep handle all the insert, update, merge, and delete at the same time.  The database latency causes the storage nodes evicted from the data grid due to timeout.</p>

<p>After 10 months of development, we decided to get rid of Coherence and use Oracle database directly.  Oracle 10g performs pretty good comparing to our legacy system.  However, it still cannot provide the performance that we need.  We are now looking into other open sourced NOSQL solution that could provide us memory/disk based storage plus Map-Reduced.  The current candidates are Cassandra+Hadoop or MongoDB.  Cassandra doesn&#8217;t support multiple keys indexing but version 0.6 works very well with Hadoop integration (although I have learned from forums that Cassandra has performance issue during high traffic of data loading).  MongoDB is very fast and support multiple key indexing.  However, the M-R solution comes from MongoDB only supports single thread.</p>

<p>SQl or NOSQL?  Still have no answer after 12+ months of development.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2010/07/sql-or-nosql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud, Private Cloud, Intercloud, Virtual Private Cloud: Storm is Coming?</title>
		<link>http://www.iceycake.com/2009/09/cloud-private-cloud-intercloud-virtual-private-cloud-storm-is-coming/</link>
		<comments>http://www.iceycake.com/2009/09/cloud-private-cloud-intercloud-virtual-private-cloud-storm-is-coming/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 21:04:23 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=357</guid>
		<description><![CDATA[Day 1, there are server farms that contains clusters of servers. Day 2, visualization arrives and creating virtual instance of hosts within the server farms. Day 3, there are clouds of virtual hosts. Day 4, corporations do not trust 3rd party clouds so they create their own private clouds. Day 5, communication is happening between [...]]]></description>
			<content:encoded><![CDATA[<ul>
    <li>Day 1, there are server farms that contains clusters of servers.</li>
    <li>Day 2, visualization arrives and creating virtual instance of hosts within the server farms.</li>
    <li>Day 3, there are clouds of virtual hosts.</li>
    <li>Day 4, corporations do not trust 3rd party clouds so they create their own private clouds.</li>
    <li>Day 5, communication is happening between public and private clouds.</li>
    <li>Day 6, clouds can communicate privately and creating virtual private cloud.</li>
    <li>Day 7, what&#8217;s next?</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/09/cloud-private-cloud-intercloud-virtual-private-cloud-storm-is-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Snow Leopard: More Usable Storage Space, a Myth?</title>
		<link>http://www.iceycake.com/2009/09/mac-os-x-snow-leopard-more-usable-storage-space-a-myth/</link>
		<comments>http://www.iceycake.com/2009/09/mac-os-x-snow-leopard-more-usable-storage-space-a-myth/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 15:36:16 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=350</guid>
		<description><![CDATA[According to Apple&#8217;s Snow Leopard web site, the new cat has a smaller footprint: Snow Leopard takes up less than half the disk space of the previous version, freeing about 7GB for you — enough for about 1,750 more songs or a few thousand more photos. One  of the reasons could be related to the [...]]]></description>
			<content:encoded><![CDATA[<p>According to Apple&#8217;s Snow Leopard web site, the new cat has a smaller footprint:</p>

<p>Snow Leopard takes up less than half the disk space of the previous version, freeing about 7GB for you — enough for about 1,750 more songs or a few thousand more photos.</p>

<p>One  of the reasons could be related to the PowerPC code removal within the universal binaries.  Secondly, it is related to the new compiler and linker, which generates a small size of target code.  The third reason, which not much people are paying attention to, is the way how to convert from bytes to KB, MB, GB, or TB.</p>

<p>For the past few years, Microsoft Windows uses the base of 10 to calculate storage size.  In computing world, 1MB = 1024KB.  On the other hand, 1MB = 1000KB in metric world.  In other words, a hard drive that has 10,485,760 bytes of available space will be shown as 10.49GB in Windows but only 10GB in pre-Snow Leopard.  Now, in Snow Leopard, we will see 10.49GB instead of 10GB.</p>

<p>Do you see the magic there?</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/09/mac-os-x-snow-leopard-more-usable-storage-space-a-myth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Snow Leopard: Instant Review + Upgrade Notes</title>
		<link>http://www.iceycake.com/2009/08/mac-os-x-snow-leopard-instant-review-upgrade-notes/</link>
		<comments>http://www.iceycake.com/2009/08/mac-os-x-snow-leopard-instant-review-upgrade-notes/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 05:48:39 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=345</guid>
		<description><![CDATA[Originally, I would like to wait for a couple weeks before installing the new Mac OS X Snow Leopard.  However, my co-worker has an extra copy so I bought it from him and decided to install on my Macbook Pro 15&#8243; (non-unity body model).  I don&#8217;t want to screw up my 24&#8243; iMac, which is [...]]]></description>
			<content:encoded><![CDATA[<p>Originally, I would like to wait for a couple weeks before installing the new Mac OS X Snow Leopard.  However, my co-worker has an extra copy so I bought it from him and decided to install on my Macbook Pro 15&#8243; (non-unity body model).  I don&#8217;t want to screw up my 24&#8243; iMac, which is my primary workstation.</p>

<p>Here is what I found:</p>

<ol>
    <li> My Epson Workforce 600 All-in-One Printer doesn&#8217;t work after installed Snow Leopard.  I have to download a new version of the driver and installed Rosetta in order to have my printer/scanner works.</li>
    <li>iStat Menu does not work at all.  My topbar is naked now.</li>
    <li>Developer Version Google Chrome crashes occasionally.</li>
</ol>

<p>[Update: 09/01/2009 10:00am]</p>

<p>[Update: 09/02/2009 08:20am]</p>

<p>[Update: 09/03/2009 08:57am]</p>

<ul>
    <li>The new iPhone like Chinese handwriting input method is very cool.  Your trackpad turns into a Chinese handwriting board.  There are 3 virtual buttons on the left hand side and the other 3 virtual buttons on the right hand side of the trackpad.  You write in the middle of the trackpad and you pick the words by hitting 1 of the 3 virtual buttons on the right hand side.</li>
    <li>Many people mentioned their Macbook Pro runs faster after installed Snow Leopard.  Honestly, I don&#8217;t feel any difference on my non-unibody 15&#8243; Macbook Pro (the last model before the unibody model).</li>
    <li>Apple mentioned Snow Leopard can free up storage space due to the removal of PowerPC code in the binaries.  However, it seems Apple changes the way how to calculate storage size.  In computing world, 1KB = 1024 Bytes , 1MB = 1024KB, and 1GB = 1024MB.  As a result, a 524,288,000 bytes hard drive will be shown 500GB .  Using the new calculation, the same size of hard drive will be shown as 524.28GB.  Do you see the &#8220;magic&#8221;?</li>
    <li><a href="http://www.islayer.com/apps/istatmenus/">iStat Menus for Mac 2.0</a> is just released on 09/03/2009.  The latest version finally supports Snow Leopard and it has a minor user interface upgrade.</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/08/mac-os-x-snow-leopard-instant-review-upgrade-notes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New eBook Readers from Sony</title>
		<link>http://www.iceycake.com/2009/08/new-ebook-readers-from-sony/</link>
		<comments>http://www.iceycake.com/2009/08/new-ebook-readers-from-sony/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 15:59:07 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ebook]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=342</guid>
		<description><![CDATA[Sony just announced 3 new models of ebook readers to replace the existing model.  The 5-inch Pocket Edition costs US$199.  The 6-inch Touch Edition costs US$299.  The 7-inch Daily Edition comes with AT&#38;T 3G service for free and it only costs US$399.  All the models come with digital library card so the user can borrow [...]]]></description>
			<content:encoded><![CDATA[<p>Sony just announced 3 new models of ebook readers to replace the existing model.  The 5-inch Pocket Edition costs US$199.  The 6-inch Touch Edition costs US$299.  The 7-inch Daily Edition comes with AT&amp;T 3G service for free and it only costs US$399.  All the models come with digital library card so the user can borrow ebooks from providers.  The ebooks will automatic delete from the reader after 29 days.</p>

<p>So what&#8217;s new here?</p>

<ol>
    <li><span id="more-342"></span>Sony finally officially supports Mac.  However, by saying supporting Mac, I guess it&#8217;s just about the user can transfer file from Mac to the reader using USB cable.  However, it&#8217;s a good enough feature comparing to the existing popular eBook readers (i.e. Kindle and iPhone/iPod Touch).</li>
    <li>The reader comes in 3 different favorites with 3 different prices.  Personally, I think the 5-inch Pocket Edition is very attractive.  Not many people wants to buy/download books via 3G and paying the premium price that they rarely use.  Also, 5-inch screen should be good enough for casual ebook readers (just think about iPhone&#8217;s screen size).</li>
    <li>Users can transfer files from Mac/PC to the ebook reader using USB cable.  This is a very attractive feature.  May be Sony is different than Amazon, who doesn&#8217;t sell books as it&#8217;s primary business.</li>
    <li>The Daily edition uses AT&amp;T 3G service and user doesn&#8217;t need to pay monthly charge.  Sony is copying Amazon Kindle&#8217;s model.  Good luck with AT&amp;T&#8217;s coverage in US.  However, Sony can easily selling this device around the globe because the readers are using HSPA.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/08/new-ebook-readers-from-sony/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cloud Computing and Me</title>
		<link>http://www.iceycake.com/2009/08/cloud-computing-and-me/</link>
		<comments>http://www.iceycake.com/2009/08/cloud-computing-and-me/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 05:15:41 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=339</guid>
		<description><![CDATA[What is cloud computing?  There are many definitions of cloud computing: According to Wikipedia, Cloud computing is a style of computing in which dynamically scalable and often virtualized resources are provided as a service over the Internet . Users need not have knowledge of, expertise in, or control over the technology infrastructure in the &#8220;cloud&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>What is cloud computing?  There are many definitions of cloud computing:</p>

<p>According to <a href="http://en.wikipedia.org/wiki/Cloud_computing">Wikipedia</a>,</p>

<p><em>Cloud computing is a style of computing in which dynamically <a title="Scalability" href="http://en.wikipedia.org/wiki/Scalability">scalable</a> and often <a title="Virtualization" href="http://en.wikipedia.org/wiki/Virtualization">virtualized</a> resources are provided <a title="Everything as a service" href="http://en.wikipedia.org/wiki/Everything_as_a_service">as a service</a> over the <a title="Internet" href="http://en.wikipedia.org/wiki/Internet">Internet</a><sup> </sup><sup id="cite_ref-gartner_0-0"><a href="http://en.wikipedia.org/wiki/Cloud_computing#cite_note-gartner-0"><span> </span></a></sup>. Users need not have knowledge of, expertise in, or control over the technology infrastructure in the &#8220;cloud&#8221; that supports them.</em></p>

<p><em>According to <a href="http://radlab.cs.berkeley.edu/wiki/RAD_Lab">Berkeley RAD Lab</a>,</em></p>

<p><em>The services themselves have long been referred to as Software as a Service (SaaS). The datacenter hardware and software is what we will call a Cloud. When a Cloud is made available in a pay-as-you-go manner to the general public, we call it a Public Cloud; the service being sold is Utility Computing. We use the term Private Cloud to refer to internal datacenters of a business or other organization, not made available to the general public. Thus, Cloud Computing is the sum of SaaS and Utility Computing, but does not include Private Clouds.</em></p>

<p><em><span id="more-339"></span>Ok, so what extractly is cloud computing?  I&#8217;m sure you can figure it out by searching from the web so I&#8217;m not going to pretend as an expert.  In general, popular cloud computing services are services from Google (such as Gmail, Google Reader, Google Documents), Dropbox, Moobee, Photoshop.com, etc. (I can easily name over 50 popular cloud computing services)</em></p>

<p><em>When I start Firefox, I have 3 default pages need to open: <a href="http://mail.google.com">Gmail</a>, <a href="http://www.google.com/reader">Google Reader</a>, <a href="http://www.facebook.com">Facebook</a>.  However, I have Remember the Milk displaying the todo list on the right hand side of the Gmail page.  Other than Firefox, I have <a href="http://www.getdropbox.com">DropBox</a>,<a href="http://www.spanningsync.com/"> Spanning Sync</a>, and <a href="http://www.mobileme.com">MobileMe</a> running in the background to help me pushing my documents, calendars, and contacts back to the clouds.  I also backup important files to <a href="http://www.mobileme.com">MobileMe iDisk</a> and <a href="http://aws.amazon.com/s3/">Amazon S3</a>.  When I receive documents within emails, I use <a href="http://www.google.com/document">Google Document</a> to open them.  I also share documents with friends and co-workers using Google Document as well.</em></p>

<p><em>The more I wrote and the more I figure out I don&#8217;t use thick client as much as before (i.e. Microsoft Office).  95% of the thick clients are replaced by cloud computing services.  Of course, that&#8217;s why I can only carry a 8.9&#8243; Acer Aspire One with me most of the time (instead of the 15&#8243; Macbook Pro).</em></p>

<p><em>How about you?  How tie you and your cloud computing services?
</em></p>

<p><em>
</em></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/08/cloud-computing-and-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbook: Which Operating System to Use?</title>
		<link>http://www.iceycake.com/2009/08/netbook-which-operating-system-to-use/</link>
		<comments>http://www.iceycake.com/2009/08/netbook-which-operating-system-to-use/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:43:25 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/?p=337</guid>
		<description><![CDATA[As many people know that I have a 160GB HD first generation Acer Aspire One netbook. It originally comes with a version of Windows XP (I have no idea what version it comes with but I would guess it is Windows XP Home because that&#8217;s the only license manufacturers can bundle with the Intel Atom [...]]]></description>
			<content:encoded><![CDATA[<p>As many people know that I have a 160GB HD first generation Acer Aspire One netbook.  It originally comes with a version of Windows XP (I have no idea what version it comes with but I would guess it is Windows XP Home because that&#8217;s the only license manufacturers can bundle with the Intel Atom CPU without using Windows Vista).  I formatted the netbook right away and installed Ubuntu 8.10.  After using Linux for 4 months, I formatted it again and installed Windows 7 Beta and Release Candidate.  Recently, I installed Ubuntu 9.04 Netbook Remix and extremely happy about it.</p>

<p>Now, you would be going to ask me.  Which operating system I like the most on my Acer Aspire One netbook.</p>

<p><span id="more-337"></span>The netbook performs pretty good with Windows XP.  I have installed Firefox and some plug-ins of course.  Also, it is a pleasure to watch video using Media Player.  I am happy with iTunes on Windows as well.  However, it is a pain for me to work remotely although I always can install Cygwin or Putty.  I prefer native command line environment such as Mac OS X or Linux.  This is the main reason why I get rid of Windows XP right away after I received my netbook.</p>

<p>There are some issue with Ubuntu 8.10 on Acer Apsire One.  The major pain is the Wifi and sound driver.  I can live without sound, but I really cannot live without Wifi.  The Wifi driver is very unstable and it can disappear any time.  There was a backport can fix the problem but I have to re-compile and install the driver everytime after I update the Linux kernel.  It&#8217;s not something I want to deal with.</p>

<p>Then, Microsoft comes out Windows 7 beta.  Most of the reviewers highly recommend Windows 7 to be the operating system for netbook.  I immediately download a copy and install on my netbook.  It&#8217;s fast and clean.  Plus, it comes with some eye candies.  Also, Microsoft Live Writer is the best blog writer I ever use.  However, I have less than 1.5MB available memory can use after open Firefox on Windows 7.  I almost cannot do anything else since my netbook only has 1GB memory.</p>

<p>Since Windows 7 could be expired in the future and I don&#8217;t want to spend extra money to get a Windows 7 license, I installed Ubuntu 9.04 Netbook Remix (NBR) on my Aspire One.  My netbook works perfectly after the installation.  The only problem I need to fix is the noisy fan, which can be fixed by installed a small program.  Also, if you are the type of person who needs the wiki indicator light blinking, you can always install the linux kernel backport module using apt-get.</p>

<p>Now, what is my answer?  If my netbook has 2GB memory and I am willing to spare the other 50 bucks to get a Windows 7 license, I will pick Windows 7.  Or, I will just stick with Ubuntu 9.04.  Oh, by the way, Ubuntu 9.10 has major user interface changes and it will be released around October.  I really cannot wait for it.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/08/netbook-which-operating-system-to-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Post: From Gnome Blog Again</title>
		<link>http://www.iceycake.com/2009/08/testing-post-from-gnome-blog-again/</link>
		<comments>http://www.iceycake.com/2009/08/testing-post-from-gnome-blog-again/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:25:24 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/2009/08/testing-post-from-gnome-blog-again/</guid>
		<description><![CDATA[Trying again after applying the patch.]]></description>
			<content:encoded><![CDATA[<p>Trying again after applying the patch.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/08/testing-post-from-gnome-blog-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Post: Posting Using Ubuntu Gnome Blog</title>
		<link>http://www.iceycake.com/2009/08/testing-post-posting-using-ubuntu-gnome-blog/</link>
		<comments>http://www.iceycake.com/2009/08/testing-post-posting-using-ubuntu-gnome-blog/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:19:28 +0000</pubDate>
		<dc:creator>Andy Chan</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.iceycake.com/2009/08/testing-post-posting-using-ubuntu-gnome-blog/</guid>
		<description><![CDATA[pThis is a testing post using Gnome Blog./p]]></description>
			<content:encoded><![CDATA[<p>pThis is a testing post using Gnome Blog./p</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.iceycake.com/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.iceycake.com/2009/08/testing-post-posting-using-ubuntu-gnome-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
