<?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>Thought Patterns</title>
	<atom:link href="http://www.cameroncooke.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cameroncooke.com</link>
	<description>Cameron’s thoughts on Technology, Software and Web Development</description>
	<lastBuildDate>Wed, 14 Jul 2010 15:54:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>My iPhone 4 Death Grip</title>
		<link>http://www.cameroncooke.com/2010/07/14/my-iphone-4-death-grip/</link>
		<comments>http://www.cameroncooke.com/2010/07/14/my-iphone-4-death-grip/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 15:53:56 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPhone 4]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/2010/07/14/my-iphone-4-death-grip/</guid>
		<description><![CDATA[This video shows my experience with the iPhone 4 signal issue commonly know as the Death Grip.

 ]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/07/14/my-iphone-4-death-grip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Has Apple gone too far making the iPhone simple?</title>
		<link>http://www.cameroncooke.com/2010/04/09/has-apple-gone-too-far-making-the-iphone-simple/</link>
		<comments>http://www.cameroncooke.com/2010/04/09/has-apple-gone-too-far-making-the-iphone-simple/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 12:18:15 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone OS 4]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=131</guid>
		<description><![CDATA[Just installed iPhone OS 4.0 beta that was released to developers yesterday. It seems to be a great release and delivers on a lot of feature requests. One of the biggest new features was multi-tasking support. Multi-tasking is the ability to switch from one application to another without closing the current application. Basically when you [...]]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/04/09/has-apple-gone-too-far-making-the-iphone-simple/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mount: unknown filesystem type &#8216;iso9660&#8242;</title>
		<link>http://www.cameroncooke.com/2010/03/17/mount-unknown-filesystem-type-iso9660/</link>
		<comments>http://www.cameroncooke.com/2010/03/17/mount-unknown-filesystem-type-iso9660/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 20:00:59 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[iso9660]]></category>
		<category><![CDATA[jeOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=118</guid>
		<description><![CDATA[If you are running Ubuntu jeOS and selected the minimal VMWare installation option you may find that you receive the following error when you attempt to mount a CDROM using the sudo mount /cdrom command from the command line:

mount: unknown filesystem type &#039;iso9660&#039;

This is because the kernel does not have iso9660 (cdrom filesystem) support built-in. [...]]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/03/17/mount-unknown-filesystem-type-iso9660/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great guide to using Apache&#8217;s mod_rewrite</title>
		<link>http://www.cameroncooke.com/2010/02/25/great-guide-to-using-apaches-mod_rewrite/</link>
		<comments>http://www.cameroncooke.com/2010/02/25/great-guide-to-using-apaches-mod_rewrite/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 11:42:29 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=115</guid>
		<description><![CDATA[Stumbled on these great guides for using Apache&#8217;s mod_rewrite:
http://www.easymodrewrite.com/guide-syntax
http://www.easymodrewrite.com/guide-advanced
One particular area of interest was the following rules:


RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule  (.*) index.php?page=$1 [QSA,L]

The above rules will pass all URI requests through index.php for handling unless the requested file or directory exists.
 ]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/02/25/great-guide-to-using-apaches-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mirror your websites using rsync on Linux.</title>
		<link>http://www.cameroncooke.com/2010/01/15/how-to-mirror-your-websites-using-rsync-on-linux/</link>
		<comments>http://www.cameroncooke.com/2010/01/15/how-to-mirror-your-websites-using-rsync-on-linux/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 11:39:15 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=109</guid>
		<description><![CDATA[I&#8217;ve been given the task at work to mirror all of our websites on-to our local development server. I knew instantly that I needed to use something like rsync but was unsure how to use it. Also rsync runs over SSH and requires human intervention to enter the login password for the remote server over [...]]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/01/15/how-to-mirror-your-websites-using-rsync-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to copy files &amp; folders from server to server in Linux</title>
		<link>http://www.cameroncooke.com/2010/01/14/how-to-copy-files-folders-from-server-to-server-in-linux/</link>
		<comments>http://www.cameroncooke.com/2010/01/14/how-to-copy-files-folders-from-server-to-server-in-linux/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 10:34:19 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Copying Files]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=106</guid>
		<description><![CDATA[Found a fantastic guide at crucialp.com on how to copy files in Linux from one server to another using various techniques including SCP, rsync and tar (over SSH).
Check it out:   How to Copy Files Across a Network/Internet in UNIX/LINUX (Redhat, Debian, FreeBSD, etc) &#8211; scp tar rsync
 ]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/01/14/how-to-copy-files-folders-from-server-to-server-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Netgear WNR2000 router not assigning IP address. How to fix DHCP so that it works.</title>
		<link>http://www.cameroncooke.com/2010/01/13/netgear-wnr2000-router-not-assigning-ip-address-how-to-fix-dhcp-so-that-it-works/</link>
		<comments>http://www.cameroncooke.com/2010/01/13/netgear-wnr2000-router-not-assigning-ip-address-how-to-fix-dhcp-so-that-it-works/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 11:04:50 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[Netgear]]></category>
		<category><![CDATA[WNR2000]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=104</guid>
		<description><![CDATA[If you have a Netgear WNR2000 router like I do you might find that some computers and devices won&#8217;t connect to the internet. You maybe receive messages like the following:
Windows: Limited or no Connectivity
or
OS X: Alert: No internet connection
I had this problem for weeks, I tried updating the firmware to the latest version but this [...]]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2010/01/13/netgear-wnr2000-router-not-assigning-ip-address-how-to-fix-dhcp-so-that-it-works/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>First person to translate this wins blog kudos</title>
		<link>http://www.cameroncooke.com/2009/08/06/first-person-to-translate-this-wins-blog-kudos/</link>
		<comments>http://www.cameroncooke.com/2009/08/06/first-person-to-translate-this-wins-blog-kudos/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 18:56:43 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Barcode]]></category>
		<category><![CDATA[QR Code]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=100</guid>
		<description><![CDATA[If you can read my latest blog post please post a comment with the translation for everyone else to see.

 ]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2009/08/06/first-person-to-translate-this-wins-blog-kudos/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The hard disk you&#8217;ve been waiting for&#8230;</title>
		<link>http://www.cameroncooke.com/2009/08/06/the-hard-disk-youve-been-waiting-for/</link>
		<comments>http://www.cameroncooke.com/2009/08/06/the-hard-disk-youve-been-waiting-for/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 14:36:32 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[HDD]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=67</guid>
		<description><![CDATA[Found this going through my photo library today. Quite amazing how technology has advanced.
A bargain at $3398!
 ]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2009/08/06/the-hard-disk-youve-been-waiting-for/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You know when software is crap when&#8230;</title>
		<link>http://www.cameroncooke.com/2009/07/29/you-know-when-software-is-crap-when/</link>
		<comments>http://www.cameroncooke.com/2009/07/29/you-know-when-software-is-crap-when/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 11:29:19 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Diagnostic]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>

		<guid isPermaLink="false">http://www.cameroncooke.com/?p=64</guid>
		<description><![CDATA[Today I was amazed. I was using Microsoft Office 2007 on my PC at work to document one of our products. I tried to perform a routine edit operation on some text when Office crashed. Kindly it re-launched and recovered my work. So I attempted to perform the same edit operation again. Guess what?&#8230; It [...]]]></description>
		<wfw:commentRss>http://www.cameroncooke.com/2009/07/29/you-know-when-software-is-crap-when/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
