<?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>Alex Blundell</title>
	<atom:link href="http://www.alexblundell.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alexblundell.com</link>
	<description>Individual iOS Developer</description>
	<lastBuildDate>Wed, 01 Feb 2012 15:26:02 +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>Updates due Soon</title>
		<link>http://www.alexblundell.com/2012/02/updates-due-soon/</link>
		<comments>http://www.alexblundell.com/2012/02/updates-due-soon/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 15:26:02 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=44</guid>
		<description><![CDATA[Last night I did a few improvements on the following two apps: Tennis - Updated to remove a major bug to do with the ball getting stuck to the racket. Sorry this took so long to update &#8211; I included a twitter button in the game so that you can keep up to date with [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I did a few improvements on the following two apps:</p>
<p><strong>Tennis </strong>- Updated to remove a major bug to do with the ball getting stuck to the racket. Sorry this took so long to update &#8211; I included a twitter button in the game so that you can keep up to date with latest developments &amp; provide an easy way to contact me in future.</p>
<p><strong>iTalk Messenger Lite</strong> - I&#8217;ve noticed that a lot of people are downloading this every day, and so have included an option to remove the adverts.</p>
<p>I&#8217;ll let you know when these go live &#8211; hopefully by the end of the week, but when is anyones guess.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2012/02/updates-due-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Snippet: While loops (PHP)</title>
		<link>http://www.alexblundell.com/2011/09/code-snippet-while-loops-php/</link>
		<comments>http://www.alexblundell.com/2011/09/code-snippet-while-loops-php/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 21:25:47 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=40</guid>
		<description><![CDATA[If you want to organise or display data on a website, the best way is the php function &#8216;while&#8217;. Example of usage: This code prints out the numbers 0 through 6 (0123456). Advancing this, you could have an array with 3 values in, and call them up like this: This code gives the following output: [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to organise or display data on a website, the best way is the php function &#8216;while&#8217;. Example of usage:</p>
<pre class="brush: cpp; title: ; notranslate">$i = 0;

while($i &lt;= 6) {

echo $i;

$i++;

}</pre>
<p>This code prints out the numbers 0 through 6 (0123456). Advancing this, you could have an array with 3 values in, and call them up like this:</p>
<pre class="brush: cpp; title: ; notranslate">$array = array('one', 'two', 'three');

$i = 0; // Remember Arrays start at 0

while($i &lt;= 2) { // After I reaches 2, this loop stops - that gives the three values

echo $array[$i];

echo &quot;&lt;br&gt;&quot;; // html code for line break

$i++;

}</pre>
<p>This code gives the following output:</p>
<pre class="brush: cpp; title: ; notranslate">one

two

three</pre>
<p>I&#8217;ll advance on this later, but for now &#8211; it&#8217;s late.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/09/code-snippet-while-loops-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Snippet: Getting the current frame of a UIViewAnimation</title>
		<link>http://www.alexblundell.com/2011/09/code-snippet-getting-the-current-frame-of-a-uiviewanimation/</link>
		<comments>http://www.alexblundell.com/2011/09/code-snippet-getting-the-current-frame-of-a-uiviewanimation/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 10:10:29 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=38</guid>
		<description><![CDATA[I&#8217;ve got this information whilst coding Navigate Nigel. The issue I was having was when checking for the current frame of a UIImageView, it would return the end point of the UIViewAnimation. This is because Core Animation sets the frame to the end point, then deals with the animation. To get round this, it&#8217;s just [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got this information whilst coding Navigate Nigel. The issue I was having was when checking for the current frame of a UIImageView, it would return the end point of the UIViewAnimation. This is because Core Animation sets the frame to the end point, then deals with the animation. To get round this, it&#8217;s just one bit of code. In the code, I have named the object I am checking the frame for as &#8220;view&#8221; &#8211; this could count for any object in your application.</p>
<pre class="brush: cpp; title: ; notranslate">[[view.layer presentationLayer] frame]</pre>
<p>And that&#8217;s all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/09/code-snippet-getting-the-current-frame-of-a-uiviewanimation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All the books turned up..</title>
		<link>http://www.alexblundell.com/2011/08/all-the-books-turned-up/</link>
		<comments>http://www.alexblundell.com/2011/08/all-the-books-turned-up/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 14:17:32 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=36</guid>
		<description><![CDATA[Here&#8217;s the books i&#8217;ve got recently, and how you can get them yourselves. Not yet read through them. The Android Developer&#8217;s Cookbook C: A Reference Manual Introduction To Algorithms Java: Just In Time Had these books for a while &#8211; in fact, bought them in Australia whilst on holiday. These have been really useful. The [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the books i&#8217;ve got recently, and how you can get them yourselves. Not yet read through them.</p>
<ul>
<li><a href="http://www.amazon.co.uk/gp/product/0321741234/ref=as_li_ss_tl?ie=UTF8&amp;tag=goplgame-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0321741234" target="_blank">The Android Developer&#8217;s Cookbook</a></li>
<li><a href="http://www.amazon.co.uk/gp/product/013089592X/ref=as_li_ss_tl?ie=UTF8&amp;tag=goplgame-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=013089592X" target="_blank">C: A Reference Manual</a></li>
<li><a href="http://www.amazon.co.uk/gp/product/0262533057/ref=as_li_ss_tl?ie=UTF8&amp;tag=goplgame-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0262533057" target="_blank">Introduction To Algorithms</a></li>
<li><a href="http://www.amazon.co.uk/gp/product/1848900252/ref=as_li_ss_tl?ie=UTF8&amp;tag=goplgame-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1848900252" target="_blank">Java: Just In Time</a></li>
</ul>
<div>Had these books for a while &#8211; in fact, bought them in Australia whilst on holiday. These have been really useful.</div>
<div>
<ul>
<li><a href="http://www.amazon.co.uk/gp/product/0321659570/ref=as_li_ss_tl?ie=UTF8&amp;tag=goplgame-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0321659570" target="_blank">The iPhone Developer&#8217;s Cookbook</a></li>
<li><a href="http://www.amazon.co.uk/gp/product/1430233001/ref=as_li_ss_tl?ie=UTF8&amp;tag=goplgame-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1430233001" target="_blank">Business of iPhone and iPad App Development</a></li>
</ul>
<div>All links will take you to the Amazon UK website. If you&#8217;re in another country, just replace &#8220;.co.uk&#8221; with your own country extension. (i.e.. .com, .fr)</div>
</div>
<div>Off to do some reading..</div>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/all-the-books-turned-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just got myself a HP Touchpad on the cheap..</title>
		<link>http://www.alexblundell.com/2011/08/just-got-myself-a-hp-touchpad-on-the-cheap/</link>
		<comments>http://www.alexblundell.com/2011/08/just-got-myself-a-hp-touchpad-on-the-cheap/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 22:23:39 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Mini Posts]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=34</guid>
		<description><![CDATA[Well, as I&#8217;m sure you&#8217;ve heard, HP are discontinuing webOS and the same goes for the devices using it. In the US, the price for the 16GB version was slashed to $99, a saving of about $300. In the UK, HP announced earlier this week that they were slashing the prices from £349 to £89. [...]]]></description>
			<content:encoded><![CDATA[<p>Well, as I&#8217;m sure you&#8217;ve heard, HP are discontinuing webOS and the same goes for the devices using it. In the US, the price for the 16GB version was slashed to $99, a saving of about $300. In the UK, HP announced earlier this week that they were slashing the prices from £349 to £89. This, of course, caused consumers from all over the UK to source one of these for themselves. Turns out, they&#8217;d sold out by tuesday night. I was too late.</p>
<p>Or so I thought&#8230;</p>
<p>As I went into work this evening, I checked the stock levels of them, and surprisingly we had 80 in stock! I grabbed one straight away, and after about an hour, we had none. Turns out we have some of the 32GB models still, so I think i&#8217;ll get a couple of those too tomorrow. Anyway, with discount, it came to £78.</p>
<p>I&#8217;ll post again once I collect it/them on Thursday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/just-got-myself-a-hp-touchpad-on-the-cheap/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Got me some books&#8230;</title>
		<link>http://www.alexblundell.com/2011/08/got-me-some-books/</link>
		<comments>http://www.alexblundell.com/2011/08/got-me-some-books/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 11:25:40 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Mini Posts]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/2011/08/got-me-some-books/</guid>
		<description><![CDATA[Got one more coming &#8211; &#8220;The Android Developer&#8217;s Cookbook&#8221;. From that, i&#8217;ll decide whether I want to move into Android development as well. I took the image with an iPad &#8211; I can&#8217;t get over how they can call it a HD camera when it&#8217;s as grainy as it is.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexblundell.com/wp-content/uploads/2011/08/20110826-122238.jpg"><img src="http://www.alexblundell.com/wp-content/uploads/2011/08/20110826-122238.jpg" alt="" class="alignnone size-full" /></a><br/><br />
Got one more coming &#8211; &#8220;The Android Developer&#8217;s Cookbook&#8221;. From that, i&#8217;ll decide whether I want to move into Android development as well. </p>
<p>I took the image with an iPad &#8211; I can&#8217;t get over how they can call it a HD camera when it&#8217;s as grainy as it is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/got-me-some-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS Developer Websites (@lcn_com)</title>
		<link>http://www.alexblundell.com/2011/08/ios-developer-websites-lcn_com/</link>
		<comments>http://www.alexblundell.com/2011/08/ios-developer-websites-lcn_com/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 10:51:52 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=28</guid>
		<description><![CDATA[So, you&#8217;ve started to develop applications, but you don&#8217;t know who to use for your website etc? Personally, I use a VPS from www.lcn.com. A VPS (Virtual Private Server) may be overkill for your needs, but if you&#8217;re serious about iPhone development, you&#8217;ll need one. If you&#8217;re creating and hosting your own achievement/leaderboard system, you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>So, you&#8217;ve started to develop applications, but you don&#8217;t know who to use for your website etc? Personally, I use a VPS from www.lcn.com. A VPS (Virtual Private Server) may be overkill for your needs, but if you&#8217;re serious about iPhone development, you&#8217;ll need one. If you&#8217;re creating and hosting your own achievement/leaderboard system, you&#8217;ll enjoy the flexibility of a VPS much more. You can also make it a lot more secure than shared hosting, and it&#8217;s much, much more reliable &#8211; especially with LCN.</p>
<p>I&#8217;ve used all sorts of different VPS providers &#8211; BurstNET, QualityServers, 123Systems &#8211; but in my opinion, none of them have lived up to expectations as LCN have. It&#8217;s probably to do with the fact that the server just works &#8211; i&#8217;ve had 0 downtime since I created a VPS with them 3 months ago. The same can&#8217;t be said at all for the other 3 providers i&#8217;ve used &#8211; there always seemed to be some sort of urgent maintenance, or moving between servers. They didn&#8217;t seem like stable companies (with the exception of BurstNET, where there&#8217;s just too many people on one node). With LCN, you&#8217;re paying around 6x the cost for an equivalent server, but you&#8217;re getting 1000x the stability and support.<span id="more-28"></span></p>
<p>With the one VPS I have with them, I host 3 of my own sites &#8211; but I also feel confident enough to host other peoples websites (clients) on the same VPS because I know that it just works. I&#8217;m conscious that this has become more of a review than an advice article, but I truly believe that, at least if you live in the UK, you should use LCN for your requirements. If you live outside of the UK (in the US, for example) i&#8217;d recommend Rackspace &#8211; not that i&#8217;ve ever used them, but I know they are there for the long run, and not about to switch servers.</p>
<p>One more story with BurstNET to finish off, and this is the reason I switched to LCN &#8211; I went on a family holiday to Australia, and literally the day I got there (just got off the flight, went to stay with family, and turned the MacBook on) I had an email from BurstNET that all my data was lost from my VPS, and that was that. Not because it was overdue, but because there was &#8220;a minor issue with the VPS control panel, ePortal, which caused the data on the VPS to be lost&#8221;. That pretty much sums up exactly what BurstNET value their customers data at. Anyway, luckily I had backups which were accessible, and I started the slow process of rebuilding the server to what it was &#8211; not to mention waiting for the domain names to propagate to the new IP&#8217;s.</p>
<p>That&#8217;s all &#8211; basically, use LCN for your website. I do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/ios-developer-websites-lcn_com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS Beginner Series: UIAlertViews</title>
		<link>http://www.alexblundell.com/2011/08/ios-beginner-series-uialertviews/</link>
		<comments>http://www.alexblundell.com/2011/08/ios-beginner-series-uialertviews/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 09:11:14 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.alexblundell.com/?p=22</guid>
		<description><![CDATA[This tutorial marks the launch of the beginner iOS tutorial series. UIAlertViews are the blue boxes that pop up in the middle of the screen. They look like the image on the left hand side. Standard UIAlertViews have 3 components that are editable by the developer &#8211; there are some advanced things people have done, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexblundell.com/wp-content/uploads/2011/08/alertview1.png"><img class="alignleft size-full wp-image-24" style="margin-left: 10px; margin-right: 10px;" title="UIAlertView" src="http://www.alexblundell.com/wp-content/uploads/2011/08/alertview1.png" alt="UIAlertView" width="293" height="149" /></a>This tutorial marks the launch of the beginner iOS tutorial series. UIAlertViews are the blue boxes that pop up in the middle of the screen. They look like the image on the left hand side.</p>
<p>Standard UIAlertViews have 3 components that are editable by the developer &#8211; there are some advanced things people have done, such as add sliders etc, but it&#8217;s not standard interface procedure and it doesn&#8217;t look that good. The components are the title, which is shown in bold at the top of the alert, the message, which is the text in the middle &#8211; The alert view expands in height if the message is too long, and the buttons. In this first part of the series i&#8217;ll explain how to launch one of these UIAlertViews with 1 button which dismisses the alert.</p>
<p>Firstly, set up a new &#8220;View-based Application&#8221; project in Xcode. Set the product name to whatever you want &#8211; i&#8217;ll be setting mine to &#8220;UIAlertView App&#8221;. Leave everything else as default.</p>
<p>Once the project has loaded, select &#8220;{Your App Name}ViewController.m&#8221; You should see a bunch of code in the right hand side. Find this function:</p>
<pre class="brush: cpp; title: ; notranslate">-(void)viewDidLoad </pre>
<p>It will be commented out, and show green. To un-comment it, remove these two markings:</p>
<pre class="brush: cpp; title: ; notranslate"> /*    ...   */</pre>
<p>They&#8217;ll wrap round the viewDidLoad function. Once you&#8217;ve done that, add the following code before this line:</p>
<pre class="brush: cpp; title: ; notranslate">[super viewDidLoad];</pre>
<pre class="brush: cpp; title: ; notranslate">UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@&quot;Test&quot; message:@&quot;This is an alert view&quot;
delegate:nil cancelButtonTitle:@&quot;Dismiss&quot; otherButtonTitles:nil];
</pre>
<p>This initiates a new UIAlertView with title &#8220;Test&#8221;, message &#8220;This is an alert view&#8221; and button &#8220;Dismiss&#8221;. Once you&#8217;ve identified those in the above code, you can change them to whatever you want. This isn&#8217;t the end of the code we need though. We need to tell the application to show the alert. To do this, add this piece of code directly underneath what you just wrote.</p>
<pre class="brush: cpp; title: ; notranslate"> [alert show];</pre>
<p>Again, that&#8217;s not all! There&#8217;s one more piece of code we need. It&#8217;s a bit of memory management, and not strictly necessary, but it&#8217;s good practice. Add this below the [alert show]; instruction:</p>
<pre class="brush: cpp; title: ; notranslate"> [alert release];</pre>
<p>And that should now work. You can now run the application, and pat yourself on the back.</p>
<p>Part two will be about how to use multiple buttons, and how to handle when they are pressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/ios-beginner-series-uialertviews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Comments from pages in WordPress</title>
		<link>http://www.alexblundell.com/2011/08/remove-comments-from-pages-in-wordpress/</link>
		<comments>http://www.alexblundell.com/2011/08/remove-comments-from-pages-in-wordpress/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 18:09:42 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://srv.alexblundell.com/newsite/?p=12</guid>
		<description><![CDATA[Just found the perfect opportunity to post a mini-tutorial! Setting up this new site is proving productive. Anyway.. Firstly, you should know which theme is the current active theme. To do this, log into the admin dashboard, and go to &#8220;Appearance&#8221; -&#62; &#8220;Themes&#8221;. It should be listed at the top of the page. Once you [...]]]></description>
			<content:encoded><![CDATA[<p>Just found the perfect opportunity to post a mini-tutorial! Setting up this new site is proving productive. Anyway..</p>
<p>Firstly, you should know which theme is the current active theme. To do this, log into the admin dashboard, and go to &#8220;Appearance&#8221; -&gt; &#8220;Themes&#8221;. It should be listed at the top of the page. Once you know this, you can move on.</p>
<p>There are a couple of options from here to access the file we need to change. One is FTP (which I hate) and the other is SSH (which I love). However you access the file, it doesn&#8217;t matter. Navigate to {wordpress root}/wp-content/themes/ on the server. Pick the theme which is currently active on your blog (it should be obvious, and named similar to what you found before).</p>
<p>Now, if you&#8217;re using FTP, download the page.php file. (Did I mention I hate FTP?) Edit the file as below and re-upload.</p>
<p>If you&#8217;re using SSH, use this command:</p>
<pre class="brush: cpp; title: ; notranslate">nano page.php</pre>
<p>and edit the file as below. After editing save with Ctrl+O and Ctrl+X.</p>
<p><strong>What to edit:</strong></p>
<p>Find this in the file:</p>
<pre class="brush: cpp; title: ; notranslate">&lt;?php comments_template(); ?&gt;</pre>
<p>Or at least, something similar to it. Now, change it to this:</p>
<pre class="brush: cpp; title: ; notranslate">&lt;?php // comments_template(); ?&gt;</pre>
<p>Basically, &#8220;//&#8221; &#8216;comments&#8217; out the comments and prevents it from loading.</p>
<p>And that&#8217;s all! Everything should be fine now, and you won&#8217;t have comments on pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/remove-comments-from-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website + Update</title>
		<link>http://www.alexblundell.com/2011/08/new-website-and-update/</link>
		<comments>http://www.alexblundell.com/2011/08/new-website-and-update/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 17:45:22 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Notices]]></category>

		<guid isPermaLink="false">http://srv.alexblundell.com/newsite/?p=4</guid>
		<description><![CDATA[Well, as you can probably see, i&#8217;m now running on a new website. I&#8217;ve decided that i&#8217;ll not only blog about my own development, and statuses on applications etc, but that I&#8217;ll also post mini-tutorals and code snippets as and when I use them. I&#8217;m keeping the content i&#8217;ll be creating quite vague, because I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Well, as you can probably see, i&#8217;m now running on a new website. I&#8217;ve decided that i&#8217;ll not only blog about my own development, and statuses on applications etc, but that I&#8217;ll also post mini-tutorals and code snippets as and when I use them. I&#8217;m keeping the content i&#8217;ll be creating quite vague, because I&#8217;ll probably be doing posts on Objective-C and PHP.</p>
<p>I&#8217;m coming to the end of the development of <em>Navigate Nigel &#8211; </em>I have 5 more levels to complete, the final piece of music to be handed over to me, and some other little things to polish the game off. It&#8217;s taken around 3 months from design to completion so far, however production has ramped up over these past few weeks. www.NavigateNigel.com will have the latest information when I get round to editing it, so keep checking back to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexblundell.com/2011/08/new-website-and-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

