<?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>Mark Hedley &#187; Development</title>
	<atom:link href="http://www.markhedley.co.uk/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markhedley.co.uk</link>
	<description>a.k.a. OX</description>
	<lastBuildDate>Mon, 31 Jan 2011 20:05:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>LESS &#8211; Leaner CSS</title>
		<link>http://www.markhedley.co.uk/development/less-leaner-css/</link>
		<comments>http://www.markhedley.co.uk/development/less-leaner-css/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 21:57:40 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=267</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>Adds lots of useful features for CSS, in fact why wasn&#8217;t it like this all along would have been things a lot easier and cleaner. LESS &#8211; Leaner CSS.]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>Adds lots of useful features for CSS, in fact why wasn&#8217;t it like this all along would have been things a lot easier and cleaner.</p>
<p><a href="http://lesscss.org/index.html">LESS &#8211; Leaner CSS</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/less-leaner-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simon York Handyman &#8211; new site</title>
		<link>http://www.markhedley.co.uk/development/simon-york-handyman-new-site/</link>
		<comments>http://www.markhedley.co.uk/development/simon-york-handyman-new-site/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 00:07:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=259</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>New site been developed providing handyman services to the York area. See www.simonyorkhandyman.co.uk for more information.]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p><a href="http://www.simonyorkhandyman.co.uk"><img class="alignright" src="http://www.simonyorkhandyman.co.uk/images/left1_04.png" alt="Simon York Handyman" width="162" height="126" /></a> New site been developed providing handyman services to the York area. See <a title="York Handyman Services " href="http://www.simonyorkhandyman.co.uk">www.simonyorkhandyman.co.uk</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/simon-york-handyman-new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Twitter RSS Processing</title>
		<link>http://www.markhedley.co.uk/development/simple-twitter-rss-processing/</link>
		<comments>http://www.markhedley.co.uk/development/simple-twitter-rss-processing/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 10:44:38 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=249</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>I required a simple feed from Twitter into www.MindOver-matter.co.uk/news.php. There are numerous examples around but a lot of them are very convoluted. Below is an simple code example. The function could of course be modifed to be generic whereby user info etc would be passed in. &#60;?php function parse_cache_feed($usernames, $limit) { $feed = "http://twitter.com/statuses/user_timeline/130211322.rss"; $xml [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>I required a simple feed from Twitter into <a href="http://www.MindOver-matter.co.uk/news.php">www.MindOver-matter.co.uk/news.php</a>. There are numerous examples around but a lot of them are very convoluted. Below is an simple code example. The function could of course be modifed to be generic whereby user info etc would be passed in.</p>
<pre>
&lt;?php

function parse_cache_feed($usernames, $limit) {
  $feed = "http://twitter.com/statuses/user_timeline/130211322.rss";
  $xml = new SimpleXMLElement(file_get_contents($feed));
  if (count($xml-&gt;channel-&gt;item) == 0)  {
?&gt;
          &lt;p class="tweet"&gt;
              Sorry but failed to connect to Twitter for latest updates,
              it is probably busy so try again later.
              Or look &lt;a href="http://www.twitter.com/MindOverMatter8"&gt;here&lt;/a&gt;
          &lt;/p&gt;
&lt;?php
  } else {
      foreach ($xml-&gt;channel-&gt;item as $item) {
          ?&gt;
          &lt;div class="calendar"&gt;
             &lt;div class="calendar-month"&gt;
                  &lt;?php echo date("M",strtotime($item-&gt;pubDate)) ?&gt;
             &lt;/div&gt;
             &lt;div class="calendar-day"&gt;
                  &lt;?php echo date("d",strtotime($item-&gt;pubDate)) ?&gt;
             &lt;/div&gt;
          &lt;/div&gt;
          &lt;p&gt;
            &lt;?php echo str_replace("MindOverMatter8:","",$item-&gt;description); ?&gt;
          &lt;/p&gt;
&lt;?php
      }
  }
} 

?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/simple-twitter-rss-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using site speed in web search ranking</title>
		<link>http://www.markhedley.co.uk/development/using-site-speed-in-web-search-ranking/</link>
		<comments>http://www.markhedley.co.uk/development/using-site-speed-in-web-search-ranking/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 10:09:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=247</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>Google as added yet another criteria to its algorithms to achieve good search ranking; speed of site. This can only be a good step in the right direction forcing designers and developers to ensure that their sites are optimized as much as possible. The article has a number of references to some good free tools [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>Google as added yet another criteria to its algorithms to achieve good search ranking; speed of site. This can only be a good step in the right direction forcing designers and developers to ensure that their sites are optimized as much as possible.</p>
