<?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>Robert Small, The blog thereof.</title>
	<atom:link href="http://www.robertsmall.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertsmall.org</link>
	<description>The inane ramblings of a young man.</description>
	<lastBuildDate>Tue, 02 Mar 2010 18:03:33 +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>Of spy&#8217;s and hidden cameras!</title>
		<link>http://www.robertsmall.org/2010/03/02/of-spys-and-hidden-cameras/</link>
		<comments>http://www.robertsmall.org/2010/03/02/of-spys-and-hidden-cameras/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:03:33 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Crime]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logging]]></category>
		<category><![CDATA[Login photo]]></category>
		<category><![CDATA[MMS]]></category>
		<category><![CDATA[Mobile technology]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Theft prevention]]></category>
		<category><![CDATA[Webcam capture]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=144</guid>
		<description><![CDATA[Let us imagine a completely hypothetical situation where a hypothetical someone might have left their web-cam equipped laptop on a hypothetical desk while going for a hypothetical night out. In this hypothetical situation another hypothetical person comes along and hypothetically tries to log in repeatedly and then shuts down the laptop. Let us imagine the hypothetical [...]]]></description>
			<content:encoded><![CDATA[<p>Let us imagine a completely hypothetical situation where a hypothetical someone might have left their web-cam equipped laptop on a hypothetical desk while going for a hypothetical night out. In this hypothetical situation another hypothetical person comes along and hypothetically tries to log in repeatedly and then shuts down the laptop. Let us imagine the hypothetical emotions of that hypothetical laptop owner. They&#8217;d be hypothetically furious. Especially if their rsync&#8217;s had stopped, their ssh sessions been terminated, their IDE sessions closed, their documents lost. Their hypothetical furry would know no bounds. Further frustrating to their hypothetical furry would be the time taken to repair hypothetical file-systems and rescue anything that had been hypothetically broken by this sudden termination.</p>
<p>Imagine then our hypothetical friend&#8217;s hypothetical furry if they were slighted not once but twice.</p>
<p>Of course our hypothetical friend would vent their furry into coding, and as we know Python is the balm of the soul. Let us view some of this hypothetical Python.</p>
<pre class="brush:python">from send_mail import send_mail
import commands
import pyinotify
import re
import time
import Skype4Py
from time import gmtime, strftime

CallStatus = 0
CallIsFinished = set ([Skype4Py.clsFailed, Skype4Py.clsFinished, Skype4Py.clsMissed,Skype4Py.clsRefused, Skype4Py.clsBusy, Skype4Py.clsCancelled])

def CallStatusText(status):
    return skype.Convert.CallStatusToText(status)

def OnCall(call, status):
    global CallStatus
    CallStatus = status
    print 'Call status: ' + CallStatusText(status)
    print call.PstnNumber
    try:
        if (CallStatusText(status) == "Calling" and call.PstnNumber == "+&lt;your phone number&gt;"):
            call.Answer()
            print "Call accepted."
    except:
        print "Failed to accept."

skype = Skype4Py.Skype()
try:
    skype.Attach()
    skype.OnCallStatus = OnCall
except:
    print "Skype attach failed, skype calling will not be possible."

class TrackModifications(pyinotify.ProcessEvent):
    def process_IN_MODIFY(self, event):
        f = open("/var/log/auth.log")
        l = f.readlines()
        f.close()
        if (re.search("gnome-screensaver-dialog\: pam_unix\(gnome-screensaver\:auth\)\: authentication failure\;", l[-1]) &lt;&gt; None):
            print "Access!"
            fn = '/home/user/tmp/snap-fail-' + strftime("%d-%b-%Y_%H:%M:%S", gmtime()) + '.jpg'
            commands.getoutput('uvccapture -m -x640 -y480 -o' + fn)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Failed access at `" + strftime("%a, %d %b %Y %H:%M:%S", gmtime()) + "` you will receive a picture soon.", None)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "Login Failed", "Failed log-in to 'The Pandora'.\n" + l[-1], fn)

        if (re.search("The-Pandora gnome-screensaver-dialog\: gkr-pam\: unlocked \'login\' keyring", l[-1]) &lt;&gt; None):
            print "Access!"
            fn = '/home/user/tmp/snap-accept-' + strftime("%d-%b-%Y_%H:%M:%S", gmtime()) + '.jpg'
            commands.getoutput('uvccapture -m -x640 -y480 -o' + fn)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Login accepted at `" + strftime("%a, %d %b %Y %H:%M:%S", gmtime()) + "` you will receive a picture soon.", None)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "Login Accepted", "Accepted log-in to 'The Pandora'.\n" + l[-1], fn)
            pass

wm = pyinotify.WatchManager()
handler = TrackModifications()
notifier = pyinotify.Notifier(wm, default_proc_fun=handler)
wm.add_watch('/var/log/auth.log', pyinotify.IN_MODIFY)
notifier.loop()

fn = '/home/user/tmp/snap-end-' + strftime("%d-%b-%Y_%H:%M:%S", gmtime()) + '.jpg'
send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Process ending on 'The Pandora' at`" + strftime("%a, %d %b %Y %H:%M:%S", gmtime()) + "`", None)
commands.getoutput('uvccapture -m -x640 -y480 -o' + fn)
send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Process ending on 'The Pandora'.", fn)</pre>
<p>The email function used for this code is very messy and actually has some pass-phrases I&#8217;d rather not show you, I suggest looking at <a href="http://www.google.com/search?hl=en&amp;q=email+python+with+attachments">google</a> and various <a href="http://snippets.dzone.com/posts/show/2038">links</a> it offers</p>
<pre class="brush:python">def send_mail(send_from, send_to, subject, text, f, server="smtp.gmail.com:587"):</pre>
<p>Where text is the message, f is the file and server is the server, I advise using Gmail as it has a Email t0 SMS gateway. The way I used it I simply had to put my phone number before `@tmomail.net` (something like 15552223344@tmomail.net). With a little googling you&#8217;ll find the appropriate suffixes for most carriers.</p>
<p>So, what is this? Well, basically it&#8217;s a library to allow a series of things.</p>
<ul>
<li>Photographic evidence of all log-ins.</li>
<li>SMS and MMS (with photo) alerts when your computer is logged into or someone attempts.</li>
<li>Accept calls so you can monitor audio from your computer.</li>
<li>I also modified it to call out to me when there&#8217;s a log in, oh for video calling&#8230;</li>
<li>It records the script being terminated.</li>
</ul>
<p>You may have to adjust  the command for &#8216;uvccapture&#8217;, you will want to adjust the host name (The Pandora) to yours. Remember to add your SMS Email and Email.</p>
<p>This script will be built off of to create something a lot more advanced and a lot better and more useful. It would be possible to rewrite this for Windows or Mac, I guess that cutting out the Skype and replacing the UVC code would be all that&#8217;d be needed.</p>
<p>I hope this was of use to someone. Please post comments if you find a use and/or have some success with it, I&#8217;d love to hear stories of how you caught hypothetical siblings with it.</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2010%2F03%2F02%2Fof-spys-and-hidden-cameras%2F&amp;linkname=Of%20spy%26%238217%3Bs%20and%20hidden%20cameras%21"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2010/03/02/of-spys-and-hidden-cameras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for: Linux 2.6.32.8 and FGLRX (8.690 or 10.1)</title>
		<link>http://www.robertsmall.org/2010/02/17/fix-for-linux-2-6-32-8-and-fglrx-8-690-or-10-1/</link>
		<comments>http://www.robertsmall.org/2010/02/17/fix-for-linux-2-6-32-8-and-fglrx-8-690-or-10-1/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 19:07:02 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[ATI Drivers]]></category>
		<category><![CDATA[FGLRX]]></category>
		<category><![CDATA[Graphics Card]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux 2.6.32.8]]></category>
		<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Ubuntu 9.10]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=158</guid>
		<description><![CDATA[So, you have your fancy graphics card and you&#8217;ve updated to the latest kernel, however you seem to have been bitten on the buttocks. Your old FGLRX drivers do not work and you can&#8217;t get them to compile for the newer kernel, you swear at dkms as much as you want but it doesn&#8217;t help. [...]]]></description>
			<content:encoded><![CDATA[<p>So, you have your fancy graphics card and you&#8217;ve updated to the latest kernel, however you seem to have been bitten on the buttocks. Your old FGLRX drivers do not work and you can&#8217;t get them to compile for the newer kernel, you swear at dkms as much as you want but it doesn&#8217;t help. You download the latest version and you&#8217;re faced with an error message something like:</p>
<pre>dpkg-shlibdeps: error: couldn't find library libatiuki.so.1 needed by debian/xorg-driver-fglrx/usr/lib/xorg/modules/linux/libfglrxdrm.so.
Note: libraries are not searched in other binary packages that do not have any shlibs or symbols file.
To help dpkg-shlibdeps find private libraries, you might need to set LD_LIBRARY_PATH.
dh_shlibdeps: dpkg-shlibdeps returned exit code 2
make: *** [binary-predeb-IMPL/xorg-driver-fglrx] Error 1
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2</pre>
<p>There is a solution, it&#8217;s a relatively easy solution too and I&#8217;m surprised at the point of writing this blog it hasn&#8217;t been patched by ATI.</p>
<pre>./ati-driver-installer-10-1-x86.x86_64.run --extract
cd fglrx-install.*/arch/x86/usr/lib/
ln -s libatiuki.so.1.0 libatiuki.so.1
cd ../../../../
sudo ./ati-installer.sh 10.1 --buildandinstallpkg Ubuntu/karmic</pre>
<p>In the case of 64bit compiling remember to change x86 to x86_64 and lib to lib64. Now you should have ATI just where you need it.</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2010%2F02%2F17%2Ffix-for-linux-2-6-32-8-and-fglrx-8-690-or-10-1%2F&amp;linkname=Fix%20for%3A%20Linux%202.6.32.8%20and%20FGLRX%20%288.690%20or%2010.1%29"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2010/02/17/fix-for-linux-2-6-32-8-and-fglrx-8-690-or-10-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do with Ubuntu 9.10 (Karmic Koala) after installing.</title>
		<link>http://www.robertsmall.org/2010/02/08/what-to-do-with-ubuntu-9-10-karmic-koala-after-installing/</link>
		<comments>http://www.robertsmall.org/2010/02/08/what-to-do-with-ubuntu-9-10-karmic-koala-after-installing/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:39:27 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[Banshee]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[FGLRX]]></category>
		<category><![CDATA[Hulu]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Karmic Koala]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[M92]]></category>
		<category><![CDATA[Moovidia]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[Picard]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Radeon 4500 series]]></category>
		<category><![CDATA[Radeon HD 4530]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Rhythmbox]]></category>
		<category><![CDATA[SMPlayer]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 9.10]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=126</guid>
		<description><![CDATA[So, you paid your money, bought a CD, and installed a cuddly Koala onto your computer. However, you feel it&#8217;s not doing everything you wanted a ball of furry FOSS to do.

You feel a need to make Ubuntu 9.10 do more for you. To make your Karmic Koala climb it&#8217;s tree. So, here I am, [...]]]></description>
			<content:encoded><![CDATA[<p>So, you paid your money, bought a CD, and installed a cuddly Koala onto your computer. However, you feel it&#8217;s not doing everything you wanted a ball of furry FOSS to do.</p>
<p style="text-align: center;"><a href="http://commons.wikimedia.org/wiki/File:Tiergarten_Schoenbrunn_Koala_2.jpg"><img class="aligncenter" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Tiergarten_Schoenbrunn_Koala_2.jpg/90px-Tiergarten_Schoenbrunn_Koala_2.jpg" alt="Sleepy Koala" width="90" height="120" /></a></p>
<p>You feel a need to make Ubuntu 9.10 do more for you. To make your Karmic Koala climb it&#8217;s tree. So, here I am, your Ubuntu zoo keeper to give you some tips.</p>
<p>The first thing to realise is that there are some changes, one which makes me particularly happy is that you can add sources by &#8216;ppa lines&#8217;. Simply put you can change where Ubuntu gets it&#8217;s software with shorter lines. Call me a lazy belly dancer and beat me with a mop but this makes me happy.</p>
<p style="text-align: center;"><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Software-Sources.png"><img class="aligncenter size-full wp-image-128" title="Screenshot-Software Sources" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Software-Sources.png" alt="Screenshot-Software Sources" width="320" height="286" /></a></p>
<p style="text-align: center;"><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Untitled-Window.png"><img class="aligncenter size-full wp-image-129" title="Screenshot-Untitled Window" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Untitled-Window.png" alt="Screenshot-Untitled Window" width="302" height="143" /></a></p>
<p>See? Easy as that.</p>
<p style="text-align: left;">Another big thing for me was the new ATI graphics driver for my HP Pavillion DV7 2050ea and it&#8217;s ATI M92 (Mobility Radeon 4500 series, 4530). They seem to work very well which makes me extremely happy. I&#8217;ve simply used jockey (the &#8216;Hardware Drivers&#8217; item in &#8216;System &gt; Administration&#8217;) to adjust it. One note must be made. The kernel you use can cause issues with the kernel module being compiled. I advise keeping your old kernels that work whenever you change/recompile.<a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Hardware-Drivers.png"><img class="aligncenter size-full wp-image-130" title="Screenshot-Hardware Drivers" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Hardware-Drivers.png" alt="Screenshot-Hardware Drivers" width="298" height="330" /></a><img class="aligncenter size-full wp-image-131" title="Screenshot-glxgears" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-glxgears.png" alt="Screenshot-glxgears" width="383" height="203" /></p>
<p>Without optimisation this already has given me a massive performance boost. I can now run XBMC (which I will discuss later).</p>
<p>Moving on from the new drivers there are a few other updates. There&#8217;s a new Firefox which should make everyone happy, and Empathy has taken over from Pidgin. I&#8217;m not quite sure how I feel about this to be honest, over the last few years I&#8217;ve switched almost completely to IRC (using XChat). I do however use Bonjour to talk to people on the same network occasionally and Empathy seems to handle this reasonably well.</p>
<p>So, once you&#8217;ve run Jockey to get all your hardware working well there are some programs I would recommend and a few things to do to get yourself up and running.</p>
<h2>A music player</h2>
<p>One of the most important things in modern computer usage is playing music. Recently I&#8217;d been enjoying Songbird, unfortunately when I&#8217;d first installed Ubuntu 9.10 it caused an error. While looking at alternatives I found Banshee which offers me something else.</p>
<h3>Songbird</h3>
<p>When first trying Songbird I was presented with two problems:</p>
<ol>
<li>GetDeb didn&#8217;t have a copy.</li>
<li>When I downloaded the source it failed to start with the following error:<br />
<em>././songbird-bin: symbol lookup error: /usr/lib/python2.6/dist-packages/gst-0.10/gst/_gst.so: undefined symbol: gst_task_pool_get_type<br />
Could not initialize GStreamer: Error re-scanning registry , child terminated by signal</em></li>
</ol>
<p>However, there is a usable solution. Firstly download from <a title="Songbird" href="http://www.getsongbird.com/download/" target="_blank">http://www.getsongbird.com/download/</a>, then go into the &#8216;lib&#8217; folder and delete everything starting with libgst. Once you&#8217;ve done this it should start perfectly. There are some great plug-ins and cool themes.</p>
<p>Now GetDeb has a copy, but if it doesn&#8217;t work for you that might be a helpful solution.</p>
<p style="text-align: center;"><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Songbird.png"><img class="aligncenter size-medium wp-image-132" title="Screenshot-Songbird" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Songbird-300x159.png" alt="Screenshot-Songbird" width="300" height="159" /></a></p>
<h3>Rhythmbox</h3>
<p>Install: <a title="Install Rhythmbox" href="apt:rhythmbox"><em>sudo apt-get install rhythmbox</em></a></p>
<p>This is a feature full alternative to the original media players. Until I discovered the fix for Songbird I used Rhythmbox and I found it very usable. I personally don&#8217;t like it as much as Songbird. It should be installed by default, if not see above.</p>
<p style="text-align: center;"><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Rhythmbox.png"><img class="aligncenter size-medium wp-image-133" title="Screenshot-Rhythmbox" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Rhythmbox-300x154.png" alt="Screenshot-Rhythmbox" width="300" height="154" /></a></p>
<h3>Banshee</h3>
<p>APT line: <em>ppa:banshee-team/ppa</em><br />
Install: <a title="Install Banshee" href="apt:banshee"><em>sudo apt-get install banshee</em></a></p>
<p>This media player is much more like what I like. It provides a fair few features and if you haven&#8217;t used it you should give it a shot. Banshee gives excellent iPod/Android/RockBox synchronisation and I&#8217;m sure it provides more syncing but I don&#8217;t have any more devices to try. I have noticed a few small gaps between playback but I know that the Banshee team are working on <a title="Gnome feature request for gap-less playback" href="https://bugzilla.gnome.org/show_bug.cgi?id=440952" target="_blank">gap-less playback support</a> and I&#8217;m excited to see it.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Banshee.png"><img class="aligncenter size-medium wp-image-135" title="Screenshot-Banshee" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Banshee-300x154.png" alt="Screenshot-Banshee" width="300" height="154" /></a></p>
<h2>A media centre</h2>
<p>There are several options for this. I personally love XBMC, others swear by Moovidia and some by MythTV.</p>
<h3>XBMC</h3>
<p>I love XBMC, I run it on my dad&#8217;s media centre and it&#8217;s always done me really well.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-XBMC.png"><img class="aligncenter size-medium wp-image-137" title="Screenshot-XBMC" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-XBMC-300x168.png" alt="Screenshot-XBMC" width="300" height="168" /></a></p>
<h3>Moovidia</h3>
<p>I&#8217;ve recently tried Moovidia, it&#8217;s nice but it doesn&#8217;t seem to offer anything to draw me away from XBMC, however I&#8217;d recommend it to anyone who wants to have a good interface to their music, films and TV shows.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Moovida-Media-Center.png"><img class="aligncenter size-medium wp-image-136" title="Screenshot-Moovida Media Center" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-Moovida-Media-Center-300x168.png" alt="Screenshot-Moovida Media Center" width="300" height="168" /></a></p>
<h2>Development Environment</h2>
<p>There are two development environments that I really like, both of them are built with Java and have support for multiple languages out of the box.</p>
<h3>Eclipse</h3>
<p>Install: <a href="apt:eclipse">apt-get install eclipse</a></p>
<p>I&#8217;ve always used Eclipse and PyDev for Python development, I&#8217;m not sure if I could change if I had to. One of my first things to do was to install eclipse. I also use it for Java/Android development, all in all it&#8217;s a great IDE.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-PHP-V8d-QDB-GNU.txt-Eclipse-SDK-.png"><img class="aligncenter size-medium wp-image-139" title="Screenshot-PHP - V8d QDB-GNU.txt - Eclipse SDK" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-PHP-V8d-QDB-GNU.txt-Eclipse-SDK--300x154.png" alt="" width="300" height="154" /></a></p>
<h3>NetBeans</h3>
<p>Install: <a href="apt:netbeans">apt-get install netbeans</a></p>
<p>NetBeans seems to be primarily for web development, I use it for PHP (<a title="V8d's QDB" href="http://www.v8d.org/qdb" target="_blank">http://www.v8d.org/qdb</a>) and I know other people who use it for HTML, Java, JavaScript and etcetera. One feature I especially like is that it can upload my edits immediately after I finish them.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-V8d-QDB-NetBeans-IDE-6.8.png"><img class="aligncenter size-medium wp-image-138" title="Screenshot-V8d QDB - NetBeans IDE 6.8" src="http://www.robertsmall.org/wp-content/uploads/2009/11/Screenshot-V8d-QDB-NetBeans-IDE-6.8-300x154.png" alt="" width="300" height="154" /></a></p>
<h2>Video Playback</h2>
<p>Presumably you&#8217;re going to <a href="https://help.ubuntu.com/community/Medibuntu">install all the mediabuntu goodies</a> so you can play lots of different formats.</p>
<h3>SMPlayer</h3>
<p>Install: <a href="apt:smplayer">apt-get install smplayer</a></p>
<p>This is now the only video player I use for desktop applications. It provides massive format support from MPlayer, bookmarking, and unbelievable reconfigurability.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2010/02/Screenshot-SMPlayer.png"><img class="aligncenter size-medium wp-image-140" title="Screenshot-SMPlayer" src="http://www.robertsmall.org/wp-content/uploads/2010/02/Screenshot-SMPlayer-300x221.png" alt="" width="300" height="221" /></a></p>
<h2>Audio Tagging</h2>
<h3>Music Brains Picard</h3>
<p>Install: <a href="apt:picard">apt-get install picard</a></p>
<p>Picard is to us music lovers as air is to you other people. It tags music from a massive database and if you have something it doesn&#8217;t then you can submit it for others to be able to tag.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2010/02/Screenshot-MusicBrainz-Picard.png"><img class="aligncenter size-medium wp-image-141" title="Screenshot-MusicBrainz Picard" src="http://www.robertsmall.org/wp-content/uploads/2010/02/Screenshot-MusicBrainz-Picard-300x179.png" alt="" width="300" height="179" /></a></p>
<h2>TV Shows</h2>
<p>If you don&#8217;t have your own PVR to provide XBMC with content then you should certainly consider getting something like Hulu desktop. It&#8217;s in their labs section and available for Linux</p>
<h3>Hulu Desktop</h3>
<p>Install: <a title="Install Hulu Desktop." href="http://www.hulu.com/labs/hulu-desktop-linux">Follow the instructions here</a></p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2010/02/Screenshot-Hulu-Desktop.png"><img class="aligncenter size-medium wp-image-142" title="Screenshot-Hulu Desktop" src="http://www.robertsmall.org/wp-content/uploads/2010/02/Screenshot-Hulu-Desktop-300x168.png" alt="" width="300" height="168" /></a></p>
<h2>In closing</h2>
<p>There are so many more applications out there, you&#8217;ll never find them all or use them all. If you want something first search the repo&#8217;s (Synaptic or whatever you use), then progress to GetDeb and Google. However, I will give you some suggestions for other applications you may be interested in.</p>
<ul>
<li>VLC &#8211; This used to be my favourite video player, it uses a brilliant play engine and manages to cope with almost any form of network stream.</li>
<li>digiKam &#8211; Best. Photo. Management. Ever. (IMNSHO)</li>
<li>K3b &#8211; Excellent, fast and easy CD/DVD burning/cloning/creation/decryption/etcetera.</li>
<li>Audacity &#8211; Very good linear audio editor with great plug-ins.</li>
<li>Handbrake &#8211; Video en/de/transcoder.</li>
<li>soundKonverter &#8211; Conversion from and to various audio formats.</li>
<li>Kate &#8211; Excellent text editor.</li>
</ul>
<p>I&#8217;m sorry this wasn&#8217;t posted sooner, I started it and then things happened like marriage and Christmas. Talking of which, Happy New Year to all!</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2010%2F02%2F08%2Fwhat-to-do-with-ubuntu-9-10-karmic-koala-after-installing%2F&amp;linkname=What%20to%20do%20with%20Ubuntu%209.10%20%28Karmic%20Koala%29%20after%20installing."><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2010/02/08/what-to-do-with-ubuntu-9-10-karmic-koala-after-installing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top ten Android Apps I miss from my T-Mobile G1 (HTC Dream)</title>
		<link>http://www.robertsmall.org/2009/09/11/top-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream/</link>
		<comments>http://www.robertsmall.org/2009/09/11/top-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:14:31 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AndNav]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Applications]]></category>
		<category><![CDATA[Android IRC]]></category>
		<category><![CDATA[Android Marketplace]]></category>
		<category><![CDATA[Barcode Scanner]]></category>
		<category><![CDATA[Beeb Player]]></category>
		<category><![CDATA[Better Keyboard]]></category>
		<category><![CDATA[ConnectBot]]></category>
		<category><![CDATA[Dizzler]]></category>
		<category><![CDATA[FML]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[HTC Dream]]></category>
		<category><![CDATA[iPlayer]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Listen]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[Lolcats]]></category>
		<category><![CDATA[Meridian Evolve]]></category>
		<category><![CDATA[Meridian Player]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile computing]]></category>
		<category><![CDATA[Mobile technology]]></category>
		<category><![CDATA[Movie Finder]]></category>
		<category><![CDATA[My Tracks]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Quickipedia]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Roundup]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[T-Mobile]]></category>
		<category><![CDATA[T-Mobile G1]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Telegraph.co.uk]]></category>
		<category><![CDATA[Top Ten]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[WiFi]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=114</guid>
		<description><![CDATA[So here&#8217;s the story. My G1 has stopped working and being in the USA at the moment I have to return it to the UK to be replaced, in the mean time I&#8217;ve found myself missing both it and the applications on it. I&#8217;ve really grown to love Android and the apps on it. In [...]]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s the story. My G1 has stopped working and being in the USA at the moment I have to return it to the UK to be replaced, in the mean time I&#8217;ve found myself missing both it and the applications on it. I&#8217;ve really grown to love Android and the apps on it. In fact it has become something of a mobile computer to me. With the easy WiFi connectivity and built in GPS (and the help of Locale) I&#8217;ve found using WiFi hotspots almost as easy as having a (cheap) 3G connection. Of course being on a UK contract I&#8217;d rather not incur the massive roaming charges for data in the USA.</p>
<p>In the last few days as I&#8217;ve started to miss it I decided to write a &#8216;Top Ten Roundup&#8217; with a difference, the top ten that I miss. I&#8217;ve reverted to my Windows Mobile smart-phone so I still have a few luxuries. I expect that I&#8217;ll mention several things which made me prefer my G1 to the HTC Hermes I was on. Firstly though I&#8217;ll compare a few core components that I miss.</p>
<ul>
<li>The email program. When I first used Android I wasn&#8217;t that excited about the email app; sure, it had starring which Windows Mobile didn&#8217;t, but that was about it for me. However I&#8217;ve come to really appreciate the way it synchronises and the way that I can apply labels and generally use it as I do the computer front end. Windows Mobile makes me synchronise manually or set a time, this is nice and I used to find it very useful but I really appreciate being able to use Locale with the Gmail application to trigger synchronising only in a WiFi hotspot.</li>
<li>The contacts application. There are some trade-offs here. Windows Mobile supports a birthday for a contact, unless I&#8217;m severely blind my G1 does not. Windows mobile however attacks my contacts list on Gmail adding Mr&#8217;s and Mrs&#8217;s which in turn adds extra contacts. This is fixable, the G1 lack of birthdays will surely be fixed in a future release. <em>Incidentally the birthdays can be shown on the calendar with a small work around. Simply go to the calendars listing under settings, click browse interesting calenders and find your birthdays under &#8216;More&#8217;.</em></li>
<li>The browser. I really miss the Android browser and its speed and zoom features.</li>
<li>Marketplace. Do I even need to say anything here? The ease and simplicity is so nice.</li>
</ul>
<p>Now for my top ten list of Android applications that I miss.</p>
<ol>
<li><strong>Locale.</strong> I had rules set up to do everything I needed all based on where I was. It came into extra brilliance while abroad where I couldn&#8217;t use my normal data connection.</li>
<li><strong>ConnectBot.</strong> Having a well rounded SSH application is essential.</li>
<li><strong>Android IRC.</strong> Who can exist without IRC? I mean, what true techie can exist without IRC? Android IRC supports SSL, multiple servers and message notification, what&#8217;s more it doesn&#8217;t die if you leave it and open other applications.</li>
<li><strong>AndNav.</strong> This is my most memory heavy application, it uses tiles instead of vectors so pre-download is essential for any sensible routing. Also routes are calculated away from the client which causes network use. However, all this is well known to the developers and is being worked on. I would personally love to see (for example) POI search for off-line (maybe import gpx POI&#8217;s). I would be even more excited to see off-line routing, maybe data sets could be split further just to contain roads with no additional data? However all the Windows Mobile alternatives that I&#8217;ve found have not done what I needed or had some major problems.</li>
<li><strong>Quickipedia.</strong> Wikipedia has become the defatico source of information these days. Want cable layouts? Check Wikipedia. Want information about a penguin that flies? Check Wikipeida. Having a mobile client is like carrying it around as a book&#8230; just without ink or weight or that book smell or worrying about pages falling out.</li>
<li><strong>Movie Finder.</strong> It&#8217;s great to be able to quickly find out the times of a movie or check which ones are on locally. This isn&#8217;t a new concept I know but I found this the easiest to use, far easier than my previous experiences on Windows Mobile.</li>
<li><strong>Telegraph.co.uk news.</strong> Although this requires a connection and can&#8217;t horde its data off-line it&#8217;s still a great application. I&#8217;ve used other news applications and I&#8217;m open to suggestions but I found this to be the best. I do miss Viigo.</li>
<li><strong>Listen.</strong> I&#8217;d only just started using this but I&#8217;d become adicted pretty quickly. It&#8217;s a nice product from google themselves and it provides me with a stream of podcasts straight to my device. What&#8217;s more it can be run offline.</li>
<li><strong>FML.</strong> This would be one of two things that I use to entertain myself.</li>
<li><strong>Lolcats.</strong> This would be the other.</li>
</ol>
<p>There are more I miss, there are more I used regularly and there are more I&#8217;d probably like to put on this list in the future. A couple in the running were:</p>
<ul>
<li><strong>My Tracks.</strong> A GPS tracking application that I&#8217;ve found to be absolutely excellent.</li>
<li><strong>Beeb Player.</strong> BBC iPlayer application, not much use here as I have a US IP but it was great when I was in the UK.</li>
<li><strong>Meridian Player (and now Meridian Evolve)</strong>. A great player. Unfortunately I don&#8217;t watch much on my phone as my laptop has a better resolution for that.</li>
<li><strong>Dizzler.</strong> A music on demand player, very useful for those moments where someone doesn&#8217;t know a song and you want to *show* them.</li>
<li><strong>Barcode Scanner.</strong> Most sites about Android offer 2d encoded barcodes for content, I think this is a great way to move stuff from one device to another.</li>
<li><strong>Better Keyboard.</strong> A great on screen keyboard. I certainly miss it.</li>
</ul>
<p>That just about makes up my little Android tear story. Hopefully I should see a new G1 working perfectly within the next few weeks and I&#8217;ll be able to tell you which applications I&#8217;m adicted to right from the word go.</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2009%2F09%2F11%2Ftop-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream%2F&amp;linkname=Top%20ten%20Android%20Apps%20I%20miss%20from%20my%20T-Mobile%20G1%20%28HTC%20Dream%29"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2009/09/11/top-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HP Pavillion DV7 2050ea and Linux.</title>
		<link>http://www.robertsmall.org/2009/09/04/hp-pavillion-dv7-2050ea-and-linux/</link>
		<comments>http://www.robertsmall.org/2009/09/04/hp-pavillion-dv7-2050ea-and-linux/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 21:15:44 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AMD]]></category>
		<category><![CDATA[AMD Turion]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[BBC iPlayer]]></category>
		<category><![CDATA[eSATA]]></category>
		<category><![CDATA[Firewire]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[Hulu]]></category>
		<category><![CDATA[iPlayer]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile computing]]></category>
		<category><![CDATA[Mobile technology]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[Radeon 4500 series]]></category>
		<category><![CDATA[Radeon HD 4530]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=109</guid>
		<description><![CDATA[I am now a fortunate owner of an HP Pavillion DV7 2050ea. The first thing I&#8217;d like to say is that this is a very nice laptop and I&#8217;m very happy with almost every aspect. It&#8217;s comprised of the following hardware:

AMD Turion X2 Dual-Core Mobile ZM84, 2.3GHz
4GB of RAM, I haven&#8217;t checked the brand but [...]]]></description>
			<content:encoded><![CDATA[<p>I am now a fortunate owner of an HP Pavillion DV7 2050ea. The first thing I&#8217;d like to say is that this is a very nice laptop and I&#8217;m very happy with almost every aspect. It&#8217;s comprised of the following hardware:</p>
<ul>
<li>AMD Turion X2 Dual-Core Mobile ZM84, 2.3GHz</li>
<li>4GB of RAM, I haven&#8217;t checked the brand but it seems fast</li>
<li>320GB of hard drive space on a Western Digital drive</li>
<li>ATI M92 (Mobility Radeon 4500 series, 4530), seems to have 512MB of RAM</li>
<li>eSATA, USB and FireWire</li>
<li>ExpressCard</li>
<li>XD/MMC/SD slot</li>
<li>HDMI and VGA</li>
<li>QuickDock (v3 I think)</li>
</ul>
<p><a href="http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01695442&amp;lc=en&amp;dlc=en&amp;cc=uk&amp;lang=en&amp;product=3927519" target="_blank">HP Blurb</a></p>
<p>The biggest problem so far has been the graphics card, so far I&#8217;ve been unable to get it working with fglrx. I have the standard X drivers working and they give me full screen output but that too was a bit of a fight. However under Vista the card seems incredibly powerful for a laptop and it has no problems playing DVDs using the standard X drivers under Linux. However the iPlayer will not play without major chopping. Hulu plays but only at standard resolution and without full screen.</p>
<p>The sound works perfectly using the snd_hda_intel module and one small adjustment to its config. In fact I&#8217;m quite impressed with the volume and power the speakers can create. The file <em>/etc/modprobe.d/alsa-base.conf</em> now contains:</p>
<blockquote><p><em>options snd-hda-intel model=hp-hdx</em></p></blockquote>
<p>eSATA, USB and FireWire all appear to work correctly. All I&#8217;ve noticed is that the eSATA port&#8217;s USB functionality seems to be a little low power, I can use everything except for hard drives which act as if I&#8217;d plugged them into a USB 1.1 port.</p>
<p>Strangely I can&#8217;t get the XD/SD etc slot to work, this is pretty normal though so I&#8217;m not too bothered. It does seem to help if I disable the power saving for them and FireWire in the BIOS. No idea why, maybe someone else will have more information on this.</p>
<p>The laptop can take two hard drives and I&#8217;ve found a second miniPCIe slot. Unfortunately the second hard drive needs a &#8216;kit&#8217; to be installed, I&#8217;ll blog more about this when I get a chance to install one. However, with hard drives the size they are these days this makes for at least 1TB of space without too much heat overload.</p>
<p>I haven&#8217;t yet worked out the obligiroy IrDA, it seems it&#8217;s somehow hooked through the BIOS to allow the included remote to function (including the luxury of a power button). I haven&#8217;t had any other problems with it yet, the ExpressCard slot seems to work perfectly as do the other various ports.</p>
<p>Over all this is an excellent laptop with a lot of power, although it&#8217;s large enough to watch DVDs on it is also small enough and light enough to be portable.</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2009%2F09%2F04%2Fhp-pavillion-dv7-2050ea-and-linux%2F&amp;linkname=HP%20Pavillion%20DV7%202050ea%20and%20Linux."><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2009/09/04/hp-pavillion-dv7-2050ea-and-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Review of the iPlayer &#8211; Round two (does it still judder?)</title>
		<link>http://www.robertsmall.org/2009/01/18/review-of-the-iplayer-round-two-does-it-still-judder/</link>
		<comments>http://www.robertsmall.org/2009/01/18/review-of-the-iplayer-round-two-does-it-still-judder/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 12:49:02 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BBC iPlayer]]></category>
		<category><![CDATA[BC]]></category>
		<category><![CDATA[Internet TV]]></category>
		<category><![CDATA[Internet TV Problems]]></category>
		<category><![CDATA[iPlayer]]></category>
		<category><![CDATA[iPlayer comparison]]></category>
		<category><![CDATA[iPlayer Problems]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS Bias]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[TV Downloads]]></category>
		<category><![CDATA[TV online]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=63</guid>
		<description><![CDATA[This seems like a good time to write another iPlayer review, after all, they&#8217;ve had some time and I have a new computer. What&#8217;s changed?

I have a new computer, in fact, I have a considerably more powerful computer.
The BBC have had time to get criticised (a lot) by different people (also a lot) and hopefully [...]]]></description>
			<content:encoded><![CDATA[<p>This seems like a good time to write another iPlayer review, after all, they&#8217;ve had some time and I have a new computer. What&#8217;s changed?</p>
<ul>
<li><a title="My new compuer." href="http://www.robertsmall.org/2008/08/19/my-new-computation-device/">I have a new computer, in fact, I have a considerably more powerful computer.</a></li>
<li>The BBC have had time to get criticised (a lot) by different people (also a lot) and hopefully get their act together.</li>
<li>The BBC are beta testing a &#8216;High Quality&#8217; version.</li>
</ul>
<p><a title="Last review." href="http://www.robertsmall.org/2008/04/03/the-iplayer/">So, let&#8217;s look at what we said last time.</a></p>
<p><strong>Good</strong></p>
<ul>
<li>No advertisements (other than a brief channel trailer which doesn&#8217;t really count).</li>
<li>Good quality, especially for so called &#8217;standard definition&#8217;.</li>
<li>Generally fast play.</li>
<li>Done with flash, pretty much universal.</li>
</ul>
<p><strong>Bad</strong></p>
<ul>
<li>Bandwidth heavy.</li>
<li>No live viewing.</li>
<li>Some issues with the video.</li>
<li>Only seven days of watching time.</li>
<li>Awful problems with full screen play.</li>
</ul>
<p>The thing is that I now have a computer which is almost as good as my Dad&#8217;s media machine. This means that I can experiment more, but it doesn&#8217;t mean that I have something more powerful than the box I tested it on before (although the screen is a tad smaller).</p>
<p>However, Auntie has had a chance to get her act together and upgrade/advance the iPlayer. This seems to have resulted in some serious interface changes and the new high definition version.</p>
<p>I don&#8217;t have time to write a full review at the moment but here&#8217;s my summary:</p>
<p><strong>Bad to good</strong></p>
<ul>
<li>With the introduction of the HD version bandwidth seems to have dropped for the non-HD media, unfortunately so has quality (see below).</li>
<li>Since my last exploration I&#8217;ve found some programs and libraries which allow iPlayer downloading.</li>
<li>It would seem that more and more applications are supporting the iPlayer (Boxee and XBMC).</li>
</ul>
<p><strong>Good to bad</strong></p>
<ul>
<li>The quality before HD was very good on normal recordings. It would seem that with HD&#8217;s introduction the SD (standard definition) media is lower quality and in general more flaky.</li>
</ul>
<p><strong>New bad</strong></p>
<ul>
<li>Over the last few weeks I&#8217;ve encountered a few video bugs, mostly involving jerks or artifacts.</li>
<li>Occasionally the video decides to scramble audio and play at ten times speed, similar things happened before but this is worse.</li>
<li>I&#8217;ve started to notice that very little of the audio is normalised, I have to adjust my amp a lot.</li>
<li>Contrast and brightness differences, hitting &#8216;auto calibrate&#8217; a lot on my screen isn&#8217;t much fun.</li>
</ul>
<p><strong>New good</strong></p>
<ul>
<li>The HD version is very nice and the content very crisp.</li>
<li>There is a growing number of devices which support the iPlayer.</li>
<li>The ability to pause, then resume the next time you open your browser (it remembers where you were), a small but important improvement.</li>
<li>Wider range of Programme avaliability.</li>
<li>I can generally get jerk-less full screen playback on my box. I have yet to purchase a non-integrated graphics card so this is impressive (I have a NVIDIA internal at the moment).</li>
</ul>
<p><strong>Still good</strong></p>
<ul>
<li>No advertisements. Even with things like <em>Heroes</em> there are no advertisements, the most you get is a channel/producer trailer.</li>
<li>Audio on both SD and HD is crisp and clear.</li>
<li>Generally very good avaliability.</li>
<li>Generally fast play.</li>
<li>Good support for most normal computers.</li>
</ul>
<p><strong>Still bad</strong></p>
<ul>
<li>No live viewing that I can find.</li>
<li>Limited time to watch.</li>
<li>Strange problems with full screen, sometimes on some computers with some definitions. They&#8217;ve certainly fixed it for some situations.</li>
</ul>
<p>I think that  covers just about everything, feel free to comment with your own opinions.</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2009%2F01%2F18%2Freview-of-the-iplayer-round-two-does-it-still-judder%2F&amp;linkname=Review%20of%20the%20iPlayer%20%26%238211%3B%20Round%20two%20%28does%20it%20still%20judder%3F%29"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2009/01/18/review-of-the-iplayer-round-two-does-it-still-judder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas! Oh, and a funny picture.</title>
		<link>http://www.robertsmall.org/2008/12/25/merry-christmas-oh-and-a-funny-picture/</link>
		<comments>http://www.robertsmall.org/2008/12/25/merry-christmas-oh-and-a-funny-picture/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 00:00:51 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[Humour]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=100</guid>
		<description><![CDATA[Merry Christmas all, season&#8217;s greetings if you don&#8217;t go in for Christmas. I&#8217;d like to wish you all a very happy and enjoyable period of celebration and family time. I intend to start some new projects and do some new and exciting things during the next year, but I&#8217;ll leave that for a New Year [...]]]></description>
			<content:encoded><![CDATA[<p>Merry Christmas all, season&#8217;s greetings if you don&#8217;t go in for Christmas. I&#8217;d like to wish you all a very happy and enjoyable period of celebration and family time. I intend to start some new projects and do some new and exciting things during the next year, but I&#8217;ll leave that for a New Year post.</p>
<p>I&#8217;m enjoying the new Wordpress; including the Gears side of it, and the new look.</p>
<p>I will be uploading some photo&#8217;s on Facebook for those of you who follow that. I&#8217;ll probably be more active soon, at the moment I&#8217;m fervently searching for a new job, preferably a well paid one. Some of you may also know that my Girlfriend/Fiancee  is staying with me at the moment and we&#8217;re spending quite a bit of time out and about. So, sorry for the lack of blogs, I&#8217;ll be good in the new year, I promise! Now send me presents!</p>
<p>Now, for your amusement I bring you this photo.</p>
<p><img class="size-medium wp-image-101 alignnone" title="Police hunt gang of Santa's after city fight." src="http://www.robertsmall.org/wp-content/uploads/2008/12/photo20081222t131348-000017-225x300.jpg" alt="Police hunt gang of Santa's after city fight." width="225" height="300" /></p>
<p>Enjoy!</p>
<p>Have a great Christmas all of you, I&#8217;ll write more in the new year.</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F12%2F25%2Fmerry-christmas-oh-and-a-funny-picture%2F&amp;linkname=Merry%20Christmas%21%20Oh%2C%20and%20a%20funny%20picture."><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/12/25/merry-christmas-oh-and-a-funny-picture/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The life of a fig</title>
		<link>http://www.robertsmall.org/2008/11/04/the-life-of-a-fig/</link>
		<comments>http://www.robertsmall.org/2008/11/04/the-life-of-a-fig/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 03:09:47 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Grammar]]></category>
		<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=94</guid>
		<description><![CDATA[I know, I haven&#8217;t posted. I&#8217;ve been really busy with all sorts of stuff. I thought I&#8217;d bring this little gem to you.

Correct me if I&#8217;m wrong, but isn&#8217;t this a grammar fail?
Kind regards, Robert.
]]></description>
			<content:encoded><![CDATA[<p>I know, I haven&#8217;t posted. I&#8217;ve been really busy with all sorts of stuff. I thought I&#8217;d bring this little gem to you.</p>
<p><a href="http://www.robertsmall.org/wp-content/uploads/2008/11/photo20081031t144852-000001.jpg"><img class="alignnone size-medium wp-image-95" title="photo20081031t144852-000001" src="http://www.robertsmall.org/wp-content/uploads/2008/11/photo20081031t144852-000001-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Correct me if I&#8217;m wrong, but isn&#8217;t this a grammar fail?</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F11%2F04%2Fthe-life-of-a-fig%2F&amp;linkname=The%20life%20of%20a%20fig"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/11/04/the-life-of-a-fig/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Another list of amazing things people have said to me.</title>
		<link>http://www.robertsmall.org/2008/08/28/another-list-of-amazing-things-people-have-said-to-me/</link>
		<comments>http://www.robertsmall.org/2008/08/28/another-list-of-amazing-things-people-have-said-to-me/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 01:28:20 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=75</guid>
		<description><![CDATA[I promised you another list of amazing things, here it is. Have fun!
&#8220;Aren&#8217;t you worried about large quantities of money entering your country from dubious sources?&#8221; (BBC interviewer)
&#8220;But of course not, I would be worried if money was leaving my country.&#8221;
Brilliant, thank you Swiss Foreign Minister! I know it&#8217;s not a stupid thing and wasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I promised you another list of amazing things, here it is. Have fun!</p>
<blockquote><p>&#8220;Aren&#8217;t you worried about large quantities of money entering your country from dubious sources?&#8221; (BBC interviewer)</p>
<p>&#8220;But of course not, I would be worried if money was leaving my country.&#8221;</p></blockquote>
<p><em>Brilliant, thank you Swiss Foreign Minister! I know it&#8217;s not a stupid thing and wasn&#8217;t to me, but it&#8217;s funny.<br />
</em></p>
<p><em>Please note that I&#8217;m not sure it was the SFM, however it definitely was a Swiss guy who was in charge of monies.</em></p>
<blockquote><p>&#8220;If a <em>[unfortunate term for people with high levels of dark pigment in their skin]</em> ever came to this school I&#8217;d have to leave or kill myself.&#8221;</p></blockquote>
<p><em>This completely shocked me, what shocked me more was the number of people who laughed or agreed.</em></p>
<blockquote><p>&#8220;I&#8217;m not racist! I have plenty of black friends!&#8221;</p></blockquote>
<p><em>This was talking to one of the laughing people who seemed in agreement. It&#8217;s helped me come up with a plea for Michael Jackson:</em></p>
<p><em>&#8220;I&#8217;m not a paedophile, I have lots of friends who are children!&#8221;</em></p>
<blockquote><p>&#8220;I don&#8217;t want to suppress people&#8217;s views, I just don&#8217;t want them here.&#8221; <em>and a few hours later</em> &#8220;I think there should be moderation throughout the whole network to remove swearing and views I don&#8217;t agree with.&#8221;</p></blockquote>
<p><em>Slightly rephrased for readability, it was actually views which didn&#8217;t fit with the person&#8217;s religion.</em></p>
<blockquote><p>&#8220;Could I have a half pound burger please.&#8221;</p>
<p>&#8220;You&#8217;re not in America now mate.&#8221;</p></blockquote>
<blockquote><p>&#8220;How would that change things? If you think about it we used the imperial measuring system before they did, and we adjusted it after they broke away. Also the whole concept of a half pounder being an American thing is ironic as the measurement system is called &#8216;Imperial&#8217;. In other words, could I have an imperial half pound burger please. Incidentally, being at a traditional country fair, shouldn&#8217;t we use traditional weights and measures?&#8221;</p>
<p>&#8220;Huh?&#8221;</p></blockquote>
<p><em>It would have only complicated things to mention that metric was pretty much invented by John Wilkins in 1668 who was English.</em></p>
<p>This one is shorter, fewer laughs, but I thought I&#8217;d bring it to you now before I forget!</p>
<p>Kind regards, Robert.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F08%2F28%2Fanother-list-of-amazing-things-people-have-said-to-me%2F&amp;linkname=Another%20list%20of%20amazing%20things%20people%20have%20said%20to%20me."><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/08/28/another-list-of-amazing-things-people-have-said-to-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New features on RobertSmall.org</title>
		<link>http://www.robertsmall.org/2008/08/26/new-features-on-robertsmallorg/</link>
		<comments>http://www.robertsmall.org/2008/08/26/new-features-on-robertsmallorg/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 17:09:33 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Myspace]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Stumbleuppon]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=70</guid>
		<description><![CDATA[This is just a quick post to tell you about a few new features on the website. They should make it easier for you to use.
ShareThis
This is a useful little button just after the main post which allows you pass it on to as many people as you want. If you click &#8216;ShareThis&#8217; then it [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick post to tell you about a few new features on the website. They should make it easier for you to use.</p>
<p><strong>ShareThis</strong></p>
<p>This is a useful little button just after the main post which allows you pass it on to as many people as you want. If you click &#8216;ShareThis&#8217; then it brings up a small box which allows you to select a service to send it to. The three most popular so far have been Facebook, Myspace, and Stumbleuppon. Please help both me and the site by posting all content that you like to any social service you use. More people might like you if they think you&#8217;re friends with me!</p>
<p>For your interest my Facebook profile is: <a href="http://www.facebook.com/profile.php?id=604575290">http://www.facebook.com/profile.php?id=604575290</a></p>
<p>If you want to add me as a friend please send me a message telling me who you are first (just mention that you read my blog).</p>
<p><strong>Wordpress Wall</strong></p>
<p>This is a feature a little like Facebook&#8217;s wall. You can make quick posts to me at the side of the front page. It&#8217;ll be interesting to see how this goes and if anyone wants to make use of it to say something shorter than a full blown comment.</p>
<p><strong>Wordbook</strong></p>
<p>I also have installed a little plugin that automatically posts new posts to my Facebook profile. This will be a good way for some of you who know me to keep up with what I&#8217;ve posted.</p>
<p><strong>PDA Viewing</strong></p>
<p>This feature should let you view this blog on your PDA or iPhone, not too sure about smaller phones capable of html browsing. Do send me some comments if you try this.</p>
<p>Well, that&#8217;s everything, I hope people like what I&#8217;ve done and if you have any comments or suggestions then please pass them on to me &#8211; commenting here will do.</p>
<p>Kind regards, Robert.</p>
<p>PS: I&#8217;m writing another list of comments. It will arive within the next few days. RJS.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F08%2F26%2Fnew-features-on-robertsmallorg%2F&amp;linkname=New%20features%20on%20RobertSmall.org"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/08/26/new-features-on-robertsmallorg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
