<?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>Ed&#039;s Place</title>
	<atom:link href="http://www.edfrancis.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edfrancis.co.uk</link>
	<description>The home of Ed&#039;s Rants and Raves since 2008!</description>
	<lastBuildDate>Sat, 27 Feb 2010 16:07:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Support your local (or International) Plugin Developers!</title>
		<link>http://www.edfrancis.co.uk/2010/02/support-your-local-or-international-plugin-developers/</link>
		<comments>http://www.edfrancis.co.uk/2010/02/support-your-local-or-international-plugin-developers/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 16:07:23 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[Ed's Rants and Raves]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=585</guid>
		<description><![CDATA[Scott Ellis, who runs vsellis.com came up with the brillaint idea of having a day dedicated to the appreciation of the Wordpress community&#8217;s brillaint plugin developers. I know I&#8217;ll be playing my part and chucking the minimum five bucks at the developers that have helped me. If you&#8217;re a Wordpresser, maybe even if you&#8217;re not. [...]]]></description>
			<content:encoded><![CDATA[<p>Scott Ellis, who runs <a href="http://www.vsellis.com" target="_blank">vsellis.com</a> came up with the brillaint idea of having a day dedicated to the appreciation of the Wordpress community&#8217;s brillaint plugin developers. I know I&#8217;ll be playing my part and chucking the minimum five bucks at the developers that have helped me. If you&#8217;re a Wordpresser, maybe even if you&#8217;re not. Why not donate to those fabulous people who&#8217;ve been giving us GPL and shareware titles and plugins to help us get by.</p>
<p>Please see Scott&#8217;s post at <a href="http://www.vsellis.com/scott-recommends/make-a-donation-to-your-favorite-wordpress-plugin-developer-on-march-1st/" target="_blank">http://www.vsellis.com/scott-recommends/make-a-donation-to-your-favorite-wordpress-plugin-developer-on-march-1st/</a> for the genius himself to let you know how to get involved.</p>
<p>What a brilliant idea. I for one had practically forgotten that I could and should donate if I&#8217;m using someone else&#8217;s efforts to ease my own blog needs. I heard some developers count themselves a success if they get to 1,000,000 downloads and have been paid 300 bucks! That&#8217;s hardly a fair rate of exchange for all that work!! They do this becuase they want to give to their particular blog&#8217;s community, maybe its time we gave back. <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>March 1st, put it in your diary!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F02%2Fsupport-your-local-or-international-plugin-developers%2F&amp;linkname=Support%20your%20local%20%28or%20International%29%20Plugin%20Developers%21"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/02/support-your-local-or-international-plugin-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back up Network Connected Printers via a VBScript</title>
		<link>http://www.edfrancis.co.uk/2010/02/back-up-network-connected-printers-via-a-vbscrip/</link>
		<comments>http://www.edfrancis.co.uk/2010/02/back-up-network-connected-printers-via-a-vbscrip/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 20:30:09 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=552</guid>
		<description><![CDATA[The following script can be used to back up all network printers connected to Windows. Its been tested on Windows XP (SP2 and SP3) and Windows 7.
The script simply outputs to the command window the syntax for a restoration script. Running this script from the command line, you&#8217;ll be able to control where this output [...]]]></description>
			<content:encoded><![CDATA[<p>The following script can be used to back up all network printers connected to Windows. Its been tested on Windows XP (SP2 and SP3) and Windows 7.</p>
<p>The script simply outputs to the command window the syntax for a restoration script. Running this script from the command line, you&#8217;ll be able to control where this output goes rather than just being stuck with wherever I guess you want it.</p>
<p>Simply paste the following code to a vbs file of your choice then run it using the following command:<br />
cscript &lt;<em>scriptname</em>&gt;.vbs //nologo &gt; &lt;<em>target-filename</em>&gt;.vbs</p>
<p>Its a bit of a fiddle but it does mean this script is fire and forget. You&#8217;ll never need to change it if you server changes its name etc.</p>
<pre>'Script to automatically generate a printer recreation script.
'The output of this script should be piped out to a .vbs file
'using the //nologo switch</pre>
<p><code> </code></p>
<pre>Dim strDefaultPrinter</pre>
<p><code> </code></p>
<pre>Wscript.Echo "'Automatically generated script to restore printers"
Wscript.Echo "'This script should be executed to recreate network printers only"
Wscript.Echo ""
Wscript.Echo "Set objNetwork = CreateObject(""WScript.Network"")"</pre>
<p><code> </code></p>
<pre><span style="font-family: monospace; line-height: 19px; white-space: normal; font-size: 13px;">s</span>trComputer = "."
strDefaultPrinter = "NotSet"</pre>
<p><code> </code></p>
<pre><span style="font-family: monospace; line-height: 19px; white-space: normal; font-size: 13px;">S</span>et objWMIService = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")
Set colPrinters = objWMIService.ExecQuery("Select * From Win32_Printer")</pre>
<p><code> </code></p>
<pre>For Each objPrinter in colPrinters
  If objPrinter.Attributes And 64 Then
    Wscript.Echo "' ** Local printer included for information only: " &amp; objPrinter.Name
  Else
    strPrinterType = "objNetwork.AddWindowsPrinterConnection "
    Wscript.Echo strPrinterType &amp; """" &amp; objPrinter.Name &amp; """"
    If objprinter.Default = True then
      StrDefaultPrinter = objPrinter.Name
    End If
  End If
Next</pre>
<p><code> </code></p>
<pre><span style="font-family: monospace; line-height: 19px; white-space: normal; font-size: 13px;">I</span>f StrDefaultPrinter &lt;&gt; "NotSet" then
  Wscript.Echo ""
  Wscript.Echo "objNetwork.SetDefaultPrinter " &amp; """" &amp; StrDefaultPrinter &amp; """"
End If</pre>
<p><code> </code></p>
<p>Well, that&#8217;s a bit of a mouthful. Let&#8217;s break this script down so we know what&#8217;s going on.</p>
<p>The first portion of the script (I&#8217;m ignoring the preamble comment lines) is all about setting up variable and strDefaultPrinter which will be used later to set a default printer if its needed. We also make sure the script&#8217;s pointing at the current PC.<br />
Next, we call the GetObject function to climb into the guts of Windows and set ourselves up for asking it a question.<br />
The next line simply asks for a list of all installed printers.</p>
<p>The rest of the script steps through the list (For Each&#8230;. Next) and runs a couple of &#8220;If&#8221; statements to work out if the printer&#8217;s local (add a comment line) or networked (add a line to recreate the printer) then finally if it is a network printer, is it the default one.</p>
<p>When we&#8217;ve finished the loop, we drop out to a final If statement, this simply checks if the default printer was set by one of the network printers triggering the change. If not, it does nothing, if there is a default printer set, it adds the line.</p>
<p>Well, that&#8217;s it for now. Please slap a comment on the post if there&#8217;s any part you&#8217;d like walking through. As usual, this script represents a collection from  a number of sources being skimmed for various lines of code.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F02%2Fback-up-network-connected-printers-via-a-vbscrip%2F&amp;linkname=Back%20up%20Network%20Connected%20Printers%20via%20a%20VBScript"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/02/back-up-network-connected-printers-via-a-vbscrip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Valentine&#8217;s Day 2010!!</title>
		<link>http://www.edfrancis.co.uk/2010/02/happy-valentines-day-2010/</link>
		<comments>http://www.edfrancis.co.uk/2010/02/happy-valentines-day-2010/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 12:00:22 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[Ed's Rants and Raves]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=547</guid>
		<description><![CDATA[Just thought I&#8217;d take a quick moment to wish everyone a very happy Valentine&#8217;s day!  
]]></description>
			<content:encoded><![CDATA[<p>Just thought I&#8217;d take a quick moment to wish everyone a very happy Valentine&#8217;s day! <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F02%2Fhappy-valentines-day-2010%2F&amp;linkname=Happy%20Valentine%26%238217%3Bs%20Day%202010%21%21"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/02/happy-valentines-day-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s Missing : The Snag List</title>
		<link>http://www.edfrancis.co.uk/2010/01/whats-missing-the-snag-list/</link>
		<comments>http://www.edfrancis.co.uk/2010/01/whats-missing-the-snag-list/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 13:00:24 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[iPhone Ramblings]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=527</guid>
		<description><![CDATA[OK, favourable iPhone comments done, maybe it&#8217;s time to look at some shortfalls. No more Mr Nice Guy!!  
Galleries
Whenever I save an image, why doesn&#8217;t the software ask where I want to put it?!? You can only create new galleries in iTunes, why? You end up with the Camera Roll being full and then [...]]]></description>
			<content:encoded><![CDATA[<p>OK, favourable iPhone comments done, maybe it&#8217;s time to look at some shortfalls. No more Mr Nice Guy!! <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Galleries</strong><br />
Whenever I save an image, why doesn&#8217;t the software ask where I want to put it?!? You can only create new galleries in iTunes, why? You end up with the Camera Roll being full and then you&#8217;ll never guess what? You can&#8217;t move photos at all, you&#8217;re stuck with them where the iPhone dumps them.</p>
<p><strong>Copy/Paste</strong><br />
Nice but not consistent across apps. Windows had this in it&#8217;s first version pull your finger out Apple!!</p>
<p><strong>Stylus Support</strong><br />
Where is it? You could lob loads of graphics and handwriting apps on the thing, make typing more accurate, loads of things!! Too afraid to look like an ipaq perchance?</p>
<p>I know I&#8217;m being terribly unfair to the iPhone, its a brilliant piece of kit and I really enjoy using it. I just feel that future versions would be improved if they could just take a look at the issues mentioned above. Oh and good luck with the iPad Apple!</p>
<p>That&#8217;s it, I&#8217;m done for now! <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F01%2Fwhats-missing-the-snag-list%2F&amp;linkname=What%26%238217%3Bs%20Missing%20%3A%20The%20Snag%20List"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/01/whats-missing-the-snag-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Week in the Life of an iPhone</title>
		<link>http://www.edfrancis.co.uk/2010/01/a-week-in-the-life-if-an-iphone/</link>
		<comments>http://www.edfrancis.co.uk/2010/01/a-week-in-the-life-if-an-iphone/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 00:00:36 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[iPhone Ramblings]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=522</guid>
		<description><![CDATA[Well, I&#8217;m a week into owning an iPhone and I have to once again admit that I wasn&#8217;t quite prepared for the impact owning such a capable smartphone has had. 
I was prepared for the novelty of owning a smartphone, I just hadn&#8217;t thought I&#8217;d be using it for anything other than wasting time. Don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m a week into owning an iPhone and I have to once again admit that I wasn&#8217;t quite prepared for the impact owning such a capable smartphone has had. </p>
<p>I was prepared for the novelty of owning a smartphone, I just hadn&#8217;t thought I&#8217;d be using it for anything other than wasting time. Don&#8217;t get me wrong, I&#8217;ve been fiddling with the thing practically constantly when I have a bit of spare time, it was using it as a completely integrated device that took by surprise.</p>
<p>I&#8217;ve been using it to tap out quick emails at work (work based emails I might add), planning and confirming train times and blogging (I&#8217;m typing this on the iPhone while riding the train in fact!).<br />
These were functions of the device that I&#8217;d been aware of but never really thought I&#8217;d be using quite as much. This thing&#8217;s going to have paid for itself through saved time and usefulness in no time at all. </p>
<p>My only reservation would be battery life, it&#8217;s not bad but it could definitely be improved. We&#8217;ll see how that plays out I guess.</p>
<p>Now if I could just stop people pulling my leg about selling out and getting an iPhone&#8230; <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F01%2Fa-week-in-the-life-if-an-iphone%2F&amp;linkname=A%20Week%20in%20the%20Life%20of%20an%20iPhone"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/01/a-week-in-the-life-if-an-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iPhone Cometh</title>
		<link>http://www.edfrancis.co.uk/2010/01/the-iphone-cometh/</link>
		<comments>http://www.edfrancis.co.uk/2010/01/the-iphone-cometh/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 15:20:18 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[iPhone Ramblings]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=518</guid>
		<description><![CDATA[Well, it arrived and to be honest, I&#8217;m very pleased with it so far. The phone itself is quite impressive but for me, it has to be the apps that make this thing.
Just as an example, I&#8217;m typing this post on the iPhone Wordpress app, it&#8217;s so easy it&#8217;s funny!
I&#8217;m off to play with this [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it arrived and to be honest, I&#8217;m very pleased with it so far. The phone itself is quite impressive but for me, it has to be the apps that make this thing.<br />
Just as an example, I&#8217;m typing this post on the iPhone Wordpress app, it&#8217;s so easy it&#8217;s funny!</p>
<p>I&#8217;m off to play with this thing a bit more. <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F01%2Fthe-iphone-cometh%2F&amp;linkname=The%20iPhone%20Cometh"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/01/the-iphone-cometh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iPhone Countdown</title>
		<link>http://www.edfrancis.co.uk/2010/01/the-iphone-countdown/</link>
		<comments>http://www.edfrancis.co.uk/2010/01/the-iphone-countdown/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 18:35:29 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[iPhone Ramblings]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=510</guid>
		<description><![CDATA[No, that&#8217;s not an Apple sanctioned rewrite of the 80s Europe classic, the title&#8217;s just there to point out that the iPhone 3Gs comes out in Vodafone UKs stores tomorrow morning. Having pre ordered mine, I&#8217;m presumably able to pick it up on its release date so tomorrow&#8217;s the day when I join the legions [...]]]></description>
			<content:encoded><![CDATA[<p>No, that&#8217;s not an Apple sanctioned rewrite of the 80s Europe classic, the title&#8217;s just there to point out that the iPhone 3Gs comes out in Vodafone UKs stores tomorrow morning. Having pre ordered mine, I&#8217;m presumably able to pick it up on its release date so tomorrow&#8217;s the day when I join the legions of people who own one.</p>
<p>Just a couple of things (there always are with me):</p>
<p><strong>Vodafone&#8217;s stores opening early</strong><br />
Well, yes. They&#8217;re opening early for a Vodafone shop but that&#8217;s hardly early for anyone else. 08:30 in the morning you say?!? My goodness! Are they in another time zone? <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>What kind of rush are they expecting?</strong><br />
The 3Gs has been available on pretty much any network you like <em>except </em>Vodafone for a few months now, is there really going to be a mad rush to get your hands on one? I&#8217;ll let you know when I&#8217;ve got mine!</p>
<p><strong>Is the hype about the phone really justified?<br />
</strong>I know people are a little disappointed with the battery life but what&#8217;s an iPhone really like to live with? Again, I&#8217;ll give mine a try and let you know what I think.</p>
<p>Beyond those minor concerns and questions, I think I&#8217;m in danger of enjoying the iPhone. Maybe. <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2010%2F01%2Fthe-iphone-countdown%2F&amp;linkname=The%20iPhone%20Countdown"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2010/01/the-iphone-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Bang Theory &#8211; Series 3</title>
		<link>http://www.edfrancis.co.uk/2009/12/big-bang-theory-series-3/</link>
		<comments>http://www.edfrancis.co.uk/2009/12/big-bang-theory-series-3/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 14:42:43 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[TV Shows]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=486</guid>
		<description><![CDATA[Well, the wait is finally over. Me and the other two people left on the planet who actually wait for shows to air on a TV station can now enjoy the Big Bang Theory&#8217;s new season! YAY!
That&#8217;s right, I&#8217;m finally catching up with everyone who downloaded them all months ago! If you&#8217;d care to join [...]]]></description>
			<content:encoded><![CDATA[<p>Well, the wait is finally over. Me and the other two people left on the planet who actually wait for shows to air on a TV station can now enjoy the Big Bang Theory&#8217;s new season! YAY!</p>
<p>That&#8217;s right, I&#8217;m finally catching up with everyone who downloaded them all months ago! If you&#8217;d care to join me in enjoying the GREATEST SHOW EVER! then please do tune in at 21:00, E4 on Thursdays for series three. If you haven&#8217;t seen the other two, get the boxed sets/download them etc. They&#8217;re brilliant!</p>
<p>Um&#8230;. I guess that&#8217;s it. Gimme a break, I&#8217;m ill! <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2009%2F12%2Fbig-bang-theory-series-3%2F&amp;linkname=Big%20Bang%20Theory%20%26%238211%3B%20Series%203"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2009/12/big-bang-theory-series-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7, EVE and other strangeness</title>
		<link>http://www.edfrancis.co.uk/2009/11/windows-7-eve-and-other-strangeness/</link>
		<comments>http://www.edfrancis.co.uk/2009/11/windows-7-eve-and-other-strangeness/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 14:23:41 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[IT in General]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/2009/11/windows-7-eve-and-other-strangeness/</guid>
		<description><![CDATA[Well I’ve had a week from hell at work but at least I’ve been able to play with my little Revo thingy which is still knocking my socks off with what its letting me get away with.
Windows 7 is now on it and apart from a log in time issue (very, very slight and feels [...]]]></description>
			<content:encoded><![CDATA[<p>Well I’ve had a week from hell at work but at least I’ve been able to play with my little Revo thingy which is still knocking my socks off with what its letting me get away with.</p>
<p>Windows 7 is now on it and apart from a log in time issue (very, very slight and feels faster than it was in Vista), I’m still ridiculously happy with the purchase I made. I think this little thing’s dropped in price since I bought it so its now in <em>total bananas</em> territory price wise. If you can spare a couple of hundred, get an R3600. That’s all I can say!</p>
<p>OK, so Windows 7 on a TV. Bit weird not having any proper surface to run my mouse over (I really miss that!) but that’s my setup here in the ivory tower. The features available are pretty good and the OS seems stable enough even on the Revo’s limited shoulders. I think its the upgrade it was touted to be absolutely. Although I never really had that much of an issue with Vista, Windows 7 looks great and seems slightly easier to use. Maybe I’m just dreaming it because its a new OS. Who knows.</p>
<p>On to another rather interesting development, EVE.    <br />The game’s been around for ages now and I knew I’d end up playing it at some point but I had no idea how soon it was going to turn out. As an experiment, I went to <a href="http://www.eveonline.com">www.eveonline.com</a> and downloaded a copy of the game (2 or 3 HOURS!!). The plan was to throw it onto the net top and giggle at the juddering frame rates. I stand corrected. It runs perfectly on the Revo without a single freeze or problem at all. That extra graphics power obviously came in handy. I wouldn’t want to try running it on a net book.</p>
<p>Its a bit confusing but I’ve only been playing the game about an hour so far so you can expect a learning curve. I&#8217;ll need to talk to my buddies about how you play it properly, I can’t seem to fly the ship straight!!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2009%2F11%2Fwindows-7-eve-and-other-strangeness%2F&amp;linkname=Windows%207%2C%20EVE%20and%20other%20strangeness"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2009/11/windows-7-eve-and-other-strangeness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Monkey Song</title>
		<link>http://www.edfrancis.co.uk/2009/11/code-monkey-song/</link>
		<comments>http://www.edfrancis.co.uk/2009/11/code-monkey-song/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 18:15:56 +0000</pubDate>
		<dc:creator>Ed Francis</dc:creator>
				<category><![CDATA[Ed's Rants and Raves]]></category>

		<guid isPermaLink="false">http://www.edfrancis.co.uk/?p=470</guid>
		<description><![CDATA[Just cruising through YouTube and I found this song. I love it!  

]]></description>
			<content:encoded><![CDATA[<p>Just cruising through YouTube and I found this song. I love it! <img src='http://www.edfrancis.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/v4Wy7gRGgeA&amp;hl=en_GB&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/v4Wy7gRGgeA&amp;hl=en_GB&amp;fs=1&amp;" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.edfrancis.co.uk%2F2009%2F11%2Fcode-monkey-song%2F&amp;linkname=Code%20Monkey%20Song"><img src="http://www.edfrancis.co.uk/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.edfrancis.co.uk/2009/11/code-monkey-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
