<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Only Idiots Assume</title>
	
	<link>http://www.onlyidiotsassume.co.uk/blog</link>
	<description>Just another crazy site</description>
	<lastBuildDate>Thu, 12 Aug 2010 13:00:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/onlyidiots" /><feedburner:info uri="onlyidiots" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Visual Studio Source Control and Dropbox!</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/WukF639jM7s/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/08/visual-studio-source-control-and-dropbox/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 13:00:07 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Random Tech]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=660</guid>
		<description><![CDATA[Using SubVersion and Dropbox with Visual Studio to get access to your projects from anywhere! With source control as a bonus.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F08%2Fvisual-studio-source-control-and-dropbox%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F08%2Fvisual-studio-source-control-and-dropbox%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_664" class="wp-caption alignright" style="width: 301px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/08/dropbox_platforms.png"><img class="size-full wp-image-664" title="Dropbox Platforms" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/08/dropbox_platforms.png" alt="Dropbox Platforms Image" width="291" height="291" /></a><p class="wp-caption-text">Dropbox works on all three of the major OSes.</p></div>
<p>As anyone that reads this blog should realise (that&#8217;s if anyone is actually reading it, comment people please!), I am a Applications Developer.  I work for a large law firm writing Visual Basic .NET applications, along with a fair amount of SQL work.  However I also do a lot of personal development outside of work, building websites and applications for private contracts.  I wanted a similar Source Control solution to the one that we use at work (Source Gear&#8217;s <a title="SourceVault by Sourcegear" href="http://www.sourcegear.com/vault/" target="_blank">SourceVault</a>), but I wanted one extra feature!! Distributed Source Control!</p>
<p>For those that are not 100% on what Source Control is here is a little explanation.  Source Control systems are designed to keep a historical copy of your source files; whether they be source code, websites or even documentation. The crux of the matter is you &#8220;check&#8221; files in and out of the repository (the source control container), most systems also give you the option of tagging comments to your &#8220;check ins&#8221; so that you can remember what changes you made to your code!! The whole purpose of a SourceControl solution is to save you from disaster when it all goes wrong! Should you make a change that breaks your application, or need to roll back when the plan changes, you can simply pull out an historical copy of your file from a previous check in!</p>
<p>The other major benefit of Source Control systems is that they allow for collaboration between multiple developers. When Developer A checks out a source file to work on, the repository allows Developer B to access the file but it prevents him from checking the change in until Developer A has finished with the file.  Once both Developer A and B have both finished with the files, the repository offers to merge the changes together.  Some Source Control solutions store the details and content of the source files in an SQL database (as SourceVault does), however the tradition is to use a file structure (like <a title="SubVersion on Apache" href="http://subversion.apache.org/" target="_blank">SubVersion</a> and <a title="Microsoft's Sourcesafe on Wikipedia" href="http://en.wikipedia.org/wiki/Microsoft_Visual_SourceSafe" target="_blank">Microsoft&#8217;s SourceSafe</a>).</p>
<p>My custom SourceControl solution is SubVersion and <a title="Dropbox Storage in the Cloud" href="http://www.dropbox.com" target="_blank">Dropbox</a> running on Windows 7!! Read More for instructions on how to re-create it!</p>
<p><span id="more-660"></span><br />
Dropbox is an on-line file hosting solution, which takes a users files and stores them in the cloud, allowing the files to be accessed from anywhere on the internet and from almost every operating system.  It is free for a basic account, which should be more than enough for most private developers (2GB).  As dropbox is designed to store files, it is ideal for SubVersion, as it also stores your source code in lots of small files rather than one big SQL data file.</p>
<p>The downside to SubVersion aka SVN is that it can often be complex to set up, requiring a knowledge of SSH and the Linux Shell (not a problem for me, but I am a Windows Developer in the main so my SVN system is going to be windows based!). Luckly for those who don&#8217;t want to use a Linux server for their source, there is a free (to individuals) solution in the form of <a title="VisualSVN Server" href="http://www.visualsvn.com/server/download/" target="_blank">VisualSVN Server</a>.</p>
<div id="attachment_662" class="wp-caption alignleft" style="width: 232px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/08/logo_visual_svn_server.jpg"><img class="size-full wp-image-662" title="Visual SVN Server Logo" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/08/logo_visual_svn_server.jpg" alt="Visual SVN Server Logo" width="222" height="87" /></a><p class="wp-caption-text">VisualSVN Server is free to individuals</p></div>
<p>VisualSVN Server automates the installation of the SVN Server for you, including the creation of the repository and security details.  Once installed you get a helpful management plug-in that allows you to manage the repository, create folders and manage forks (will explain that another time!).</p>
<p>When you install VisualSVN Server you are asked where you wish the repository to be stored, and that&#8217;s the important trick! This is where dropbox comes in, when you install VisualSVN ensure that you pick a place within your &#8220;My Dropbox&#8221; folder to store the repository, I would recomend a &#8220;SVN_Repository&#8221; folder.</p>
<p>Now each time you check something into the repository it is syncronised upto DropBox, and back down to your other development machines!!  A Source Control repository with automated backup, and distributional as well!</p>
<p>I hope that I have explained myself relatively well in all the above, but I did write this over three days ( I get easily distracted, in fact this was a distraction to start with!), if not let me know and I will try to help!</p>
<p>UPDATE: A good SVN Add-on for Visual Studio is <a title="AnkhSVN" href="http://ankhsvn.open.collab.net/" target="_blank">AnkhSVN</a>, which is a free plug-in that binds Visual Studio projects to your SVN repository.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/SEvzQhoPJbVB_lZvPDtzuFXJcMM/0/da"><img src="http://feedads.g.doubleclick.net/~a/SEvzQhoPJbVB_lZvPDtzuFXJcMM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SEvzQhoPJbVB_lZvPDtzuFXJcMM/1/da"><img src="http://feedads.g.doubleclick.net/~a/SEvzQhoPJbVB_lZvPDtzuFXJcMM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/WukF639jM7s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/08/visual-studio-source-control-and-dropbox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/08/visual-studio-source-control-and-dropbox/</feedburner:origLink></item>
		<item>
		<title>Random Tech: Like an SSD but without the price tag</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/S6DL4rB07r4/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/08/random-tech-like-an-ssd-but-without-the-price-tag/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 11:30:22 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Random Tech]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=655</guid>
		<description><![CDATA[Speeding up by system by over 15% for only £79! And I got a SSD in the bargain!]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F08%2Frandom-tech-like-an-ssd-but-without-the-price-tag%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F08%2Frandom-tech-like-an-ssd-but-without-the-price-tag%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_656" class="wp-caption alignleft" style="width: 292px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/08/momentus_xt_magic_320x340.png"><br />
<img class="size-medium wp-image-656" title="Momentus XT Hybrid Drive" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/08/momentus_xt_magic_320x340-282x300.png" alt="Momentus XT Hybrid Drive" width="282" height="300" /></a><p class="wp-caption-text">Momentus XT Hybrid Drive</p></div>
<p>I don&#8217;t normally do hardware reviews, but I decided that this was worth while.  I recently purchased a Seagate Momentus XT Hybrid Drive, not the best named piece of hardware but it does the job.</p>
<p>The Momentus XT, as the name implies,  is a hybrid hard disk drive. It combines a standard hard drive with some NAND flash memory, not that you can tell once you are booted into your Operating System.  The Momentus XT comes in three flavours 250GB, 320GB and 500GB.  Each flavour includes 4GB of NAND flash memory, which is used to hold all your most regularly used files.</p>
<p>4GB may not sound like a lot of space, but when it&#8217;s only being used to store the files which the OS uses the most it&#8217;s more than enough. In the case of Windows, it stores some of the page file and lots of DLLs (especialy the .NET ones!).  So my main problem, the speed at which Visual Studio worked, was solved just by caching the .NET frameworks!</p>
<p>One of the plus points of the HDD looking after the Flash storage within firmware, is that this drive will work on any machine that supports SATA! There are no special drivers so it will work with Windows, Linux, etc etc.</p>
<p>Now down to the numbers,  over a standard Laptop drive running at 5400 RPM I get around an 18% performance increase.  Where as an SSD would give me around a 20% increase, but for an extra £250 (for the most basic 250GB SSD)!!</p>
<p>My boot time is now around a minute, and resume from hibernate is a matter of seconds.   The proof that this drive gives a speed increase is my task bar on a clean boot. Normally you see Windows Boot, and then your Virus Scanner loads, followed by the firewall and slowly the rest of the tray icons. With the Momentus XT drive, the all load at once, and the system is booted as soon as you can see the desktop!!</p>
<p>All in all, the Seagate Momentus XT drive gave a massive performance increase to my Dell XPS M1530, and it only cost me £79 (delivered!) from <a title="My Supplier of Choice" href="http://www.scan.co.uk" target="_blank">www.scan.co.uk</a>. Rather than £100s of pounds for the same size SSD.</p>
<p>For more info about the Momentus XT range take a look at <a title="The Seagate Momentus XT Range" href="http://www.seagate.com/www/en-gb/products/laptops/laptop-hdd/" target="_blank">Seagate&#8217;s Momentus XT Range</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/JjvNeaZPhHCc1LP1116G0kX7_vM/0/da"><img src="http://feedads.g.doubleclick.net/~a/JjvNeaZPhHCc1LP1116G0kX7_vM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JjvNeaZPhHCc1LP1116G0kX7_vM/1/da"><img src="http://feedads.g.doubleclick.net/~a/JjvNeaZPhHCc1LP1116G0kX7_vM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/S6DL4rB07r4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/08/random-tech-like-an-ssd-but-without-the-price-tag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/08/random-tech-like-an-ssd-but-without-the-price-tag/</feedburner:origLink></item>
		<item>
		<title>Random Tech: Speeding up Ubuntu 10.04 boot time</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/CQUzeTAgT2U/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/07/random-tech-speeding-up-ubuntu-10-04-boot-time/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 14:22:53 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Random Tech]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=650</guid>
		<description><![CDATA[Speed up your Ubuntu boot times by limiting start-up applications and giving the system a good kick up the BUM.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F07%2Frandom-tech-speeding-up-ubuntu-10-04-boot-time%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F07%2Frandom-tech-speeding-up-ubuntu-10-04-boot-time%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>Typically Ubuntu boots in around 15-45 seconds out of the box, but overtime this can change as you add more applications and the init scripts get bloated.  So here are a few quick tips to help you speed up Ubuntu&#8217;s boot time (I am using Ubuntu 10.04).</p>
<h2>Start up</p>
<p><div id="attachment_651" class="wp-caption alignright" style="width: 259px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/07/Screenshot-Startup-Applications-Preferences.gif"><img class="size-full wp-image-651" title="Ubuntu Start-up Applications" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/07/Screenshot-Startup-Applications-Preferences.gif" alt="Ubuntu Start-up Applications" width="249" height="185" /></a><p class="wp-caption-text">Remove unwanted items to speed up boot time</p></div></h2>
<p>The easiest tweeks to make can be found in the &#8220;System &gt; Preferences &gt; Start-up Applications&#8221; menu.  On a desktop machine you are unlikely to need a few of the services, and on a server you are likely to need even fewer.</p>
<p>The applications which I have disabled are:</p>
<ul>
<li> Blue-tooth Manager: If you don&#8217;t use blue-tooth then this service is a waste of resources!</li>
<li>Evolution Alarm Notifier: Personally I do not use evolution as a mail client, so there is no need for the notifier. Even if you do use evolution, you may not need the reminders!</li>
<li>GNOME Login Sound: As nice as that sound is, the monkey in the jungle gets annoying very quickly!</li>
<li>Visual Assistance: I don&#8217;t need the &#8220;accessibility&#8221; features.</li>
</ul>
<p>You may find others that you don&#8217;t need, such as &#8220;Ubuntu One&#8221; which you might not make use of.</p>
<h2>A good kick up the BUM</h2>
<p>BUM or Boot Up Manager is a useful program that takes controlling start-up programs and services one step further.  You can use it to completly stop the CUPS (Printing) services and any other laptop only items if you are running a desktop or server.  It can be installed with the following apt-get command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> bum</pre></div></div>

<p>I will leave you to decided which items to disable, as everyone&#8217;s Ubuntu installs can be different.</p>
<p>If you have any other speed-up tips please comment!!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vBJIcdMJl03fFtzz2GkdL3VVWSc/0/da"><img src="http://feedads.g.doubleclick.net/~a/vBJIcdMJl03fFtzz2GkdL3VVWSc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vBJIcdMJl03fFtzz2GkdL3VVWSc/1/da"><img src="http://feedads.g.doubleclick.net/~a/vBJIcdMJl03fFtzz2GkdL3VVWSc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/CQUzeTAgT2U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/07/random-tech-speeding-up-ubuntu-10-04-boot-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/07/random-tech-speeding-up-ubuntu-10-04-boot-time/</feedburner:origLink></item>
		<item>
		<title>Random Tech: Synergy for Ubuntu and Windows 7</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/EnbBHi_pPDo/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/07/random-tech-synergy-for-ubuntu-and-windows-7/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 14:40:02 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Random Tech]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=643</guid>
		<description><![CDATA[Using Synergy on Ubuntu and Windows 7 to share my keyboard and mouse.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F07%2Frandom-tech-synergy-for-ubuntu-and-windows-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F07%2Frandom-tech-synergy-for-ubuntu-and-windows-7%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>How many of us have got more than one computer on our desks? The answer is almost certainly a lot of us!  I have just set up my office in my new apartment (I moved on Monday!), and I decided that I didnt need to have to two keyboards and mice.</p>
<p>I have used <a title="Synergy at Sourceforge" href="http://synergy2.sourceforge.net/" target="_blank">synergy</a> before, and have decided to use it again.  For those that have not seen synergy before, it is akin to a KVM (keyboard, video, mouse sharing hardware) but is purely software.  I can share a keyboard and mouse with any other machines on my network, they don&#8217;t even need to be in the same room (although what use that would be I don&#8217;t know!).  The best bit is that synergy is free, and runs on Linux, Windows and Mac, and takes moments to set up.</p>
<p>I have a Windows 7 laptop and an Ubuntu 10.04 desktop, synergy runs as a server on the laptop allowing the desktop to connect to it.  Installing Synergy on the desktop is easy, just download the installer from the <a title="Synergy at Sourceforge" href="http://synergy2.sourceforge.net/" target="_blank">Synergy</a> website, as for Ubuntu just type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> synergy quicksynergy</pre></div></div>

<p>Once installed you set up the server (in my case on the Windows machine) with a few simple clicks:</p>
<div id="attachment_644" class="wp-caption aligncenter" style="width: 910px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/07/screenshots.gif"><img class="size-full wp-image-644" title="Synergy Screenshots" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/07/screenshots.gif" alt="Synergy Screenshots" width="900" height="316" /></a><p class="wp-caption-text">Synergy Screenshots</p></div>
<p>All you have to do is add the &#8220;screens&#8221; aka machines to the top list (Badwolf is my laptop, Paladon is my desktop : guess the naming convention!), then tell Synergy where the screens are in the links pane. You can get posh and set up the vertical positioning of the screens, e.g. 50% of the left of one is to the right of another, but I don&#8217;t see the need unless you have several machines.  This screen is accessed via the &#8220;Configure&#8221; button on the right hand screen shot.  Once set up click &#8220;Start&#8221;.</p>
<p><span id="more-643"></span></p>
<p>To set up the client on Ubuntu, chose &#8220;Quick Synergy&#8221; from the applications menu, and pick the &#8220;use&#8221; menu. All you have to do is type the server&#8217;s IP address, and the name that you wish the machine to be called (the client&#8217;s name not the server you are connecting to).</p>
<div id="attachment_648" class="wp-caption alignright" style="width: 310px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/07/screenshotubuntu.gif"><img class="size-medium wp-image-648" title="Synergy on Ubuntu" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/07/screenshotubuntu-300x269.gif" alt="Synergy on Ubuntu" width="300" height="269" /></a><p class="wp-caption-text">Synergy on Ubuntu</p></div>
<p>Once you click &#8220;Execute&#8221; you can close the QuickSynergy window, and you are done!</p>
<p>Now you can use your keyboard and mouse to control all your machines at once, just slide off the screen and onto the next!!</p>
<p>Any comments are always welcome.</p>
<p>Thanks</p>
<p>jamesakadamingo</p>

<p><a href="http://feedads.g.doubleclick.net/~a/JeWF400zVvDGMlXt8kQsyBw5ojc/0/da"><img src="http://feedads.g.doubleclick.net/~a/JeWF400zVvDGMlXt8kQsyBw5ojc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JeWF400zVvDGMlXt8kQsyBw5ojc/1/da"><img src="http://feedads.g.doubleclick.net/~a/JeWF400zVvDGMlXt8kQsyBw5ojc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/EnbBHi_pPDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/07/random-tech-synergy-for-ubuntu-and-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/07/random-tech-synergy-for-ubuntu-and-windows-7/</feedburner:origLink></item>
		<item>
		<title>TTPMO: Virgin Broadband are all asses</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/5SgU6OFMG84/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/06/ttpmo-virgin-broadband-are-all-asses/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 07:40:15 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[TTPMO]]></category>
		<category><![CDATA[Virgin]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/2010/06/ttpmo-virgin-broadband-are-all-asses/</guid>
		<description><![CDATA[Well I&#8217;m writing this from the wordpress for iPhone application, as I currently do not have Internet access (apart from GPRS). I moved into a new house yesterday, with my lovely girlfriend Emma. Last week I contacted Virgin Broadband&#8217;s &#8220;Home Movers Team&#8221; to inform that I was about to move house. I spoke to a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F06%2Fttpmo-virgin-broadband-are-all-asses%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F06%2Fttpmo-virgin-broadband-are-all-asses%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>Well I&#8217;m writing this from the wordpress for iPhone application, as I currently do not have Internet access (apart from GPRS). I moved into a new house yesterday, with my lovely girlfriend Emma.</p>
<p>Last week I contacted Virgin Broadband&#8217;s &#8220;Home Movers Team&#8221; to inform that I was about to move house. I spoke to a very kind lady called Katherine l, who told me hat she would arrange for my service to be cut off from my old property in the morning and it to be connected in the afternoon. She also found that the previous tenants had not ended their contract, so she would get that sorted and call me if there were any problems. Simple aye?? Unfortunately not so.</p>
<p>Yesterday early afternoon I called Virgin&#8217;s &#8220;Quick Activation&#8221; team to get everything going. It seams I was with wrong team, so the put me through to Customer Support who spoke to me q while and put me back again.</p>
<p>Apparently Katherine never did anything, my service was still connected to my old flat, and the previous tenants service had no been removed. So the &#8220;man from India&#8221; (no racial slight intended) told me he &#8220;would submit the form, and contact me most quickly when he had the response from the requested form he had sent just now&#8221;.</p>
<p>An hours worth of phone calls later and I am told that the property has no Virgin Service (so what did they waste my morning disconnecting) and they must send round an engineer. Regardless of the fact that I have already connected everything and just need them to &#8220;flick the switch&#8221;. So I get Internet on Wednesday, and intend to get at least a months refund on Thursday once I speak to their complaints department!!!</p>
<p>Sorry if this post rambled but it&#8217;s hard to type a good one via an iPhone!!</p>
<p>UPDATE: Virgin Media tweeted back at me!! They said,</p>
<p>@jamesakadamingo Really sorry about the problems James, moving house is stressful enough. Do get in touch if you need further help. ST</p>
<p>I will get in contact with them, and see what ST can do to stop me being angry!!</p>
<p>Oh and look it&#8217;s a virgin service point in my flat how did thy get there, maybe it was ALREADY here?!?!</p>
<p><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/06/p_2048_1536_63B37645-FA8D-49E1-B5DC-9CB8346DB69C.jpeg"><img class="aligncenter size-thumbnail wp-image-638" title="p_2048_1536_63B37645-FA8D-49E1-B5DC-9CB8346DB69C.jpeg" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/06/p_2048_1536_63B37645-FA8D-49E1-B5DC-9CB8346DB69C-150x150.jpg" alt="" width="150" height="150" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/u2rlgaYxVChmxIlvKqQ9r812Jcs/0/da"><img src="http://feedads.g.doubleclick.net/~a/u2rlgaYxVChmxIlvKqQ9r812Jcs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/u2rlgaYxVChmxIlvKqQ9r812Jcs/1/da"><img src="http://feedads.g.doubleclick.net/~a/u2rlgaYxVChmxIlvKqQ9r812Jcs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/5SgU6OFMG84" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/06/ttpmo-virgin-broadband-are-all-asses/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/06/ttpmo-virgin-broadband-are-all-asses/</feedburner:origLink></item>
		<item>
		<title>O2 Drop Unlimited Data Contracts</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/V4uDmlhpHT4/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/06/o2-drop-unlimited-data-contracts/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 10:20:11 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile Phone]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=635</guid>
		<description><![CDATA[O2 Cut off unlimited data bundles for the iPhone]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F06%2Fo2-drop-unlimited-data-contracts%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F06%2Fo2-drop-unlimited-data-contracts%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>In the wake of Apple&#8217;s WWDC 2010 conference, it appears that network providers around the globe are now dropping their unlimited data packages (and not just for the iPhone). It seamed that only minutes after Steve Jobs sat down, AT&amp;T dropped their package, and the next day @O2 did the same in the UK.</p>
<p>This instantly angered me and my fellow O2 iPhone friends, being limited to 500MB a month seamed painful. It got me thinking about how I use my phone, as I see myself as a relatively heavy user.  I use my phone regularly to check <a title="Twitter.com" href="http://www.twitter.com/jamesakadamingo" target="_blank">Twitter</a>, <a title="The Register Tech News" href="http://www.theregister.co.uk/" target="_blank">The Register</a>, <a title="./ News for Nerds" href="http://slashdot.org" target="_blank">SlashDot</a>, Google Blogs, <a title="Twitter Blog" href="http://blog.twitter.com/" target="_blank">Twitter Blogs</a>, the <a title="The BBC" href="http://www.bbc.co.uk" target="_blank">BBC</a> and much much more. And of course the odd bit of YouTube and WeRule (sad I know). I thought that this would surely mount up to a lot of data usage.</p>
<p>To my surprise I have only used 2.1GB of data since I got my iPhone (in October 2009), however the surprise was short lived. When I am at home, I have WiFi, when I am at work/the cafe/my Girlfriends/etc I have WiFi, so it all comes down the pipes rather than over the air!</p>
<p>So yes O2 are about to limit us, but as they say most of us won&#8217;t even notice!! My only concern is that with the incoming iPhone 4 (and iOS4 for the 3GS) some of us will start having streaming programs running in the background as we walk from A to B (listening to spotify or similar), so perhaps O2 should use a different model than just limiting us all!  They say that the problem is the 1% that use crazy amounts of data, perhaps just put it in the fair use, and charge them rather than limiting us all!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/Lu4GScMy9ywvuTMKRrisOaKP2y8/0/da"><img src="http://feedads.g.doubleclick.net/~a/Lu4GScMy9ywvuTMKRrisOaKP2y8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Lu4GScMy9ywvuTMKRrisOaKP2y8/1/da"><img src="http://feedads.g.doubleclick.net/~a/Lu4GScMy9ywvuTMKRrisOaKP2y8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/V4uDmlhpHT4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/06/o2-drop-unlimited-data-contracts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/06/o2-drop-unlimited-data-contracts/</feedburner:origLink></item>
		<item>
		<title>Seriously back up your databases!</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/Jv3CaHCLRx8/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/05/seriously-back-up-your-databases/#comments</comments>
		<pubDate>Sun, 23 May 2010 23:33:46 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=626</guid>
		<description><![CDATA[Backups Backups and more Backups, always an important mantra. I was surprised to find that a fellow geek wasn&#8217;t backing up his MySQL database that runs his website. Yea he has backups for all the code files, but not for his content! It frightened me when I found out how many people don&#8217;t backup their [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F05%2Fseriously-back-up-your-databases%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F05%2Fseriously-back-up-your-databases%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>Backups Backups and more Backups, always an important mantra.  I was surprised to find that a fellow geek wasn&#8217;t backing up his MySQL database that runs his website.  Yea he has backups for all the code files, but not for his content!</p>
<p>It frightened me when I found out how many people don&#8217;t backup their websites SQL databases.  Every WordPress blog runs off of a SQL (normally MySQL) database, if you use a WP-Hosted blog then your safe as they back it up for you.  If you host your own WP blog (or geeklog, drupal, etc, etc) then your backups are up to you!</p>
<p>It is for that reason that I have just finished knocking together a page detailing how my simple Linux script backups up my databases at regular intervals (some hourly, some every two, some once a day!) zips them and emails the smaller ones to me!</p>
<p>Check out the article on &#8220;<a href="http://www.onlyidiotsassume.co.uk/blog/code-snippets/linux-hacks/backup-mysql-databases-automatically-in-ubuntu/" title="Backing up MySQL databases automatically in Linux">Backing up MySQL databases automatically in Linux</a>&#8220;.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ZuJgcqonzaeSFkLBlHzfwcgUXYg/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZuJgcqonzaeSFkLBlHzfwcgUXYg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZuJgcqonzaeSFkLBlHzfwcgUXYg/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZuJgcqonzaeSFkLBlHzfwcgUXYg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/Jv3CaHCLRx8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/05/seriously-back-up-your-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/05/seriously-back-up-your-databases/</feedburner:origLink></item>
		<item>
		<title>The Official Twitter iPhone Application</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/lGMZzhFPpgI/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/05/the-official-twitter-iphone-application/#comments</comments>
		<pubDate>Wed, 19 May 2010 19:04:55 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=597</guid>
		<description><![CDATA[So here it is the long promised Official Twitter iPhone Application, first impression upon loading it from the Apple AppStore was that the icon needs a bit of work, almost like it had been rushed. But more importantly what is the application like? Opening the app up for the first time presented me with a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F05%2Fthe-official-twitter-iphone-application%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F05%2Fthe-official-twitter-iphone-application%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_598" class="wp-caption alignleft" style="width: 185px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/icon.png"><img class="size-full wp-image-598" title="Twitter for iPhone App Icon" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/icon.png" alt="Twitter for iPhone App Icon" width="175" height="173" /></a><p class="wp-caption-text">Twitter for iPhone App Icon</p></div>
<p>So here it is the long promised Official Twitter iPhone Application, first impression upon loading it from the Apple AppStore was that the icon needs a bit of work, almost like it had been rushed.</p>
<p>But more importantly what is the application like? Opening the app up for the first time presented me with a screen showing the latest tweets of interest and trends. I would show you a screen shot, but stupidly I rushed passed that page and logged in (you get a similar page once logged in).  What did surprise me was the basic authentication method that was used, &#8220;please enter your username and password&#8221;. Surely the official Twitter app should be using oAuth? If someone like me can slave over a PHP oAuth system, then Twitter&#8217;s dev team can create a layer for the iPhone!??</p>
<p>But what do my tweets look like I hear you shout (or I might be imagining it), well they look like this.</p>
<div id="attachment_599" class="wp-caption alignright" style="width: 330px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/IMG_0608.png"><img class="size-full wp-image-599" title="Official Twitter iPhone App - Timeline" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/IMG_0608.png" alt="Official Twitter iPhone App - Timeline" width="320" height="480" /></a><p class="wp-caption-text">Official Twitter iPhone App - Timeline</p></div>
<p>They appear to have taken the standard layout, author image to the left (unless its your&#8217;s, then its to the right). @kaivana &#8216;s tweet is shown with a blue background I presume because it is tweeted at me! Oh and @Tony_Hillier is trying the new app also, hence the random &#8220;Tweet Tweet&#8221;.</p>
<p>My current iPhone Twitter client is TwitBird Pro, and the only thing that I feel this page is missing is the background image feature that TwitBird Pro offers.  Perhaps @Twitter will take notice and do an update!</p>
<p>The icons along the bottom of the screen provide a few extra views,</p>
<ul>
<li>Speach bubble provides your standard home timeline.</li>
<li>@ symbol unsprisingly provides a list of tweets in which you are mentioned.</li>
<li>Letter provides your direct messages, grouped by user which is a nice touch.</li>
<li>The hand glass provides the more interesting feature allowing for trending topics and searches.</li>
<li>The triple dots gives access to the settings and your favourite tweets and lists.</li>
</ul>
<p>Clicking onto a tweet performs the usual action of showing the tweet along with and links for #hashtags and @usernames. If the tweet is geo-tagged then it will also show a nice little map which can be extended with a click to a full screen view.  The normal access to a users bio is also available when you click on their name, which gives a funky feature allowing you to import their info into an iPhone contact!</p>
<p><span id="more-597"></span></p>
<h2>Tweet Views</h2>
<p>The tweet view gives the normall set of functions to Star / reply / retweet or in the case that it is your&#8217;s delete it.  Which is a function missed out of many applications!</p>
<p>Clicking on a users picture as I mentioned above brings up a account view, which not only gives the normal set of  tweet &#8220;counts&#8221; but also some new menus which give you access to the users retweets / retweeted-statuses / lists and a whole load of services that many may not know exist!</p>
<div id="attachment_600" class="wp-caption alignright" style="width: 330px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/IMG_0611.png"><img class="size-full wp-image-600" title="The Official Twitter iPhone App - Tweet View" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/IMG_0611.png" alt="The Official Twitter iPhone App - Tweet View" width="320" height="480" /></a><p class="wp-caption-text">The Tweet View in the new Twitter iPhone application</p></div>
<ul>
<li><strong>Tweet Blocker</strong> &#8211; A service giving your tweeps a mark on how spam like they are! I got an A+ so I must be a good boy!</li>
<li><strong>Follow Cost</strong> &#8211; A service that lets you know how painful it might be to follow a certain tweep (@jeffjarvis i&#8217;m looking at you and your serial retweeting)</li>
<li><strong>Favstar.fm</strong> &#8211; <em>&#8216;A site tracking what you, your friends, and everyone else is favoriting on Twitter.&#8217;</em></li>
<li><strong>Overlapr </strong>- A service to compare two tweeps and see what they have in common</li>
<li><strong>Tweeteorites </strong>- A list of the most favourite&#8217;d tweets in the last 24 Hours.</li>
</ul>
<p>Along with access to search the user on the above services, you can also set the app to provide notifications for that user or even block/report them for spam!</p>
<h2>Tweet Entry</h2>
<p>Naturally one of the more important parts of a twitter client is the input screen!</p>
<p>If it isn&#8217;t easy to type out a tweet then you arn&#8217;t likely to stick with it! As you can see the input screen is clean and tidy.  Tapping the little letter counter pops up the tweet options, with picture uploading, geotaging, username and hashtags. The only feature it seams to be missing is a twit-shrink like Tweetdeck which turns my long winded tweet into a shorter one!</p>
<p>Now I could talk for ever about this application but I will stop now before I bore everyone to death.  Just to finnish here is the list of tweet-services that are supported.</p>
<p><strong>Images</strong>: yFrog, TwitPic, TweetPhoto, Mobypictures, Twitgoo, Posterous, img.ly and custom ones!</p>
<p><strong>Video</strong>: yFrog, TwitVid, Mobypicture, Posterous, Vodpod.<br />
<div id="attachment_602" class="wp-caption alignright" style="width: 330px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/IMG_0609.png"><img class="size-full wp-image-602" title="Official Twitter iPhone App - Input" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/IMG_0609.png" alt="Official Twitter iPhone App - Input" width="320" height="480" /></a><p class="wp-caption-text">Official Twitter iPhone App - Input</p></div><br />
<strong>URL Shortening</strong>: j.mp (bit.ly), TinyURL, is.gd, l.pr, u.nu, Linkyy and custom ones! Including the API keys which we all love to use to keep track of our tiny urls!</p>
<p><strong>Read It Later:</strong> Instapaper, Read it Later.</p>
<p>So that is it for now! Bye Bye!!</p>
<p><strong>jamesakadamingo</strong></p>

<p><a href="http://feedads.g.doubleclick.net/~a/9Koqf05p-Wa-2EsAAnASkNiPF4I/0/da"><img src="http://feedads.g.doubleclick.net/~a/9Koqf05p-Wa-2EsAAnASkNiPF4I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9Koqf05p-Wa-2EsAAnASkNiPF4I/1/da"><img src="http://feedads.g.doubleclick.net/~a/9Koqf05p-Wa-2EsAAnASkNiPF4I/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/lGMZzhFPpgI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/05/the-official-twitter-iphone-application/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/05/the-official-twitter-iphone-application/</feedburner:origLink></item>
		<item>
		<title>Bye Bye Facebook! Deleting my account</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/7-VaKArRfnw/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/05/bye-bye-facebook-deleting-my-account/#comments</comments>
		<pubDate>Sun, 09 May 2010 21:22:31 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=591</guid>
		<description><![CDATA[Well it has now happened, I have deleted my @Facebook account (and yes I am aware how fitting it is for me to use facebook&#8217;s @twitter address!). There are a few factors which have driven me to this, some more basic than others. In recent weeks I realised that I was only using facebook for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F05%2Fbye-bye-facebook-deleting-my-account%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F05%2Fbye-bye-facebook-deleting-my-account%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>Well it has now happened, I have deleted my @Facebook account (and yes I am aware how fitting it is for me to use facebook&#8217;s @twitter address!). There are a few factors which have driven me to this, some more basic than others. In recent weeks I realised that I was only using facebook for one purpose, and that was the events features. All I did was check if my friends were holding a party or a pub trip and then log off.  One thing that I did notice each time that I logged in was the shear amount of rubbish that was in my news feed, why would I care if so and so only needed two more bricks to build their barn!! Add the fact that people were always bulk inviting me to their bands gig on the other side of the country and I got fed up!</p>
<p>The bigger issue of course is (or now was!) their stance on history, I really dont want every website I visit to know everything about me just because I happened to be logged into facebook at the time. There is also the issue regarding  the &#8220;facebook-positive&#8221;, and yes I did just coin that term. On facebook (and for that matter any site which uses facebook) you can only &#8220;like&#8221; something, you can&#8217;t dislike it. As such with facebook&#8217;s iFrames (seariously iFrames in this day and age!), any website I visit is instantly &#8220;liked&#8221; and &#8220;liked&#8221; even more if I choose to click the &#8220;like&#8221; button.</p>
<p>So the process of actually deleting my account! A quick search of the internet gave me enough impotus to actually delete all my data before I even deleted my account! It appears that facebook does not actually delete your data when you close the account, it simply lies dormant on their servers. As such I removed all traces of my facebook life first:</p>
<p>Remove two Email addresses (having to type my password each time!)</p>
<ul>
<li>Set up a fake email and add it to FB allowing me to delete my other email address (another two password inputs!)</li>
<li>Remove my Mobile Number.</li>
<li>Remove all 37 applications that somehow had found their way into my profile.</li>
<li>Trash the content of my profile page (including my picture!).</li>
<li>Delete all my likes and dislikes (three clicks for each one!!).</li>
<li>Remove my contact information.</li>
<li>Delete my photo albums.</li>
<li>Delete my links and notes.</li>
</ul>
<p>I started the process at 15:30 and finished 63 minutes later, every action I took to delete something was slow, and many times facebook just crashed out and I had to login again. So not a quick fix.</p>
<p>The last few stages were easyier, however I did like the &#8220;please don&#8217;t leave us&#8221; page.  It picked three friends and told me how much they would miss me, needless to say it didn&#8217;t stop me from leaving!  Following that I got a simple captcha and another password request, I was amused to see the captcha text it was rather fitting.</p>
<div id="attachment_593" class="wp-caption aligncenter" style="width: 534px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/facebook1.png"><img class="size-full wp-image-593" title="Leaving Facebook Captcha" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/05/facebook1.png" alt="Leaving Facebook Captcha" width="524" height="371" /></a><p class="wp-caption-text">Leaving Facebook Captcha</p></div>
<p>All in all leaving facebook wasn&#8217;t that hard, taking the extra precaution of removing all my data too a little longer but should be worth it.</p>
<p>Now I just need someone to re-create facebook&#8217;s events system via twitter and all will be sorted! Perhaps I could write it myself!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/YtmUKU0NTo9KgUDvuG1ND0wAP80/0/da"><img src="http://feedads.g.doubleclick.net/~a/YtmUKU0NTo9KgUDvuG1ND0wAP80/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YtmUKU0NTo9KgUDvuG1ND0wAP80/1/da"><img src="http://feedads.g.doubleclick.net/~a/YtmUKU0NTo9KgUDvuG1ND0wAP80/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/7-VaKArRfnw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/05/bye-bye-facebook-deleting-my-account/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/05/bye-bye-facebook-deleting-my-account/</feedburner:origLink></item>
		<item>
		<title>Google Maps Earth View</title>
		<link>http://feedproxy.google.com/~r/onlyidiots/~3/EhYchWqBD1A/</link>
		<comments>http://www.onlyidiotsassume.co.uk/blog/2010/04/google-maps-earth-view/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 20:50:27 +0000</pubDate>
		<dc:creator>jamesakadamingo</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[TWiG]]></category>

		<guid isPermaLink="false">http://www.onlyidiotsassume.co.uk/blog/?p=569</guid>
		<description><![CDATA[Evening everyone, it&#8217;s been one hell of a long week this week.  I have been working on a major project which is going live in the UK Legal sector tomorrow morning at 6am, my part is ready but everyone else&#8217;s isn&#8217;t!  So having only just eaten my tea, I really can&#8217;t be bothered to do [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F04%2Fgoogle-maps-earth-view%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.onlyidiotsassume.co.uk%2Fblog%2F2010%2F04%2Fgoogle-maps-earth-view%2F&amp;source=jamesakadamingo&amp;style=normal&amp;service=bit.ly&amp;service_api=R_5d1302f5826c6e17b01a59abbd99ce51" height="61" width="50" /><br />
			</a>
		</div>
<p>Evening everyone, it&#8217;s been one hell of a long week this week.  I have been working on a major project which is going live in the UK Legal sector tomorrow morning at 6am, my part is ready but everyone else&#8217;s isn&#8217;t!  So having only just eaten my tea, I really can&#8217;t be bothered to do any work or continue with the PHP oAuth Twitter scripts that I am working on!</p>
<p>So I am listening to This Week in Google (<a href="http://www.twit.tv">TWiG</a>), and taking a look at @Google &#8216;s latest offering in the maps department.  Google Maps has now integrated Google Earth into the web browser interface.  Meaning that you get all the great Google Earth items via your browser with out the need to install and run Google Earth.  I will point out however that there is a plugin that is required, it works in @Firefox / Google Chrome and IE on Windows, and Firefox / Safari on mac.</p>
<p>The reason that I post about this is because I was amazed how many 3D buildings have been sketched up in Bristol (UK).</p>
<div id="attachment_571" class="wp-caption aligncenter" style="width: 650px"><a href="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/04/Fullscreen-capture-29042010-213706.jpg"><img class="size-full wp-image-571" title="Google Earth via the Browser, 3d buildings in Bristol" src="http://www.onlyidiotsassume.co.uk/blog/wp-content/uploads/2010/04/Fullscreen-capture-29042010-213706.jpg" alt="Google Earth via the Browser, 3d buildings in Bristol" width="640" height="400" /></a><p class="wp-caption-text">Google Earth via the Browser, 3d buildings in Bristol</p></div>
<p>For those that do not know, that is the centre of Bristol.  Not only is a building that is only a few months old there, but even the little pillars down the middle of the parade are there!  Who ever sketched these up, thank you!!</p>
<p>The only down point of this, is now I can easily use Google Earth when I am meant to be doing something else!</p>
<p>Signing Off another pointless post!</p>
<p>jamesakadamingo</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vm-alk5zS3XqfoEMTXaKxof2F1g/0/da"><img src="http://feedads.g.doubleclick.net/~a/vm-alk5zS3XqfoEMTXaKxof2F1g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vm-alk5zS3XqfoEMTXaKxof2F1g/1/da"><img src="http://feedads.g.doubleclick.net/~a/vm-alk5zS3XqfoEMTXaKxof2F1g/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/onlyidiots/~4/EhYchWqBD1A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onlyidiotsassume.co.uk/blog/2010/04/google-maps-earth-view/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.onlyidiotsassume.co.uk/blog/2010/04/google-maps-earth-view/</feedburner:origLink></item>
	</channel>
</rss>
