<?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>the blogoholic &#187; General</title>
	<atom:link href="http://blogoholic.co.uk/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogoholic.co.uk</link>
	<description>Random thoughts and rants from Alex Tomkins</description>
	<lastBuildDate>Tue, 04 May 2010 00:10:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Android fragmentation must be addressed</title>
		<link>http://blogoholic.co.uk/2010/05/04/android-fragmentation-must-be-addressed/</link>
		<comments>http://blogoholic.co.uk/2010/05/04/android-fragmentation-must-be-addressed/#comments</comments>
		<pubDate>Tue, 04 May 2010 00:10:21 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=108</guid>
		<description><![CDATA[According to the Platform Version statistics at the Android developer site, 37% of devices are running 1.5, 29% are on 1.6, with 32% running 2.1 &#8211; the latest version.  Android 2.1 has been available since January 2010, however the number of users on older phones is shockingly worrying and is harmful for the future of [...]]]></description>
			<content:encoded><![CDATA[<p>According to the <a href="http://developer.android.com/resources/dashboard/platform-versions.html">Platform Version</a> statistics at the Android developer site, 37% of devices are running 1.5, 29% are on 1.6, with 32% running 2.1 &#8211; the latest version.  Android 2.1 has been available since January 2010, however the number of users on older phones is shockingly worrying and is harmful for the future of Android.</p>
<p>I&#8217;m not too bothered about the amount of different devices which use the Android operating system, which certain people seem to focus on.  What does concern me are the slow handset manufacturers who aren&#8217;t updating their phones to the latest version within a reasonable amount of time.  The Motorola Droid was one of the more successful Android 2.0 devices which has been updated to 2.1, which probably explains why there are still a few users still on the 2.0 series (inexperienced users who don&#8217;t know how to update), but could be much worse if this device wasn&#8217;t updated.</p>
<p>Manufacturers need to update all their recent phones within a reasonable amount of time, otherwise the future of the platform is going to be an awkward one.  Users are often spending hundreds of pounds on phones which they consider to be smart phones, yet their manufacturer is treating them like the existing dumb phones &#8211; where you get updates if you&#8217;re lucky.  Customers are paying a premium for what they think is an alternative smart phone to the likes of the Apple iPhone.  Smart phones deserve a respectable lifespan of updates after the release.</p>
<p>At the moment my HTC Hero is due an update in June 2010, this is 5 months after the release of 2.1 on other platforms.  I love Android, however I no longer like HTC.  I&#8217;m sure there are others who love the operating system, but hate the way their manufacturer is treating them with updates.</p>
<p>Just remember HTC &#8211; other phone manufacturers are releasing Android powered devices too.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2010/05/04/android-fragmentation-must-be-addressed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sockets with JavaScript</title>
		<link>http://blogoholic.co.uk/2009/03/10/sockets-with-javascript/</link>
		<comments>http://blogoholic.co.uk/2009/03/10/sockets-with-javascript/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 23:14:16 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=89</guid>
		<description><![CDATA[We&#8217;ve seen a great push towards using JavaScript in modern websites, using AJAX and JSON for dynamic websites which start to feel more like applications instead of plain boring pages.   One of the problems which more interactive sites face is the constant polling of the web server due to the way HTTP works.  Various web [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve seen a great push towards using JavaScript in modern websites, using AJAX and JSON for dynamic websites which start to feel more like applications instead of plain boring pages.   One of the problems which more interactive sites face is the constant polling of the web server due to the way HTTP works.  Various web apps these days tend to poll for data with the server keeping the connection alive without sending any data, once data has been sent then a new request is sent asking for more data.</p>
<p>One particular web app which isn&#8217;t that great is IRC web chat.  Most IRC servers are keen on users connecting from their real connection, as it&#8217;s hard to track abuse when connections are being proxied by a web server.  Using AJAX or JSON with a web server isn&#8217;t that ideal either, browsers have to constantly poll and refresh with the server to receive the data, this typically requires a light weight web server as Apache with PHP or Perl is hardly efficient for multiple users.  The most common approaches over the years has been <a href="http://cgiirc.org/">CGI:IRC</a>, but this is just yet another inefficient Perl script which keeps the connection open.  One of the oldest methods is using a hefty Java application, hardly friendly for users.</p>
<p>So, why not use sockets with JavaScript?  Obviously JavaScript can&#8217;t do it directly, but with Adobe Flash and something like <a href="http://matthaynes.net/blog/2008/07/17/socketbridge-flash-javascript-socket-bridge/">socketBridge</a> (or <a href="http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/">this improved version</a>) you could control a socket with mostly JavaScript.  The only problem with Flash and sockets is that it would have to connect to a policy port before being authorised to connect to that particular port, however it would be a much lighter solution for the server compared to all the polling techniques.</p>
<p>I&#8217;m tempted to try and create a web IRC client using JavaScript and the Flash socket bridge.  Even if other IRC networks won&#8217;t open a port for Flash policy requests, you could do something similar to the other web chat apps &#8211; use your server as a proxy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2009/03/10/sockets-with-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Forwarding all mail with Gmail</title>
		<link>http://blogoholic.co.uk/2009/03/09/forwarding-all-mail-with-gmail/</link>
		<comments>http://blogoholic.co.uk/2009/03/09/forwarding-all-mail-with-gmail/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 17:59:28 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=87</guid>
		<description><![CDATA[If you&#8217;ve got multiple Gmail accounts, such as different Google Apps Gmail accounts (for hosted domains) and gmail.com accounts, being able to forward them all to one account saves a lot of time and effort.  Gmail does allow you to forward email under the Forwarding and POP/IMAP section of the control panel, however this only [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve got multiple Gmail accounts, such as different Google Apps Gmail accounts (for hosted domains) and gmail.com accounts, being able to forward them all to one account saves a lot of time and effort.  Gmail does allow you to forward email under the <em>Forwarding and POP/IMAP</em> section of the control panel, however this only forwards non-spam emails.  As most people know, sometimes the spam filters aren&#8217;t quite perfect and suffer from false positives occasionally.</p>
<p>To forward all mail to another account, simply remove your existing forward, create a new filter from * (matches any sender), then forward it to your main email address &#8211; making sure you&#8217;ve got <em>Never send to spam</em> selected.  You&#8217;ll probably want to choose <em>Delete it</em> as well, this means any incoming mail on that specific account will be forwarded and deleted on the original account &#8211; but you&#8217;ll still have 30 days until it gets removed from trash.</p>
<p>This way you&#8217;ll get <strong>all</strong> mail forwarded from Gmail &#8211; including spam.  Now you can see all the spam from any other Gmail accounts incase there are any false positives.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2009/03/09/forwarding-all-mail-with-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adverts in RSS feeds</title>
		<link>http://blogoholic.co.uk/2008/12/29/adverts-in-rss-feeds/</link>
		<comments>http://blogoholic.co.uk/2008/12/29/adverts-in-rss-feeds/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 20:06:39 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=78</guid>
		<description><![CDATA[RSS feeds are great for those people who want to follow up on news sites without having to constantly revisit the same site multiple times a day.  Google FeedBurner offers nice statistics to any sites with RSS feeds, allowing them to see how many subscribers they&#8217;ve got by hosting the RSS feed.  What I&#8217;m finding [...]]]></description>
			<content:encoded><![CDATA[<p>RSS feeds are great for those people who want to follow up on news sites without having to constantly revisit the same site multiple times a day.  Google <a href="http://www.feedburner.com/">FeedBurner</a> offers nice statistics to any sites with RSS feeds, allowing them to see how many subscribers they&#8217;ve got by hosting the RSS feed.  What I&#8217;m finding increasingly annoying is the other service which FeedBurner offers &#8211; their advertising programme.</p>
<p>I don&#8217;t mind if RSS feeds are either partial feeds to show users the first paragraph to attract users to visit the site, or full feeds to show users the entire article, however putting in adverts is highly annoying.  To me RSS feeds are there to entice me to go and visit the site itself.  RSS feeds are mostly used by fairly technical users &#8211; putting in adverts where the people reading them are most likely to ignore them seems a bit pointless.  Adding other little buttons/icons to enhance the feed is annoying as well, I just want the article and nothing more!</p>
<p>I don&#8217;t usually bother with advert blocking, but after seeing more feeds with adverts in I&#8217;ve finally installed Adblock Plus for Firefox.  Good riddance to pointless adverts!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/12/29/adverts-in-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cables not included</title>
		<link>http://blogoholic.co.uk/2008/12/25/cables-not-included/</link>
		<comments>http://blogoholic.co.uk/2008/12/25/cables-not-included/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 17:56:33 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=75</guid>
		<description><![CDATA[To me this is one of the most annoying things manufacturers decide on when releasing their products &#8211; not including all the cables necessary to use the product!
Various USB printers have done this for quite a while, you have to buy the cable separately.  Whilst it&#8217;s sometimes understandable with cheap products, it&#8217;s still slightly annoying [...]]]></description>
			<content:encoded><![CDATA[<p>To me this is one of the most annoying things manufacturers decide on when releasing their products &#8211; not including all the cables necessary to use the product!</p>
<p>Various USB printers have done this for quite a while, you have to buy the cable separately.  Whilst it&#8217;s sometimes understandable with cheap products, it&#8217;s still slightly annoying that the product you buy isn&#8217;t usable until you go and buy yet another cable.  What I find really annoying is spending £300 on a console such as the PlayStation 3 and they&#8217;re too cheap to include an HDMI cable.  This is a console designed for high definition gaming, yet they don&#8217;t even bother including a cable for it.</p>
<p>It feels like the modern equivalent of &#8220;batteries not included&#8221;, certainly not something which should happen if you spend large amounts of money on a new device.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/12/25/cables-not-included/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poor Windows Vista support in games</title>
		<link>http://blogoholic.co.uk/2008/11/19/poor-windows-vista-support-in-games/</link>
		<comments>http://blogoholic.co.uk/2008/11/19/poor-windows-vista-support-in-games/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 16:39:43 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=68</guid>
		<description><![CDATA[As much as people might dislike Vista, it&#8217;s the operating system bundled with new machines and it&#8217;s here to stay.  It&#8217;s been around 2 years since Vista was launched, whilst I can understand certain software developers might not offer support from the immediate release &#8211; it should be one of their high priorities.  MMORPG developers [...]]]></description>
			<content:encoded><![CDATA[<p>As much as people might dislike Vista, it&#8217;s the operating system bundled with new machines and it&#8217;s here to stay.  It&#8217;s been around 2 years since Vista was launched, whilst I can understand certain software developers might not offer support from the immediate release &#8211; it should be one of their high priorities.  MMORPG developers seem to be among the worst for poor Vista compatability, along with other game developers.</p>
<p>Certain games decide that they need to run as Administrator from the moment the patcher starts up, even though the patcher might not need to download any file at all &#8211; therefore not needing to write any files to the Program Files directory.  So the entire game runs under admin privileges, just incase the patcher might need to update files &#8211; Mythic Entertainment are guilty of this with Dark Age of Camelot.</p>
<p>Other games are still living in the old days where they still write any configuration files to the game directory for all players, instead of the relevant application data directory for the user.  This is just extremely lazy and makes things awkward for users, instead of a clean split between game data and user data &#8211; everything is just lumped together in one directory.  If I wanted to make a backup of my computer, it would be far easier to just backup my user profile which would contain any important data &#8211; however keeping this data along with the game itself makes it difficult.  If I wanted to restore my machine from a backup, I&#8217;d lose any settings from the game.</p>
<p>There are other games which are complete failures, getting players to go with workarounds such as changing the permissions on the installation directory.  After installing Lord of the Rings Online I didn&#8217;t even get a shortcut to the game from my start menu.</p>
<p>If game developers could just put a bit of extra effort into game installation it would make things so much easier.  I know the aim of these developers is probably just to get the game running on these platforms, but a fully functional game which works properly would save users so many headaches.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/11/19/poor-windows-vista-support-in-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Name Indication being held back</title>
		<link>http://blogoholic.co.uk/2008/10/17/server-name-indication-being-held-back/</link>
		<comments>http://blogoholic.co.uk/2008/10/17/server-name-indication-being-held-back/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 20:10:50 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=60</guid>
		<description><![CDATA[Ever since we&#8217;ve had websites available over HTTPS (HTTP over SSL), there has always been the problem that the host always requires an IP per site as each site needs a new certificate.  With SSL the server couldn&#8217;t just switch certificate according to the site, as SSL is negotiated before any HTTP request is sent.
Server [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since we&#8217;ve had websites available over HTTPS (HTTP over SSL), there has always been the problem that the host always requires an IP per site as each site needs a new certificate.  With SSL the server couldn&#8217;t just switch certificate according to the site, as SSL is negotiated <strong>before</strong> any HTTP request is sent.</p>
<p>Server Name Indication is a TLS extension which sends the hostname during the TLS negotiation, which means the server can switch to the appropriate certificate &#8211; allowing a web host to potentially have as many HTTPS sites as they want on a single IP address.  It&#8217;s a great solution, however the only problem is that any chance of it&#8217;s currently being held back.</p>
<p>Firefox 2.0, Opera 8.0 and even Google Chrome supports SNI, however Safari on OS X currently doesn&#8217;t support it and Internet Explorer 7 only supports it on Windows Vista and not Windows XP.  So SNI is being held back due to a lack of support from IE and Safari, these are two fairly significant browsers which many people use &#8211; admins can&#8217;t ignore either of them.</p>
<p>SNI is only just becoming available in Linux distributions with Apache 2.2.8 and the latest versions of OpenSSL, so it isn&#8217;t available to everyone just yet.  However being unable to use it for many years due to the fact that any Internet Explorer user on Windows XP won&#8217;t be able to view any SNI sites is going to be a huge hinderance towards adopting it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/10/17/server-name-indication-being-held-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3ware 8006-2LP RAID with CentOS 5</title>
		<link>http://blogoholic.co.uk/2008/10/14/3ware-8006-2lp-raid-with-centos-5/</link>
		<comments>http://blogoholic.co.uk/2008/10/14/3ware-8006-2lp-raid-with-centos-5/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 12:50:42 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=58</guid>
		<description><![CDATA[The Hetzner DS-8000 servers feature a 3ware RAID card (8006-2LP) for hardware RAID 1, a nice feature &#8211; although the default CentOS setup is slightly broken with SELinux.  After several hours of wondering why smartd wouldn&#8217;t work, /var/log/audit/audit.log reveals the following:
type=AVC msg=audit(1223922183.059:22): avc:  denied  { getattr } for  pid=2654 comm="smartd" path="/dev/twe0" dev=tmpfs ino=8940 scontext=user_u:system_r:fsdaemon_t:s0 tcontext=user_u:
object_r:device_t:s0 [...]]]></description>
			<content:encoded><![CDATA[<p>The Hetzner DS-8000 servers feature a 3ware RAID card (8006-2LP) for hardware RAID 1, a nice feature &#8211; although the default CentOS setup is slightly broken with SELinux.  After several hours of wondering why smartd wouldn&#8217;t work, /var/log/audit/audit.log reveals the following:</p>
<pre>type=AVC msg=audit(1223922183.059:22): avc:  denied  { getattr } for  pid=2654 comm="smartd" path="/dev/twe0" dev=tmpfs ino=8940 scontext=user_u:system_r:fsdaemon_t:s0 tcontext=user_u:
object_r:device_t:s0 tclass=chr_file</pre>
<p>A good administrator will probably want to add some <a href="http://www.centos.org/docs/5/html/5.2/Deployment_Guide/sec-sel-policy-customizing.html">custom SELinux policies</a>, but the lazy admin might just want to disable SELinux.  I went with the disabling of SELinux as the easier option!  It&#8217;s not a recommended solution though.</p>
<p>Eventually I got smartd working again, so I&#8217;ve now got decent monitoring of the disks on the machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/10/14/3ware-8006-2lp-raid-with-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Linux but never giving back</title>
		<link>http://blogoholic.co.uk/2008/09/30/using-linux-but-never-giving-back/</link>
		<comments>http://blogoholic.co.uk/2008/09/30/using-linux-but-never-giving-back/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 20:55:15 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=7</guid>
		<description><![CDATA[One great thing we see with Linux is that it&#8217;s used for servers quite frequently, it&#8217;s probably one of the strongest points about it.  A strong and stable server platform which many companies rely on to run many parts of their infrastructure for an organisation.
A common situation we&#8217;ll see are MMORPGs, games with thousands [...]]]></description>
			<content:encoded><![CDATA[<p>One great thing we see with Linux is that it&#8217;s used for servers quite frequently, it&#8217;s probably one of the strongest points about it.  A strong and stable server platform which many companies rely on to run many parts of their infrastructure for an organisation.</p>
<p>A common situation we&#8217;ll see are MMORPGs, games with thousands of players mostly with Windows clients connecting to servers powered by Linux.   Occasionally you&#8217;ll see people trying to run their game client under WINE, but it isn&#8217;t quite the same as running a native game.   These companies use Linux to run their gaming servers, web servers and possibly many other parts of their infrastructure, but when it comes to building a Linux client for their game they&#8217;ll rarely consider it or even dismiss it without even considering the feasibility of it.</p>
<p>I don&#8217;t think anyone expects companies who use Linux to start contributing hundreds of lines of source code back to various projects, but it would be nice if they considered a Linux client of their product where it&#8217;s viable as a way of saying thank you.  They&#8217;re getting the benefits of many hours of effort being placed into a freely available operating system, but they&#8217;re not helping this operating system by refusing to release their product for it.</p>
<p>In an ideal world we&#8217;d see multi platform clients, maybe we&#8217;ll see more if it one day.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/09/30/using-linux-but-never-giving-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu on the Aspire One</title>
		<link>http://blogoholic.co.uk/2008/08/26/ubuntu-on-the-aspire-one/</link>
		<comments>http://blogoholic.co.uk/2008/08/26/ubuntu-on-the-aspire-one/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 01:40:25 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogoholic.co.uk/?p=44</guid>
		<description><![CDATA[Okay, I didn&#8217;t last long.  After 24 hours of sticking with Linpus I eventually decided to install Ubuntu on the laptop, even though adjusting it for the Aspire One was going to involve some tweaking &#8211; sticking with Linpus would&#8217;ve ended up annoying me.
The AspireOne page on the Ubuntu wiki explains how to get [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I didn&#8217;t last long.  After 24 hours of sticking with Linpus I eventually decided to install Ubuntu on the laptop, even though adjusting it for the Aspire One was going to involve some tweaking &#8211; sticking with Linpus would&#8217;ve ended up annoying me.</p>
<p>The <a href="https://help.ubuntu.com/community/AspireOne">AspireOne</a> page on the Ubuntu wiki explains how to get you Ubuntu up and running.  The Aspire One supports PXE booting, which I found far easier to setup than fiddling about with a USB stick just to get the install going.</p>
<p>The <a href="https://launchpad.net/netbook-remix">Ubuntu Netbook remix</a> includes some great packages which are useful for running GNOME on a small screen, I did try them all however I wasn&#8217;t too happy with the UME launcher.  I&#8217;d highly recommend Maximus, an application which maximises open windows and removes the top bar from running programs, window-picker-applet which is ideal with Maximus and doesn&#8217;t hog too much space for switching between programs, and human-netbook-theme for a few visual tweaks.</p>
<p><a href="http://blogoholic.co.uk/wp-content/uploads/2008/08/blogholic-aspire-one.png"><img class="aligncenter size-medium wp-image-45" title="blogoholic.co.uk aspire one" src="http://blogoholic.co.uk/wp-content/uploads/2008/08/blogholic-aspire-one-300x175.png" alt="" width="300" height="175" /></a></p>
<p>Overall I&#8217;m fairly happy, now I&#8217;ve got the power of Ubuntu for this laptop.  Hopefully the weird quirks and bugs which the Aspire One has will be ironed out in future releases.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogoholic.co.uk/2008/08/26/ubuntu-on-the-aspire-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
