<?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>Danny Tsang &#187; XML</title>
	<atom:link href="http://www.dannytsang.co.uk/index.php/tag/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dannytsang.co.uk</link>
	<description>A diary of (mostly) technology related encounters in the life of Danny Tsang</description>
	<lastBuildDate>Tue, 31 Aug 2010 23:01:28 +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>MediaTomb DLNA To Playstation 3</title>
		<link>http://www.dannytsang.co.uk/index.php/mediatomb-dlna-to-playstation-3/</link>
		<comments>http://www.dannytsang.co.uk/index.php/mediatomb-dlna-to-playstation-3/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 00:01:19 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[divx]]></category>
		<category><![CDATA[DLNA]]></category>
		<category><![CDATA[MediaTomb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[myth]]></category>
		<category><![CDATA[MythTV]]></category>
		<category><![CDATA[Playstation]]></category>
		<category><![CDATA[Sony]]></category>
		<category><![CDATA[sony playstation]]></category>
		<category><![CDATA[sony playstation 3]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[UPNP]]></category>
		<category><![CDATA[upnp server]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XviD]]></category>

		<guid isPermaLink="false">http://www.dannytsang.co.uk/?p=2566</guid>
		<description><![CDATA[Overview I found the Video plugin for MythTV 0.21 to be inadequate for streaming to the Sony Playstation 3. It didn&#8217;t update fast enough when you dropped a video into the UPnP directory and also there was no external way of telling it to refresh it&#8217;s list of files without starting up Myth Frontend. MediaTomb [...]


Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/full-disk-mediatomb-hog/' rel='bookmark' title='Permanent Link: Full Disk &#8211; MediaTomb Hog'>Full Disk &#8211; MediaTomb Hog</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/dvdrip/' rel='bookmark' title='Permanent Link: dvd::rip'>dvd::rip</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/ubuntu-music-streaming-server-ampache/' rel='bookmark' title='Permanent Link: Ubuntu Music Streaming Server &#8211; Ampache'>Ubuntu Music Streaming Server &#8211; Ampache</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>Overview</h3>
<p>I found the Video plugin for <a href="http://www.mythtv.org/" target='_blank'>MythTV</a> 0.21 to be inadequate for streaming to the Sony Playstation 3. It didn&#8217;t update fast enough when you dropped a video into the UPnP directory and also there was no external way of telling it to refresh it&#8217;s list of files without starting up Myth Frontend.</p>
<h3>MediaTomb</h3>
<p>MediaTomb is a UPnP server which can run as a standalone or as a daemon. It uses an XML configuration file for it&#8217;s settings (pretty neat stuff) and is pretty small in size. The software comes with it&#8217;s own web server so you don&#8217;t have to install a full apache install to get to the control panel and it uses <a href="http://www.sqlite.org/" target='_blank'>SQLite</a> by default so no big database backend to be installed.</p>
<h3>Install &#038; Configure MediaTomb</h3>
<p>Install MediaTomb and ffmeg thumbnailer<br />
<code>sudo apt-get install mediatomb ffmpegthumbnailer</code><br />
That&#8217;s it for the install!</p>
<p>edit the file config file in <strong>/etc/mediatomb/config.xml</strong> and change the following settings:</p>
<p>Enable PS3 support change this:</p>
<blockquote><p>&lt;protocolInfo extend=&#8221;no&#8221;/&gt;&lt;!&#8211; For PS3 support change to &#8220;yes&#8221; &#8211;&gt;</p></blockquote>
<p>to</p>
<blockquote><p>&lt;protocolInfo extend=&#8221;yes&#8221;/>&lt;!&#8211; For PS3 support change to &#8220;yes&#8221; &#8211;&gt;</p></blockquote>
<p>and also</p>
<blockquote><p>&lt;!&#8211; &lt;map from=&#8221;avi&#8221; to=&#8221;video/divx&#8221;/&gt; &#8211;&gt;</p></blockquote>
<p>to</p>
<blockquote><p>&lt;map from=&#8221;avi&#8221; to=&#8221;video/divx&#8221;/&gt;</p></blockquote>
<p>Add the line<br />
<code>&lt;pc-directory upnp-hide="yes"/&gt;</code><br />
below<br />
<code>&lt;webroot&gt;/usr/share/mediatomb/web&lt;/webroot&gt;</code><br />
so that it looks like this<br />
<code>&lt;webroot&gt;/usr/share/mediatomb/web&lt;/webroot&gt;<br />
&lt;pc-directory upnp-hide="yes"/&gt;</code><br />
This hides the full directory path from the Playstation so it can only view the directories added and not the full system.</p>
<p>Add the following to enable thumbnail previews. I have found this does not work 100% of the time.</p>
<p>Enable transcoding<br />
<code>&lt;transcoding enabled="no"&gt;</code><br />
to<br />
<code>&lt;transcoding enabled="yes"&gt;</code></p>
<p>Add the following transcode mappings under <strong>&lt;mimetype-profile-mappings&gt;</strong> tag:</p>
<blockquote><p>&lt;transcode mimetype=&#8221;video/divx&#8221; using=&#8221;video-thumbnail&#8221;/&gt;<br />
 	  &lt;transcode mimetype=&#8221;video/mpeg&#8221; using=&#8221;video-thumbnail&#8221;/&gt;<br />
 	  &lt;transcode mimetype=&#8221;video/mp4&#8243; using=&#8221;video-thumbnail&#8221;/&gt;<br />
 	  &lt;transcode mimetype=&#8221;video/x-ms-wmv&#8221; using=&#8221;video-thumbnail&#8221;/&gt;</p></blockquote>
<p>Add the following settings between the <strong>&lt;profiles&gt;&lt;/profiles&gt;</strong> elements. Not the parent is plural and each profile is singular.</p>
<blockquote><p>&lt;profile name=&#8221;video-thumbnail&#8221; enabled=&#8221;yes&#8221; type=&#8221;external&#8221;&gt;<br />
                        &lt;mimetype&gt;image/jpeg&lt;/mimetype&gt;<br />
                        &lt;accept-url&gt;yes&lt;/accept-url&gt;<br />
                        &lt;thumbnail&gt;yes&lt;/thumbnail&gt;<br />
                        &lt;resolution&gt;128&#215;128&lt;/resolution&gt;<br />
                        &lt;agent command=&#8221;/usr/bin/ffmpegthumbnailer&#8221; arguments=&#8221;-i %in -o %out -s 128&#8243;/&gt;<br />
                        &lt;buffer size=&#8221;524288&#8243; chunk-size=&#8221;512&#8243; fill-size=&#8221;1024&#8243;/&gt;<br />
                &lt;/profile&gt;</p></blockquote>
<p>Restart MediaTomb service <code>sudo /etc/init.d/mediatomb restart</code> If it fails to restart then double check the config file for errors.</p>
<p>Go to the machine in a web browser on port 49152 e.g http://localhost:49152</p>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2010/02/MediaTomb-Adding-directory.png" rel="lightbox[2566]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2010/02/MediaTomb-Adding-directory-150x150.png" alt="" title="MediaTomb Adding directories" width="150" height="150" class="aligncenter size-thumbnail wp-image-2588" /></a></div>
<p>On this web page configures the directories available over UPnP. The Database section shows what directories are visible / registered to MediaTomb and Filesystem shows the computer directories that can be added for DLNA / UPnP visibility. When a directory is added MediaTomb scans the directory and register them so they show up on the Playstation. These can include music, videos and pictures.</p>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2010/02/MediaTomb-Update-Frequency.png" rel="lightbox[2566]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2010/02/MediaTomb-Update-Frequency-150x150.png" alt="" title="MediaTomb Update Frequency" width="150" height="150" class="aligncenter size-thumbnail wp-image-2663" /></a></div>
<p>In the top right hand corner there is a plus &#8220;+&#8221; with two arrows around it. Clicking on it loads a new page in the main window, replacing the file lists in the directory. This is the page for setting how often it scans for changes.</p>
<p>Go to the Playstation, turn it on and go to the relevant category e.g photo in the menu. There should be a MediaTomb server in the list. If it does not appear go towards the top and scan for more media servers to look for MediaTomb.</p>
<h3>Summary</h3>
<p>The software is pretty self contained but I would have liked the option to use Apache and MySQL because those are already installed on my system.</p>
<p>MediaTomb does the job for now and whilst I cannot get the thumbnails to work on all the media it still does a brillant job of streaming the media to the Playstation. Unfortunately it&#8217;s not integrated into <a href="http://www.mythtv.org/" target='_blank'>MythTV</a> so records will still have to be done via <a href="http://www.mythtv.org/" target='_blank'>MythTV</a> but this is not a problem because all recorded TV shows are registered in the database.</p>
<p>A problem I did encounter was that I added multiple directories but reguardless of where they reside on the computer, all videos appear in one directory on the Playstation. I&#8217;m not  sure if this is a bug or how it&#8217;s suppose to work.</p>
<p><a href="http://ubuntuforums.org/showthread.php?t=650020&#038;page=5" target="_blank">[HOWTO]:Stream DivX/XviD to a PS3 with firmware 2.10 using MediaTomb and Ubuntu 7</a></p>

<a href='http://www.dannytsang.co.uk/index.php/mediatomb-dlna-to-playstation-3/mediatomb-adding-directory/' title='MediaTomb Adding directories'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2010/02/MediaTomb-Adding-directory-150x150.png" class="attachment-thumbnail" alt="MediaTomb Adding directories" title="MediaTomb Adding directories" /></a>
<a href='http://www.dannytsang.co.uk/index.php/mediatomb-dlna-to-playstation-3/mediatomb-update-frequency/' title='MediaTomb Update Frequency'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2010/02/MediaTomb-Update-Frequency-150x150.png" class="attachment-thumbnail" alt="MediaTomb Update Frequency" title="MediaTomb Update Frequency" /></a>



<p>Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/full-disk-mediatomb-hog/' rel='bookmark' title='Permanent Link: Full Disk &#8211; MediaTomb Hog'>Full Disk &#8211; MediaTomb Hog</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/dvdrip/' rel='bookmark' title='Permanent Link: dvd::rip'>dvd::rip</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/ubuntu-music-streaming-server-ampache/' rel='bookmark' title='Permanent Link: Ubuntu Music Streaming Server &#8211; Ampache'>Ubuntu Music Streaming Server &#8211; Ampache</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dannytsang.co.uk/index.php/mediatomb-dlna-to-playstation-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to access MythTV Perl API.  Try with &#8211;verbose to find out why.</title>
		<link>http://www.dannytsang.co.uk/index.php/unable-to-access-mythtv-perl-api-try-with-verbose-to-find-out-why/</link>
		<comments>http://www.dannytsang.co.uk/index.php/unable-to-access-mythtv-perl-api-try-with-verbose-to-find-out-why/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 09:28:00 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MythTV]]></category>
		<category><![CDATA[mythtv-status]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[T.V]]></category>
		<category><![CDATA[tv guide]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu 8.04]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.dannytsang.co.uk/?p=2491</guid>
		<description><![CDATA[I have been getting the error message Unable to access MythTV Perl API. Try with &#8211;verbose to find out why. on MythTv running on Ubuntu 8.04. It wasn&#8217;t bothering me too much because the TV guide was still being updated. Also I believe this is something to do with MythTV-Status only which prints out in [...]


Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/mythweb-preview/' rel='bookmark' title='Permanent Link: MythWeb Preview'>MythWeb Preview</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/enabling-remote-access-to-mysql/' rel='bookmark' title='Permanent Link: Enabling Remote Access To MySQL'>Enabling Remote Access To MySQL</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/xmltv-error-6400-and-xmltv-error-2304/' rel='bookmark' title='Permanent Link: XMLTV Error 6400 And XMLTV Error 2304'>XMLTV Error 6400 And XMLTV Error 2304</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have been getting the error message </p>
<blockquote><p>Unable to access MythTV Perl API.  Try with &#8211;verbose to find out why.</p></blockquote>
<p>on <a href="http://www.mythtv.org/" target='_blank'>MythTv</a> running on <a href="http://www.ubuntu.com/" target='_blank'>Ubuntu</a> 8.04. It wasn&#8217;t bothering me too much because the TV guide was still being updated. Also I believe this is something to do with <a href="http://www.mythtv.org/" target='_blank'>MythTV</a>-Status only which prints out in the console what is being recorded (if any), next up coming recording and the amount of available space.</p>
<p>The problem is the <a href="http://www.mythtv.org/" target='_blank'>MythTv</a>-Status program is ran on a schedule and is requires the <strong>config.xml</strong> in the <strong>~/.mythtv</strong> directory to be copied or a symbolic link in <strong>/root/.mythtv</strong> Run the following commands to solve the problem:<br />
<code>$ sudo mkdir /root/.<a href="http://www.mythtv.org/" target='_blank'>mythtv</a><br />
$ sudo ln -s ~/.<a href="http://www.mythtv.org/" target='_blank'>mythtv</a>/config.xml<br />
$ sudo /etc/init.d/<a href="http://www.mythtv.org/" target='_blank'>mythtv</a>-status reload</code></p>
<p>The last command will run <a href="http://www.mythtv.org/" target='_blank'>MythTv</a>-Status to read the new configuration XML file and run without any errors.</p>
<p>The only problem it has caused is that it does not say how many days worth or TV guide it has where as before this fix it specified it with errors.</p>
<p><a href="http://ubuntuforums.org/showthread.php?t=770188" target="_blank">Unable to access MythTV Perl API. Try with &#8211;verbose to find out why. Ubuntu Forum</a></p>


<p>Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/mythweb-preview/' rel='bookmark' title='Permanent Link: MythWeb Preview'>MythWeb Preview</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/enabling-remote-access-to-mysql/' rel='bookmark' title='Permanent Link: Enabling Remote Access To MySQL'>Enabling Remote Access To MySQL</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/xmltv-error-6400-and-xmltv-error-2304/' rel='bookmark' title='Permanent Link: XMLTV Error 6400 And XMLTV Error 2304'>XMLTV Error 6400 And XMLTV Error 2304</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dannytsang.co.uk/index.php/unable-to-access-mythtv-perl-api-try-with-verbose-to-find-out-why/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Recording CurrentCost Data &amp; Viewing It On The Web</title>
		<link>http://www.dannytsang.co.uk/index.php/recording-currentcost-data-viewing-it-on-the-web/</link>
		<comments>http://www.dannytsang.co.uk/index.php/recording-currentcost-data-viewing-it-on-the-web/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 17:20:07 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[64 bit windows]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[apache web server]]></category>
		<category><![CDATA[cc128]]></category>
		<category><![CDATA[client server architecture]]></category>
		<category><![CDATA[CurrentCost]]></category>
		<category><![CDATA[energy]]></category>
		<category><![CDATA[flot]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.dannytsang.co.uk/?p=2245</guid>
		<description><![CDATA[Overview I have (finally) got my project to a working stage so I thought I&#8217;d write a bit about it. After buying a CurrentCost CC128 device I was not happy with the software on the Internet for extracting the data. The FDI chip used on the USB cable to the device did not support 64 [...]


Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/current-cost-cc128-envi-review/' rel='bookmark' title='Permanent Link: Current Cost CC128 Envi Review'>Current Cost CC128 Envi Review</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/energyhome-0-4/' rel='bookmark' title='Permanent Link: energy@home 0.4'>energy@home 0.4</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/nas-requirements/' rel='bookmark' title='Permanent Link: NAS Requirements'>NAS Requirements</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>Overview</h3>
<p>I have (finally) got my project to a working stage so I thought I&#8217;d write a bit about it. After buying a CurrentCost CC128 device I was not happy with the software on the Internet for extracting the data. The FDI chip used on the USB cable to the device did not support 64 bit Windows 7 so it crashed on me and the <a href="http://www.linux.org" target='_blank'>Linux</a> alternatives were basic and look fairly complicated to set up.</p>
<h3>Planning</h3>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2009/08/CurrentCost.png" rel="lightbox[2245]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2009/08/CurrentCost-150x150.png" alt="Architecture Diagram" title="Architecture Diagram" width="150" height="150" class="aligncenter size-thumbnail wp-image-2246" /></a></div>
<p>I want the data to be accessed via a web page. I decided to use JavaScript to implement the graphing and AJAX to do a client &#8211; server architecture. Also it&#8217;s the most popular way of generating dynamic web page which I hope the graph would be done in near real time.</p>
<p>I have not decided what technology for the server side script which would handle the AJAX requests but I ended up using PHP. The PHP script retrieves data from the database, formats it and sends it back to the web page to be graphed.</p>
<p>I have a LAMP stack configuration so I&#8217;m using an Apache web server with a MySQL database. All the device data will be stored in the database by a another script which I wanted to use Python for.</p>
<p>The Python script listened for the XML strings sent via a USB cable from the CurrentCost device. The script would then extract the data from XML and store it into the database.</p>
<p>From the start I wanted my software to run on a <a href="http://www.linux.org" target='_blank'>Linux</a> based system because I want a server at home running on <a href="http://www.linux.org" target='_blank'>Linux</a> 24/7. This would allow my other devices to be freely turn it self off etc. Also most of other services were on <a href="http://www.linux.org" target='_blank'>Linux</a>.</p>
<h3>Implementation</h3>
<p>The FDI chip from the USB cable takes care of the USB to Serial conversion which makes reading data a lot easier but also it uses an up to date connection. Using a terminal and example XML documents found on the web I could see what the XML format looks like. All data is sent every 6 seconds over USB to a serial port. Ever 1 minutes past the hour e.g 15:01 historical data is sent over the cable or by pressing a button on the device.</p>
<p>Once received the Python script parses the XML, extracts data it needs and inserts it into the database.</p>
<p>When a user views the web page, an asynchronous request is sent to the PHP server side script, gets the data from the database and returns it to the web page. The web page then formats it correctly to be parsed into a JavaScript Graph. The web page is currently set to refresh every 10 seconds but this may change depending on how the server holds up.</p>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2009/08/graph.jpg" rel="lightbox[2245]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2009/08/graph-150x150.jpg" alt="Graph" title="Graph" width="150" height="150" class="aligncenter size-thumbnail wp-image-2247" /></a></div>
<h3>Problems</h3>
<p>At the moment there are loads of problems and improvements that can be done. This is just a brief post of what I have so far. The Python script can&#8217;t handle the historical data and falls over so it won&#8217;t run longer than 1 hour.</p>
<p>The AJAX response returns a formatted string. I want to convert this to an XML response so it&#8217;s easier / cleaner to retrieve multiple data.</p>
<p>I want to limit the data by date / time because the graph will look tiny / there would be a lot of information being sent back and forth every 10 seconds refresh.</p>
<p>I&#8217;m not happy with the scaling of the graphs. It&#8217;s using dual axis for energy and temperature.</p>
<p>Some sort of statistics besides a graph like total engery consumed for x days/months/years, etc.</p>
<p>Eventually the Python script will become a <a href="http://www.linux.org" target='_blank'>Linux</a> Daemon but this is only once it&#8217;s stable enough.</p>
<p>Twitter Integration would be nice. I would use the Python script to post a tweet every hour with a simple message. The profile will be protected so that only I can see what it says.</p>
<h3>Summary</h3>
<p>Still got ways to go but it&#8217;s getting there. It&#8217;s nice to finally see something from my days of work. Especially if I have never used Python or PHP from scratch before.</p>
<p><a href="http://www.dannytsang.co.uk/current-cost-cc128-envi-review/"><br />
CurrentCost previous post</a></p>
<p><a href="http://www.currentcost.com" target="_blank">CurrentCost Website</a></p>
<p><a href="http://www.currentcost.com/cc128/xml.htm" target="_blank">CurrentCost XML Specification</a></p>
<p><a href="http://dalelane.co.uk/blog/?p=456" target="_blank">Dale Lane&#8217;s Blog on how to get data from a CurrentCost device</a></p>


<p>Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/current-cost-cc128-envi-review/' rel='bookmark' title='Permanent Link: Current Cost CC128 Envi Review'>Current Cost CC128 Envi Review</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/energyhome-0-4/' rel='bookmark' title='Permanent Link: energy@home 0.4'>energy@home 0.4</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/nas-requirements/' rel='bookmark' title='Permanent Link: NAS Requirements'>NAS Requirements</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dannytsang.co.uk/index.php/recording-currentcost-data-viewing-it-on-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NewsGator RSS</title>
		<link>http://www.dannytsang.co.uk/index.php/newsgator-rss/</link>
		<comments>http://www.dannytsang.co.uk/index.php/newsgator-rss/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 13:33:55 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Aggregator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[NetNewsWire]]></category>
		<category><![CDATA[news reader]]></category>
		<category><![CDATA[NewsGator]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rss reader]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.dannytsang.co.uk/?p=1265</guid>
		<description><![CDATA[Overview Whilst I&#8217;m not new to RSS/ATOM I have only recently started using an RSS Reader/Aggregator/Catcher/what ever you want to call them. RSS is one of the latest developments to use XML standards to deliver content using a subscription model. The RSS can contain anything from text to multimedia. Podcast is an excellent example of [...]


Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/amazon-iphone-app/' rel='bookmark' title='Permanent Link: Amazon iPhone App'>Amazon iPhone App</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/apple-iphone-3g-dock/' rel='bookmark' title='Permanent Link: Apple iPhone 3G Dock'>Apple iPhone 3G Dock</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/griffin-powerjolt/' rel='bookmark' title='Permanent Link: Griffin PowerJolt'>Griffin PowerJolt</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>Overview</h3>
<p>Whilst I&#8217;m not new to RSS/ATOM I have only recently started using an RSS Reader/Aggregator/Catcher/what ever you want to call them. RSS is one of the latest developments to use XML standards to deliver content using a subscription model. The RSS can contain anything from text to multimedia. Podcast is an excellent example of how it works but today I will be discussing RSS news reader from <a href="http://www.newsgator.com/" target="_blank">NewsGator</a>.</p>
<h3>Background</h3>
<p>While RSS has been around for years now and ATOM arriving on the scene I have yet to believe in such methods of reading because almost all feeds that I would use only delivers cut down synopses of each article. This means I would see the title and a short description of the article and to read the full article I have to click on a link to load the web page containing the article. To me this just breaks the user experience as RSS is fairly plainly formatted but it worked for reading. When you click on the link to read the full article the actual site loads up with full of colour, images and adverts.</p>
<p>People may argue that they won&#8217;t get as much visits/hits on their original website. Well the RSS content is pulled from the original site and people have to go there to subscribe to it (most of the time). Now people might say they won&#8217;t get any clicks on their adverts&#8230; I mean sponsors. I do not see the problem with embedding the banners in the RSS feeds itself. RSS does allow this! Then there&#8217;s the argument for mobile devices or low bandwidth users would want a smaller version for faster download. Well most feeds currently that I use are cut down versions. I don&#8217;t see why web developers can&#8217;t include both. The full feed should display a summary for it&#8217;s first paragraph any ways.</p>
<p>I only started to use an RSS reader when I got my <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> 3G. It was handy and cached (the summary at least) of articles from the sites I regularly visit. It saved a lot of time from loading the full site which could take a while when I&#8217;m on the go and reduced to EDGE or GSM. Since then it has rubbed of on the desktop.</p>
<p>I used NetNewsWire on the <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> which was created by <a href="http://www.newsgator.com/" target="_blank">NewsGator</a>. <a href="http://www.newsgator.com/" target="_blank">NewsGator</a> provide an online service similar to <a href="http://www.google.com/" target='_blank'>Google</a> Reader where you can access your feeds online. The reason I chose <a href="http://www.newsgator.com/" target="_blank">NewsGator</a> service over <a href="http://www.google.com/" target='_blank'>Google</a> was because they had their own RSS readers.</p>
<h3>NewsGator Online Reader</h3>
<div align="center"><div id="attachment_1287" class="wp-caption alignnone" style="width: 310px"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/newsgator.png" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/newsgator-300x157.png" alt="NewsGator Online" title="NewsGator Online" width="300" height="157" class="size-medium wp-image-1287" /></a><p class="wp-caption-text">NewsGator Online</p></div></div>
<p><a href="http://www.newsgator.com/" target="_blank">NewsGator&#8217;s website</a> looks similar to <a href="http://www.google.com/reader" target="_blank">Google Reader</a> where your subscriptions are on the left hand side with the main pane where the news is displayed in the middle. On the right is a column for recommendations.</p>
<p>I personally prefer the look of <a href="http://www.newsgator.com/" target="_blank">NewsGator</a> because it&#8217;s clear with no coloured boxes all over the place however I do find the font size to be a tad small.</p>
<p>Both sites use strong or bold font face to highlight unread articles with a leading bracket displaying the number of unread items. Other similarities include tagging feature, email / share the article and function to mark the item as read or unread. Both sites offer different display options from list view to summary.</p>
<div align="center"><div id="attachment_1286" class="wp-caption alignnone" style="width: 310px"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/google-reader.png" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/google-reader-300x157.png" alt="Google Reader" title="Google Reader" width="300" height="157" class="size-medium wp-image-1286" /></a><p class="wp-caption-text">Google Reader</p></div></div>
<p><a href="http://www.google.com/" target='_blank'>Google</a> does have some cool statistics showing your reading habits as well as the ability to &#8220;star&#8221; things. <a href="http://www.newsgator.com/" target="_blank">NewsGator</a> has a similar feature that allows you to attach the news article to your clippings. The best feature of <a href="http://www.google.com/reader" target="_blank">Google Reader</a> is it&#8217;s built in player. This means you can listen to a podcast from within the reader itself.</p>
<h3>NetNewsWire (iPhone)</h3>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-iphone.png" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-iphone-200x300.png" alt="NetNewsWire iPhone Version" title="NetNewsWire iPhone Version" width="200" height="300" class="size-medium wp-image-1293" /></a></div>
<p><a href="http://www.newsgator.com/Individuals/NetNewsWireiPhone/" target="_blank">NetNewsWire</a> is an <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> app from <a href="http://www.newsgator.com/" target="_blank">NewsGator</a> I have used it for a while now. When I first used it, it had few problems. Over time it has had updates and broke more things than it fixed. The current version is doing fairly well. It&#8217;s at the point where it looks like a production quality software. Unfortunately they have moved the settings to the <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> settings page so in order to change anything you have to quit the application, navigate your pages to the settings, open settings and select <a href="http://www.newsgator.com/Individuals/NetNewsWireiPhone/" target="_blank">NetNewsWire</a>. This is very bad but once you have the settings done you would rarely visit it. It&#8217;s still no excuse for not having a link in the application.</p>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-iphone-badge.png" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-iphone-badge.png" alt="NetNewsWire iPhone Version Badge" title="NetNewsWire iPhone Version Badge" width="80" height="88" class="size-medium wp-image-1292" /></a></div>
<p>The application supports badges. Although it does not refresh your RSS feeds when the application is running it does display the number of unread items if you do not read all of them. There is the option to turn this off.</p>
<p>The app can load the full article in the app itself. It looks like an embedded version of Safari but it does not support the accelerometer.</p>
<p>The <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> version also doesn&#8217;t have any other display or filter options. You can&#8217;t even re-mark read items as unread. The feeds are always listed in alphabetical.</p>
<p>Considering the power of the <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> I believe there is much more room for improvement yet it&#8217;s still usable and they have ironed out the bugs that I can see so far.</p>
<h3>FeedDemon (Windows)</h3>
<div align="center"><div id="attachment_1311" class="wp-caption alignnone" style="width: 310px"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/feeddemon.jpg" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/feeddemon-300x187.jpg" alt="FeedDemon" title="FeedDemon" width="300" height="187" class="size-medium wp-image-1311" /></a><p class="wp-caption-text">FeedDemon</p></div></div>
<p><a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> has an Outlook feel to it. The subscribed feeds are on the left hand bar where your mail folders are normally displayed and the middle/right pane where the list of emails would be displayed is where the news items are.</p>
<p>The feed list uses a tree node with the ability to add custom folders/parent nodes for you to sort your feeds. Feeds with unread items are highlighted in bold and a bracket at the end of the feed name displays the number of unread items. The feed list pane is collapsible. Clicking on any of the child notes will display the RSS feed in the middle pane.</p>
<p>To read more you have to click on the title of the post or click the &#8220;read more&#8221; button usually displayed at the bottom of the description. This opens the web page with the article within <a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> itself.</p>
<p><a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> has a neat function which allows you to watch for key words. You can add words to look for and simple search expressions like to look in the title and / or the description of the post, match case, whole word and / or all key words. These watch lists are executed every time the reader refreshes the feeds.</p>
<p>The feed items are sorted in chronological order with each post filed by days. The &#8220;Mark all items as read&#8221; button only marks the news under that day as read where as on the <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> it marks everything as read. I prefer the <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> way as you may see multiple days on one page! Also the button is in the main pane itself instead of the toolbar. This means the button disappears from the screen whilst you scroll through the news. Once you have looked at / opened all your news items you have to scroll to the top  to mark all your unread items. There is a keyboard shortcut to do this.</p>
<div align="center"><div id="attachment_1321" class="wp-caption alignnone" style="width: 310px"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/feeddemon-popular.jpg" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/feeddemon-popular-300x150.jpg" alt="FeedDemon Most/Least Popular" title="FeedDemon Most/Least Popular" width="300" height="150" class="size-medium wp-image-1321" /></a><p class="wp-caption-text">FeedDemon Most/Least Popular</p></div></div>
<p><a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> does list a &#8220;Feeds I Pay the Most Attention To&#8221; and &#8220;Feeds I Pay the Least Attention To&#8221;. This can be accessed by clicking on the root node / subscriptions folder. I&#8217;m not sure how it calculates this whether you have to click on the article itself to be counted as read or loading the full article via the feed or how often feeds post things but it does seem quite accurate.</p>
<p>Instead of cool third bar on the right side like the <a href="http://www.apple.com/mac/" target='_blank'>Mac</a>, <a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> uses tabbed browsing. Whilst this has done wonders for web browsers <a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> shows how not to implement tabbed browsing. You must have one tab open but the tab bar doesn&#8217;t show till you have more than one tab.</p>
<p>This would normally by for your feed list however you can open articles within this tab. What tends to happen is whilst an article loads, I click on another feed to look at other unread items. Of course if you don&#8217;t open up a new tab your currently loading article will turn into your feed listing! Not only that, the tab close button is on the right and not on all the tabs. I suppose this is preference but it should have the option.</p>
<p>The different views in <a href="http://www.newsgator.com/Individuals/FeedDemon" target="_blank">FeedDemon</a> are very obscure. I use the Folder view but changing the view to Feed View does nothing but add an overlay over the feed icons like you get a small arrow on shortcut icons in Windows.</p>
<p>There is no node in the tree where it display all the news that are unread from all the feeds like the <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> client. This is very of putting as I have to click on all the tree nodes that have unread news items instead of getting them all listed in the middle pane.</p>
<h3>NetNewsWire (Mac)</h3>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-mac.png" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-mac-300x195.png" alt="NetNewsWire Mac Version" title="NetNewsWire Mac Version" width="300" height="195" class="size-medium wp-image-1290" /></a></div>
<p>The <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> <a href="http://www.newsgator.com/Individuals/NetNewsWire/" target="_blank">NetNewsWire</a> RSS reader is similar to the Windows version with a few exceptions. The <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> has a third bar on the right which displays the web page of the news articles you went on to read the full article. It&#8217;s good because it lists them in thumbnail view so you can see a preview of the page. It also caches the page so it doesn&#8217;t have to load again and allows you to go back to another web page or back to the feed list whilst it&#8217;s loading. The bar only appears if you have visited a site otherwise it&#8217;s hidden allowing maximum viewing space. There is also the option to open the links in the background. but I have found it not to work like the Windows reader.</p>
<div align="center"><a href="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-mac-sidebar.png" rel="lightbox[1265]"><img src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-mac-sidebar.png" alt="" title="NetNewsWire Mac Version Sidebar" width="165" height="211" class="alignnone size-medium wp-image-1289" /></a></div>
<p>The <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> client also supports <a href="http://growl.info/" target="_blank">Growl</a> notifications.</p>
<p>The font size is again a bit small. The reader has the option to change this.</p>
<p>For some odd reason <a href="http://www.newsgator.com/Individuals/NetNewsWire/" target="_blank">NetNewsWire</a> defaults it&#8217;s feed checking to every four hours. To me this is a long time to refresh news. Again a simple change in the preference will sort it out but it doesn&#8217;t help improve the usability.</p>
<h3>Summary</h3>
<p>All the readers by <a href="http://www.newsgator.com/" target="_blank">NewsGator</a> are very good. They are fairly mature and stable. The service just works for text based RSS but for podcast support <a href="http://www.google.com/" target='_blank'>Google</a> seems to be one up with it&#8217;s built in player.</p>
<p>The service provides a nice way to read the news and know which one&#8217;s you have read across all the supported platforms. Each reader has the pros and cons with the <a href="http://www.apple.com/iphone/" target='_blank'>iPhone</a> app being the most limited but it&#8217;s also the most recent out of all of them.</p>
<p>It&#8217;s a shame there is no <a href="http://www.linux.org" target='_blank'>Linux</a> client. I&#8217;m always surprised by how companies can produce a <a href="http://www.apple.com/mac/" target='_blank'>Mac</a> but no <a href="http://www.linux.org" target='_blank'>Linux</a> support but I digress.</p>

<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/google-reader/' title='Google Reader'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/google-reader-150x150.png" class="attachment-thumbnail" alt="Google Reader" title="Google Reader" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/newsgator/' title='NewsGator Online'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/newsgator-150x150.png" class="attachment-thumbnail" alt="NewsGator Online" title="NewsGator Online" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/netnewswire-mac-sidebar/' title='NetNewsWire Mac Version Sidebar'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-mac-sidebar-150x150.png" class="attachment-thumbnail" alt="NetNewsWire Mac Version Sidebar" title="NetNewsWire Mac Version Sidebar" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/netnewswire-mac/' title='NetNewsWire Mac Version'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-mac-150x150.png" class="attachment-thumbnail" alt="NetNewsWire Mac Version" title="NetNewsWire Mac Version" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/netnewswire-iphone-badge/' title='NetNewsWire iPhone Version Badge'><img width="80" height="88" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-iphone-badge.png" class="attachment-thumbnail" alt="NetNewsWire iPhone Version Badge" title="NetNewsWire iPhone Version Badge" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/netnewswire-iphone/' title='NetNewsWire iPhone Version'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/netnewswire-iphone-150x150.png" class="attachment-thumbnail" alt="NetNewsWire iPhone Version" title="NetNewsWire iPhone Version" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/feeddemon/' title='FeedDemon'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/feeddemon-150x150.jpg" class="attachment-thumbnail" alt="FeedDemon" title="FeedDemon" /></a>
<a href='http://www.dannytsang.co.uk/index.php/newsgator-rss/feeddemon-popular/' title='FeedDemon Most/Least Popular'><img width="150" height="150" src="http://www.dannytsang.co.uk/wp-content/uploads/2008/09/feeddemon-popular-150x150.jpg" class="attachment-thumbnail" alt="FeedDemon Most/Least Popular" title="FeedDemon Most/Least Popular" /></a>

<p><a href="http://www.newsgator.com/" target="_blank">NewsGator Website</a><br />
<a href="http://www.google.com/reader" target="_blank">Google Reader</a><br />
<a href="http://www.newsgator.com/Individuals/NetNewsWireiPhone/" target="_blank">NetNewsWire</a></p>


<p>Related posts:<ol><li><a href='http://www.dannytsang.co.uk/index.php/amazon-iphone-app/' rel='bookmark' title='Permanent Link: Amazon iPhone App'>Amazon iPhone App</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/apple-iphone-3g-dock/' rel='bookmark' title='Permanent Link: Apple iPhone 3G Dock'>Apple iPhone 3G Dock</a></li>
<li><a href='http://www.dannytsang.co.uk/index.php/griffin-powerjolt/' rel='bookmark' title='Permanent Link: Griffin PowerJolt'>Griffin PowerJolt</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dannytsang.co.uk/index.php/newsgator-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
