<?xml version="1.0" encoding="utf-8" ?>

<rss version="0.91" >
<channel>
<title>Mark's blog</title>
<link>http://www.markround.com/</link>
<description>Solaris, Linux, BSD and other techie things...</description>
<language>en</language>
<image>
        <url>http://www.markround.com/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Mark's blog - Solaris, Linux, BSD and other techie things...</title>
        <link>http://www.markround.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Xenserver snapshot and template based backup script</title>
    <link>http://www.markround.com/archives/61-Xenserver-snapshot-and-template-based-backup-script.html</link>

    <description>
        We have recently started using &lt;a href=&quot;http://www.citrix.com/English/ps2/products/product.asp?contentID=683148&quot; title=&quot;Citrix Xenserver&quot;&gt;Citrix Xenserver&lt;/a&gt; in production at work (fantastic product, I must do a write-up soon!) and needed a simple backup solution. Our VMs run from an iSCSI SAN and are backed up daily through various methods - e.g. &lt;a href=&quot;http://www.bacula.org/en/&quot; title=&quot;Bacula backup system&quot;&gt;Bacula&lt;/a&gt; for the Unix/Linux systems. However, we wanted the ability to quickly roll back to a previous VM snapshot, and get up and running quickly if our SAN failed for whatever reason. Our solution was to create a large shared NFS storage repository, and periodically snapshot VMs and copy the templates over to this SR. Doing this means that if the SAN fails, we can create a new VM quickly from this NFS store (using the Xenserver&#039;s local disks, or even the NFS SR itself as storage). Once up and running, we can bring VMs back up to date by restoring the latest backup to them. &lt;br /&gt;&lt;br /&gt;In order to automate this, I wrote a quick script which I thought may prove useful to someone else, so decided to post it here : &lt;a href=&quot;http://www.markround.com/static/snapback.sh&quot; title=&quot;Xenserver snapshot and template backup script&quot;&gt;snapback.sh&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;It is very simple, and although it may serve well as your only backup solution, it&#039;s really intended as an image-level compliment to your primary file-system based backup system such as Bacula, Amanda, Netbackup etc. It also has not had much testing, and I fully appreciate the scripting is pretty rudimentary and could do with some optimisation - there&#039;s no error checking, for instance. I kept it pretty verbose on purpose though, so you can get a good idea of exactly what it&#039;s doing at each step; it may be better to think of this as a template you can base your own scripts off!&lt;br /&gt; 
