<?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>Chris: Geek Guy &#187; Hints &amp; Tips</title>
	<atom:link href="http://chris.gg/category/hints-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://chris.gg</link>
	<description>Tech news and other stuff from a UK-based web developer and all-round geek</description>
	<lastBuildDate>Tue, 06 Dec 2011 19:40:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>&#8220;Cannot save the property settings for this Web Part&#8221; error when using SmartPart in SharePoint</title>
		<link>http://chris.gg/2010/12/cannot-save-the-property-settings-for-this-web-part-error-when-using-smartpart-in-sharepoint/</link>
		<comments>http://chris.gg/2010/12/cannot-save-the-property-settings-for-this-web-part-error-when-using-smartpart-in-sharepoint/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 12:49:17 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[moss]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[smartpart]]></category>
		<category><![CDATA[web part]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=820</guid>
		<description><![CDATA[I recently deployed a custom user control using SmartPart on SharePoint 2007, and although everything else seemed to work fine, I came across the following error when trying to edit the properties (in my case, the chrome type and width): Cannot save the property settings for this Web Part. Exception occurred. (Exception from HRESULT: 0&#215;80020009 (DISP_E_EXCEPTION)) [...]]]></description>
			<content:encoded><![CDATA[<p>I recently deployed a custom user control using <a href="http://chris.gg/2010/02/deploy-asp-net-web-user-controls-on-sharepoint-using-smartpart/">SmartPart</a> on SharePoint 2007, and although everything else seemed to work fine, I came across the following error when trying to edit the properties (in my case, the chrome type and width):</p>
<blockquote style="text-align: left;"><p><strong><span style="color: #ff0000;">Cannot save the property settings for this Web Part. Exception occurred. (Exception from HRESULT: 0&#215;80020009 (DISP_E_EXCEPTION))</span></strong></p></blockquote>
<p>I managed to resolve this, thanks to an <a href="http://social.msdn.microsoft.com/forums/en-US/sharepointdevelopment/thread/26f50a1f-5cf9-4e28-a2ca-3f63621c34a4">MSDN forum post</a>, by changing one of my lines of code:</p>
<blockquote style="text-align: left;"><p><strong></strong><strong>using (SPSite oSiteCollection = SPContext.Current.Site)</strong></p></blockquote>
<p>to the slightly more long-winded:</p>
<blockquote style="text-align: left;"><p><strong></strong><strong>using (SPSite oSiteCollection = new SPSite(SPContext.Current.Site.ID))</strong></p></blockquote>
<p>I&#8217;m not sure why using SPContext.Current.Site directly (versus creating a new SPSite object) causes this behaviour, but at least it&#8217;s a simple fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/12/cannot-save-the-property-settings-for-this-web-part-error-when-using-smartpart-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to make Google Chrome open .torrent files with µTorrent</title>
		<link>http://chris.gg/2010/11/how-to-make-google-chrome-open-torrent-files-with-utorren/</link>
		<comments>http://chris.gg/2010/11/how-to-make-google-chrome-open-torrent-files-with-utorren/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 18:00:43 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[torrents]]></category>
		<category><![CDATA[uTorrent]]></category>
		<category><![CDATA[µTorrent]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=815</guid>
		<description><![CDATA[Unfortunately Google Chrome doesn&#8217;t currently support opening files without downloading them, which is a pain when dealing with .torrent files which must be manually opened after downloading. I&#8217;ve been doing things this way for a while, but today stumbled across a handy feature in µTorrent which solves this minor annoyance: monitoring a directory for .torrent [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately Google Chrome <a href="http://www.google.com/support/forum/p/Chrome/thread?tid=2e48f2d36928cb9a&amp;hl=en">doesn&#8217;t currently support opening files without downloading them</a>, which is a pain when dealing with .torrent files which must be manually opened after downloading. I&#8217;ve been doing things this way for a while, but today stumbled across a handy feature in µTorrent which solves this minor annoyance: monitoring a directory for .torrent files.</p>
<p>Under Options ? Preferences ? Directories, tick the bottom two boxes (<strong>Automatically load .torrents from</strong> and <strong>Delete loaded .torrents</strong>), then type or browse to the path where Chrome downloads your files. For me, it&#8217;s <strong>D:\Downloads</strong>.</p>
<p style="text-align: center;"><a href="http://chris.gg/wp-content/uploads/2010/11/utorrent.png"><img class="aligncenter size-full wp-image-816" title="Automatically load torrents from directory" src="http://chris.gg/wp-content/uploads/2010/11/utorrent.png" alt="" width="400" height="298" /></a></p>
<p>You can keep <strong>Delete loaded .torrents</strong> unticked if you like, but for me this option is a godsend as it saves me having to manually clear old .torrent files from my download directory.</p>
<p>To make the process as seamless as possible, make sure that Chrome&#8217;s <strong>Ask where to save each file before downloading</strong> option is unticked:</p>
<p style="text-align: center;"><a href="http://chris.gg/wp-content/uploads/2010/11/chrome.png"><img class="aligncenter size-full wp-image-817" title="Ask where to save each file before downloading" src="http://chris.gg/wp-content/uploads/2010/11/chrome.png" alt="" width="400" height="393" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/11/how-to-make-google-chrome-open-torrent-files-with-utorren/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to disable time synchronisation under Virtual PC 2007</title>
		<link>http://chris.gg/2010/10/how-to-disable-time-synchronisation-under-virtual-pc-2007/</link>
		<comments>http://chris.gg/2010/10/how-to-disable-time-synchronisation-under-virtual-pc-2007/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 18:20:19 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[synchronisation]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[virtual pc]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=807</guid>
		<description><![CDATA[One of the benefits of the Virtual Machine Additions for Virtual PC is that the time is automatically synchronised with the host machine. In most cases this is desirable, but I ran into a case recently where I needed to test something using an earlier date, and not realising this I wrestled with the time [...]]]></description>
			<content:encoded><![CDATA[<p>One of the benefits of the Virtual Machine Additions for Virtual PC is that the time is automatically synchronised with the host machine. In most cases this is desirable, but I ran into a case recently where I needed to test something using an earlier date, and not realising this I wrestled with the time settings of the guest OS to no avail &#8211; it just kept resetting to the current time!</p>
<p>The process for disabling this feature (on an image-by-image basis) requires editing the VMC file and is detailed at <a href="http://blogs.msdn.com/b/virtual_pc_guy/archive/2007/11/28/disabling-time-synchronization-under-virtual-pc-2007.aspx">Ben Armstrong&#8217;s blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/10/how-to-disable-time-synchronisation-under-virtual-pc-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to increase/decrease the time your iPhone rings before diverting to voicemail</title>
		<link>http://chris.gg/2010/10/how-to-increasedecrease-the-time-your-iphone-rings-before-diverting-to-voicemail/</link>
		<comments>http://chris.gg/2010/10/how-to-increasedecrease-the-time-your-iphone-rings-before-diverting-to-voicemail/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 19:47:02 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[3gs]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[gsm]]></category>
		<category><![CDATA[o2]]></category>
		<category><![CDATA[orange]]></category>
		<category><![CDATA[ringtone]]></category>
		<category><![CDATA[t-mobile]]></category>
		<category><![CDATA[vodafone]]></category>
		<category><![CDATA[voicemail]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=801</guid>
		<description><![CDATA[The iPhone supports ringtone of up to 30 seconds, but most networks will divert to voicemail before you gets a chance to hear the full ringtone. The way around this is to instruct your network to increase the delay before a caller is sent to voicemail: Via the Phone app, enter *#61# and press Call. [...]]]></description>
			<content:encoded><![CDATA[<p>The iPhone supports ringtone of up to 30 seconds, but most networks will divert to voicemail before you gets a chance to hear the full ringtone.</p>
<p>The way around this is to instruct your network to increase the delay before a caller is sent to voicemail:</p>
<ol>
<li>Via the Phone app, enter <strong>*#61#</strong> and press <strong>Call</strong>.</li>
<li>Write down the message that appears after &#8220;Forwards to&#8221;. This is your voicemail access number.</li>
<li>Now dial <strong>**61*xxx*11*y#</strong> (where <strong>xxx</strong> is your voicemail access number and <strong>y </strong>is the number of seconds before the call should be sent to voicemail &#8211; this must be a multiple of 5 seconds) and press <strong>Call</strong>.</li>
</ol>
<p>I have tested this tip on an iPhone 3GS on Orange and an iPhone 4 on O2, but it should work on all phones and networks as it&#8217;s a standard GSM feature.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/10/how-to-increasedecrease-the-time-your-iphone-rings-before-diverting-to-voicemail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to cut your own micro SIM card for free, in time for iPhone 4 launch day</title>
		<link>http://chris.gg/2010/06/how-to-cut-your-own-micro-sim-card-for-free-in-time-for-iphone-4-launch-day/</link>
		<comments>http://chris.gg/2010/06/how-to-cut-your-own-micro-sim-card-for-free-in-time-for-iphone-4-launch-day/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 18:41:04 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[cutter]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[micro-sim]]></category>
		<category><![CDATA[microsim]]></category>
		<category><![CDATA[mini-sim]]></category>
		<category><![CDATA[sim]]></category>
		<category><![CDATA[stencil]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[trim]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=770</guid>
		<description><![CDATA[I braved the queues (actually, the barrage of error messages) on Tuesday, 15 July, to pre-order my iPhone 4 direct from Apple. Hopefully I&#8217;ll save in the long run as I&#8217;m planning to go for a £10-15 pay-as-you-go or SIM-only contract deal rather than being tied in to a £30+ contract for 18 to 24 [...]]]></description>
			<content:encoded><![CDATA[<p>I braved the queues (actually, the barrage of error messages) on Tuesday, 15 July, to pre-order my <a href="http://store.apple.com/uk/browse/home/shop_iphone/family/iphone?mco=OTY2ODA2OQ">iPhone 4 direct from Apple</a>. Hopefully I&#8217;ll save in the long run as I&#8217;m planning to go for a £10-15 pay-as-you-go or SIM-only contract deal rather than being tied in to a £30+ contract for 18 to 24 months.</p>
<p>Until I&#8217;ve figured out which operator to go with, I plan to stick with my current O2 contract. I&#8217;ve crossed my fingers that O2 will ship me a microSIM before I get the phone, otherwise I will be going down the DIY route, trimming my existing SIM down using this <a href="http://www.macnotes.de/images/micro-sim-schablone-macnotes.pdf">PDF template</a>. In case you don&#8217;t read German, here&#8217;s a quick translation of the instructions:</p>
<blockquote><p><strong>Micro-SIM template for iPad/iPhone 4 SIM cards</strong></p>
<p>The Apple iPad (and upcoming iPhone 4) uses not a standard 25x15mm SIM card, but a micro-SIM. The micro-SIM format is 15x12mm, but the contact layout is identical to a standard SIM.</p>
<p>Therefore, it is possible to convert a standard SIM into a micro-SIM which can be installed in the iPad or fourth-generation iPhone.</p>
<p><strong>How does it work?</strong></p>
<ol>
<li>Print the <a href="http://www.macnotes.de/images/micro-sim-schablone-macnotes.pdf">stencil</a> at 100% &#8211; don&#8217;t shrink to fit the page. The outer black portion should match the size of your existing SIM.</li>
<li>Cut and paste the stencil on the back of the SIM (<strong>not</strong> on the contacts!). The white area must be exactly on the reverse side of the chip.</li>
<li>With sharp scissors, cut cleanly along the outline of the inner white area.</li>
<li>Remove the stencil. If necessary,  diagonally trim the corners and/or grind down the edges with a nail file.</li>
</ol>
</blockquote>
<p>I accept no responsibility if you damage your SIM by following these instructions&#8230; in fact I&#8217;m too busy worrying about whether I&#8217;ll break mine!</p>
<p>There are commercial card cutters that can do the job, but I can&#8217;t justify spending upwards of £20 for something I&#8217;ll only use once or twice at most, and again there&#8217;s no guarantee that the item would be delivered by launch day.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/06/how-to-cut-your-own-micro-sim-card-for-free-in-time-for-iphone-4-launch-day/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Repairing Dell MediaDirect blue screen issue</title>
		<link>http://chris.gg/2010/05/repairing-dell-mediadirect-blue-screen-issue/</link>
		<comments>http://chris.gg/2010/05/repairing-dell-mediadirect-blue-screen-issue/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:18:38 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[bsod]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[direct]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[mediadirect]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[repair]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[xps]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=729</guid>
		<description><![CDATA[My brother-in-law recently reported a problem with his Dell XPS M1530 laptop. When starting the laptop (using the power button), it displayed a greyscale Dell MediaDirect logo for a few seconds, then a Blue Screen of Death relating to a Plug &#38; Play driver. When I restarted while holding F8 in an attempt to access [...]]]></description>
			<content:encoded><![CDATA[<p>My brother-in-law recently reported a problem with his Dell XPS M1530 laptop. When starting the laptop (using the power button), it displayed a greyscale Dell MediaDirect logo for a few seconds, then a Blue Screen of Death relating to a Plug &amp; Play driver.</p>
<p>When I restarted while holding F8 in an attempt to access Windows Vista in safe mode, the boot menu showed only &#8220;Windows XP Embedded&#8221;, and booting into safe mode just resulted in another blue screen. This is when I began to suspect the <a href="http://en.wikipedia.org/wiki/Dell_MediaDirect">MediaDirect</a> feature, which allows users to view media such as DVD movies without having to boot into full Windows.</p>
<p>Sure enough, when I powered off the machine and pressed the &#8220;Home&#8221; logo button, the laptop attempted to boot into MediaDirect (with a colour logo) and showed the same blue screen as before.</p>
<p>I did some research online and ended up finding a download for a <a href="http://support.euro.dell.com/support/topics/global.aspx/support/dsn/en/document?c=uk&amp;dl=false&amp;l=en&amp;s=gen&amp;docid=26B720E7D596B89DE040A68F5B280867&amp;doclang=en&amp;cs=">MediaDirect Repair</a> boot CD. This appeared to run successfully, but actually didn&#8217;t help. Now when I booted up, I just got a black DOS-type screen with the text &#8220;2 active partitions&#8221; in the top left-hand corner. It looked like the repair CD had somehow corrupted the partition table by setting two partitions as active &#8211; not good news!</p>
<p>Fortunately, I found a <a href="http://forums.techguy.org/multimedia/820030-pressed-dell-media-direct-button.html">forum post</a> by a user of a different model of Dell laptop running Windows XP. This inspired me to try the <a href="http://www.vistax64.com/tutorials/141820-create-recovery-disc.html">Vista recovery CD</a> (you can also use your original Vista installation CD if you have it to hand), running the <strong>BootRec /FIXMBR</strong> and <strong>BootRec /FIXBOOT</strong> commands as detailed in <a href="http://support.microsoft.com/kb/927392">this knowledge base article</a>.</p>
<p>This fixed the issue and the laptop was now able to boot into Vista as normal.</p>
<p>I then tried my luck with powering off the machine and booting into MediaDirect using the &#8220;Home&#8221; button. Unfortunately this brought the system back to its earlier, broken state, and turning it off and on again using the power button revealed that I wasn&#8217;t able to get back into Vista!</p>
<p>I repeated the BootRec steps and this got the system working once again. Further research showed that Dell have released a new version of MediaDirect which removes the &#8220;dual boot&#8221; functionality, so I can only imagine they&#8217;ve had quite a few problems with it!</p>
<p>I returned the machine it to my brother-in-law with instructions not to touch the Home button for the time being, and to try installing the new MediaDirect software. I&#8217;ll report back when I hear the results.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/05/repairing-dell-mediadirect-blue-screen-issue/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Removing Excel macro passwords</title>
		<link>http://chris.gg/2010/05/removing-excel-macro-passwords/</link>
		<comments>http://chris.gg/2010/05/removing-excel-macro-passwords/#comments</comments>
		<pubDate>Tue, 04 May 2010 14:52:46 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=733</guid>
		<description><![CDATA[At work, I recently needed to edit a database connection string in an Excel spreadsheet. Unfortunately the macros were password protected, the person who wrote the spreadsheet left the company some years ago, and we had no record of the password. Luckily, thanks to a post on David Bugden&#8217;s blog, I discovered that it&#8217;s simple [...]]]></description>
			<content:encoded><![CDATA[<p>At work, I recently needed to edit a database connection string in an Excel spreadsheet. Unfortunately the macros were password protected, the person who wrote the spreadsheet left the company some years ago, and we had no record of the password.</p>
<p>Luckily, thanks to <a href="http://www.davidbugden.com/?p=10">a post on David Bugden&#8217;s blog</a>, I discovered that it&#8217;s simple to circumvent VBA macro password protection without having to purchase a commercial utility such as <a href="http://www.lostpassword.com/vba.htm">Passware&#8217;s VBA Key</a>.</p>
<p>The hex editor method worked for me in Excel 2003, although I&#8217;m not sure whether Microsoft have beefed up the security in 2007 and later versions.</p>
<p>If you want to remove the password used to protect/unprotect worksheets and workbooks, there is some information available <a href="http://www.mcgimpsey.com/excel/removepwords.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/05/removing-excel-macro-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Aid breakdown cover: the other AA</title>
		<link>http://chris.gg/2010/04/auto-aid-breakdown-cover-the-other-aa/</link>
		<comments>http://chris.gg/2010/04/auto-aid-breakdown-cover-the-other-aa/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 21:21:21 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[aa]]></category>
		<category><![CDATA[auto aid]]></category>
		<category><![CDATA[autoaid]]></category>
		<category><![CDATA[breakdown]]></category>
		<category><![CDATA[green flag]]></category>
		<category><![CDATA[rac]]></category>
		<category><![CDATA[recovery]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=550</guid>
		<description><![CDATA[Having held an AA membership for just under a year, I recently had occasion to call them out for the first time. I wasn&#8217;t at all pleased with the experience, so decided to vote with my feet and look into signing up with one of their competitors. When I mentioned this to a colleague, he [...]]]></description>
			<content:encoded><![CDATA[<p>Having held an AA membership for just under a year, I recently had occasion to call them out for the first time. I wasn&#8217;t at all pleased with the experience, so decided to vote with my feet and look into signing up with one of their competitors.</p>
<p>When I mentioned this to a colleague, he recommended <a href="http://www.autoaidbreakdown.co.uk/">Auto Aid</a>. Like the AA, the RAC and Green Flag, they provide breakdown cover for £37 per year, which is quite reasonable. They don&#8217;t operate their own recovery fleet, but instead send out a local garage to pick up your car. You then pay the cost of the recovery on your credit card and claim this back from Auto Aid. A year&#8217;s membership costs £37, which covers yourself and your spouse and includes recovery to and from anywhere in the UK,  even if you break down on your doorstep.</p>
<p>I hadn&#8217;t heard of Auto Aid before my colleague mentioned it, but renowned financial expert Martin Lewis has good things to say about Auto Aid on his <a href="http://www.moneysavingexpert.com/insurance/roadside-recovery">Money Saving Expert</a> website so I decided to give it a go.</p>
<p>Their website is basic but tells you everything you need to know. I filled in the online application and received a call back the next day to confirm that I wanted to go ahead and to take my payment. Five minutes later, I was covered, and for a fraction of what the AA would have charged me for renewal.</p>
<p>Hopefully I won&#8217;t need to call them out any time soon, but if I do I&#8217;ll be sure to report back. I&#8217;d be very surprised if they did any worse than the AA though, given my recent experience!</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/04/auto-aid-breakdown-cover-the-other-aa/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Find the fastest DNS server with Google NameBench</title>
		<link>http://chris.gg/2010/03/find-the-fastest-dns-server-with-google-namebench/</link>
		<comments>http://chris.gg/2010/03/find-the-fastest-dns-server-with-google-namebench/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 22:07:46 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[fastest dns]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[opendns]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=714</guid>
		<description><![CDATA[One of the factors that dictates browsing speed is the time it takes to do a DNS lookup &#8211; that is, convert a domain name such as google.com into an IP address such as 209.85.227.105. Generally most people use the DNS servers operated by their ISP. Usually this is fine, but sometimes ISP DNS servers [...]]]></description>
			<content:encoded><![CDATA[<p>One of the factors that dictates browsing speed is the time it takes to do a <acronym title="Domain Name Service">DNS lookup</acronym> &#8211; that is, convert a domain name such as <em>google.com</em> into an <acronym title="Internet Protocol">IP address</acronym> such as <em>209.85.227.105</em>. Generally most people use the DNS servers operated by their <acronym title="Internet Service Provider">ISP</acronym>. Usually this is fine, but sometimes ISP DNS servers can be unreliable, and they&#8217;re not always the fastest choice.</p>
<p>There are many free public DNS services, such as <a href="http://www.opendns.com">OpenDNS</a> and search giant Google&#8217;s <a href="http://code.google.com/speed/public-dns/">Public DNS</a>, but it&#8217;s difficult to know which one is best for you. Enter <a href="http://code.google.com/p/namebench/">NameBench</a>, a free cross-platform tool which tests a raft of public DNS services using either your browser history or a list of top domains. Once the tests are complete, you receive a summary of the results including suggested primary, secondary and tertiary servers:</p>
<p><img class="aligncenter size-full wp-image-717" title="NameBench results" src="http://chris.gg/wp-content/uploads/2010/03/namebench-results2.png" alt="" width="400" height="249" /></p>
<p>So if you&#8217;ve got a few minutes to spare, why not see if you can shave a few milliseconds from your page load times?</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/03/find-the-fastest-dns-server-with-google-namebench/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to resolve &#8220;Virtual PC has detected an invalid or missing Product ID&#8221;</title>
		<link>http://chris.gg/2010/03/how-to-resolve-virtual-pc-has-detected-an-invalid-or-missing-product-id/</link>
		<comments>http://chris.gg/2010/03/how-to-resolve-virtual-pc-has-detected-an-invalid-or-missing-product-id/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:50:32 +0000</pubDate>
		<dc:creator>Chris Barnes</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[product id]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[virtual pc]]></category>
		<guid isPermaLink="false">http://chris.gg/?p=705</guid>
		<description><![CDATA[I&#8217;ve just installed Virtual PC 2007 on my work laptop (which runs Windows XP), and when I tried to start it, I got the following error: --------------------------- Virtual PC --------------------------- Virtual PC has detected an invalid or missing Product ID. A valid Product ID is required to operate Virtual PC. Please re-run the Virtual PC [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just installed Virtual PC 2007 on my work laptop (which runs Windows XP), and when I tried to start it, I got the following error:</p>
<pre>---------------------------
Virtual PC
---------------------------
Virtual PC has detected an invalid or missing Product ID.
A valid Product ID is required to operate Virtual PC. Please
re-run the Virtual PC installer and enter a valid Product ID when
requested.
---------------------------
OK
---------------------------</pre>
<p>The solution is basically as described <a href="http://sharepointinsight.wordpress.com/2009/03/27/solution-for-virtual-pc-has-detected-an-invalid-or-missing-product-id-error/">here</a>, except I had to create the registry keys and values as they were missing on my machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris.gg/2010/03/how-to-resolve-virtual-pc-has-detected-an-invalid-or-missing-product-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

