<?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>Tony Blews &#187; Computers</title>
	<atom:link href="http://www.tonyblews.co.uk/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tonyblews.co.uk</link>
	<description>Jack of all, master of none</description>
	<lastBuildDate>Mon, 26 Jul 2010 02:10:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Genesis of the Arduino Dalek</title>
		<link>http://www.tonyblews.co.uk/2010/07/genesis-of-the-arduino-dalek/</link>
		<comments>http://www.tonyblews.co.uk/2010/07/genesis-of-the-arduino-dalek/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 01:36:15 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Dalek]]></category>
		<category><![CDATA[Make Stuff]]></category>
		<category><![CDATA[Programming Bits]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Toys]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[dalek]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=850</guid>
		<description><![CDATA[As previously mentioned here, I was recently given a broken toy Dalek, which I promptly took apart (in the name of Science). Here it is before surgery commenced&#8230; Having stripped the thing down, I found inside two perfectly good electric motors, and when you find two working motors inside a toy there is only one [...]]]></description>
			<content:encoded><![CDATA[<p>As previously mentioned <a href="http://www.tonyblews.co.uk/2010/05/dalek-autopsy/">here</a>, I was recently given a broken toy Dalek, which I promptly took apart (in the name of Science).</p>
<p>Here it is before surgery commenced&#8230;</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-1.jpg"><img class="aligncenter size-full wp-image-852" title="dalek-1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-1.jpg" alt="" width="400" height="300" /></a></p>
<p>Having stripped the thing down, I found inside two perfectly good electric motors, and when you find two working motors inside a toy there is only one thing to do: Work out how to use a computer to control them!</p>
<p>So, figuring out that the easiest way of doing this was with an <a href="http://arduino.cc/">Arduino</a>, I <a href="http://www.amazon.co.uk/gp/product/B003CR56MU?ie=UTF8&amp;tag=ukwatransit-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B003CR56MU">bought one</a>.</p>
<p>I won&#8217;t bleat on about how good the Arduino is, or how easy it is to use. There are hundreds of sites that do that.</p>
<p>Instead, here is a list of things wot i dun to get a PC controlling the Dalek.</p>
<p>To start with, I think we&#8217;ll have a bit of circuit design. Below is a simple circuit that takes 2 inputs from the Arduino and runs a motor either forwards or backwards. One input decides the direction of the motor, the other whether it is on or off.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-circuit.jpg"><img class="aligncenter size-full wp-image-856" title="relay-circuit" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-circuit.jpg" alt="" width="250" height="270" /></a></p>
<p>All very nice and abstract, but to be of any use it&#8217;ll need to be built. The quickest and easiest way is on Veroboard. So here is the design for that:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-vero.jpg"><img class="aligncenter size-full wp-image-858" title="relay-vero" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-vero.jpg" alt="" width="250" height="236" /></a></p>
<p>The relays do the switching, and the diodes are there to protect the Arduino from back-emf currents when the relays toggle. Two of these circuits will be used, one for each motor. I built them on separate strips of board to make things easier for myself. This is what they look like when all connected up and dumped onto the Dalek chassis:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-wired1.jpg"><img class="aligncenter size-full wp-image-860" title="dalek-wired1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-wired1.jpg" alt="" width="400" height="300" /></a></p>
<p>The small board in the top left of the picture is just a plug I bodged up to make connecting the thing easier.</p>
<p>The parts used are 4x 1A5VDC DPDT relays, 4x 1N4004 diodes, a 10&#215;39 strip of Veroboard and some wires.</p>
<p>After all that soldering and burning my fingers, the next step is to write some code to make the thing move.</p>
<p>Each motor can be controlled to go backwards, forwards or stop. This gives nine possible movements, as this table shows:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-matrix.jpg"><img class="aligncenter size-full wp-image-865" title="dalek-matrix" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-matrix.jpg" alt="" width="200" height="170" /></a></p>
<p>And now its time to test this whole think by writing a program that takes keyboard commands (the letters in red, above) and sending signals to the circuitry to control the motors. Heres it is:</p>
<pre>// Project: Dalek control system
// Version 0.1 - Written before my Arduino even arrived
// Tony Blews tony@tonyblews.co.uk

int MotorDirectionR = 10;
int MotorDirectionL = 11;
int MotorPowerR     = 12;
int MotorPowerL     = 13;

void setup()
{
 pinMode(MotorDirectionR, OUTPUT);
 pinMode(MotorDirectionL, OUTPUT);
 pinMode(MotorPowerR, OUTPUT);
 pinMode(MotorPowerL, OUTPUT);

 Serial.begin(9600);
 Serial.println("Serial control Dalek system starting...");

}

// modes for the motor control
// convention here is modeXX - where X is F for forward, S for stationary and B for backwards
// first X is the left motor, second X is the right one
// for direction control, the LOW if forward and HIGH is backward
// for power control, LOW is off and HIGH is on

// all stop
void modeSS()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,LOW);
 digitalWrite(MotorPowerL,LOW);
}

// move straight ahead
void modeFF()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

// move straight backwards
void modeBB()
{
 digitalWrite(MotorDirectionR, HIGH);
 digitalWrite(MotorDirectionL, HIGH);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

// spin left
void modeBF()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, HIGH);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

//spin right
void modeFB()
{
 digitalWrite(MotorDirectionR, HIGH);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

// move forward left
void modeSF()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,LOW);
}

// move forward right
void modeFS()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,LOW);
 digitalWrite(MotorPowerL,HIGH);
}