<p>The article has a number of references to some good free tools to evaluate the speed of the site.</p>
<p>See  <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">Official Google Webmaster Central Blog: Using site speed in web search ranking</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/using-site-speed-in-web-search-ranking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mind Over Matter Hypnotherapy in West Yorkshire &#8211; unlock your potential</title>
		<link>http://www.markhedley.co.uk/development/mind-over-matter-hypnotherapy-in-west-yorkshire-unlock-your-potential/</link>
		<comments>http://www.markhedley.co.uk/development/mind-over-matter-hypnotherapy-in-west-yorkshire-unlock-your-potential/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:54:28 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=245</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>Would you like to live your life with better health, greater happiness and increased confidence and success?  Well you can make those positive changes with hypnosis!  You can live your life the way you&#8217;ve always wanted, releasing bad habits, fears, and removing the limitations that are holding you back? via Stop smoking or lose weight [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>Would you like to live your life with better health, greater happiness and increased confidence and success?  Well you can make those positive changes with hypnosis!  You can live your life the way you&#8217;ve always wanted, releasing bad habits, fears, and removing the limitations that are holding you back?</p>
<p>via <a href="http://www.mindover-matter.co.uk/index.php">Stop smoking or lose weight with hypnosis by Mind Over Matter Hypnotherapy in Wakefield, West Yorkshire &#8211; unlock your potential</a>.</p>
<p><a href="http://www.markonline.co.uk" title="website design and development in Mirfield, West Yorkshire.">Another great site by markOnline for all your website design and website development.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/mind-over-matter-hypnotherapy-in-west-yorkshire-unlock-your-potential/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Article On Structural Tags in HTML5</title>
		<link>http://www.markhedley.co.uk/development/useful-article-on-structural-tags-in-html5/</link>
		<comments>http://www.markhedley.co.uk/development/useful-article-on-structural-tags-in-html5/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 07:46:24 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=243</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>You can start to build your new site now and be future enabled when HTML5 is widely accepted. See Structural Tags in HTML5 &#8211; Ordered List.]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>You can start to build your new site now and be future enabled when HTML5 is widely accepted. See <a href="http://orderedlist.com/our-writing/resources/html-css/structural-tags-in-html5/">Structural Tags in HTML5 &#8211; Ordered List</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/useful-article-on-structural-tags-in-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IP Location API, database and fraud detection tools</title>
		<link>http://www.markhedley.co.uk/development/ip-location-api-database-and-fraud-detection-tools/</link>
		<comments>http://www.markhedley.co.uk/development/ip-location-api-database-and-fraud-detection-tools/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 15:41:20 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[IP Lookup]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=237</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>IPInfoDB  provides a number of services that could be useful when developing a website including: Web based IP geolocation lookup IP geolocation API (XML, JSON and CSV format) API that generate IP CIDR by country for iptables or htaccess blocklist E-commerce fraud detection API For example http://www.ipinfodb.com/ip_query.php?ip=82.27.34.78&#38;output=xml&#38;timezone=false will return the following XML. &#60;response&#62; &#60;ip&#62;82.27.34.78&#60;/ip&#62; &#60;status&#62;OK&#60;/status&#62; [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>IPInfoDB  provides a number of services that could be useful when developing a website including:</p>
<ul>
<li>Web based IP geolocation lookup</li>
<li>IP geolocation API (XML, JSON  and CSV format)</li>
<li>API that generate IP CIDR by  country for iptables or htaccess blocklist</li>
<li>E-commerce fraud detection API</li>
</ul>
<p>For example http://www.ipinfodb.com/ip_query.php?ip=82.27.34.78&amp;output=xml&amp;timezone=false will return the following XML.</p>
<p>&lt;response&gt;<br />
 &lt;ip&gt;82.27.34.78&lt;/ip&gt;<br />
 &lt;status&gt;OK&lt;/status&gt;<br />
 &lt;countrycode&gt;GB&lt;/countrycode<br />
 &lt;countryname&gt;United Kingdom&lt;/countryname&gt;<br />
 &lt;regioncode&gt;Q5&lt;/regioncode&gt;<br />
 &lt;regionname&gt;York&lt;/regionname&gt;<br />
 &lt;city&gt;Dewsbury&lt;/city&gt;<br />
 &lt;zippostalcode /&gt;<br />
 &lt;latitude&gt;53.7&lt;/latitude&gt;<br />
 &lt;longitude&gt;-1.6167&lt;/longitude&gt;<br />
