<?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>Naneau &#187; Tutorials</title>
	<atom:link href="http://naneau.nl/category/web-development/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://naneau.nl</link>
	<description>Go dik-dik, go!</description>
	<lastBuildDate>Sun, 24 Jan 2010 18:19:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Timing your scripts</title>
		<link>http://naneau.nl/2007/07/02/timing-your-scripts/</link>
		<comments>http://naneau.nl/2007/07/02/timing-your-scripts/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 15:24:58 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/07/02/timing-your-scripts/</guid>
		<description><![CDATA[We all have to optimize, sometimes. Most people hate it, and for good reasons. There&#8217;s a real trade-off between code readability and clarity versus optimization. To get information on how your scripts are performing you&#8217;ll need to run software like xdebug. That works fine, especially during development.
But sometimes you just want some quick info on [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/07/02/timing-your-scripts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Zend Framework routing process</title>
		<link>http://naneau.nl/2007/05/11/the-zend-framework-routing-process/</link>
		<comments>http://naneau.nl/2007/05/11/the-zend-framework-routing-process/#comments</comments>
		<pubDate>Thu, 10 May 2007 23:40:38 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/05/11/the-zend-framework-routing-process/</guid>
		<description><![CDATA[Because I noticed some people find it difficult to understand the routing process the Zend Framework uses by default, I decided to write a little explanation. It&#8217;s really easy once you get the hang of it, even though it may seem complicated at first.
The Zend Framework is based on the Model View Controller principle. This [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/05/11/the-zend-framework-routing-process/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Setting up the Zend Framework</title>
		<link>http://naneau.nl/2007/05/08/setting-up-the-zend-framework/</link>
		<comments>http://naneau.nl/2007/05/08/setting-up-the-zend-framework/#comments</comments>
		<pubDate>Tue, 08 May 2007 15:20:15 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/05/08/setting-up-the-zend-framework/</guid>
		<description><![CDATA[
This article is very old. I&#8217;m keeping it here for legacy reasons, but if you&#8217;re looking for help setting up Zend Framework, google is your friend.

I would like to take some time to talk about setting up the Zend Framework. It&#8217;s a lot easier than you might think. I know there are quite a few [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/05/08/setting-up-the-zend-framework/feed/</wfw:commentRss>
		<slash:comments>64</slash:comments>
		</item>
		<item>
		<title>A Zend Framework tutorial, part four</title>
		<link>http://naneau.nl/2007/05/04/a-zend-framework-tutorial-part-four/</link>
		<comments>http://naneau.nl/2007/05/04/a-zend-framework-tutorial-part-four/#comments</comments>
		<pubDate>Fri, 04 May 2007 15:41:32 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/05/04/a-zend-framework-tutorial-part-four/</guid>
		<description><![CDATA[In the first three parts of this tutorial I talked about designing your models and controllers. In this fourth part I&#8217;m going to take a look at views. Views are the final part of a MVC application. They contain code that will create the output of the application.
For most of you this will mean that [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/05/04/a-zend-framework-tutorial-part-four/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>A Zend Framework tutorial, part three</title>
		<link>http://naneau.nl/2007/04/26/a-zend-framework-tutorial-part-three/</link>
		<comments>http://naneau.nl/2007/04/26/a-zend-framework-tutorial-part-three/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 15:06:02 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/04/26/a-zend-framework-tutorial-part-three/</guid>
		<description><![CDATA[When I started writing this tutorial I mentioned that I assumed you had the Zend Framework running on your server. I may have falsely assumed that you had a working bootstrap file for it as well. Writing a simple bootstrap file isn&#8217;t that difficult, but there are many things you can add to it, some [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/04/26/a-zend-framework-tutorial-part-three/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Creating an Ext JS grid using the Zend Framework</title>
		<link>http://naneau.nl/2007/04/24/creating-an-ext-js-grid-using-the-zend-framework/</link>
		<comments>http://naneau.nl/2007/04/24/creating-an-ext-js-grid-using-the-zend-framework/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 14:32:08 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/04/24/creating-an-ext-js-grid-using-the-zend-framework/</guid>
		<description><![CDATA[Web development has become a lot easier with the rise of frameworks and libraries that help you with common tasks. On the server side there&#8217;s PEAR, CakePHP, Symfony and the Zend Framework, amongst others. For the client you can choose from YUI, Prototype, Scriptaculous, Ext JS and many, many more. All these libraries and frameworks [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/04/24/creating-an-ext-js-grid-using-the-zend-framework/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>A Zend Framework tutorial, part two</title>
		<link>http://naneau.nl/2007/04/24/a-zend-framework-tutorial-part-two/</link>
		<comments>http://naneau.nl/2007/04/24/a-zend-framework-tutorial-part-two/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 12:11:33 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/04/24/a-zend-framework-tutorial-part-two/</guid>
		<description><![CDATA[In part one of my tutorial for a zend framework application I talked about creating a general design for your application. If you&#8217;re following my approach, you should by now have in your possession some kind of document with requirements for your application. You should also have a diagram with the basic layout of your [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/04/24/a-zend-framework-tutorial-part-two/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>A Zend Framework tutorial, part one</title>
		<link>http://naneau.nl/2007/04/21/a-zend-framework-tutorial-part-one/</link>
		<comments>http://naneau.nl/2007/04/21/a-zend-framework-tutorial-part-one/#comments</comments>
		<pubDate>Sat, 21 Apr 2007 15:50:31 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/04/21/a-zend-framework-tutorial-part-one/</guid>
		<description><![CDATA[
Some of the code in this tutorial (all four parts) does not work with version 1 of the framework. Especially the part on rendering views has changed.

After reading many tutorials, I decided it was time to write one myself. Not because the ones out there are bad, most of them are really good reads, and [...]]]></description>
		<wfw:commentRss>http://naneau.nl/2007/04/21/a-zend-framework-tutorial-part-one/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Designing a web 2.0 application</title>
		<link>http://naneau.nl/2007/04/21/designing-a-web-20-application/</link>
		<comments>http://naneau.nl/2007/04/21/designing-a-web-20-application/#comments</comments>
		<pubDate>Sat, 21 Apr 2007 13:05:14 +0000</pubDate>
		<dc:creator>Naneau</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://naneau.nl/2007/04/21/designing-a-web-20-application/</guid>
		<description><![CDATA[In this post I would like to write a little about application development for the modern web. There are a lot of tutorials out there that deal with specific implementations of (parts of) applications. But I want to go a little further. Instead of looking at how to implement things, I would like to start at the absolute beginning.]]></description>
		<wfw:commentRss>http://naneau.nl/2007/04/21/designing-a-web-20-application/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