// move backward left
void modeSB()
{
 digitalWrite(MotorDirectionR, HIGH);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,LOW);
}

// move backward right
void modeBS()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, HIGH);
 digitalWrite(MotorPowerR,LOW);
 digitalWrite(MotorPowerL,HIGH);
}

//main program loop
void loop()
{
 if (Serial.available() &gt;0)
 {
 char inByte = Serial.read();
 // this version uses the QWEASDZXC "square" on the keyboard
 // as my laptop doesn't have a numeric keypad
 switch (inByte)
 {
 case 'q':
 modeSF();
 break;
 case 'w':
 modeFF();
 break;
 case 'e':
 modeFS();
 break;
 case 'a':
 modeBF();
 break;
 case 's':
 modeSS();
 break;
 case 'd':
 modeFB();
 break;
 case 'z':
 modeBS();
 break;
 case 'x':
 modeBB();
 break;
 case 'c':
 modeSB();
 break;
 default:
 modeSS();
 break;
 }
 }
}
</pre>
<p>And with that done, I suppose all that is left to do is show a video of the bottom bit of the dalek trundling around under computer control&#8230;</p>
<p>&#8230; which have to wait until the next post.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/07/genesis-of-the-arduino-dalek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It disappears down into the bottomless pit&#8230;</title>
		<link>http://www.tonyblews.co.uk/2010/06/it-disappears-down-into-the-bottomless-pit/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/it-disappears-down-into-the-bottomless-pit/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 03:15:57 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Mud]]></category>
		<category><![CDATA[abermud]]></category>
		<category><![CDATA[computer games]]></category>
		<category><![CDATA[mud]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=793</guid>
		<description><![CDATA[It disappears down into the bottomless pit&#8230; Back in 1990, that could have summed up my computing degree, but it was the response you got when dropping items into the sacrificial pit on AberMUD. AberMUD was a Multi User Dungeon written (mainly) by Alan Cox, long before he started doing bits with Linux. If you [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>It disappears down into the bottomless pit&#8230;</p></blockquote>
<p>Back in 1990, that could have summed up my computing degree, but it was the response you got when dropping items into the sacrificial pit on <a href="http://en.wikipedia.org/wiki/Abermud">AberMUD</a>.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mudscreen.gif"><img class="aligncenter size-full wp-image-797" title="mudscreen" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mudscreen.gif" alt="" width="420" height="209" /></a></p>
<p>AberMUD was a Multi User Dungeon written (mainly) by <a href="http://en.wikipedia.org/wiki/Alan_Cox">Alan Cox</a>, long before he started doing bits with Linux.</p>
<p>If you don&#8217;t remember AberMUD, then you won&#8217;t want to bother reading any further. But if you do recall it, then prepare to rejoice.</p>
<p>I&#8217;ve located a copy of the sources that will compile under Linux, and got it running.</p>
<p>If you want to play it, SSH or <span style="text-decoration: line-through;">TELNET</span> to <strong>bl83.homelinux.net </strong>and login with the username<strong> mud </strong>and password<strong> mud</strong><strong></strong></p>
<p>I&#8217;ve had to take Telnet access off, so now you&#8217;ll need some form of SSH client such as <a href="http://www.putty.org/">Putty</a><strong>, </strong>or use the web-based <a href="http://www.serfish.com/console/">ConsoleFish</a>.<strong><br />
</strong></p>
<p>(bl83 was the name of the machine it ran on briefly at Staffordshire University)</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/it-disappears-down-into-the-bottomless-pit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Turning a ViaMichelin SatNav into a Media Player</title>
		<link>http://www.tonyblews.co.uk/2010/06/turning-a-viamichelin-satnav-into-a-media-player/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/turning-a-viamichelin-satnav-into-a-media-player/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 22:28:54 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Make Stuff]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[media player]]></category>
		<category><![CDATA[satnav]]></category>
		<category><![CDATA[viamichelin]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=769</guid>
		<description><![CDATA[How do you turn a £20 quid satnav, bought from the local Steptoe and Son, into a pocket media player? Well, I&#8217;ll show you. The aforementioned ViaMichelin X-950 runs Windows CE 4.2 Core as its base OS, with the GPS and mapping software running on top of that. What we need is to stop it [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_770" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav1.jpg"><img class="size-full wp-image-770" title="satnav1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav1.jpg" alt="" width="300" height="172" /></a><p class="wp-caption-text">ViaMichelin X-950</p></div>
<p>How do you turn a £20 quid satnav, bought from the local Steptoe and Son, into a pocket media player? Well, I&#8217;ll show you.</p>
<p>The aforementioned ViaMichelin X-950 runs Windows CE 4.2 Core as its base OS, with the GPS and mapping software running on top of that.</p>
<p>What we need is to stop it running the the mapping software automatically, but leave it on there with an option to run it.</p>
<p>To do this you&#8217;ll need the driver disk that can with the unit. ActiveSync alone won&#8217;t suffice here, and anyway it has to be ActiveSync 3.8 as later versions won&#8217;t work correctly (especially with WinXP SP3).</p>
<p>So install the software, fire up ActiveSync and connect the unit with a USB cable.</p>
<p>Next you&#8217;ll need to download the file at <a href="http://www.gpspassion.com/download/custVM_GpsPasSion_buddy.zip">http://www.gpspassion.com/download/custVM_GpsPasSion_buddy.zip</a> and extract it somewhere (to your desktop will do).</p>
<p>Run the <strong>custVM_GpsPasSion_buddy.exe</strong> program and follow the onscreen prompts. Answer Next/Yes/OK until its done.</p>
<p>Now unplug the satnav from the USB and reset it using the button on the back.</p>
<p>Click the OK box on the screen twice to install both software items, and then wait for the thing to reset itself. It should now look like this:</p>
<div id="attachment_775" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav2.jpg"><img class="size-full wp-image-775" title="satnav2" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav2.jpg" alt="" width="300" height="185" /></a><p class="wp-caption-text">Win CE Screen</p></div>
<p>Next you&#8217;ll want to download<a href="http://hautil.free.fr/bm/ScreenRotate.zip"> http://hautil.free.fr/bm/ScreenRotate.zip</a>, and copy the files in it to <strong>\Program Files\ScreenRotate</strong>. Running that program will, surprisingly, rotate the screen through 90 degrees.</p>
<p>Using Windows Explorer, find the file <strong>\Program Files\ScreenRotate\ScreenRotate.exe</strong> and create a Destktop short cut (File -&gt; Send to -&gt; Desktop as Shortcut).</p>
<p>Next you&#8217;ll need to run <strong>\My Documents\CustoVM\RegEdit.exe</strong> and change some settings.</p>
<p>Change the value of <strong>HKEY_LOCAL_MACHINE  \ System \ CurrentControlSet \ Control \ Power \ Timeouts \  BattSuspendTimeOut</strong> to be <strong>2700</strong> (which is 45 minutes).</p>
<p>By now you&#8217;ll be wondering where the WinCE control bar is, and how to input data. Well if you tap the very bottom edge of the screen near the plastic, the control bar will appear, and from here you can enable the on screen keyboard.</p>
<p>So far you should have a machine that boots into Win CE and has a video player (CORE) installed, and the mapping system still available (as an icon on the desktop called <strong>MapSonic</strong>.</p>
<p>You&#8217;ll be wanting an image viewer too, so download the file <a href="http://hp.vector.co.jp/authors/VA003011/gqe/gq151hpce.zip">http://hp.vector.co.jp/authors/VA003011/gqe/gq151hpce.zip</a> and extract it somewhere on your PC. The copy the files from the <strong>ARM</strong> directory to <strong>\Program Files\GQ</strong> and create a desktop shortcut.</p>
<p>And there you have it. Copy some sound files, JPGs and videos onto the thing and away you go.</p>
<p>You want a demo? Oh go on.</p>
<p><center><br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/0dAQ0q4_1oU&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0dAQ0q4_1oU&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object><br />
</center><br />
<br />
(The song &#8220;Happy Birthday Tony&#8221; is (c) Crackerwax 2008)</p>
<p>This info was gleaned from <a href="http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=57135">http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=57135</a> but that is in French, and this isn&#8217;t.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/turning-a-viamichelin-satnav-into-a-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Huawei E5830 Mifi Device</title>
		<link>http://www.tonyblews.co.uk/2010/06/huawei-e5830-mifi-device/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/huawei-e5830-mifi-device/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 03:55:10 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mobile Internet]]></category>
		<category><![CDATA[Phones]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[dongle]]></category>
		<category><![CDATA[huawei]]></category>
		<category><![CDATA[mifi]]></category>
		<category><![CDATA[three]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=748</guid>
		<description><![CDATA[Another month brings another Gadget purchase. This time its the Huawei E5830 Mifi thingummy, a combined 3g mobile broadband modem and portable wifi hotspot. Once again it is on the 3 network. The reasons for buy it are twofold. Firstly the internal GPRS modem in my Ubisurfer has gone down, rendering it useless without another [...]]]></description>
			<content:encoded><![CDATA[<p>Another month brings another Gadget purchase. This time its the Huawei E5830 Mifi thingummy, a combined 3g mobile broadband modem and portable wifi hotspot. Once again it is on the 3 network.</p>
<div id="attachment_757" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifisize.jpg"><img class="size-full wp-image-757" title="mifisize" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifisize.jpg" alt="" width="300" height="265" /></a><p class="wp-caption-text">A rough indication of size</p></div>
<p>The reasons for buy it are twofold. Firstly the internal GPRS modem in my <a href="http://www.tonyblews.co.uk/2010/01/datawind-ubisurfer-first-impressions/">Ubisurfer</a> has gone down, rendering it useless without another means of connectivity (at least until Datawind&#8217;s tech support sort me out a replacement or fix); and secondly, my trust <a href="http://www.tonyblews.co.uk/2008/06/3-mobile-huawei-e220-usb-modem/">Huawei E220 USB broadband modem</a> is being pressed into service as a permanet net connection for my Linux box running a game server (until Virgin can final get around to installing proper broadband for me).</p>
<p>That&#8217;s enough of me justifying the purchase, let&#8217;s have a look at the thing.</p>
<div id="attachment_751" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifi.jpg"><img class="size-full wp-image-751" title="mifi" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifi.jpg" alt="Huawei Mifi thing" width="300" height="203" /></a><p class="wp-caption-text">There it is, all lit up like Blackpool</p></div>
<p>Ooh, shiny. So, pop in the sim card and battery, plug it in to the charger and wait for twelve hours. Thumb the power button for two seconds and on come the five lights.</p>
<p>Ah, you&#8217;re thinking,<a href="http://en.wikipedia.org/wiki/Chain_of_Command_%28TNG_episode%29"> there are four lights</a>! Well, the fifth light (in the middle, not shown) only comes on when you first power up the device or if you <a href="http://en.wikipedia.org/wiki/Highlander_%28film%29">feel an irresistable pull to a a foreign land</a> (roaming).</p>
<p>If you&#8217;re really insteresting in what the four status lights mean, I&#8217;m sure you can find out elsewhere.</p>
<p>Thumb the wifi button for two seconds, then the Saturn button (only my name for it, as it has a little picture of a ringed planet on it) for two seconds and if all is well you&#8217;ll be able to connect to the internet through the thing.</p>
<p>Assuming all it well, that is. Sometimes it isn&#8217;t. Even though i&#8217;m a bit of a 3 fanboy (nine phones and two modems over the years), I still have issues with them. Firstly 3 is a crap name for a company, Whampoa would have sounded cooler; and secondly the coverage where I currently live is ropey at times.</p>
<p style="text-align: left;">
<div id="attachment_755" class="wp-caption aligncenter" style="width: 168px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/3gcoverage.jpg"><img class="size-full wp-image-755 " title="3gcoverage" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/3gcoverage.jpg" alt="" width="158" height="98" /></a><p class="wp-caption-text">Coverage map of ST17 XXX</p></div>
<p>The darker shade represents indoor/outdoor coverage, whilst the lighter shade shows outdoor coverage only. The pointer shows where I live. Not shown is a 3g modem <a href="http://en.wikipedia.org/wiki/Gaffa_tape">gaffa taped</a> to my window in order to get a good signal.</p>
<p style="text-align: left;">Besides the device itself, the box contains a short USB lead and a charger. The charger is, obviously, for charging the thing, and the USB cable is for three things.</p>
<ol>
<li>using it as a storage device if a microSD card (not supplied) is inserted into it</li>
<li>using it as a USB modem</li>
<li>using the configuration program.</li>
</ol>
<p>The configuation program (which installs straight from the device itself &#8211; nice) allows you to do all the usual wifi router based things: DHCP config, port forwarding, changing the SSID to something rude, changing the password to something you&#8217;ll actually remember.</p>
<p>Connecting to the thing is easy with any most wifi devices. So far I&#8217;ve managed to get two laptops (WinXP and Linux), the Ubisurfer and a borrowed iPod Touch running concurrently. I know the iPhone works ok (slightly faster that the phone&#8217;s built in 3g modem), and I&#8217;m sure the iPad will work. (Does anyone want to lend me one to test?)</p>
<p>Sadly, I could not get a laptop running <a href="http://chromeos.hexxeh.net/">Hexxeh&#8217;s Flow build of Chromium OS</a>. But I put this down to Flow failing to recognised the Dell&#8217;s WiFi hardware.</p>
<p>Its a great little device. Go and buy one now. <a href="http://threestore.three.co.uk/payg/dealsummary.aspx?offercode=DSLPP499">£49 from Three on their PAYG plan</a>.</p>
<p>So, all that remains for me to do now are the customary speed test, using <a href="http://www.speedtest.net/">www.speedtest.net</a>, as ever.</p>
<p>Firstly using the old E220 USB Modem:</p>
<p style="text-align: left;">
<div class="wp-caption aligncenter" style="width: 310px"><img title="E220 USB Results" src="http://www.speedtest.net/result/838972425.png" alt="" width="300" height="135" /><p class="wp-caption-text">E220 USB Results</p></div>
<p>And now using the E5830 Mifi:</p>
<p style="text-align: left;">
<div class="wp-caption aligncenter" style="width: 310px"><img title="E3850 Mifi Results" src="http://www.speedtest.net/result/838975839.png" alt="" width="300" height="135" /><p class="wp-caption-text">E3850 Mifi Results</p></div>
<p style="text-align: left;">I clearly have a winner here, but your mileage may vary.</p>
<p style="text-align: left;">Finally, here are the frankly deplorable results taken recently from my sister&#8217;s Orange Home Broadband link recently:</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 310px"><img title="Orange are shite" src="http://www.speedtest.net/result/823516237.png" alt="" width="300" height="135" /><p class="wp-caption-text">Orange are shite</p></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/huawei-e5830-mifi-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datawind UbiSurfer first impressions</title>
		<link>http://www.tonyblews.co.uk/2010/01/datawind-ubisurfer-first-impressions/</link>
		<comments>http://www.tonyblews.co.uk/2010/01/datawind-ubisurfer-first-impressions/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 00:01:49 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mobile Internet]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[datawind]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[ubisurfer]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=603</guid>
		<description><![CDATA[I&#8217;m trying to get to grips with my impulse purchase of the week. For reasons best left unexplored I&#8217;ve parted with about 120 quid for a Datawind UbiSurfer from Maplin. Its a ex-display model, hence the slight price reduction over the RRP of £149.99. So, what is the UbiSurfer? In short, its a cheap netbook [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to get to grips with my impulse purchase of the week. For reasons best left unexplored I&#8217;ve parted with about 120 quid for a Datawind UbiSurfer from Maplin. Its a ex-display model, hence the slight price reduction over the RRP of £149.99.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/DSC00027.JPG"><img class="aligncenter size-full wp-image-610" title="DSC00027" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/DSC00027.JPG" alt="DSC00027" width="300" height="225" /></a></p>
<p>So, what is the UbiSurfer? In short, its a cheap netbook running an implementation of Linux. Oh, with a years free internet access thrown in.</p>
<p>More about that later, but first the specs:</p>
<ul>
<li> 7 inch 800&#215;400 TFT screen</li>
<li>128MB RAM, 1GB Solid State disk</li>
<li>Full QWERTY keyboard and Touchpad mouse</li>
<li>Push-Push SD card socket and 2 USB ports (the box says 3, but I have 2 and a connector I&#8217;ve never seen before)</li>
<li>Measures 222x165x29.5mm, weighs 700g</li>
<li>Battery life provides 4 hours active use and 4 hours</li>
</ul>
<p>Note the lack of a spec concerning the processor. Apparently it is some form of ARM 500Mhz job.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/DSC00028.JPG"><img class="aligncenter size-full wp-image-611" title="DSC00028" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/DSC00028.JPG" alt="DSC00028" width="300" height="225" /></a></p>
<p>Applications wise you get the usual word processing and spreadsheet offerings, and a collections of email clients, PDF readers and the like, all GPLed programs.</p>
<p>For web browsing you have Mozilla IceWeasel (Firefox), which only works when connected via a Wifi hotspot, and the UbiSurfer browser itself.<br />
And now we get to the main (only) reason that I bought this thing: free internet access. Included in the price of the device is 30 hours access per month (for a year) to Vodaphone&#8217;s GPRS network, via an onboard modem. As we all know, GPRS isn&#8217;t exactly lightening fast, but Datawind claim that any web page can be loaded in 7 seconds.</p>
<p>This is supposed to be achieved by Datawind pre-rendering the web pages on their servers (in Canada) and sending them on in a compressed form to the UbiSurfer browser, which then decodes and displays them.<br />
Ok, that sounds fine in theory, but in practice its not so good.<br />
Datawind&#8217;s own site (www.datawind.com) takes about fifteen seconds to load, and more complex site such a Google Mail can take up to a minute to fully render.<br />
This pre-rendering process also throws up problems when entering data onto a web page. Tabbing between fields can take up to ten seconds.<br />
Obviously these problems don&#8217;t occur when using IceWeasel and connecting via a Wifi hotspot.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/DSC00026.JPG"><img class="aligncenter size-full wp-image-614" title="DSC00026" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/DSC00026.JPG" alt="DSC00026" width="300" height="225" /></a></p>
<p>But, oddly, my biggest complaint about the UbiSurfer browser is about the hideous splash screen which also comes up when you disconnect, thus preventing you from viewing pages offline. Here it is in all its glory.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/splash.jpg"><img class="aligncenter size-full wp-image-607" title="splash" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/01/splash.jpg" alt="splash" width="300" height="165" /></a>Just look at the smug pissweasel. Those grass stains are going to raise questions in the office after lunch. Luckily you can overwrite the this image with something less irritating.</p>
<p>I shall continue to persevere with this thing, in the hope that I can find a use for it.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/01/datawind-ubisurfer-first-impressions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Evony adverts getting worse</title>
		<link>http://www.tonyblews.co.uk/2009/10/evony-adverts-getting-worse/</link>
		<comments>http://www.tonyblews.co.uk/2009/10/evony-adverts-getting-worse/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 23:16:30 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Adverts]]></category>
		<category><![CDATA[Evony]]></category>
		<category><![CDATA[norks]]></category>
		<category><![CDATA[requests for help]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=551</guid>
		<description><![CDATA[Evony, the browser based game which became notorious for its adverts picturing scantily clad women, amongst other things, has gone a step further with its advertising. From stealing images from costume sites, through some really ropey CGI women, using a model who is a gamer, to outright norkage, it seems that they&#8217;ll try anything to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Evony">Evony</a>, the browser based game which became notorious for its adverts picturing scantily clad women, amongst other things, has gone a step further with its advertising. From <a href="http://blog.costumecraze.com/2009/05/dubious-civony-game-uses-costume-photo">stealing images from costume sites</a>, through some really ropey CGI women, using a <a href="http://pwned.com/NatalieG">model who is a gamer</a>, to outright norkage, it seems that they&#8217;ll try anything to attract teenage boys and semi-employed 38 year old geeks to their game. The latest advert doesn&#8217;t even name the product, yet has all the hallmarks of their campaign.</p>
<p>First though, here are the adverts from times past:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2009/10/evonycomp.jpg"><img class="aligncenter size-medium wp-image-563" title="evonycomp" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2009/10/evonycomp-300x154.jpg" alt="evonycomp" width="300" height="154" /></a></p>
<p>Classy stuff, i&#8217;m sure you&#8217;ll agree, and cock all to do with the game which is a poor Civilisation clone with no queen to save, and thus no norks.</p>
<p>And so on to the new advert&#8230;</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2009/10/evony8.jpg"><img class="aligncenter size-full wp-image-565" title="evony8" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2009/10/evony8.jpg" alt="evony8" width="250" height="208" /></a></p>
<p>Christ, you&#8217;d hardly know it it was for Evony if it wasn&#8217;t for the &#8220;My Lord&#8221; catchphrase, and the the familiar looking button.</p>
<p>Still, it seems to work for them. Gullible idiots seem to be playing the game and even paying for it.</p>
<p>So. If it works for them, it might work for me. If you want to volunteer to show a lot of cleavage to advertise a website of mine, don&#8217;t hesitate to contact me. <strong><em>Jon, this does NOT apply to you!</em></strong></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2009/10/evony-adverts-getting-worse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Things that are currently annoying me</title>
		<link>http://www.tonyblews.co.uk/2009/06/things-that-are-currently-annoying-me/</link>
		<comments>http://www.tonyblews.co.uk/2009/06/things-that-are-currently-annoying-me/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 00:57:07 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[broken guitars]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[flash gordon]]></category>
		<category><![CDATA[guitars]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=434</guid>
		<description><![CDATA[Let us face it, everything annoys me all the time. But currently some things are more annoying that others. DNS: Arsecakes. Fifteen years ago I could write DNS records in my sleep. Actually, I frequently did, but don&#8217;t tell Staffordshire University that, as they may want my wages back. So why is it that now [...]]]></description>
			<content:encoded><![CDATA[<p>Let us face it, everything annoys me all the time. But currently some things are more annoying that others.</p>
<h3>DNS:</h3>
<p>Arsecakes. Fifteen years ago I could write DNS records in my sleep. Actually, I frequently did, but don&#8217;t tell Staffordshire University that, as they may want my wages back. So why is it that now I have no idea what I&#8217;m doing?</p>
<h3>Ebay:</h3>
<p>Okay, so I&#8217;ve identified myself using my credit card, and now you want another form of ID. As I don&#8217;t have a landline number, I click on the &#8220;identify yourself by credit card&#8221; link and&#8230; HOLY FLASH H. GORDON, you&#8217;ve taken another £1 from my card! Well, my auctioning friends, you can sod that!</p>
<h3>Guitars:</h3>
<p>I have quite a few guitars.  I own probably more than it is healthy for a non-musician to own.  My favourite, for a long time, has been a Spanish 3/4 size acoustic that a mate gave me about 15 years ago.</p>
<p>It survived 3 house removals, but sadly, it didn&#8217;t survive falling off it&#8217;s stand.</p>
<div id="attachment_435" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-435" title="DSC_00434" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2009/06/DSC_00434-300x225.jpg" alt="Broken Guitar!" width="300" height="225" /><p class="wp-caption-text">Broken Guitar!</p></div>
<p>I&#8217;m hoping that given enough strong glue I can fix it.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2009/06/things-that-are-currently-annoying-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shrewsbury Arms to Stanley Arms</title>
		<link>http://www.tonyblews.co.uk/2009/05/shrewsbury-arms-to-stanley-arms/</link>
		<comments>http://www.tonyblews.co.uk/2009/05/shrewsbury-arms-to-stanley-arms/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:54:09 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Mobile Internet]]></category>
		<category><![CDATA[Phones]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[driving]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=368</guid>
		<description><![CDATA[Just found a GPS track of my trip last month from The Shrewsbury Arms in Stafford to The Stanley Arms in Chester. If you zoom in, you&#8217;ll see that it is quite accurate, even showing the bit where I missed an exit and went round a round-a-bout. If i&#8217;d set the logging to use small [...]]]></description>
			<content:encoded><![CDATA[<p>Just found a GPS track of my trip last month from <a href="http://www.shrewsbury-arms.co.uk/">The Shrewsbury Arms</a> in Stafford to The Stanley Arms in Chester. If you zoom in, you&#8217;ll see that it is quite accurate, even showing the bit where I missed an exit and went round a round-a-bout. If i&#8217;d set the logging to use small time intervals then the &#8220;road holding&#8221; would have been better.</p>
<p>Here is the map:<br />
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.tonyblews.co.uk%2Fkmz%2F2009-05-07-driving.kml&amp;ie=UTF8&amp;ll=53.004868,-2.49939&amp;spn=0.578464,1.167297&amp;z=9&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.tonyblews.co.uk%2Fkmz%2F2009-05-07-driving.kml&amp;ie=UTF8&amp;ll=53.004868,-2.49939&amp;spn=0.578464,1.167297&amp;z=9" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p style="text-align: right;"><a href="http://www.tonyblews.co.uk/kmz/2009-05-07-driving.kml">Download the file</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2009/05/shrewsbury-arms-to-stanley-arms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Mobile Broadband Speed Tests</title>
		<link>http://www.tonyblews.co.uk/2009/05/more-mobile-broadband-speed-tests/</link>
		<comments>http://www.tonyblews.co.uk/2009/05/more-mobile-broadband-speed-tests/#comments</comments>
		<pubDate>Fri, 15 May 2009 07:28:18 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mobile Internet]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=355</guid>
		<description><![CDATA[Its time for some more speed tests of 3&#8242;s Mobile Broadband, using the trusty old Huawei E220&#8230; Firstly, where I currently live: And Now, where I will be living in 2 weeks: Oh dear.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Its time for some more speed tests of 3&#8242;s Mobile Broadband, using the trusty old <a href="http://www.tonyblews.co.uk/2008/06/3-mobile-huawei-e220-usb-modem/">Huawei E220</a>&#8230;</p>
<p style="text-align: center;">Firstly, where I currently live:<br />
<img class="aligncenter" src="http://www.speedtest.net/result/474004720.png" alt="" /></p>
<p style="text-align: center;">And Now, where I will be living in 2 weeks:<br />
<img class="aligncenter" src="http://www.speedtest.net/result/473983405.png" alt="" />
</p>
<p style="text-align: left;">Oh dear.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2009/05/more-mobile-broadband-speed-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coincidence Virus Kills My Files</title>
		<link>http://www.tonyblews.co.uk/2009/04/coincidence-virus-kills-my-files/</link>
		<comments>http://www.tonyblews.co.uk/2009/04/coincidence-virus-kills-my-files/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 01:10:54 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[anti-virus]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=340</guid>
		<description><![CDATA[Call it the Conficker Virus, or call it coincidence, but my aged 2003 Microshit Office installation fell over today, killing off my email. After a re-install I found that none of my word documents would open. Hmm. So, after restoring from Sunday&#8217;s backups and finding them still un-openable, I&#8217;ve swapped to OpenOffice. Now all is [...]]]></description>
			<content:encoded><![CDATA[<p>Call it the Conficker Virus, or call it coincidence, but my aged 2003 Microshit Office installation fell over today, killing off my email. After a re-install I found that none of my word documents would open. Hmm.</p>
<p>So, after restoring from Sunday&#8217;s backups and finding them still un-openable, I&#8217;ve swapped to OpenOffice. Now all is well.</p>
<p>The only reason I haven&#8217;t switched completely to something better than XP, like Ubuntu GNU/Linux, is that Live for Speed needs windows&#8230;..</p>
<p>And yes, I am current on all XP fixes and twiddles, and my anti-virus software is tip-top.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2009/04/coincidence-virus-kills-my-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
