<?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>Steve Durr</title>
	<atom:link href="http://www.stevedurr.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevedurr.co.uk</link>
	<description></description>
	<lastBuildDate>Wed, 18 May 2011 11:58:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Short Hand Font Tag</title>
		<link>http://www.stevedurr.co.uk/2011/05/css-short-hand-font-tag/</link>
		<comments>http://www.stevedurr.co.uk/2011/05/css-short-hand-font-tag/#comments</comments>
		<pubDate>Tue, 17 May 2011 20:26:34 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[shorthand]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=267</guid>
		<description><![CDATA[Up until now I have never bothered with the css font shorthand attribute, always opting to use the individual attributes instead, solely due to my lack of understanding of how it is structured. After coming across it in some web updates I have recently completed I decided to investigate and understand what it all means.
The... <a href="http://www.stevedurr.co.uk/2011/05/css-short-hand-font-tag/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>Up until now I have never bothered with the css font shorthand attribute, always opting to use the individual attributes instead, solely due to my lack of understanding of how it is structured. After coming across it in some web updates I have recently completed I decided to investigate and understand what it all means.</p>
<p>The css font tag looks more baffling than other css shorthand tags, take the border tag for example:</p>
<pre class="brush: css; collapse: false; first-line: 1; gutter: true; highlight: [1]; title: ;">
border : 1px solid #000;
</pre>
<p>A 1 pixel solid black border, easy. Now take the font tag shorthand..</p>
<pre class="brush: css; collapse: false; first-line: 1; gutter: true; highlight: [1]; title: CSS Font Tag Breakdown;">
font: italic small-caps bold 12px/18px Verdana, Arial, serif;
</pre>
<p>What on Earth is that all about&#8230; Well, if we break it up we see that we have:</p>
<p>Style, Variant, Weight, Size / Line Height and Family.</p>
<p>The first 3 aspects, Style, Variant and Weight are all optional as is the line height. If line height is omitted then so is the forward slash that splits size and line height. The family must always come last and along with the size is mandatory.</p>
<p>I had no idea it was that simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2011/05/css-short-hand-font-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and mySQL dates</title>
		<link>http://www.stevedurr.co.uk/2011/03/php-and-mysql-dates/</link>
		<comments>http://www.stevedurr.co.uk/2011/03/php-and-mysql-dates/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 11:06:48 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=255</guid>
		<description><![CDATA[Normally this is not an issue but a recent project I was working on meant that the normal way of using dates has caused an issue. When converting a date that is formatted dd/mm/yyyy to yyyy-mm-dd hh:mm:ss didn&#8217;t work the way I wanted it to. A way round this is to format the UK date... <a href="http://www.stevedurr.co.uk/2011/03/php-and-mysql-dates/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>Normally this is not an issue but a recent project I was working on meant that the normal way of using dates has caused an issue. When converting a date that is formatted <strong>dd/mm/yyyy</strong> to <strong>yyyy-mm-dd hh:mm:ss</strong> didn&#8217;t work the way I wanted it to. A way round this is to format the UK date in to the US date format then in to the mySQL datetime format and of course vice-versa on retrieving the date from the database.</p>
<h2>Here&#8217;s how</h2>
<p>I created 2 functions, php_to_mysql() and mysql_to_php</p>
<p><strong>PHP to mySQL</strong></p>
<p><code>function phptomysql($php)<br />
	{<br />
		//Break the date up in to an array<br />
		$php = explode("/", $php);<br />
		//Re=arrange the date in to the US format<br />
		$php = $php[1] . "/" . $php[0] . "/" . $php[2];<br />
		//Convert the date (string) in to php time format<br />
		$php = strtotime($php);<br />
		//Format the time value in to a php variable in the format of mySQL datetime field<br />
		$php = date('Y-m-d H:i:s', $php);<br />
		return $php;<br />
	}</code></p>
<p><strong>mySQL to PHP</strong></p>
<p><code>function mysqltophp($mysql)<br />
	{<br />
		//Change the mySQL date to a time value.<br />
		$mysql = strtotime($mysql);<br />
		//Format the time value to the UK date format<br />
		$mysql = date("d/m/Y", $mysql);<br />
		return $mysql;<br />
	}<br />
</code>
<p>This one is much simplier. As we do not need to involve a re-arrangment of the date from US to UK, we can just format the time value to the UK format straight off.</p>
<h2>Example</h2>
<p><a href="http://www.stevedurr.com/snippets/php/dates/date-formatting.php" title="PHP date formatting by Steve Durr">View the date formatting in operation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2011/03/php-and-mysql-dates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add the Facebook like button to your website</title>
		<link>http://www.stevedurr.co.uk/2010/06/how-to-add-the-facebook-like-button-to-your-website/</link>
		<comments>http://www.stevedurr.co.uk/2010/06/how-to-add-the-facebook-like-button-to-your-website/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 19:55:46 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=221</guid>
		<description><![CDATA[I have recently added the facebook &#8220;like&#8221; button to a website of mine, iPods Repaired, so I thought I would outline the process.
One thing that got me was how simple it was. Facebook provide the tools to build the button its just a matter of adding the code to the website. The tricky bit was... <a href="http://www.stevedurr.co.uk/2010/06/how-to-add-the-facebook-like-button-to-your-website/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>I have recently added the facebook &#8220;like&#8221; button to a website of mine, <a href="http://www.ipodsrepaired.co.uk">iPods Repaired</a>, so I thought I would outline the process.</p>
<p>One thing that got me was how simple it was. Facebook provide the tools to build the button its just a matter of adding the code to the website. The tricky bit was finding the right information, lets face it, having Facebook in a search term throws back thousands of results.</p>
<p>I came across the <a href="http://developers.facebook.com/docs/reference/plugins/like">Facebook developers page</a> and it really couldn&#8217;t have been easier. Of the 2 options available I chose the javascript one. The first option and probably the easier of the 2 is using an iFrame but something in me just says no to iFrames if possible, plus I&#8217;m not one for the easy route.</p>
<p>There are 2 pieces of code to add to your site, the button code and the javascript code.</p>
<p>Firstly we need the button code so all thats required is to fill out the little form (see picture 1.1) and click the get code button.<br />
<div class="wp-caption aligncenter" style="width: 294px"><img alt="" src="http://www.stevedurr.co.uk/wp-content/uploads/2010/06/facebook-like-button.png" title="Adding the Facebook like button" width="284" height="513" /><p class="wp-caption-text">Picture 1.1 - Adding the like button</p></div></p>
<p>Now this will only really benefit one page as the url is fixed in the widget. If you want to add it to multiple pages with each page having its own unique button then you need to amend the code slightly. Using PHP this is done by getting the current uri and url as follows.</p>
<p>The code will look something like this:</p>
<div class="code">&lt;fb :like href=&#8221;Your URL&#8221; layout=&#8221;standard&#8221; show-faces=&#8221;false&#8221; width=&#8221;450&#8243; action=&#8221;like&#8221; colorscheme=&#8221;light&#8221; /&gt;</div>
<p>Add the following just above the point where the face book code will go and change the &#8220;Your URL&#8221; bit for &lt;?=$url;?&gt;.</p>
<div class="code">
&lt;?php<br />
&nbsp;&nbsp;&nbsp;&nbsp;$url = &#8220;http&#8221; . ((!empty($_SERVER['HTTPS'])) ? &#8220;s&#8221; : &#8220;&#8221;) . &#8220;://&#8221;;<br />
&nbsp;&nbsp;&nbsp;&nbsp;$url .= $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];<br />
?&gt;
</div>
<p>This code gets the current page uri so each page the button sits on has its own unique &#8220;Like&#8221; option. This works well for pages where content is significantly different and specific, like an e-commerce site or blog.</p>
<p>Now the second part is the javascript code:</p>
<div class="code">
&lt;div id=&#8221;fb-root&#8221;&gt;&lt;/div&gt;<br />
&lt;script&gt;<br />
&nbsp;&nbsp;window.fbAsyncInit = function() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;FB.init({appId: &#8216;your app id&#8217;, status: true, cookie: true,<br />
&nbsp;&nbsp;&nbsp;&nbsp;xfbml: true});<br />
&nbsp;&nbsp;};<br />
&nbsp;&nbsp;(function() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;var e = document.createElement(&#8217;script&#8217;); e.async = true;<br />
&nbsp;&nbsp;&nbsp;&nbsp;e.src = document.location.protocol +<br />
&nbsp;&nbsp;&nbsp;&nbsp; &#8216;//connect.facebook.net/en_US/all.js&#8217;;<br />
&nbsp;&nbsp;&nbsp;&nbsp;document.getElementById(&#8216;fb-root&#8217;).appendChild(e);<br />
&nbsp;&nbsp;}());<br />
&lt;/script&gt;
</div>
<p>This little snippet can be found on the Facebook <a href="http://developers.facebook.com/docs/reference/javascript/">developer site</a> too. Just add both pieces of code to your website and there you go!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2010/06/how-to-add-the-facebook-like-button-to-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Live Preview Window in Coda</title>
		<link>http://www.stevedurr.co.uk/2010/03/live-preview-window-in-coda/</link>
		<comments>http://www.stevedurr.co.uk/2010/03/live-preview-window-in-coda/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 09:42:57 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Coda]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=213</guid>
		<description><![CDATA[Live preview window plugin for Panic&#8217;s Coda
As a web developer and amateur geek I am always looking for ways to improve and speed up my workflow. When I first moved over to the Mac I was also looking for ways to ditch Dreamweaver as my application of choice for web development.
Enter stage left Coda by... <a href="http://www.stevedurr.co.uk/2010/03/live-preview-window-in-coda/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<h2>Live preview window plugin for Panic&#8217;s Coda</h2>
<p>As a web developer and amateur geek I am always looking for ways to improve and speed up my workflow. When I first moved over to the Mac I was also looking for ways to ditch Dreamweaver as my application of choice for web development.</p>
<p>Enter stage left <a href="http://www.panic.com/coda">Coda by Panic</a>. A one window development application that covers everything&hellip;well almost.</p>
<p>Courtesy of a <a href="http://twitter.com/nettuts">nettuts</a> twitter post I came across a plugin for coda which gives this awesome app a live preview window</p>
<p>The plug-in is from <a href="http://menumachine.com/blog/2008/12/a-live-preview-window-for-coda/">Steam Engine</a> and can be downloaded from <a href="http://menumachine.com/download/Lively1.0.zip">http://menumachine.com/download/Lively1.0.zip</a></p>
<p>Great work Rob</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2010/03/live-preview-window-in-coda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing web fonts using Cufon</title>
		<link>http://www.stevedurr.co.uk/2010/01/changing-web-fonts-using-cufon/</link>
		<comments>http://www.stevedurr.co.uk/2010/01/changing-web-fonts-using-cufon/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 11:54:18 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Cufon]]></category>
		<category><![CDATA[Fonts]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=196</guid>
		<description><![CDATA[Using Cufon to replace fonts
I have just been introduced to the world of font replacement using cufon. I had come across sIFR but found it complex and difficult to implement. To be  honest I had seen mentions of cufon but only in the last few days had I used it.
As with all the jQuery... <a href="http://www.stevedurr.co.uk/2010/01/changing-web-fonts-using-cufon/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<h2>Using Cufon to replace fonts</h2>
<p>I have just been introduced to the world of font replacement using cufon. I had come across sIFR but found it complex and difficult to implement. To be  honest I had seen mentions of cufon but only in the last few days had I used it.</p>
<p>As with all the jQuery I have come across it is very easy to implement, in the following steps I will show you how.</p>
<ol id="steps">
<li>Decide on and obtain the font you are going to use. For this example I am using <span class="font">Pilgi</span></li>
<li>Visit the following web site <a href="http://cufon.shoqolate.com/generate/">Cufón generator</a></li>
<li>Fill out all the options as required and generate your font</li>
<li>Download the Cufón script from the above site or from <a href="#">here</a></li>
<li>Add the 2 scripts to your site and link to them within your web page.</li>
<li>Once the scripts have been uploaded to your site you need to add them along with a line of code to tell the Cufon script that the DOM is ready. This is needed for Internet Explorer, yeah its IE again</li>
</ol>
<p>Example:</p>
<ol>
<li>&lt;script type=&#8221;text/javascript&#8221;&gt; Cufon.now();&lt;/script&gt;</li>
<li>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;cufon.js&#8221;&gt;&lt;/script&gt;</li>
<li>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;Pilgi_400.font.js&#8221;&gt;&lt;/script&gt;</li>
</ol>
<p>Rememeber that javascript files go just above the closing body tag.</p>
<p>Add the following script to the page depending on your choice</p>
<ol>
<li>The example I am using is a span with class font to show the Cufón in action<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;Cufon.replace(["span.font"]);</li>
<li>You could do something like:</li>
</ol>
<p><code>&lt;script type="text/javascript"&gt;Cufon.replace(["h1"]);&gt;&lt;/script&gt;</code></p>
<p>This applies the Cufón to all the h1 tags on the page.</p>
<p><span class="font">So, this is a span with a class of font, showing the Cufon in action</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2010/01/changing-web-fonts-using-cufon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incorrect MIME type for Javascript</title>
		<link>http://www.stevedurr.co.uk/2009/12/incorrect-mime-type-for-javascript/</link>
		<comments>http://www.stevedurr.co.uk/2009/12/incorrect-mime-type-for-javascript/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 08:40:43 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[MIME]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=188</guid>
		<description><![CDATA[I have recently noticed the following &#8220;error&#8221; appearing when using the element inspector in Safari.
Resource interpreted as other but transferred with MIME type text/javascript.
Although this doesn&#8217;t appear to cause any visual or operational defects on the page it is something I wanted to remove.
The way to fix it is to add the following to the... <a href="http://www.stevedurr.co.uk/2009/12/incorrect-mime-type-for-javascript/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>I have recently noticed the following &#8220;error&#8221; appearing when using the element inspector in Safari.</p>
<p><strong>Resource interpreted as other but transferred with MIME type text/javascript.</strong></p>
<p>Although this doesn&#8217;t appear to cause any visual or operational defects on the page it is something I wanted to remove.</p>
<p>The way to fix it is to add the following to the head of the page.</p>
<p><code>&lt;meta http-equiv="content-script-type" content="text/javascript"&gt;</code></p>
<p>Hope this helps others</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2009/12/incorrect-mime-type-for-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back to blogging&#8230;</title>
		<link>http://www.stevedurr.co.uk/2009/11/back-to-blogging/</link>
		<comments>http://www.stevedurr.co.uk/2009/11/back-to-blogging/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 17:16:54 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=180</guid>
		<description><![CDATA[Been out of sync with my technical stuff for a while. Got so much going on not had chance to get some content on here. Over the next few months will see a lot of my current projects finishing and I can spend more time writing some quality content and developing my skills, development and... <a href="http://www.stevedurr.co.uk/2009/11/back-to-blogging/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>Been out of sync with my technical stuff for a while. Got so much going on not had chance to get some content on here. Over the next few months will see a lot of my current projects finishing and I can spend more time writing some quality content and developing my skills, development and writing.</p>
<p>In the mean time I have been writing over at <a href="http://www.silenceistalking.co.uk">Words Without Volume</a> &#8211; My own none IT blog. I have a Apple mac blog over at <a href="http://www.stephendurr.com">My Apple Blog</a>.</p>
<p>I am currently working on a new site for Ultra Print Ltd. They are the UK&#8217;s largest Bespoke Canvas printers and were in need of a new site. Having previously worked with Ultra Print the job has progressed very quickly and is almost near completion. </p>
<p>Other work / projects include:</p>
<ul>
<li>My own portfolio &#8211; Redevelopment</li>
<li>A sporting dates calendar site</li>
<li>An iPod Repair site &#8211; Redevelopment</li>
<li>A new iPod Repair Shop &#8211; An additional to the above</li>
</ul>
<p>As you can see a lot going on but I will be posting more soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2009/11/back-to-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Meesage boxes</title>
		<link>http://www.stevedurr.co.uk/2009/06/css-meesage-boxes/</link>
		<comments>http://www.stevedurr.co.uk/2009/06/css-meesage-boxes/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:54:04 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=135</guid>
		<description><![CDATA[More and more I find myself at a dead end when browsing sites with no information or instruction as to when or indeed what error has occurred. So I decided to look in to some simple message and error boxes.
I have recently finished a project at work using the Symfony PHP framework. Within the project... <a href="http://www.stevedurr.co.uk/2009/06/css-meesage-boxes/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>More and more I find myself at a dead end when browsing sites with no information or instruction as to when or indeed what error has occurred. So I decided to look in to some simple message and error boxes.</p>
<p>I have recently finished a project at work using the Symfony PHP framework. Within the project I was able to add some very clever pop up message and error boxes. The ones I used for the project came with the addition of jQuery to animate there appearance but I thought about standard css ones. </p>
<p>My searching led me to this nice little tutorial from <a href="http://www.jankoatwarpspeed.com">Janko at Warp Speed</a><br />
The messages come in the form of Success, Information, Warning and Error.</p>
<h3>1. Success messages</h3>
<p><img src="http://jankoatwarpspeed.com/image.axd?picture=WindowsLiveWriter/CSSMessageBoxesfordifferentmessagetypes_D544/error_03_3.png" border="0" alt="error_03" width="555" height="58" /></p>
<h3>2. Information messages</h3>
<p><img src="http://jankoatwarpspeed.com/image.axd?picture=WindowsLiveWriter/CSSMessageBoxesfordifferentmessagetypes_D544/error_04_3.png" border="0" alt="error_04" width="555" height="69" /></p>
<h3>3. Warning messages</h3>
<p><img src="http://jankoatwarpspeed.com/image.axd?picture=WindowsLiveWriter/CSSMessageBoxesfordifferentmessagetypes_D544/error_05_3.png" border="0" alt="error_05" width="555" height="57" /></p>
<h3>4. Error messages</h3>
<p><img src="http://jankoatwarpspeed.com/image.axd?picture=WindowsLiveWriter/CSSMessageBoxesfordifferentmessagetypes_D544/error_01_3.png" border="0" alt="error_01" width="555" height="62" /></p>
<p>The original article can be found here <a href="http://www.jankoatwarpspeed.com/post/2008/05/22/CSS-Message-Boxes-for-different-message-types.aspx">CSS Message boxes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2009/06/css-meesage-boxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony</title>
		<link>http://www.stevedurr.co.uk/2009/05/symfony/</link>
		<comments>http://www.stevedurr.co.uk/2009/05/symfony/#comments</comments>
		<pubDate>Tue, 19 May 2009 12:38:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=99</guid>
		<description><![CDATA[I am currently working on a few projects using the symfony php framework. Having never used a php framework before, although had a little play with cakePHP I am looking forward to developing some OOP code.
I am using symfony at work so this should help me along quite nicely.
I am aiming to add some symfony... <a href="http://www.stevedurr.co.uk/2009/05/symfony/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>I am currently working on a few projects using the symfony php framework. Having never used a php framework before, although had a little play with cakePHP I am looking forward to developing some OOP code.</p>
<p>I am using symfony at <a href="http://www.niddocks.co.uk">work</a> so this should help me along quite nicely.</p>
<p>I am aiming to add some symfony based articles to my blog shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2009/05/symfony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Job</title>
		<link>http://www.stevedurr.co.uk/2009/03/new-job/</link>
		<comments>http://www.stevedurr.co.uk/2009/03/new-job/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 21:30:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.stevedurr.co.uk/?p=128</guid>
		<description><![CDATA[Well tomorrow is the start of my new job with Niddocks Internet Solutions in Newark. From what I have seen so far they look like a very professional and organised company. I get a sense that there is a great emphasis on team work.
Here&#8217;s hoping that this role will turn out to be much better... <a href="http://www.stevedurr.co.uk/2009/03/new-job/">[read more]</a>]]></description>
			<content:encoded><![CDATA[<p>Well tomorrow is the start of my new job with Niddocks Internet Solutions in Newark. From what I have seen so far they look like a very professional and organised company. I get a sense that there is a great emphasis on team work.</p>
<p>Here&#8217;s hoping that this role will turn out to be much better than my last one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedurr.co.uk/2009/03/new-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