&lt;h2&gt;Overview&lt;/h2&gt;The script creates a snapshot of a running VM on a configurable schedule, and then creates a template from this snapshot. It will copy all these backup templates over to a configurable storage repository, and then clean up any old backups according to a specified retention policy. These backups are full backups, so if you have a 10GB VM and keep 7 previous copies you will need a total of 80GB disk space on your backup VM. Non-running VMs, and those not configured (as detailed below) will be skipped.&lt;br /&gt; 
&lt;h2&gt;Installation and usage&lt;/h2&gt;First, copy the script to your Xenserver pool master, and make it executable. A good location for this is /usr/local/bin/snapback.sh.&lt;br /&gt;&lt;br /&gt;Next, create a cron entry for the script - to make it run daily just after 1AM, you&#039;d create /etc/cron.d/backup with the following contents :&lt;br /&gt; 
&lt;pre&gt;2 1 * * * root /usr/local/bin/snapback.sh &amp;gt; /var/log/snapback.log 2&amp;gt;&amp;amp;1&lt;/pre&gt; 
&lt;p&gt;This will also record a log of it&#039;s actions to /var/log/snapback.log. You now need to edit the script and change the &lt;strong&gt;DEST_SR&lt;/strong&gt; variable to the UUID of your backup storage repository. You can find this value by clicking on the SR in Xencenter; the UUID will be displayed as a value like &amp;quot;2c01dc26-f525-70d6-dedf-00baaec76645&amp;quot;.&lt;br /&gt;&lt;br /&gt;Lastly, you need to configure your backup and retention policy for your VMs. In Xencenter, right click your VM, and select &amp;quot;Properties&amp;quot;. Click on &amp;quot;Custom Fields&amp;quot;, and then &amp;quot;Edit Custom Fields&amp;quot;. You should add two text fields :&lt;br /&gt;&lt;/p&gt; 
&lt;ul&gt; 
&lt;li&gt;&lt;strong&gt;backup&lt;/strong&gt; : Can be one of &amp;quot;daily&amp;quot;, &amp;quot;weekly&amp;quot;, or &amp;quot;monthly&amp;quot;. If it is set to weekly, it will by default run on a Sunday, and if it set to monthly, it will run on the first Sunday of the month. This day can be changed at the top of the script - see the &lt;strong&gt;WEEKLY_ON&lt;/strong&gt; and &lt;strong&gt;MONTHLY_ON&lt;/strong&gt; variables.&lt;/li&gt; 
&lt;li&gt;&lt;strong&gt;retain&lt;/strong&gt; : How many previous backups (in addition to the currently running backup) to keep. So, setting this to a value of &amp;quot;2&amp;quot; would mean that after a backup has run, you would end up with 3 backups in total.&lt;/li&gt; 
&lt;/ul&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 321px;&quot;&gt; 
&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;!-- s9ymdb:76 --&gt;&lt;img width=&quot;321&quot; height=&quot;289&quot; class=&quot;serendipity_image_center&quot; src=&quot;http://www.markround.com/uploads/uploads/newfield.png&quot; title=&quot;Adding a custom field&quot; alt=&quot;Adding a custom field&quot; /&gt;&lt;/div&gt; 
&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Adding a custom field&lt;/div&gt; 
&lt;/div&gt; 
&lt;p&gt;The script will look for these fields when it is run, and will skip any VM that doesn&#039;t have them set. You can also see them in the Xencenter summary and properties for the VM :  &lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 220px;&quot;&gt; 
&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&quot;serendipity_image_link&quot; title=&quot;VM summary showing the custom fields&quot; href=&quot;http://www.markround.com/uploads/uploads/summary.png&quot;&gt;&lt;!-- s9ymdb:78 --&gt;&lt;img width=&quot;220&quot; height=&quot;105&quot; class=&quot;serendipity_image_center&quot; src=&quot;http://www.markround.com/uploads/uploads/summary.serendipityThumb.png&quot; title=&quot;VM summary showing the custom fields&quot; alt=&quot;VM summary showing the custom fields&quot; /&gt;&lt;/a&gt;&lt;/div&gt; 
&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;VM summary showing the custom fields&lt;/div&gt; 
&lt;/div&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;p&gt;You can now either run the script manually, or wait until the cron job kicks off. It will produce a detailed log to the console (or log file if run through cron), and when it&#039;s finished, you&#039;ll see your template backup VMs listed in Xencenter, similar to this :&lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 187px;&quot;&gt; 
&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;!-- s9ymdb:77 --&gt;&lt;img width=&quot;187&quot; height=&quot;37&quot; class=&quot;serendipity_image_center&quot; src=&quot;http://www.markround.com/uploads/uploads/backups.png&quot; title=&quot;Backups listed in Xencenter&quot; alt=&quot;Backups listed in Xencenter&quot; /&gt;&lt;/div&gt; 
&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Backups listed in Xencenter&lt;/div&gt; 
&lt;/div&gt;&lt;br /&gt;If you find that this clutters up the Xencenter view a little, you can always hide them (View-&amp;gt;Server View-&amp;gt;Custom Templates). To restore a VM from a backup, just right click, and choose &amp;quot;New template from backup&amp;quot;. Anyway, I hope this helps someone else!&lt;br /&gt;&lt;br /&gt; 
    </description>
