<?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>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>Fri, 06 Aug 2010 20:23:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Multiple Domain Names, Duplicate Content Fix</title>
		<link>http://dancunningham.co.uk/2010/08/06/multiple-domain-names-duplicate-content-fix/</link>
		<comments>http://dancunningham.co.uk/2010/08/06/multiple-domain-names-duplicate-content-fix/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 20:02:37 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.dancunningham.co.uk/?p=218</guid>
		<description><![CDATA[Being a web geek I tend to have my fingers in all the bits and bytes that circle the world wide web, Now this is not in anyways bad but it means my time is always pulled into diverse little specs of dust, fluttering from one space into the next! Now recently I&#8217;ve been asked [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F08%2F06%2Fmultiple-domain-names-duplicate-content-fix%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F08%2F06%2Fmultiple-domain-names-duplicate-content-fix%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>Being a web geek I tend to have my fingers in all the bits and bytes that circle the world wide web, Now this is not in anyways bad but it means my time is always pulled into diverse little specs of dust, fluttering from one space into the next! </p>
<p>Now recently I&#8217;ve been asked alot about Search Engine Optimization, and how people can improve their own domain listings within Google, Bing, Yahoo and other Search engines without going into the whole symantic drama that is HTML coding.</p>
<p>Being a web developer I thought to myself there is no way to fix a ranking without editing the site! Or is there?&#8230; Apprently around 30% of company websites and other small organisations don&#8217;t realise that they are infact doing this and they kill off alot of their own rankings due to one little issue that is the www&#8217;s! </p>
<p>Still not with me? I&#8217;ll run you upto speed on what I&#8217;m referring to&#8230;<br />
Believe it or not, you can actually ask Google, &#8220;How many pages of my website do you have in your memory?&#8221;&#8230; To do this you need to use the <strong>site:url</strong> syntax  within a Google search, What Google will then do is reply with a list of all your domains pages. Fortunatly if you havn&#8217;t been savi and not added this very little fix you will see that Google will have dropped alot of originally decent content and placed it upon the other domain.</p>
<h3>Google Search Comparisons</h3>
<p>Without www&#8217;s<br />
<img src="http://www.dancunningham.co.uk/wp-content/plugins/withoutwww.jpg" alt="withoutwww" title="withoutwww" class="alignnone size-full wp-image-225" /></p>
<p>With www&#8217;s<br />
<img src="http://www.dancunningham.co.uk/wp-content/plugins/withwww.jpg" alt="withwww" title="withwww" class="alignnone size-full wp-image-224" /></p>
<p>Now the above is pretty obvious, I&#8217;ve requested all the pages that are in the google listing engine that are registered under the said sites. Obviously these two domains are the same&#8230; So why is google indexing them seperately? Thats down to how you have your server/site setup.</p>
<p>Ideally what you want is one domain that is either http://test.com or http://www.test.com and not both.</p>
<p>To fix the issue and gain your search engine rankings quickly you need to tell a visitor to go to either one or the other. Now the question I know you&#8217;re going to be asking is, &#8220;Which is better, www&#8217;s or no www&#8217;s?&#8221;. Now this is down to personal perference but I personally rather have no www&#8217;s, and i&#8217;ll explain why.</p>
<p>With the internet progressing with Twitter, Facebook, and other various mobile devices people are using urls more and more day in and day out. Now when you type addresses all day like I do you tent to get bored and annoyed at typing www&#8217;s time after time!</p>
<p>Also I actually prefer to go for with the other big reason, I love to use short URLs and www&#8217;s are annoying (In my opinion).</p>
<h2>The mod_rewrite redirect fix</h2>
<p>To impliment this into your site couldn&#8217;t be easier! Just FTP onto your webhosting and into the root directory of your hosting files, Usuallly that would be www/ or public_html/ (something like that) create a new file called .htaccess and open it up with your editor.</p>
<p>Paste in the following code.<br />
<code>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
RewriteCond %{HTTP_HOST} ^www.dancunningham.co.uk [NC]<br />
RewriteRule ^(.*)$ http://dancunningham.co.uk/$1 [L,R=301]<br />
</code></p>
<p>Now if you have multiple Top Level Domains (TLD&#8217;s) then you might want to point them all to the same hosting server / directory. Again thats not a problem we can tell the site to handle these in a similar way. Just add the extra domains into your .htaccess like the below example and the apache server will handle the rest.</p>
<p><code><br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
RewriteCond %{HTTP_HOST} ^www.dancunningham.co.uk [NC]<br />
RewriteRule ^(.*)$ http://dancunningham.co.uk/$1 [L,R=301]<br />
RewriteCond %{HTTP_HOST} ^www.cunni.co.uk [NC]<br />
RewriteRule ^(.*)$ http://dancunningham.co.uk/$1 [L,R=301]<br />
</code></p>
<p>I hope that this tutorial makes sense and helps those who are suffering fundamental search engine ranking issues! I only know of these issues as I&#8217;ve experienced them for myself. So again im simply passing on some knowledge to help others learn from mine. If anyone has anything they wish to add or comment on then please do so below.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/08/06/multiple-domain-names-duplicate-content-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4, Was it worth it?</title>
		<link>http://dancunningham.co.uk/2010/07/24/iphone4-was-it-worth-it/</link>
		<comments>http://dancunningham.co.uk/2010/07/24/iphone4-was-it-worth-it/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 19:39:19 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.dancunningham.co.uk/?p=274</guid>
		<description><![CDATA[So back in the begining of 2010 we was all hyped about the leak of the iPhone 4 that had been lost at a bar in germany. This lead to some cool new media which made me want the new iPhone even more! That aside apple were massively annoyed that it had been leaked but [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F07%2F24%2Fiphone4-was-it-worth-it%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F07%2F24%2Fiphone4-was-it-worth-it%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>So back in the begining of 2010 we was all hyped about the leak of the iPhone 4 that had been lost at a bar in germany. This lead to some cool new media which made me want the new iPhone even more! That aside apple were massively annoyed that it had been leaked but to be honest it just made their sales and promotion globally only better!<br />
<a href="http://www.dancunningham.co.uk/wp-content/plugins/iphone41.png"><img src="http://www.dancunningham.co.uk/wp-content/plugins/iphone41.png" alt="" title="iphone4" width="473" height="224" class="alignnone size-full wp-image-305" /></a></p>
<p>Anyways, I took the decission back in feb 2010 that I would be buying a new iPhone and that I would have it on release day! Afterall my old 3G was getting a bit tatty and looking a little worse for wear but it&#8217;s been an amazing little iPhone has my 3G! Its been through the thick and thin, and even has continued to work after water damage!</p>
<p>So here where my options. Im on the UK mobile network &#8220;Three.co.uk&#8221; and while they are actually one of the best UK 3G carriers, they dont offically support the iPhone.<br />
I&#8217;ve been using them for years and years and managed to get my iPhone 3g to work with them with some cool little software settings.</p>
<p>So i was a bit upset when I heard that only O2, Orange, Vodaphone and T-Mobile were going to be getting the iPhone 4. Then in  early June 2010, Apple announced that the iPhone 4 was going to be released with Three!</p>
<p>That left me in the middle&#8230; Choosing tariffs, arggg&#8230;</p>
<h2>Tarrifs, Do I stay or do I go?</h2>
<p>I Did alot of research with this, and although I dont want to bore you with to much detail, I worked out that a 18 month contract @ around £35 a month would make the phone and contract together a whopping £900 for 18 months. That also means that when the new iPhone 4s or iPhone 5 as it might be called comes out I won&#8217;t be able to upgrade as i&#8217;ll still have 6months left on my contract.</p>
<p>That aside, I didnt want to be tied down to any contract or any particular carrier, So i bought the iPhone 4 Outright. Its factory unlocked, and for that it was well worth it!</p>
<h2>Performance over the 3Gs and living without JailBrake</h2>
<p>Well having had the use of all generation of iPhone&#8217;s I actually can tell that the iPhone 4 is rather much more quicker than its little sister the 3Gs, When you place the two side by side and start to use them in an identical manor the speed differences are so obvious and second to non that the iPhone 4 is the quicker of the two by at least 2 times. I had this when I compared the iPhone 3g with the iPhone 3Gs.<a href="http://www.dancunningham.co.uk/wp-content/plugins/compare.png"><img src="http://www.dancunningham.co.uk/wp-content/plugins/compare.png" alt="" title="compare" width="473" height="224" class="alignnone size-full wp-image-308" /></a></p>
<p>After playing around for a while, I was leaving the old iPhone at home even though I do need a few of my jailbroken cydia applications. Now while my iPhone 4 is not yet jailbroken, I dont fee the need as much as I thought I would to require a Jailbroken iPhone.</p>
<p>Now I know that there isn&#8217;t a long wait now for the iPhone 4 jailbreak to be released the apps in which I do require like MyWi and Auto Silent will soon be available on my iPhone 4, I can only honestly say I&#8217;ve not overly missed my Jailbrake!</p>
<h2>Overall Conclusion</h2>
<p>Im well in pressed with the iPhone 4, and I know that its the best thing I&#8217;ve bought in a long while. Even with all the reception issues, Which may I add havn&#8217;t been that bad with the carrier &#8220;Three.co.uk&#8221; While other who use the same phone on O2 are having somewhat differnt results. </p>
<p>I&#8217;ve not had a call drop out, or anyone not able to hear me via the normal phone call method. Skype has has its issues but thats due to bad wifi and bandwidth issues, but that aside The phone itself is twice if not 3 times better than my old iPhone! Im truely impressed!</p>
<h2>Update</h2>
<p> I&#8217;ve recently installed MyWi on iOS4 and My3G and I&#8217;m really truely impressed! I&#8217;ve now turned my iPhone into a Wifi access point and can now also use Facetime over 3. Although FaceTime wasn&#8217;t designed to work over 3G I&#8217;ve not had any more or less issues than I do at work or home with using the wifi access point.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/07/24/iphone4-was-it-worth-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone No Sim Card Installed Problem</title>
		<link>http://dancunningham.co.uk/2010/05/30/iphone-no-sim-card-installed-problem/</link>
		<comments>http://dancunningham.co.uk/2010/05/30/iphone-no-sim-card-installed-problem/#comments</comments>
		<pubDate>Sun, 30 May 2010 13:29:40 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[no sim card installed]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://www.dancunningham.co.uk/?p=250</guid>
		<description><![CDATA[So it would seem that no one else has even posted this online, So i thought i&#8217;d create a quick Youtube &#8220;How to&#8221; style fix video. The iPhone will show a &#8220;No Sim Installed&#8221; Message like this The Youtube how to&#8230; I&#8217;ve thrown together a small video here for you to watch. Or play using [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F05%2F30%2Fiphone-no-sim-card-installed-problem%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F05%2F30%2Fiphone-no-sim-card-installed-problem%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15&amp;hashtags=fix,iPhone,issue,no+sim+card+installed,problem" height="61" width="50" /><br />
			</a>
		</div>
<p>So it would seem that no one else has even posted this online, So i thought i&#8217;d create a quick Youtube &#8220;How to&#8221; style fix video. The iPhone will show a &#8220;No Sim Installed&#8221; Message like this<br />
<a href="http://dancunningham.co.uk/wp-content/plugins/nosim.jpg"><img src="http://dancunningham.co.uk/wp-content/plugins/nosim.jpg" alt="No SIM card installed iPhone" title="No SIM card installed iPhone" width="320" height="129" class="aligncenter size-full wp-image-322" /></a></p>
<h2>The Youtube how to&#8230;</h2>
<p>I&#8217;ve thrown together a small video <a href="http://www.youtube.com/watch?v=tdE6zGTsFTI">here</a> for you to watch. Or play using the embedded youtube player below.<br />
<object width="475" height="325"><param name="movie" value="http://www.youtube.com/v/tdE6zGTsFTI&#038;hl=en_GB&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/tdE6zGTsFTI&#038;hl=en_GB&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="475" height="325"></embed></object></p>
<h2>Update</h2>
<p>This has actually turned out be to quite a popular video, Alot of people email me and comment on youtube thanking me for posting it, So If you have any questions then please feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/05/30/iphone-no-sim-card-installed-problem/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to stop the &#8220;page contains secure and nonsecure items&#8221; warning</title>
		<link>http://dancunningham.co.uk/2010/04/24/how-to-stop-the-page-contains-secure-and-nonsecure-items-warning/</link>
		<comments>http://dancunningham.co.uk/2010/04/24/how-to-stop-the-page-contains-secure-and-nonsecure-items-warning/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 17:45:22 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.dancunningham.co.uk/?p=234</guid>
		<description><![CDATA[Are your SSL web pages plagued by the browser warning &#8220;This page contains both secure and nonsecure items. Do you want to display the nonsecure items?&#8221; This is a common error that occurs when some element on a secure web page (one that is loaded with https:// in the address bar) is not being loaded [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F04%2F24%2Fhow-to-stop-the-page-contains-secure-and-nonsecure-items-warning%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F04%2F24%2Fhow-to-stop-the-page-contains-secure-and-nonsecure-items-warning%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>Are your SSL web pages plagued by the browser warning &#8220;This page contains both secure and nonsecure items. Do you want to display the nonsecure items?&#8221;<br />
<a href="http://www.dancunningham.co.uk/wp-content/plugins/display-nonsecure-items.gif"><img src="http://www.dancunningham.co.uk/wp-content/plugins/display-nonsecure-items.gif" alt="display-nonsecure-items" title="display-nonsecure-items" width="332" height="150" class="alignleft size-full wp-image-235" /></a></p>
<p>This is a common error that occurs when some element on a secure web page (one that is loaded with https:// in the address bar) is not being loaded from a secure source. This usually occurs with images, frames, iframes, Flash, and JavaScripts. There are a few ways to fix it:<br />
1. Change all URLs to https</p>
<p>Just open up the offending web page and search for http://. Change the references on all images, iframes, Flash, and Javascripts to https://. For example.</p>
<p><code>&lt;img src=&quot;https://www.domain.com/image.gif&quot; alt=&quot;&quot; /&gt;</code></p>
<p>This may not work if you are loading an image from another site that does not have SSL set up. Also, with this method you&#8217;ll be loading SSL images even when the client is loading from a non-secure page. This will add extra processing load on the server and client. This is definitely not recommended for a high volume site.<br />
2. Change all links to // or make them relative</p>
<p>Rather than changing all the links to https://, change them to just //</p>
<p><code>&lt;img src=&quot;//www.domain.com/image.gif&quot; alt=&quot;&quot; /&gt;</code></p>
<p>Alternatively, if the images or scripts are located on the same domain, you can access them relatively, rather than absolutely:</p>
<p><code>&lt;img src=&quot;image.gif&quot; alt=&quot;&quot; /&gt;</code></p>
<p>Using this method, the browser will know that it must load the image securely if the web page is being loaded securely but it will also load the image normally if the page is not being accessed securely. The image will still need to be available on the other server securely. This is likely the best method of getting rid of the pesky &#8220;Do you want to display the nonsecure items?&#8221; warnings.<br />
3. Change the browser settings</p>
<p>It is best to change the code of the page that is giving the error, but if you don&#8217;t have access to change the code, you can always tell your personal web browser not to display that message. To do so follow these steps for Internet Explorer:</p>
<p>   1. Go to Tools, Internet Options.<br />
   2. Select the &#8220;Security&#8221; Tab and then click on the &#8220;Custom Level&#8221; button.<br />
   3. Scroll down until you see the option: &#8220;Display mixed content&#8221;. Select &#8220;Enable&#8221;.<br />
   4. Click Ok. Then you will get a &#8220;Security Warning&#8221; pop-up. Click Yes.</p>
<p>One common reason that this warning shows up is using normal Google Analytics code on a secure page. It is a simple fix to enable Google Analytics on a page using SSL.</p>
<p>If you use the unsecure Google Analytics code on one of your secure   web pages your web browser will warn that there is some page content   that is not secure. This problem can be easily solved by slightly   changing the code used to load Google Analytics.</p>
<p>Instead of:<br />
<code>&lt;script src=&quot;<strong>http://www.google-analytics.com/urchin.js</strong>&quot; type=&quot;text/javascript&quot;&gt;<br />&lt;/script&gt;</code><br />
Use:<br />
<code>&lt;script src=&quot;<strong>https://ssl.google-analytics.com/urchin.js</strong>&quot; type=&quot;text/javascript&quot;&gt; <br />&lt;/script&gt;</code></p>
<p>If you still get the &quot;page contains secure and nonsecure items&quot; after changing that code you should check for other page elements that are using http instead of https.</p>
<p>Google&#8217;s information about using <a href="http://www.google.com/support/googleanalytics/bin/answer.py?answer=55483&amp;topic=10981">SSL with Google Analytics</a> is also available.</p>
<p>Update: Google has now updated the Google Analytics code to use ga.js instead of the urchin.js file. In the process, they have implemented code that will automatically detect whether http or https needs to be used. The new code will also enable new features so it is recommended that you upgrade. This will solve the SSL problem so you won&#8217;t need to worry about the solution above. The upgrade instructions can be <a href="http://www.google.com/analytics/GATCmigrationguide.pdf">found here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/04/24/how-to-stop-the-page-contains-secure-and-nonsecure-items-warning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 64bit on 13&#8243; Macbook</title>
		<link>http://dancunningham.co.uk/2010/03/17/windows-7-64bit-on-13-macbook/</link>
		<comments>http://dancunningham.co.uk/2010/03/17/windows-7-64bit-on-13-macbook/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 00:29:54 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cunni.co.uk/?p=189</guid>
		<description><![CDATA[Here&#8217;s how and why I installed what some would say is pointless, But I feel is a must. I&#8217;ve been using my Macbook for a while and dont get me wrong its great but I&#8217;ve not used Mac OS since 2001&#8230; Thats 9 years ago! Needless to say I&#8217;ve been trying to get to grips [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F03%2F17%2Fwindows-7-64bit-on-13-macbook%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F03%2F17%2Fwindows-7-64bit-on-13-macbook%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.cunni.co.uk/wp-content/plugins/macbookwindows7.jpg"><img src="http://www.cunni.co.uk/wp-content/plugins/macbookwindows7.jpg" alt="macbookwindows7" title="macbookwindows7" class="alignnone size-full wp-image-194" /></a><br />
Here&#8217;s how and why I installed what some would say is pointless, But I feel is a must. I&#8217;ve been using my Macbook for a while and dont get me wrong its great but I&#8217;ve not used Mac OS since 2001&#8230; Thats 9 years ago! Needless to say I&#8217;ve been trying to get to grips with Mac OSx but as much as i try to get along with OSx I can&#8217;t seem to work fast enough, and what would take me an hour worth of web development to do in Windows would take me 2 hours or more to pull off inside OSx.</p>
<p>Now I don&#8217;t want to sell the Mac as I love the look and build quality, and in all honesty I will still use OSx for the iPhone Development that I&#8217;m doing. So I decided to install XP via Boot Camp.</p>
<p>Now after using xp for a while I decided it was way to old, and grabbed Windows 7 from my Desktop PC. I&#8217;ve now installed this upon the MacBook and it run faster than than my PC which is spec&#8217;d the same as my Macbook!</p>
<p>Just incase Windows 7 doesnt run fast upon your Macbook it might be due to my MacBook Spec not being the standard run of the mill entry level. I have a 2.4Ghz, 4Gig of 800Mhz Ram and a 250Gig Harddrive inside my Macbook and this might help with the performance of Windows 7.</p>
<p>So this what I did to install 64 Bit Windows 7 even though Boot Camp told me 64bit wasn&#8217;t supported for the Macbook.<br />
<a href="http://www.cunni.co.uk/wp-content/plugins/windowsinstall.jpg"><img src="http://www.cunni.co.uk/wp-content/plugins/windowsinstall.jpg" alt="windowsinstall" title="windowsinstall" width="460" height="289" class="alignnone size-full wp-image-200" /></a><br />
1. Load up Snow Leopard (Or Leopard if thats your OS)<br />
2. Run Boot Camp (Im running verison 3.1)<br />
3. Follow the wizard and insert your 64bit Windows 7 CD.<br />
4. Macbook restarts, and will boot up the CD, (Press any key to boot from CD/DVD&#8230;.)<br />
5. Install Windows upon the Boot Camp Partition that you made in the previous wizard.<br />
6. Follow the Windows 7 installer, (should take about an hour to install Windows)<br />
7. Boot into Windows and setup the Wifi etc, Disable Windows updates as Im not positive that these will work correctly upon a MacBook. (I wanted to play it safe)<br />
8. Once installed you need to install the MacBook drivers, although most things will already work. This is the step that will initally give you an issue. The MacBook wasnt supposed to run a 64Bit Windows OS and this means you cant install the software easily. So we have to do the following.<br />
9. Insert the Snow Leopard (Or Leopard) DVD, and explore the DVD to the run the following installer.<br />
(CDRom Drive):\Boot Camp\Drivers\Apple\BootCamp64.msi<br />
10. Follow the instsller, and it should ask you to restart after. </p>
<p>That should be it and all should run fine. Unless your sound isnt working, (Apple have a cool way of telling if your sound isn&#8217;t working, Look down the whole of the Headphone Jack if you see a red light, then you have a sound issue), If this is the case, follow the next few steps.</p>
<p>1. Navigate to the Apple DVD again, and run (CDRom Drive):\Boot Camp\Drivers\RealTekSetup.exe<br />
2. Now once installed you need to restart, and you should now have working sound, If you don&#8217;t have sound or you got an error upon insrall you you need to do the following.</p>
<p>1. Right click the (CDRom Drive):\Boot Camp\Drivers\RealTekSetup.exe and select &#8220;Troubleshoot compatability&#8221;<br />
2. Click &#8220;Troubleshoot Program&#8221; and wait for it to detect the issues.<br />
3. Select &#8220;this program worked on an earlier version of Windows, but won&#8217;t install or display correctly now&#8221; (Top option)<br />
4. Select Windows Vista or Windows XP (I chose Vista, Not SP1 or SP2, just &#8220;Vista&#8221;)<br />
5. Now wait for it to finish &#8220;resolving issues&#8221;, the installer will start. This time it will won&#8217;t fail!</p>
<p>Once this is done, the Macbook will need another restart, After that you won&#8217;t have a red light in the headphone jack port and you will successfully have sound!</p>
<p>I hope this helps user also having issues with Macbooks and Windows.</p>
<p><strong>Edit:</strong> If you want to know how to Print Screen but for obivous reason cant find the PrintScr Button on your macbook laptop then try this: Shift + Fn + F11<br />
This will copy the screen to click board for use in Photoshop or Paint etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/03/17/windows-7-64bit-on-13-macbook/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>The next best thing since beat box.</title>
		<link>http://dancunningham.co.uk/2010/03/11/beardyman-the-next-best-thing-since-beatbox/</link>
		<comments>http://dancunningham.co.uk/2010/03/11/beardyman-the-next-best-thing-since-beatbox/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 22:49:01 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.cunni.co.uk/?p=175</guid>
		<description><![CDATA[I&#8217;m a big lover of underground music, and I&#8217;m an even bigger lover of live music, so when the two are seen hand in hand and the whole thing is spiced up with a little comedy I&#8217;m instantly hooked! Now there is a young man that I&#8217;ve seen this guy a few times now online [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F03%2F11%2Fbeardyman-the-next-best-thing-since-beatbox%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F03%2F11%2Fbeardyman-the-next-best-thing-since-beatbox%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;m a big lover of underground music, and I&#8217;m an even bigger lover of live music, so when the two are seen hand in hand and the whole thing is spiced up with a little comedy I&#8217;m instantly hooked! </p>
<p>Now there is a young man that I&#8217;ve seen this guy a few times now online in various different places, He goes by the name Beardyman! </p>
<p>He&#8217;s released a video online and it&#8217;s an hour long but its by far one of the best beat box, live comedy acts I&#8217;ve ever seen! Have a look for yourself, if in the beginning it looks odd, stick with it. I&#8217;m positive you will love this guy.</p>
<p><object width="460" height="295"><param name="movie" value="http://www.youtube.com/v/qciVXUHTN10&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/qciVXUHTN10&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="295"></embed></object></p>
<p>Let me know what you think of this mad manic of a character otherwise known as Beardyman and leave me a comment with your opinion.</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/03/11/beardyman-the-next-best-thing-since-beatbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple iPad, It&#8217;s older than we know!</title>
		<link>http://dancunningham.co.uk/2010/01/28/apple-ipad-its-older-than-we-know/</link>
		<comments>http://dancunningham.co.uk/2010/01/28/apple-ipad-its-older-than-we-know/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:49:58 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.cunni.co.uk/?p=166</guid>
		<description><![CDATA[Well after yesturdays hype towards the new apple ipad, or islate as it was originally going to be called. (A previous patent just hours before the keynote was raised in a meetings meaning the iSlate had to be rebranded as the iPad!) I found this video back from 2006 only hours after the offical iPad [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F01%2F28%2Fapple-ipad-its-older-than-we-know%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F01%2F28%2Fapple-ipad-its-older-than-we-know%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>Well after yesturdays hype towards the new apple ipad, or islate as it was originally going to be called. (A previous patent just hours before the keynote was raised in a meetings meaning the iSlate had to be rebranded as the iPad!)</p>
<p>I found this video back from 2006 only hours after the offical iPad Keynote which made me laugh! Good work apple!<br />
Im sure if you had made the iPad from this video you&#8217;d have reached a massive market!</p>
<p><a href="http://www.youtube.com/watch?v=RsfIMWaflcc">http://www.youtube.com/watch?v=RsfIMWaflcc</a></p>
<p><img src="http://boakes.org/pics/2005/ipad/ipad_tiger_400.jpg" alt="iPad" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/01/28/apple-ipad-its-older-than-we-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube Launches HTML5 Support</title>
		<link>http://dancunningham.co.uk/2010/01/21/youtube-launches-html5-support/</link>
		<comments>http://dancunningham.co.uk/2010/01/21/youtube-launches-html5-support/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:50:05 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.cunni.co.uk/?p=158</guid>
		<description><![CDATA[Well as the world of the internet evolves so does the code to run it. Yep thats right, looks like Google have implemented the first major we site to support HTML5. YouTube has just revealed that it is rolling out a new video player that supports HTLM5, one that can be accessed via YouTube’s TestTube [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F01%2F21%2Fyoutube-launches-html5-support%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2010%2F01%2F21%2Fyoutube-launches-html5-support%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>Well as the world of the internet evolves so does the code to run it. Yep thats right, looks like Google have implemented the first major we site to support HTML5. YouTube has just revealed that it is rolling out a new video player that supports HTLM5, one that can be accessed via YouTube’s <a href="http://www.youtube.com/testtube">TestTube</a> idea incubator.</p>
<p>In an announcement earlier today, the Google (Google)-owned online video service stated that an HTML5-compatible player was the #1 request of its users. HTML5 is the upcoming new standard for the markup language behind most web pages, one that supports video, audio, drag-and-drop, canvas drawing, and many other new features and APIs.</p>
<p>Since HTML5 supports video embeds, YouTube has rolled out a version of its player that runs just on it. No browser plugins (e.g. Flash) are required to watch videos that support HTML5.</p>
<p>There are limitations, though. It doesn’t work with videos that have advertising, captions, or annotations. It also only works with HTML5-compatible browsers, meaning <a href="http://www.google.co.uk/chrome">Chrome</a> or <a href="http://www.apple.com/safari/">Safari</a> or <a href="http://code.google.com/chrome/chromeframe/">Chrome Frame</a> for IE if you so choose not to use a third party browser due to its looks/navigational differences.</p>
<p>You can take a look at a <a href="http://www.youtube.com/html5">demo</a> of the new HTML5 player here. As you can probably tell, it could use some more work, but YouTube promises to improve the interface over time.</p>
<p>We think this is a step in the right direction. While we don’t think Google should just switch over to HTML5 (Flash just allows for more functionality), we do think user should have the option. This is great to see a big website moving up in the support for new browsers and newly impressed code. I hope this means that someday the guys over at http://www.w3.org do make a HTML string that denied the use of Internet Explorer 6 though! *kneels &#038; prays*</p>
<p><a href="http://www.cunni.co.uk/wp-content/plugins/youtube.jpg"><img src="http://www.cunni.co.uk/wp-content/plugins/youtube.jpg" alt="youtube" title="youtube" width="690" class="aligncenter size-full wp-image-162" /></a></p>
<p>Source: mashable.com</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2010/01/21/youtube-launches-html5-support/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Looking into PHP Frameworks</title>
		<link>http://dancunningham.co.uk/2009/12/21/looking-into-php-frameworks/</link>
		<comments>http://dancunningham.co.uk/2009/12/21/looking-into-php-frameworks/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 10:33:19 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.cunni.co.uk/?p=145</guid>
		<description><![CDATA[I&#8217;ve recently been coding alot in PHP and MySQL lately and some fellow designers and developers asked what framework I have been working with. Now when this question was asked I put my hands in the air and said, &#8220;Frame work? What frame work!&#8221; They all seemed to be amused by my honesty which is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2009%2F12%2F21%2Flooking-into-php-frameworks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2009%2F12%2F21%2Flooking-into-php-frameworks%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve recently been coding alot in PHP and MySQL lately and some fellow designers and developers asked what framework I have been working with. Now when this question was asked I put my hands in the air and said, &#8220;Frame work? What frame work!&#8221; They all seemed to be amused by my honesty which is cool but they said you&#8217;re seriously making things hard for yourself! </p>
<p>How apprently a framework is supposed to make you code things correctly into various libs and use them consistantly throught the backend code. The only issue with that is, most of the bespoke content that I write requires unique libs that are only referenced once, this makes the whole point of using a framework silly as I&#8217;m not actually saving anytime at all by doing this.</p>
<p>I did look into various frameworks though, and i have found that the following ones are really quite good, and depending on your knowledge and speed in picking up various code languages, you might want to have a dabble with some of these for yourself!</p>
<p><strong>Frame Works</strong><br />
<strong>Code Igniter</strong>: <a href="http://codeigniter.com">http://codeigniter.com</a><br />
Description: CodeIgniter is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. If you&#8217;re a developer who lives in the real world of shared hosting accounts and clients with deadlines, and if you&#8217;re tired of ponderously large and thoroughly undocumented frameworks</p>
<p><strong>Cake PHP</strong>: <a href="http://cakephp.org/">http://cakephp.org</a><br />
Description: CakePHP is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. Using commonly known design patterns like MVC and ORM  within the convention over configuration paradigm, CakePHP reduces development costs and helps developers write less code.</p>
<p><strong>Zend</strong>: <a href="http://framework.zend.com">http://framework.zend.com</a><br />
Description: To provide a lightweight, loosely-coupled component library simplified to provide 4/5s of the functionality everyone needs and that lets you customize the other 20% to meet your specific business needs. By focusing on the most commonly needed functionality, we retain the simplified spirit of PHP programming, dramatically lower the learning curve, and your training costs – so developers get up-to-speed quickly.</p>
<p><strong>ash.MVC</strong>: <a href="http://www.ash-mvc.org/">http://www.ash-mvc.org</a><br />
Description: The basic approach of this framework is to adopt a middle-path approach between faster development cycle, and a robust and scalable application. Moreover, the schemes proposed in the framework stick to the line of simplicity all along.</p>
<p><strong>WASP</strong>: <a href="http://wasp.sourceforge.net/content/">http://wasp.sourceforge.net/content/</a><br />
Description: WASP is a powerful web application framework built on PHP 5. WASP strives to allow web developers to make great applications with more fun and less code, but in the familiar playground of PHP. </p>
<p>All the above prooved to work well at doing very similar tasks, but each has there own way of doing it. If you like the community based type of projects then i suggest Code Igniter/Cake PHP/Zend is the path you&#8217;d need to take, but at the end of the day a frame work is a personal choice, so it is really each to their own. Me personally? well, Im just going to be dabbling in a bit of everything, usually coding bespoke code means I have to be able to appoach it from various sides. Im still unsure which path I&#8217;m wanting to take with MVC! *shrugs*</p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2009/12/21/looking-into-php-frameworks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free VoIP Goodness!</title>
		<link>http://dancunningham.co.uk/2009/12/21/voip-goodness/</link>
		<comments>http://dancunningham.co.uk/2009/12/21/voip-goodness/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 09:33:48 +0000</pubDate>
		<dc:creator>Dan Cunningham</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://www.cunni.co.uk/?p=147</guid>
		<description><![CDATA[So, Lately i&#8217;ve been keeping myself to myself doing my own thing, you know how it is&#8230; but then again not everyone is in the same frame of mind as me. I work to much, yep i admit that&#8230; I work late all the time and Im forever learning new things that will either save [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fdancunningham.co.uk%2F2009%2F12%2F21%2Fvoip-goodness%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fdancunningham.co.uk%2F2009%2F12%2F21%2Fvoip-goodness%2F&amp;source=cun&amp;style=normal&amp;service_api=R_f4cc9558b7eaabfa67c557d332adee15" height="61" width="50" /><br />
			</a>
		</div>
<p>So, Lately i&#8217;ve been keeping myself to myself doing my own thing, you know how it is&#8230; but then again not everyone is in the same frame of mind as me. I work to much, yep i admit that&#8230; I work late all the time and Im forever learning new things that will either save me money or follow a &#8220;get rich quick&#8221; scheme.</p>
<p>This I openly admit has nothing to do with that either! So I set out looking into VoIP one night after reading that I could make calls world wide without actually spending alot of money, which im sure apeals to most people. After reading for a good few hours, I already had multiple accounts with various voip websites all of which where offering different services, but mainly they consisted of the same basic needs.</p>
<p>After a few hours I had 3 Land Line PTSN numbers directed via VOIP to my PC and I could make calls to any UK landlines for free. After now finding out how to setup a PBX server and have all the PSTN calls forward to that server and I can now recieve calls from my old phone line to anywhere in the world, and if I really want to be cool I can call them back from my home landline, even if im on my jollies anywhere in the world! Technology, You&#8217;ve got&#8217;a love it! <img src='http://dancunningham.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dancunningham.co.uk/2009/12/21/voip-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