&lt;/response&gt;</p>
<p>This could be useful in identifying who your local customers are and respond with an appropriate message. Likewise if they reside a distance away could tailor the message to suit, for example you offer postage to that location</p>
<p>See <a title="IP" href="http://www.ipinfodb.com">www.ipinfodb.com</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/ip-location-api-database-and-fraud-detection-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proper testing on older browsers!</title>
		<link>http://www.markhedley.co.uk/development/proper-testing-on-older-browsers/</link>
		<comments>http://www.markhedley.co.uk/development/proper-testing-on-older-browsers/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 15:07:42 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=235</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>There are a number of sites that provide a snapshot picture of a particular page of a website running on various version of browsers. But if you want to test your website thoroughly  SPOON.NET offers a solution. It allows you to run various browsers and versions  from the Spoon web site and other Spoon Servers. [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>There are a number of sites that provide a snapshot picture of a particular page of a website running on various version of browsers. But if you want to test your website thoroughly  SPOON.NET offers a solution.</p>
<p>It allows you to run various browsers and versions  from the Spoon web site and other Spoon Servers. To enable this requires an extension installing on your browser. It currently provides:</p>
<ul>
<li>IE  ver 6,7 and 8</li>
<li>Firefox ver 2, 3 and 3.5</li>
<li>Safari ver 3 and 4</li>
<li>Google Chrome</li>
<li>Opera ver 9 and 10</li>
</ul>
<p>Additionally it has other tools, games, utilities, applications etc</p>
<p>Try it, it works!</p>
<p><a href="http://spoon.net/Browsers/">Browser Sandbox &#8211; Run any browser from the web</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/proper-testing-on-older-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosted Testing of Web Sites</title>
		<link>http://www.markhedley.co.uk/development/hosted-testing-of-web-sites/</link>
		<comments>http://www.markhedley.co.uk/development/hosted-testing-of-web-sites/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 11:16:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Dreamweaver]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=217</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>There are other providers of this service but I like Adobe® BrowserLab. It is an online hosted service that lets you test the pages of your web site across a variety of web browsers and operating systems. The service works by taking screen shots of your web pages in different browsers, and then displaying them [...]]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>There are other providers of this service but I like Adobe® BrowserLab.</p>
<p>It is an online hosted service that lets you test the pages of your web site across a variety of web browsers and operating systems. The service works by taking screen shots of your web pages in different browsers, and then displaying them in the BrowserLab application window.</p>
<p>You can use BrowserLab as a standalone service, or integrated with Dreamweaver CS4. The standalone service lets you test pages that you&#8217;ve posted to a server within the context of a web browser. If you use BrowserLab as an integrated service with Dreamweaver, you can test your pages from within Dreamweaver without publishing your pages to a server.</p>
<p>BrowserLab supports the following browsers:</p>
<ul>
<li>Firefox 2.0 &#8211; Windows XP</li>
<li>Firefox 3.0 &#8211; Windows XP</li>
<li>Firefox 3.5 &#8211; Windows XP</li>
<li>Chrome 3.0 &#8211; Windows XP</li>
<li>Internet Explorer 6.0 &#8211; Windows XP</li>
<li>Internet Explorer 7.0 &#8211; Windows XP</li>
<li>Internet Explorer 8.0 &#8211; Windows XP</li>
<li>Safari 3.0 &#8211; Macintosh OS X</li>
<li>Safari 4.0 &#8211; Macintosh OS X</li>
<li>Firefox 2.0 &#8211; Macintosh OS X</li>
<li>Firefox 3.0 &#8211; Macintosh OS X</li>
<li>Firefox 3.5 &#8211; Macintosh OS X</li>
</ul>
<p><a href="https://browserlab.adobe.com/index.html#">Adobe® BrowserLab</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/hosted-testing-of-web-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dewsbury Beer Festival</title>
		<link>http://www.markhedley.co.uk/development/dewsbury-beer-festival/</link>
		<comments>http://www.markhedley.co.uk/development/dewsbury-beer-festival/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 12:38:45 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.markhedley.co.uk/?p=211</guid>
		<description><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/>Developed new website for Dewsbury Beer Festival which is on May 20th to 22nd at the Town Hall which is in the centre of the town. For more information - Dewsbury Beer Festival.]]></description>
			<content:encoded><![CDATA[<img src="http://www.markhedley.co.uk/wp-content/uploads/cat-icons/development.gif" width="64" height="64" alt="" title="Development" /><br/><p>Developed new website for Dewsbury Beer Festival which is on May 20th to 22nd at the Town Hall which is in the centre of the town. For more information - <a href="http://www.dewsburybeerfestival.co.uk/">Dewsbury Beer Festival</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhedley.co.uk/development/dewsbury-beer-festival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

