<?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/"
	xmlns:media="http://search.yahoo.com/mrss/">

<channel>
	<title>Hi, I&#039;m Dan Cunningham</title>
	<atom:link href="http://dancunningham.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancunningham.co.uk</link>
	<description>Webgeek, Designer and Developer from England, UK</description>
	<lastBuildDate>Tue, 09 Apr 2013 00:44:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Yep&#8230; I did a Harlem Shake&#8230;</title>
		<link>http://dancunningham.co.uk/2013/04/01/yep-i-did-a-harlem-shake/</link>
		<comments>http://dancunningham.co.uk/2013/04/01/yep-i-did-a-harlem-shake/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 22:19:45 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[comic relief]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[harlem shake]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1606</guid>
		<description><![CDATA[So with all these viral antics going on we organised a Harlem Shake at the office and saying it was a right laugh would be close enough to true for me! I recorded the 20+ of my daily work colleagues giving it there shake take, some on the tables, chairs and all over the show [...]]]></description>
			<content:encoded><![CDATA[<p>So with all these viral antics going on we organised a Harlem Shake at the office and saying it was a right laugh would be close enough to true for me!<br />
I recorded the 20+ of my daily work colleagues giving it there shake take, some on the tables, chairs and all over the show in our kitchen area!</p>
<p>Anyways, See the video below. P.S I&#8217;m the black power ranger!</p>
<p>Enjoy</p>
<p><iframe width="470" height="315" src="http://www.youtube.com/embed/_Pmk2YlI-fw" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2013/04/01/yep-i-did-a-harlem-shake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/dan_cunningham.jpg" length="37319" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/dan_cunningham.jpg" width="500" height="375" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>The Basic Caching of MySQL Queries</title>
		<link>http://dancunningham.co.uk/2012/11/01/the-basic-caching-of-mysql-queries/</link>
		<comments>http://dancunningham.co.uk/2012/11/01/the-basic-caching-of-mysql-queries/#comments</comments>
		<pubDate>Thu, 01 Nov 2012 01:06:59 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[faster]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1572</guid>
		<description><![CDATA[So lately I&#8217;ve been reading into MySQL and its in-built cache facilities, and so I wanted to share some of the basics with those of you who hadn&#8217;t started to use these features yet. MySQL has an in-built query cache which caches the results of SELECT queries, however we need to enable this functionality before [...]]]></description>
			<content:encoded><![CDATA[<p>So lately I&#8217;ve been reading into MySQL and its in-built cache facilities, and so I wanted to share some of the basics with those of you who hadn&#8217;t started to use these features yet.</p>
<p>MySQL has an in-built query cache which caches the results of SELECT queries, however we need to enable this functionality before MySQL can use it as by default its turned off. The logic behind this is that frequently used database queries will run much faster, mainly because the data resultset will be read from the cache instead of having to run the query again (*Cool Beans*). The MySQL query cache is available from MySQL 4.0.1. </p>
<p>So whenever tables in the database are modified the relevant entries in the query cache are flushed so you can be certain that even with the query cache enabled only up to date data is returned. Now that sounds great, so lets enable this on our MySQL Server!</p>
<h2>Let&#8217;s get cache&#8217;in!</h2>
<p>First off we need to make sure query cache is disabled, So we need to see what parameters are set, by running the following query in MySQL:</p>
<p><code>SHOW VARIABLES LIKE '%query_cache%'</code></p>
<p>Below is an example result for the above query, This shows that the query cache engine is available, but the query cache size is set to zero and therefore nothing will be cached, and the query cache engine will not actually be used! So lets get it enabled!</p>
<p><code>+------------------------------+---------+<br />
| Variable_name                | Value   |<br />
+------------------------------+---------+<br />
| have_query_cache             | YES     |<br />
| query_cache_limit            | 1048576 |<br />
| query_cache_min_res_unit     | 4096    |<br />
| query_cache_size             | 0       |<br />
| query_cache_type             | ON      |<br />
| query_cache_wlock_invalidate | OFF     |<br />
+------------------------------+---------+</code></p>
<p>If you want to, It is possible to set the query_cache_size variable without actually restarting the MySQL server, by running the following SQL query.<br />
In this example, we are enabling a 50MB query cache.<br />
<code>SET GLOBAL query_cache_size = 50*1024*1024;</code></p>
<p>Now Running the following line again to see what our server is running at.<br />
<code>SHOW VARIABLES LIKE '%query_cache%'</code> </p>
<p>Output:<br />
<code>+------------------------------+----------+<br />
| Variable_name                | Value    |<br />
+------------------------------+----------+<br />
| have_query_cache             | YES      |<br />
| query_cache_limit            | 1048576  |<br />
| query_cache_min_res_unit     | 4096     |<br />
| query_cache_size             | 52428800 |<br />
| query_cache_type             | ON       |<br />
| query_cache_wlock_invalidate | OFF      |<br />
+------------------------------+----------+</code></p>
<p>Great! We&#8217;ve now got 50Mb of cache availble in MySQL in our Memory. However with this method, the next time the MySQL server is restarted the setting will be lost and query cache will no longer be used. So ideally we need to look at how to make the change permanent, No problem!</p>
<h2>Setting it in the MySQL config</h2>
<p>Setting the MYSQL query cache size in my.cnf</p>
<p>In order to make the query_cache_size setting permanent the MySQL server configuration file must be modified to enable this from mysqld startup. These settings are stored in the mysql config file which for those of you that dont know, is called &#8220;my.cnf&#8221;. This file is typically stored on a Linux system at /etc/my.cnf or sometimes at /etc/mysql/my.cnf (Ubuntu/Debian based distro&#8217;s). If it&#8217;s not at either of those locations you can try running locate my.cnf or find / -name my.cnf, although note the latter will take a while if you haven&#8217;t run an #updatedb command for a while.</p>
<p>To enable the query cache with a 50MB query cache in MySQL you need to add the following line to the my.cnf file.<br />
Be sure to add it under the [mysqld] section otherwise it won&#8217;t work.</p>
<p><code>query-cache-size = 50M</code></p>
<p>I hope that helps anyone who is seeing stupid amounts of slowdown with their MySQL server.</p>
<h2>Still want to learn more?</h2>
<h3>Purchase MySQL Admin Cookbook LITE Configuration, Server Monitoring, Managing Users</h3>
<p></p>
<form method="get" action="http://www.anrdoezrs.net/interactive" target="_blank">
<img style="float:right; padding: 0 10px 0 0" src="http://img.ebooks.com/previews/000/000943/000943476/000943476-sml-1.jpg" border="0" alt="MySQL Admin Cookbook LITE Configuration, Server Monitoring, Managing Users"/></p>
<div style="float:left; width: 350px;">
<p>This cookbook presents solutions to problems in the form of recipes. Each recipe provides the reader with easy step-by-step descriptions of the actions necessary to accomplish a specific task. Example values and code samples are used throughout the recipes, which makes adaptation for individual needs easy. This book is for ambitious MySQL users as well as professional data center database administrators. Beginners as well as experienced administrators will benefit from this cookbook and get fresh ideas to improve their MySQL environments.</p>
<p><br style="clear:both;" /></p>
<input type="hidden" name="pid" value="5716249"/>
<input type="hidden" name="aid" value="10281551"/>
<input type="hidden" name="cjsku" value="943476"/>
<input type="hidden" name="url" value="http://www.ebooks.com/cj.asp?IID=943476"/>
<input style="width: 100%; text-align:center; height: 30px; line-height: 30px; background: #ff990d; color:#000; font-weight: bold;" type="submit" value="Purchase the MySQL Admin Cookbook"/>
</div>
</form>
<p><img src="http://www.ftjcfx.com/a073y7B-53PVXRWSUZPRQSYRVVR" width="1" height="1" border="0" style="border: 0px !important;" /><br />
<br style="clear:both;" /><br style="clear:both;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/11/01/the-basic-caching-of-mysql-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://img.ebooks.com/previews/000/000943/000943476/000943476-sml-1.jpg" length="2328" type="image/jpeg" /><media:content url="http://img.ebooks.com/previews/000/000943/000943476/000943476-sml-1.jpg" width="99" height="150" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>Doncaster&#8217;s Northbridge Skate Park</title>
		<link>http://dancunningham.co.uk/2012/09/06/doncasters-northbridge-skate-park/</link>
		<comments>http://dancunningham.co.uk/2012/09/06/doncasters-northbridge-skate-park/#comments</comments>
		<pubDate>Thu, 06 Sep 2012 19:43:50 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1551</guid>
		<description><![CDATA[So the end of last month, a friend had an idea to rent out the newly local indoor skate park that has recently opened. I&#8217;ve been following its creation over the past 6 months on facebook, as I&#8217;m a member of the area51doncaster.co.uk team (I do their website etc). I&#8217;ve been following the feed and [...]]]></description>
			<content:encoded><![CDATA[<p>So the end of last month, a friend had an idea to rent out the newly local indoor skate park that has recently opened.<br />
I&#8217;ve been following its creation over the past 6 months on facebook, as I&#8217;m a member of the <a href="http://area51doncaster.co.uk" title="Area 51 Doncaster Skate Park" target="_blank">area51doncaster.co.uk</a> team (I do their website etc).</p>
<p>I&#8217;ve been following the feed and posts on facebook for some time and some of my MTB mates (Phil, Dale, Dim, Dean, Eddy, Adam, Harry and Kate) decided that they wanted to rent out the park for 12 hours. So they booked it one saturday night from 9pm till 9am! Cheers for to the Doncaster&#8217;s Northbridge Skate Park staff for being awesome in letting us do this as it was awesome! </p>
<p>Anyway, I created a small short video of the night, A lot happened and I didn&#8217;t records hardly any where near as much as I had originally set out to do! However we did have fun (including the hours worth of digging for Harry&#8217;s phone in the foam pit practicing his parkour!)  I also took a stack of photos, but I&#8217;ve only chosen a few to publish, I&#8217;ve added these onto the end of the video, so be sure to watch it in HD!</p>
<p>If anyone else is thinking about hiring this skate park (<a href="http://northbridgeskatepark.co.uk/" title="Doncaster North Bridge Skate Park" target="_blank">northbridgeskatepark.co.uk</a>) both myself and all the lads in the videeo highly recommend it! The facilities are great, and the owner is sound! Anyways Enjoy this short video.</p>
<p><iframe width="470" height="310" src="http://www.youtube.com/embed/qO3SYqS1PQI" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/09/06/doncasters-northbridge-skate-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/dan_cunningham.jpg" length="37319" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/dan_cunningham.jpg" width="500" height="375" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>Get your own Personal Domain Email Hosting for Free using Google Apps</title>
		<link>http://dancunningham.co.uk/2012/07/05/get-your-own-personal-domain-email-hosting-for-free-using-google-apps/</link>
		<comments>http://dancunningham.co.uk/2012/07/05/get-your-own-personal-domain-email-hosting-for-free-using-google-apps/#comments</comments>
		<pubDate>Thu, 05 Jul 2012 00:30:47 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1465</guid>
		<description><![CDATA[It&#8217;s no secret, Google host things&#8230; You know this, I know this, Hell even my dog knows this! However google have recently made it less obvious that they still host their app service for free. Back when Google Apps launched (Yes I was there) They allowed you to signup for an account for your domain, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret, Google host things&#8230; You know this, I know this, Hell even my dog knows this! However google have recently made it less obvious that they still host their app service for free.</p>
<p>Back when Google Apps launched (Yes I was there) They allowed you to signup for an account for your domain, They also gave you the allowance of 150 users per domain account, Yeah seriously 150 accounts!</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/gapps.jpg" alt="Google Apps Free" title="Google Apps Free" width="500" class="alignnone size-full wp-image-1492" /></p>
<p>But when they started to get bigger they realised spammers and users where grabbing these account and using them rather than paying for the Google Apps Business accounts. So Google slowly started to drop the user allowance down from 150, to 100, then 75, 50 then 25&#8230; We&#8217;re now at 10 and although thats nothing in comparison to the origianl amount that they first started with, its a massive amount given that most of us would like a brilliant email service, as cheap as possible!</p>
<p>I&#8217;m a massive Google apps user, I use it for myself, my clients, and my work. It&#8217;s something that has taken the problems away from email hosting as you can use that time else where learning other things. I believe that this is one of the reasons that google too supply you with the free Google Apps option.</p>
<h2>How do I get a Google Apps Free Account?</h2>
<p>Right, now down to business! What you&#8217;re getting is Gmail, GTalk, GCal, and Gdocs but not branded as Google. You get these on your own domain!<br />
This post explains how to setup the free Google Apps Standard for your domain.</p>
<h2>Step 1</h2>
<p>Go to <a href="https://www.google.com/a/cpanel/standard/new3" target="_blank">Google App Standard here (Google Apps Free)</a> you have to add the domain.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/1.jpg" alt="" title="Google Apps Standard for Free." width="550" height="312" class="alignnone size-full wp-image-1466" /></p>
<h2>Step 2</h2>
<p>Choose custom setup click Go Custom button.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/2.png" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="size-full wp-image-1471" /></p>
<h2>Step 3</h2>
<p>Now we need to verify the domain owner as you!<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/3.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1472" /></p>
<h2>Step 4</h2>
<p>You can verify the domain a couple of ways, the quickest I find is by uploading a HTML file with specified files name.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/4.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1473" /></p>
<h2>Step 5</h2>
<p>The Other way of verifing your domain is to include a set META tag in the domain&#8217;s index page.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/5.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1474" /></p>
<h2>Step 6</h2>
<p>After verifing your domain the following success message will be displayed.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/6.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="620" class="alignnone size-full wp-image-1475" />.</p>
<h2>Step 7</h2>
<p>Now we start creating some email accounts!<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/7.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1476" /></p>
<h2>Step 8</h2>
<p>Go to Organization &#038; users tab and click &#8220;Create a new user&#8221; button and you can create a new email address.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/8.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="322" class="alignnone size-full wp-image-1480" /></p>
<h2>Step 9</h2>
<p>Once done, a success message will be dislayed.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/9.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="400" class="alignnone size-full wp-image-1481" /></p>
<h2>Step 10</h2>
<p>If you want to look at a current list of users you can click the &#8220;Organization &#038; Users&#8221;<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/10.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1482" /></p>
<h2>Step 11</h2>
<p>As standard Google automatically provides you with a generic URL for accessing your Google Mail, however we can change that! Click change url and setup a custom url, Something like &#8220;mail.yourdomain.com&#8221; is probably ideal, however you can have anything you like.<br />
Google Apps Standard for Free.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/11.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1483" /></p>
<h2>Step 12</h2>
<p>Here&#8217;s where you choose your custom URL.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/12.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1484" /></p>
<h2>Step 13</h2>
<p>Now we have to modify your domain&#8217;s CNAME records with the changes required for the custom URL and Email setup.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/13.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1485" /></p>
<h2>Step 14</h2>
<p>Open a new tab login into you domain provier site like Godaddy, Bigrock etc, Go to the domain DNS settings and add mail CNAME points to Google server ghs.google.com<br />
Open up another web browser, Login into your domain provider (I use http://123-reg.co.uk) Buy the domain if you don&#8217;t already have one however you should do if you&#8217;re at this stage!<br />
Go to the domain&#8217;s control panel, and click Edit DNS. Now we need to add the &#8220;mail&#8221; CNAME to point to Googles server hosted at ghs.google.com and the following MX records too for the email to work.<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/16.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="763"  class="alignnone size-full wp-image-1486" /></p>
<h2>Step 15</h2>
<p>Now back to Google App page go to Domain settings tab click Appearance upload your logo<br />
We now pop back over to the Google Apps page, go to Domain settings in the tab menu, and click Appearance, From here we can upload your custom logo etc, Which will take away some of the Google branding, Awesome!<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/14.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1487" /></p>
<h2>Step 16</h2>
<p>Now we&#8217;ve done all that, we can add our email account settings to our email client, However I&#8217;ll link you to the google tutorials for those!<br />
<img src="http://dancunningham.co.uk/wp-content/uploads/15.jpg" alt="Google Apps Standard for Free." title="Google Apps Standard for Free." width="550" class="alignnone size-full wp-image-1488" /></p>
<p>I hope that helps someone out, Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/07/05/get-your-own-personal-domain-email-hosting-for-free-using-google-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/gapps.jpg" length="50096" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/gapps.jpg" width="500" height="300" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>Logitech Quickcam Zoom working with Windows 7</title>
		<link>http://dancunningham.co.uk/2012/06/02/how-to-make-logitech-quickcam-zoom-work-with-windows-7-both-32bit-and-64bit/</link>
		<comments>http://dancunningham.co.uk/2012/06/02/how-to-make-logitech-quickcam-zoom-work-with-windows-7-both-32bit-and-64bit/#comments</comments>
		<pubDate>Sat, 02 Jun 2012 15:47:36 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[webcam]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1418</guid>
		<description><![CDATA[So it would seem to the dismay of many that Logitech have stopped supporting the Quickcam for Windows 7. This really does my head sideways as the camera I have is perfectly fine! Infact if you&#8217;re reading this then you too will know that there isn&#8217;t a think wrong with the way the logitech QuickCam [...]]]></description>
			<content:encoded><![CDATA[<p>So it would seem to the dismay of many that Logitech have stopped supporting the Quickcam for Windows 7. This really does my head sideways as the camera I have is perfectly fine! Infact if you&#8217;re reading this then you too will know that there isn&#8217;t a think wrong with the way the logitech QuickCam Zoom or any of the Quick cam family for that matter!</p>
<p>So I&#8217;ve been playing about and I&#8217;ve managed to get my QuickCam working on Windows 7 64bit fairly easily.</p>
<p>Firstly, you need to gram the right drivers, I&#8217;m pretty much only going to link to the 64bit drivers on this post, so if you need the 32Bit ones you will have a do a little digging first (Sorry).<br />
Grab this f Logitech Quickcam driver for x64 vista (Yes i know its vista but we need this file.) from here (<a href="ftp://ftp.logitech.com/pub/techsupport/quickcam/qc1051enu_x64.exe">qc1051enu_x64.exe</a>).</p>
<p>Once you&#8217;ve downloaded that you&#8217;re going to need a extraction program, like 7zip or WinRAR. I personally use WinRAR, so what you need to do is as follows.</p>
<p>Navigate to the location of the qc1051enu_x64.exe file, once you have done so right click the file, and you want to extract the contents to your PC. The reason we do this is because Windows 7 wont allow us to run this Vista installer, so we need to extract the contents of it out.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/quickcam-ex.jpg" alt="" title="quickcam-ex" class="alignnone size-full wp-image-1419" /></p>
<p>Once this has done, a new folder will apear next to this, called &#8220;qc1051enu_x64&#8243; Inside of that folder will be the following files.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/files.jpg" alt="" title="files" class="alignnone size-full wp-image-1420" /></p>
<p>Navigate to the following folder, &#8220;qc1051enu_x64\Drivers\x64\PRO64\&#8221; (Note 32Bit version will differ slightly however the stucture is very much the same.</p>
<p>Once you&#8217;re in that folder there is a file named &#8220;lPRO64v.inf&#8221; you need to open this file now with a text editor. Once you have it open you will see alot of strings etc. What we need to do is find<br />
the string &#8220;08bd&#8221; without the quotes, and replace this with the string &#8220;08b4&#8243; (also without the quotes). Once you&#8217;ve done that, save the file!</p>
<p>Now we just need to install this new modified driver on our machine, so the quickest way is GO to the divice manager, (Right click &#8220;Computer&#8221; in the start menu and click &#8220;Manage&#8221;) then navigate to the &#8220;Device Manager&#8221; Then right click the unknown device which should be your webcam.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/updatedriver.jpg" alt="" title="updatedriver" class="alignnone size-full wp-image-1421" /></p>
<p>Once you&#8217;ve done that, you need to click &#8220;Browse my computer for driver software&#8221;.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/browse.jpg" alt="" title="browse" class="alignnone size-full wp-image-1422" /></p>
<p>It should then ask for your location of the files, You need to adjust this to the location to which you downloaded the files to, It should be the same as mine if you&#8217;re using x64 and extracted your driver &#8220;qc1051enu_x64&#8243; to the downloads folder. If not locate your folder. </p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/browseinstall.jpg" alt="" title="browseinstall" class="alignnone size-full wp-image-1423" /></p>
<p>Then click next, and now you should have a completely working Logitech Quickcam!</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/logitech-windows7-working.jpg" alt="" title="logitech-windows7-working" class="alignnone size-full wp-image-1424" /></p>
<p>I hope thats helped some else out out, as It&#8217;s taken me a while to figure this one out, However I do think it would be a massive help to someone trying to get the Logitech older camera&#8217;s working on windows 7.</p>
<p>If anyone has any comments or questions then please dont hessitate to ask in the comments section below.<br />
Thanks! Dan.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/06/02/how-to-make-logitech-quickcam-zoom-work-with-windows-7-both-32bit-and-64bit/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/quickcam-ex.jpg" length="68797" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/quickcam-ex.jpg" width="531" height="500" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>Cydia Untrusted Server Certificate Fix For Your iPhone</title>
		<link>http://dancunningham.co.uk/2012/04/26/cydia-untrusted-server-certificate-fix-for-your-iphone/</link>
		<comments>http://dancunningham.co.uk/2012/04/26/cydia-untrusted-server-certificate-fix-for-your-iphone/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 07:50:56 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[Certificate]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Untrusted]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1218</guid>
		<description><![CDATA[Recently I&#8217;ve been playing around with older iPhones, installing wiping and generally hacking things. After all they&#8217;re a very powerful ARM device. This made me want to fire up Cydia and start hacking some apps together, However I after opening Cyida I received this following message. &#8220;Untrusted Sever Certificate&#8221;. First thing I did was restart [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been playing around with older iPhones, installing wiping and generally hacking things. After all they&#8217;re a very powerful ARM device. This made me want to fire up Cydia and start hacking some apps together, However I after opening Cyida I received this following message. &#8220;Untrusted Sever Certificate&#8221;. </p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/Cydia-untrusted-server-cetificate.jpg" alt="" title="Cydia-untrusted-server-cetificate" class="alignnone size-full wp-image-1224" /></p>
<p>First thing I did was restart the phone, however I quickly realised that the time and date on the iPhone where massively out from the current time. This was due to the phones charge being completely lost (because of innactivity) and not holding any batterly life for the clock to keep the time correct. So after I did the following step everything worked fine again. </p>
<p>Here&#8217;s a quick youtube video on what I did to fix this iPhone error, Its quick short and simple and I hope this helps anyone else out with the same issue!</p>
<h2>My Tutorial on Fixing the Untrusted Server Certificate</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/qquLNEEO-KI" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/04/26/cydia-untrusted-server-certificate-fix-for-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/Cydia-untrusted-server-cetificate.jpg" length="54170" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/Cydia-untrusted-server-cetificate.jpg" width="600" height="400" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>April&#8217;s Underground Mix Compilation.</title>
		<link>http://dancunningham.co.uk/2012/04/21/aprils-underground-mix-compilation/</link>
		<comments>http://dancunningham.co.uk/2012/04/21/aprils-underground-mix-compilation/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 11:54:26 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[bass]]></category>
		<category><![CDATA[DnB]]></category>
		<category><![CDATA[drum]]></category>
		<category><![CDATA[dubpstep]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[underground]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=1151</guid>
		<description><![CDATA[This months Underground Mix Compilation consists of a small 40 minute selection of remixes of a few cool classy tracks from the past few months and even a few classics from over a decade ago! Regardless of their age I can&#8217;t help but feel that these are all truely awesome and thats why I&#8217;ve included [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://dancunningham.co.uk/wp-content/uploads/compilation-mix2.jpg" alt="April's Underground Mix Compilation." title="April's Underground Mix Compilation." width="473" height="224" class="alignnone size-full wp-image-1176" /></p>
<p>This months Underground Mix Compilation consists of a small 40 minute selection of remixes of a few cool classy tracks from the past few months and even a few classics from over a decade ago! Regardless of their age I can&#8217;t help but feel that these are all truely awesome and thats why I&#8217;ve included them in my April Underground Mix Compilation.</p>
<blockquote><p>If you&#8217;d like the playlist for April&#8217;s Underground Mix Compilation it&#8217;s <a href="http://www.youtube.com/playlist?list=PL395D3F9B62943427" target="_blank" title="April's Underground Mix Compilation">available here</a>.</p></blockquote>
<p>Also note, if you have produced something thats underground and/or unheard of please do leave a comment or drop me a line via my <a href="/contact/" target="_blank">contact page</a>. I love hearing new remixes mashups and alt music. </p>
<p>Dont worry if you don&#8217;t think its the correct genre either! I love alot of different genre&#8217;s of music so supprise me and drop anything across and I&#8217;ll be sure to have a good listen, and feature here it if it&#8217;s awesome!</p>
<h2>Rita Ora &#8211; R.I.P ft. Tinie Tempah</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/3qwvVGBVBpY" frameborder="0" allowfullscreen></iframe></p>
<h2>Benga &#8211; Icon (Audio) ft. Bebe Black</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/4qIgptanLlA" frameborder="0" allowfullscreen></iframe></p>
<h2>Surkin &#8211; Lose Yourself (Rustie remix)</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/SX58dHPnJig" frameborder="0" allowfullscreen></iframe></p>
<h2>Blame &#8211; Star (Ft. Camilla &#038; Fuda Guy) &#8211; Parts 1 &#038; 2</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/vY00Rp0ctlM" frameborder="0" allowfullscreen></iframe></p>
<h2>Flux Pavilion feat. Example &#8211; Daydreamer</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/ZAvd_6sI1-I" frameborder="0" allowfullscreen></iframe></p>
<h2>Avicii &#8211; Levels Dubstep Remix</h2>
<p><iframe width="470" height="320" src="http://www.youtube.com/embed/ibWDnLlrUt4" frameborder="0" allowfullscreen></iframe></p>
<p>Also, these are not Dubstep but I really loved them so I HAD to include them in this months mix.</p>
<h2>Avicii &#8211; Levels (Dirty Freek Funky House Remix)</h2>
<p><iframe width="470" height="300" src="http://www.youtube.com/embed/DBzok3dJ_xI" frameborder="0" allowfullscreen></iframe></p>
<h2>Skee-Lo &#8211; I Wish (Slynk Hip/DubStep Remix)</h2>
<p><iframe width="470" height="300" src="http://www.youtube.com/embed/rWHFRKFJjBc" frameborder="0" allowfullscreen></iframe></p>
<h2>Full Track Listing</h2>
<ul>
<li>Rita Ora &#8211; R.I.P ft. Tinie Tempah (<a href="http://www.youtube.com/watch?v=3qwvVGBVBpY" target="_blank">Youtube</a>)</li>
<li>Benga &#8211; Icon (Audio) ft. Bebe Black (<a href="http://www.youtube.com/watch?v=4qIgptanLlA" target="_blank">Youtube</a>)</li>
<li>Surkin &#8211; Lose Yourself (Rustie remix)  (<a href="http://www.youtube.com/watch?v=SX58dHPnJig" target="_blank">Youtube</a>)</li>
<li>Blame &#8211; Star (Ft. Camilla &#038; Fuda Guy) &#8211; Parts 1 &#038; 2 (<a href="http://www.youtube.com/watch?v=vY00Rp0ctlM" target="_blank">Youtube</a>)</li>
<li>Flux Pavilion feat. Example &#8211; Daydreamer (<a href="http://www.youtube.com/watch?v=ZAvd_6sI1-I" target="_blank">Youtube</a>)</li>
<li>Avicii &#8211; Levels Dubstep Remix (<a href="http://www.youtube.com/watch?v=ibWDnLlrUt4" target="_blank">Youtube</a>)</li>
<li>Avicii &#8211; Levels (Dirty Freek Funky House Remix) (<a href="http://www.youtube.com/watch?v=DBzok3dJ_xI" target="_blank">Youtube</a>)</li>
<li>Skee-Lo &#8211; I Wish (Slynk Hip/DubStep Remix) (<a href="http://www.youtube.com/watch?v=rWHFRKFJjBc" target="_blank">Youtube</a>)</li>
</ul>
<blockquote><p>April&#8217;s Underground Mix Compilation <a href="http://www.youtube.com/playlist?list=PL395D3F9B62943427" target="_blank" title="April's Underground Mix Compilation">Youtube Playlist</a>.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/04/21/aprils-underground-mix-compilation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/compilation-mix2.jpg" length="70646" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/compilation-mix2.jpg" width="473" height="224" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>Search Engine Optimization Tips from Google Itself</title>
		<link>http://dancunningham.co.uk/2012/03/27/search-engine-optimization-tips-from-google-itself/</link>
		<comments>http://dancunningham.co.uk/2012/03/27/search-engine-optimization-tips-from-google-itself/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 06:40:43 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[Engine]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=926</guid>
		<description><![CDATA[I&#8217;m always one for having some good SEO and content within my websites however I dont believe that SEO is something you need to buy from a so called &#8220;Guru&#8221;. My attitude towards SEO guys is that I see &#8220;SEO Guys&#8221; as pretty much a &#8220;fake&#8221; job. Now don&#8217;t get me wrong because originally the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always one for having some good SEO and content within my websites however I dont believe that SEO is something you need to buy from a so called &#8220;Guru&#8221;. My attitude towards SEO guys is that I see &#8220;SEO Guys&#8221; as pretty much a &#8220;fake&#8221; job. Now don&#8217;t get me wrong because originally the content author would have done all the writing of their site content and this would have included the SEO. </p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/googleseo.jpg" alt="" title="googleseo" width="463" height="151" class="alignnone size-full wp-image-932" /></p>
<p>However over the past 10 years the term &#8220;SEO&#8221; has been aimed at the wrong target, and thus spawned the &#8220;SEO Guy&#8221; Job, I&#8217;ll explain what I mean.</p>
<p>These &#8220;SEO Gurus&#8221; are the guys who hack the page to get the poor search engines to list the content top and not for the benefit of the users, So 7 times out of 10 the content is probably not even relavent! This I have always seen this method of SEO &#8220;hacking&#8221; as wrong and Google too now agree&#8217;s. </p>
<p>Infact Google wants the users to be the targets of the terms and content and not the search engines algorithm. This in my opinion is where it should have always been aimed its just alot of people have been so caught up with the play of the &#8220;SEO&#8221; buzz word that they&#8217;ve missed the point entirely!</p>
<p>To anyone that knows me personally my theory has always been if you can&#8217;t write some good informative content, then your site won&#8217;t rank as well as you need it to, but if you do write good content and you include the correct tags for this content and it&#8217;s correctly coded from day one, you won&#8217;t ever need to buy SEO services from anyone EVER, as it will ranks correctly for the content you have hosted!</p>
<p>Now Google has released a video with the way in which they are now looking for genuine content and exactly as I have described above they&#8217;ve backed up everything I&#8217;ve been saying for the last serveral years. God bless Google!</p>
<p>Anyway have a watch I&#8217;ve embedded the video below. Enjoy</p>
<p><iframe width="480" height="300" src="http://www.youtube.com/embed/6AmRg3p79pM" frameborder="0" allowfullscreen></iframe></p>
<p><strong>Editors Note:</strong> My intentions of this post is not to offend anyone who is in the SEO, or Marketing Profession as this is just an opinion that I&#8217;ve had for well over 6 years now. However if you do feel you need to comment to air your views and/or defence (and I always love to hear other peoples opinions), then please do so in the comments below.</p>
<p>Thanks, Dan Cunningham</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/03/27/search-engine-optimization-tips-from-google-itself/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/googleseo.jpg" length="22093" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/googleseo.jpg" width="463" height="151" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>A Really Cool Marshall Amp, Literally! As Its a fridge!</title>
		<link>http://dancunningham.co.uk/2012/03/23/a-really-cool-marshall-amp-literally-as-its-a-fridge/</link>
		<comments>http://dancunningham.co.uk/2012/03/23/a-really-cool-marshall-amp-literally-as-its-a-fridge/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 14:36:18 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=851</guid>
		<description><![CDATA[Today I&#8217;ve come across the coolest fridge ever, It&#8217;s a Marshall branded beer fridge! Fridges do get really boring, especially after working with electrical and white good appliances for 3 years at my time at Miller Brothers, However this is pretty freaking awesome and made especially for holding your special weapon of choice (Beer). I [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ve come across the coolest fridge ever, It&#8217;s a Marshall branded beer fridge!<br />
Fridges do get really boring, especially after working with electrical and white good appliances for 3 years at my time at Miller Brothers, However this is pretty freaking awesome and made especially for holding your special weapon of choice (Beer). </p>
<p>I so very much really want one of these, and Im sure you will too when you see the pictures below.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/marshall_amp_fridge.jpg" alt="" title="marshall_amp_fridge" class="alignnone size-full wp-image-852" /></p>
<p>It looks just like the classic amp, but the <a href="http://marshallfridge.com/" target="_blank">Marshall Fridge</a> is a 4.4 cubic foot refrigerator/freezer perfect for keeping your beer and pop on ice.</p>
<h2>Promotional Video</h2>
<p><iframe width="470" height="300" src="http://www.youtube.com/embed/67EovwvJrC0" frameborder="0" allowfullscreen></iframe></p>
<p>So how many of you want to rock out your office with one of these? I know I do!</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/03/23/a-really-cool-marshall-amp-literally-as-its-a-fridge/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/uploads/marshall_amp_fridge.jpg" length="66052" type="image/jpeg" /><media:content url="http://dancunningham.co.uk/wp-content/uploads/marshall_amp_fridge.jpg" width="600" height="356" medium="image" type="image/jpeg" />	</item>
		<item>
		<title>Resources Archive</title>
		<link>http://dancunningham.co.uk/2012/03/22/resources-archive/</link>
		<comments>http://dancunningham.co.uk/2012/03/22/resources-archive/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 15:47:35 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[My Work]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[This Site]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[Archive]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://dancunningham.co.uk/?p=799</guid>
		<description><![CDATA[I&#8217;ve been known to tweet a lot of resources &#038; web finds with web, design and developement interests. Due to this a lot of people asked me to create an archive of these posts so they didn&#8217;t have to favourite my every tweet! I took it upon myself (with some advice from a few friends) [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been known to <a href="http://www.twitter.com/cun" title="Dan Cunningham on Twitter" target="_blank">tweet</a> a lot of resources &#038; web finds with web, design and developement interests. Due to this a lot of people asked me to create an archive of these posts so they didn&#8217;t have to favourite my every tweet!</p>
<p>I took it upon myself (with some advice from a few friends) to actually write some new code and create this archive. At the top of this page you will see a &#8220;<a href="http://dancunningham.co.uk/resources/" title="Resources" target="_blank">Resources</a>&#8221; link. Inside that page is an archive of everything I&#8217;ve tweeted with a preview of the site I found it upon. If you click the URL or the Preview then you will go directly through to the original resource. So for those who follow me on Twitter, you can just visit that page from now on rather than having to favourite every tweet.</p>
<h2>How it works&#8230;</h2>
<p>It&#8217;s really self explainatry, but basically I make tweets to other design and development resources that I find and read daily online.</p>
<p>I Tweet said resource:-</p>
<p><a href="https://twitter.com/#!/cun/status/182837913380327424" title="Build a 360 view image slider with JavaScript " target="_blank"><img src="http://dancunningham.co.uk/wp-content/plugins/twitteresource.png" alt="" title="twitteresource" class="alignnone size-full wp-image-801" /></a></p>
<p>After the tweet has been made, My site instantly creates the page of the URL I tweeted, giving you a preview of the said resource origin page.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/clickresource.jpg" alt="" title="clickresource" width="470" height="409" class="alignnone size-full wp-image-807" /></p>
<p>Then just click the link or the preview shot of the resource site and you&#8217;ll get the original resource.</p>
<p><img src="http://dancunningham.co.uk/wp-content/uploads/dotnetthumb.jpg" alt="" title="dotnetthumb" width="470" height="351" class="alignnone size-full wp-image-806" /></p>
<p>I hope that helps everyone!</p>
<h2>&#8220;Can You Feature My Resource?&#8221;</h2>
<p>Sure, If you&#8217;ve created something cool, possibly unique or even free, Let let me know! I always love to see new things so I&#8217;ll definately take a look. If it meets the critera I&#8217;ll tweet it and feature it in the resources archive too.</p>
<p>So drop me a message either on <a href="http://www.twitter.com/cun" target="_blank">twitter</a> or via the <a href="http://dancunningham.co.uk/contact/" title="Contact" target="_blank">contact</a> link in the header of this page. </p>
<p>Regards,<br />
Dan.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2012/03/22/resources-archive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://dancunningham.co.uk/wp-content/plugins/twitteresource.png" length="28720" type="image/png" /><media:content url="http://dancunningham.co.uk/wp-content/plugins/twitteresource.png" width="470" height="191" medium="image" type="image/png" />	</item>
	</channel>
</rss>