</item>
<item>
    <title>Linux, Solaris and FreeBSD iostat monitoring with Cacti</title>
    <link>http://www.markround.com/archives/48-Linux,-Solaris-and-FreeBSD-iostat-monitoring-with-Cacti.html</link>

    <description>
        &lt;p&gt;I&#039;ve been looking for ages for a tool to parse the output from &amp;quot;iostat&amp;quot; on Linux, and graph it in &lt;a href=&quot;http://www.cacti.net&quot; title=&quot;Cacti monitoring tool&quot;&gt;Cacti&lt;/a&gt;. I found a few scripts and templates that did some of what I was looking for (disk I/O etc.), but nothing that gave me the full set of statistics such as queue length, utilisation, service time etc. I finally got round to writing my own set of templates and a data gathering script to provide this information, and it seems to work very well. So that others can benefit, I&#039;ve posted the package archive and a brief description over on the &lt;a href=&quot;http://forums.cacti.net/viewtopic.php?t=29426&quot; title=&quot;iostat cacti templates&quot;&gt;Cacti forums&lt;/a&gt; (click &lt;a href=&quot;http://www.markround.com/archives/48-Linux-iostat-monitoring-with-Cacti.html#extended&quot;&gt;Continue Reading&lt;/a&gt; for a download link to an updated version - the one on the Cacti forums has a bug so that it won&#039;t work with all versions of sysstat). Below are a couple of sample graphs to give you an idea of what it can do - there&#039;s also a few more samples posted in the Cacti forums thread :&lt;!-- s9ymdb:49 --&gt;&lt;/p&gt; 
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 595px;&quot;&gt; 
&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;!-- s9ymdb:49 --&gt;&lt;img width=&quot;595&quot; height=&quot;245&quot; src=&quot;http://www.markround.com/uploads/bytes_sec.png&quot; class=&quot;serendipity_image_center&quot; /&gt;&lt;/div&gt; 
&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Displaying iostat&#039;s kB/s data source.&lt;/div&gt; 
&lt;/div&gt; 
&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 595px;&quot;&gt; 
&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;!-- s9ymdb:50 --&gt;&lt;img width=&quot;595&quot; height=&quot;233&quot; src=&quot;http://www.markround.com/uploads/times.png&quot; class=&quot;serendipity_image_center&quot; /&gt;&lt;/div&gt; 
&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Timing information from iostat (average wait and service time)&lt;/div&gt; 
&lt;/div&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;p&gt;Installation is a simple matter of creating a cron job to gather iostat data, extending your snmpd.conf to call the included iostat.pl script, and then importing the templates. Full instructions are included in the README within the archive (click the &lt;a href=&quot;http://www.markround.com/archives/48-Linux-iostat-monitoring-with-Cacti.html#extended&quot; title=&quot;Linux iostat monitoring with Cacti - README&quot;&gt;Continue Reading&lt;/a&gt; link to see them), but if you have any comments, suggestions or problems please let me know! &lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; 
&lt;p&gt; &lt;/p&gt; &lt;br /&gt;&lt;a href=&quot;http://www.markround.com/archives/48-Linux,-Solaris-and-FreeBSD-iostat-monitoring-with-Cacti.html#extended&quot;&gt;Continue reading &quot;Linux, Solaris and FreeBSD iostat monitoring with Cacti&quot;&lt;/a&gt;
    </description>
</item>
<item>
    <title>The setting sun</title>
    <link>http://www.markround.com/archives/60-The-setting-sun.html</link>

    <description>
        &lt;p&gt;
Well, that&#039;s that, then. Solaris as we knew it is pretty much dead. I&#039;ve suspected for a while now that Oracle&#039;s intentions regarding Solaris were not what the community, or us &amp;quot;old-school&amp;quot; Solaris sysadmins wanted or had hoped for.  &lt;/p&gt; 
&lt;p&gt;In the last few months, Oracle have completely alienated and 
scared off the community around OpenSolaris, killed any lines of 
communication by clamping down on employee blogs and have ignored open 
letters from highly influential and important community members begging 
for &lt;em&gt;any&lt;/em&gt; kind of information. Theyve forbidden Sun/Oracle employees 
from heading up the Solaris user groups and booted the meetings out of 
their buildings; turned Solaris 10 into a 90-day trial, and pushed back 
the 2010.x release of OpenSolaris with no word as to its planned 
release date, or even if it is being continued as a product. And now, in a final act of desperation, the OGB has essentially threatened to &amp;quot;&lt;a href=&quot;http://ptribble.blogspot.com/2010/07/moving-opensolaris-forward.html&quot;&gt;shoot itself in the head&lt;/a&gt;&amp;quot;. &lt;/p&gt; 
&lt;div class=&quot;commentBody&quot;&gt; 
&lt;div id=&quot;comment_body_32901998&quot;&gt; 
&lt;p&gt;Even ignoring the OpenSolaris project, It&#039;s not at all rosy in &amp;quot;real&amp;quot; Solaris land, either. Requests for information and clarification are going unanswered, and I know 
of several managers who have had hardware quotes and support tickets 
ignored - there&#039;s a near total blackout of information from Oracle. People are fleeing Solaris in droves, and migrating to anything they can: Linux, FreeBSD (Dtrace and ZFS), AIX - hell, even HP-UX looks like a safer bet at the moment. And I never thought I&#039;d find myself saying that!&lt;br /&gt;&lt;/p&gt; 
&lt;p&gt;It certainly appears that Oracle
 are doing a superb job of killing Solaris. But why would they do this, having paid all that money for Sun and announcing that they will increase
 spending on Solaris development ?&amp;#160; &lt;br /&gt;&lt;/p&gt; 
&lt;p&gt;Well,  &lt;a href=&quot;http://developers.slashdot.org/comments.pl?sid=1719254&amp;amp;cid=32903400&quot; title=&quot;Oracle engineer confirms plans for Solaris&quot;&gt;this
 post&lt;/a&gt; on Slashdot (allegedly from a Sun/Oracle employee) confirms my
 suspicions as to why they may be doing this. Oracle just really doesn&#039;t care about Solaris as a general 
purpose data centre OS any more. There&#039;s just no money in it, and although I 
personally find it tragic it does make sense. It&#039;s probably also why they&#039;re killing all 
their OEM deals - why help a competitor sell hardware, when all you&#039;ll see from it is a possible support contract for the OS ? Oracle&#039;s overall aim is to have 
Solaris relegated to the role of running as the bottom layer in an 
Oracle &amp;quot;database machine&amp;quot;, Java appserver bundle or inside a &amp;quot;&lt;a href=&quot;http://blogs.sun.com/bmc/entry/fishworks_now_it_can_be&quot;&gt;Fishworks&lt;/a&gt;&amp;quot; storage appliance.&lt;/p&gt; 
&lt;p&gt;It excels at 
these tasks, and it would obviously fit into Oracle&#039;s stated goal of 
being a one stop shop, where if you want to run Oracle, they&#039;ll sell you
 the bundle - hardware, storage, OS and software. If they no longer want Solaris to be a dominant general purpose OS, then their approach 
makes sense. They don&#039;t need a &amp;quot;community&amp;quot; around the product, they 
don&#039;t need open source developers porting applications to it, and they 
certainly don&#039;t need the overhead of running and managing a community 
portal any more. Unless you are running (and paying for) Oracle applications on Solaris, you&#039;re probably more of an annoyance to them at the moment and I get the very strong idea that they&#039;d rather you just quietly went elsewhere. &lt;/p&gt; 
&lt;p&gt;I just wish that if this was their plan, they&#039;d make some sort of statement about it; rather than ignoring the Solaris community in the hopes that they&#039;ll eventually get frustrated and leave without Oracle having to spell it out for them. I think the way they are going about it 
reprehensible and it&#039;s a tragic end for such a historic and innovative 
OS. Sadly though, Larry is all about the bottom line and the old, altruistic Sun approach 
just wasn&#039;t bringing in the big bucks. As the Slashdot poster said : &amp;quot;Profit is king here.  Anything else is overhead, and overhead eats into 
Larry&#039;s yacht fund.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Edit:&lt;/strong&gt; Now it&#039;s official : &lt;a href=&quot;http://www.theregister.co.uk/2010/08/13/opensolaris_is_dead/&quot; title=&quot;OpenSolaris is dead&quot;&gt;http://www.theregister.co.uk/2010/08/13/opensolaris_is_dead/ &lt;/a&gt;&lt;br /&gt;&lt;/p&gt; 
&lt;/div&gt; 
&lt;/div&gt; 
    </description>
</item>
<item>
    <title>Leaving the iPhone for the Palm Pre</title>
    <link>http://www.markround.com/archives/59-Leaving-the-iPhone-for-the-Palm-Pre.html</link>

    <description>
        &lt;!-- s9ymdb:75 --&gt;&lt;img width=&quot;130&quot; height=&quot;220&quot; class=&quot;serendipity_image_left&quot; src=&quot;http://www.markround.com/uploads/pre.serendipityThumb.png&quot; /&gt;While I&#039;ve been a long-time Apple user and fan of their hardware, I have to say that I&#039;ve become a little disillusioned of late. Mostly, this has been down to the iPhone: While it&#039;s undeniably been a game-changer and raised everyone&#039;s expectations of what a mobile phone could do, there&#039;s just been an uncomfortable, claustrophobic feel around the whole thing. From the start, there were &lt;a href=&quot;http://arstechnica.com/apple/news/2008/07/iphone-nda-doing-more-harm-than-good.ars&quot; title=&quot;iPhone NDAs&quot;&gt;ridiculous NDAs&lt;/a&gt; preventing developers from even discussing programming the device; an insane culture of overbearing &lt;a href=&quot;http://www.cracked.com/article_18377_5-reasons-you-should-be-scared-apple.html&quot;&gt;secrecy&lt;/a&gt; and &lt;a href=&quot;http://www.cracked.com/article_18377_5-reasons-you-should-be-scared-apple_p2.html&quot;&gt;control&lt;/a&gt;; not to mention Apple &lt;a href=&quot;http://arstechnica.com/apple/news/2009/11/respected-developers-fleeing-from-app-store-platform.ars&quot;&gt;pulling applications&lt;/a&gt; from the app store or rejecting them &lt;a href=&quot;http://techcrunch.com/2009/04/20/apple-rejects-another-app-for-using-an-icon-that-looks-like-an-iphone/&quot;&gt;seemingly on a whim&lt;/a&gt;, censoring content and being generally &lt;a href=&quot;http://carpeaqua.com/2009/07/28/where-do-i-sign-up/&quot;&gt;hacker-unfriendly&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The final straw however was the news that they are &lt;a href=&quot;http://daringfireball.net/2010/03/this_apple_htc_patent_thing&quot;&gt;suing HTC&lt;/a&gt; over patent violation. Software patents are a &lt;a href=&quot;http://www.nosoftwarepatents.com/en/m/intro/index.html&quot;&gt;terrible thing&lt;/a&gt; for this industry, and it appears that instead of competing on their own merits, Apple has chosen to resort to being a patent troll - unsurprising perhaps, given their &lt;a href=&quot;http://jonathanischwartz.wordpress.com/2010/03/09/good-artists-copy-great-artists-steal/&quot;&gt;past behaviour&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;All this neatly coincided with my contract with O2 coming up for renewal, so I could get a new phone. I&#039;d done some research and had narrowed down my iPhone alternatives to just 2 options - Palm Pre, or some Android-powered device. Android would have required me to leave O2, so that really just left the Palm Pre (and Windows Mobile or a Blackberry were right out). All the reviews I&#039;d read were pretty good for the Pre but I wanted to try WebOS out first. Fortunately, this was easy as the &lt;a href=&quot;http://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;layout=page&amp;amp;id=1788&quot;&gt;Palm SDK&lt;/a&gt; includes an emulator. This got me hooked - not only is the emulator based on VirtualBox (which is massively cool), but all the tools such as &amp;quot;WebOS Doctor&amp;quot; are available for Windows, MacOS AND Linux. I even installed it with no problems on the latest Ubuntu Lucid Alpha.&lt;br /&gt;&lt;br /&gt;Playing with WebOS blew me away.&amp;#160; I won&#039;t go into too much detail, as all the review sites have &lt;a href=&quot;http://www.precentral.net/palm-pre-review&quot;&gt;covered the WebOS experience&lt;/a&gt; in far greater depth. I should point out though that since most of the reviews were written, there have been numerous software updates which have brought a great deal of &lt;a href=&quot;http://kb.palm.com/wps/portal/kb/na/pre/p100eww/sprint/solutions/article/50607_en.html#1401&quot;&gt;new features and improvements&lt;/a&gt; - the last 1.4 update for instance added &lt;a href=&quot;http://blog.palm.com/palm/2010/02/whats-new-in-palm-webos-14.html&quot;&gt;video recording&lt;/a&gt; support!&amp;#160; I will however simply say this : It actually makes the iPhone feel clunky in comparison. The multitasking card system combined with the finger gestures is amazingly fluid and intuitive. Little touches throughout such as the notification system, &amp;quot;synergy&amp;quot; contacts system and email handling put this streets ahead of the iPhone.&lt;br /&gt;&lt;br /&gt;I was also pleased to see that there is a thriving &amp;quot;homebrew&amp;quot; &lt;a href=&quot;http://preware.org/#/index/&quot;&gt;community&lt;/a&gt; producing some awesome applications, games and patches to modify the behaviour of the Pre. Case in point - by default, the calendar application doesn&#039;t open in month view by default, nor does it show all-day appointments in that view. A few quick patches later, and I had customised it to my liking. These patches cover a huge range of tweaks, even including an &lt;a href=&quot;http://www.webos-internals.org/wiki/On_Screen_Keyboard&quot;&gt;on-screen keyboard&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The open Linux-based nature of this phone makes it a real hackers playground, yet despite all that geekiness it actually works brilliantly as a phone and communications device. I have all my contacts, Facebook friends, home IMAP mail, work Exchange mail (which works with EAS and remote wipe) and Google calendar syncing flawlessly. As an experiment, after the initial (short) learning curve, I swapped my SIM back out and into my old iPhone. I lasted a few hours before I&#039;d gone back to the Pre in sheer frustration.&lt;br /&gt;&lt;br /&gt;Not everything is quite so rosy, though. I have to say that the hardware build quality is a bit of a let-down. While it feels amazing in your hand (there&#039;s something about the form factor, dimensions and curves that make it feel comfortable) it does feel a bit.... flimsy. Replacing the back with the awesome &lt;a href=&quot;http://www.palminfocenter.com/news/9819/palm-touchstone-kit-review/&quot;&gt;Touchstone kit&lt;/a&gt; helps a great deal, as does adding a case and screen protector. &lt;br /&gt;&lt;br /&gt;There&#039;s also the continued doom-and-gloom from the Tech pundits casting a cloud over Palm&#039;s future; but with news of a full App Market &lt;a href=&quot;http://www.palm.com/uk/en/emails/pre/ea/user/index.html&quot;&gt;coming at the end of this month&lt;/a&gt; to UK users; an &lt;a href=&quot;http://www.precentral.net/facebook-webos-updated-video-and-gallery&quot;&gt;updated Facebook application&lt;/a&gt;; the &lt;a href=&quot;http://www.precentral.net/palm-releases-webos-pdk-beta&quot;&gt;PDK&lt;/a&gt; and &lt;a href=&quot;http://www.precentral.net/adobe-declares-only-armv7-android-devices-getting-flash-101-pre-good-pixi-not-so-much&quot;&gt;Flash&lt;/a&gt; coming; and even &lt;a href=&quot;http://www.precentral.net/qt-app-platform-and-running-palm-pre&quot;&gt;QT&lt;/a&gt; being ported I&#039;d say things are looking up.&lt;br /&gt;&lt;br /&gt;Bye bye, Apple... 
    </description>
</item>

</channel>
</rss>
