<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chris Tate-Davies</title>
	<atom:link href="http://www.christatedavies.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christatedavies.co.uk</link>
	<description>The homepage of Chris Tate-Davies</description>
	<lastBuildDate>Wed, 28 Jul 2010 15:00:50 +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>ThreadSMS &#8211; Review</title>
		<link>http://www.christatedavies.co.uk/2010/07/threadsms-review/</link>
		<comments>http://www.christatedavies.co.uk/2010/07/threadsms-review/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 14:54:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[ehandysoft]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[threadsms]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=100</guid>
		<description><![CDATA[My Nokia doesn&#8217;t have threaded SMS view &#8211; and its very annoying. So, after searching about for a suitable application for this, I came across ThreadSMS by eHandySoft (http://ehandysoft.com/threadsms.htm) Functionality: Quick to load, and quick to navigate. On my N97 mini the scrolling was very smooth and precise. The threads are loaded with contact pictures]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/07/threadsms-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading the MySQL binary log</title>
		<link>http://www.christatedavies.co.uk/2010/07/reading-the-mysql-binary-log/</link>
		<comments>http://www.christatedavies.co.uk/2010/07/reading-the-mysql-binary-log/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 15:28:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[binary log]]></category>
		<category><![CDATA[mysqlbinlog]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=97</guid>
		<description><![CDATA[Having MySQL dumping out binary logs is a very good failsafe for backup redundancy. But, how do you get any of the information out of them? If you know a time span that you need to investigate, then you can easily use the mysqlbinlog utility: mysqlbinlog --start-datetime="2010-07-27 14:30:00" --stop-datetime="2010-07-27 15:00:00" &#62; backup.txt This will export]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/07/reading-the-mysql-binary-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing the Zend_Application from a page</title>
		<link>http://www.christatedavies.co.uk/2010/07/accessing-the-zend_application-from-a-page/</link>
		<comments>http://www.christatedavies.co.uk/2010/07/accessing-the-zend_application-from-a-page/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 12:06:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=95</guid>
		<description><![CDATA[If, like me, you need to access some Zend_Application resources (such as multidb resources) &#8211; then you need a reference to the Zend_Application and the bootstrap. I use this: if (null == $this-&#62;_application) { $this-&#62;_application = Zend_Controller_Front::getInstance() -&#62;getParam('bootstrap'); }]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/07/accessing-the-zend_application-from-a-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieve email using regex</title>
		<link>http://www.christatedavies.co.uk/2010/06/retrieve-email-using-regex/</link>
		<comments>http://www.christatedavies.co.uk/2010/06/retrieve-email-using-regex/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 09:45:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[preg_match]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=90</guid>
		<description><![CDATA[This horrendous regular expression will parse a string and return a valid email address from it. $email = "&#60;'Freddy'&#62; fred@live.com"; preg_match('/[a-z0-9!#$%&#38;\'*+\/=?^_`{&#124;}~-]+(?:\\.[a-z0-9!#$%&#38;\'*+\/=?^_`{&#124;}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/', $email, $match); echo $match[0]; This will return: fred@live.com Basically, if you pass an array as the third parameter of the preg_match method, it will be filled with the preg_match results, and the first item of the]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/06/retrieve-email-using-regex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online regex -&gt; php tool</title>
		<link>http://www.christatedavies.co.uk/2010/06/online-regex-php-tool/</link>
		<comments>http://www.christatedavies.co.uk/2010/06/online-regex-php-tool/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 15:43:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=87</guid>
		<description><![CDATA[I&#8217;ve found an excellent online tool, where you can give it a regex, and it will spit out the PHP syntax for use with preg_replace, preg_match, etc. I&#8217;m forever getting &#8216;Unknown modifier&#8217; errors when trying to insert regex&#8217;s into my PHP code. This sorts it out for you. http://regex.larsolavtorvik.com/]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/06/online-regex-php-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I wrote one of the first social networking sites</title>
		<link>http://www.christatedavies.co.uk/2010/05/i-wrote-one-of-the-first-social-networking-sites/</link>
		<comments>http://www.christatedavies.co.uk/2010/05/i-wrote-one-of-the-first-social-networking-sites/#comments</comments>
		<pubDate>Thu, 13 May 2010 09:13:35 +0000</pubDate>
		<dc:creator>Chris Tate-Davies</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[fish-bar]]></category>
		<category><![CDATA[members]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=73</guid>
		<description><![CDATA[Its not a claim to fame, or a preempt to a court case to a &#8216;big hitter&#8217;, but back in the year 2000, when I was a fledgling junior programmer, I wrote an ASP web site based around a bunch of &#8216;buddies&#8217;. You could add people to your list, message them, upload a picture (just]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/05/i-wrote-one-of-the-first-social-networking-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upset City Fan</title>
		<link>http://www.christatedavies.co.uk/2010/05/upset-city-fan/</link>
		<comments>http://www.christatedavies.co.uk/2010/05/upset-city-fan/#comments</comments>
		<pubDate>Thu, 06 May 2010 09:08:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[premier league]]></category>
		<category><![CDATA[tottenham]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=68</guid>
		<description><![CDATA[Just had to post this, after last night&#8217;s game (http://bit.ly/blRGPf)]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/05/upset-city-fan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Ant to run on Windows 7 (64bit)</title>
		<link>http://www.christatedavies.co.uk/2010/04/getting-ant-to-run-on-windows-7-64bit/</link>
		<comments>http://www.christatedavies.co.uk/2010/04/getting-ant-to-run-on-windows-7-64bit/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 14:39:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[dbdeploy]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[PHPUnit]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=65</guid>
		<description><![CDATA[If like me, you use Ant to deploy builds, etc, and you have migrated to Windows 7 &#8211; you may well have troubles getting ant to run. It all worked flawlessly under Ubuntu, but Windows is a different beast &#8211; here&#8217;s a step by step guide to getting it working. 1) Install ant So, first]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/04/getting-ant-to-run-on-windows-7-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove svn folders from Ubuntu</title>
		<link>http://www.christatedavies.co.uk/2010/04/remove-svn-folders-from-ubuntu/</link>
		<comments>http://www.christatedavies.co.uk/2010/04/remove-svn-folders-from-ubuntu/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 16:02:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=60</guid>
		<description><![CDATA[When backing up a source code working copy, you don&#8217;t always want all the little .svn folders everywhere. You can &#8220;export&#8221; the working copy, or if you forgot, you have remove them all. Change the the folder containing the working copy (this is very important*) cd /home/username/www/sitename/ And then remove them all, recursively with this]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/04/remove-svn-folders-from-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco VPN client on Windows 7 64bit</title>
		<link>http://www.christatedavies.co.uk/2010/04/cisco-vpn-client-on-windows-7-64bit/</link>
		<comments>http://www.christatedavies.co.uk/2010/04/cisco-vpn-client-on-windows-7-64bit/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:18:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.christatedavies.co.uk/?p=58</guid>
		<description><![CDATA[If you&#8217;re trying to get Cisco VPN client installed on Windows 7 &#8211; 64bit then you may as well give up. I&#8217;ve tried just about every method discussed on the internet. However, http://www.shrew.net/download have a VPN client that will allow you to import your PCF file and it works!]]></description>
		<wfw:commentRss>http://www.christatedavies.co.uk/2010/04/cisco-vpn-client-on-windows-7-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
