<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>FabriZZio</title>
	<atom:link href="http://fabrizzio.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fabrizzio.wordpress.com</link>
	<description>Web development.</description>
	<lastBuildDate>Wed, 29 Oct 2008 14:51:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fabrizzio.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>FabriZZio</title>
		<link>http://fabrizzio.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fabrizzio.wordpress.com/osd.xml" title="FabriZZio" />
	<atom:link rel='hub' href='http://fabrizzio.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP Namespace Galore</title>
		<link>http://fabrizzio.wordpress.com/2008/10/29/php-namespace-galore/</link>
		<comments>http://fabrizzio.wordpress.com/2008/10/29/php-namespace-galore/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 14:51:07 +0000</pubDate>
		<dc:creator>FabriZZio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[namespacing]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://fabrizzio.wordpress.com/?p=38</guid>
		<description><![CDATA[What Frederico says!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=38&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="PHP Namespaces" href="http://phpimpact.wordpress.com/2008/10/28/php-namespaces-controversy/">What Frederico says!</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fabrizzio.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fabrizzio.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fabrizzio.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fabrizzio.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fabrizzio.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fabrizzio.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fabrizzio.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fabrizzio.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=38&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fabrizzio.wordpress.com/2008/10/29/php-namespace-galore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0464160709b6f3bf587ecde5c731fc30?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FabriZZio</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP CLI with parameters</title>
		<link>http://fabrizzio.wordpress.com/2008/10/21/php-cli-with-parameters/</link>
		<comments>http://fabrizzio.wordpress.com/2008/10/21/php-cli-with-parameters/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 12:04:51 +0000</pubDate>
		<dc:creator>FabriZZio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://fabrizzio.wordpress.com/?p=35</guid>
		<description><![CDATA[For a current project, I needed a (PHP) CLI script that had to accept a certain parameter list. Using CLI, you can do: php /path/to/script/script.php arg1 arg2 arg3 I retrieve the parameters in the script by using the $_SERVER['argv'] array: $param1 = $_SERVER['argv'][0]; $param2 = $_SERVER['argv'][1]; I kinda feel dirty using the $_SERVER['argv'] variable. Any [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=35&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For a current project, I needed a (PHP) CLI script that had to accept a certain parameter list. Using CLI, you can do:</p>
<blockquote><p>php /path/to/script/script.php arg1 arg2 arg3</p></blockquote>
<p>I retrieve the parameters in the script by using the $_SERVER['argv'] array:</p>
<blockquote><p>$param1 = $_SERVER['argv'][0];</p>
<p>$param2 = $_SERVER['argv'][1];</p></blockquote>
<p>I kinda feel dirty using the $_SERVER['argv'] variable. Any decent method to do this?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fabrizzio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fabrizzio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fabrizzio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fabrizzio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fabrizzio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fabrizzio.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fabrizzio.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fabrizzio.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=35&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fabrizzio.wordpress.com/2008/10/21/php-cli-with-parameters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0464160709b6f3bf587ecde5c731fc30?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FabriZZio</media:title>
		</media:content>
	</item>
		<item>
		<title>Continuous integration with phpUnderControl</title>
		<link>http://fabrizzio.wordpress.com/2008/10/03/continuous-integration-with-phpundercontrol/</link>
		<comments>http://fabrizzio.wordpress.com/2008/10/03/continuous-integration-with-phpundercontrol/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 17:15:11 +0000</pubDate>
		<dc:creator>FabriZZio</dc:creator>
				<category><![CDATA[Application testing]]></category>
		<category><![CDATA[code coverage]]></category>
		<category><![CDATA[continuous integration]]></category>

		<guid isPermaLink="false">http://fabrizzio.wordpress.com/?p=18</guid>
		<description><![CDATA[Lately, I started to use phpUnderControl to monitor my application under development. Since your favourite colleagues can be bitches, you can try to monitor not only your application but also your fellow developers. Utilities like PHPCodeSniffer, PHPUnit (code coverage features)&#8230; can easily provide you with reasons to bitchslap one-another. Using non-standard-like variable names: 1 bitchslap, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=18&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lately, I started to use <a title="phpUnderControl" href="http://www.phpundercontrol.org/">phpUnderControl</a> to monitor my application under development. Since your favourite colleagues can be bitches, you can try to monitor not only your application but also your fellow developers.</p>
<p>Utilities like <a title="PHP Code Sniffer" href="http://pear.php.net/package/PHP_CodeSniffer">PHPCodeSniffer</a>, PHPUnit (code coverage features)&#8230; can easily provide you with reasons to bitchslap one-another. Using non-standard-like variable names: 1 bitchslap, using non-standard-classnames: 2 bitchslaps, etc.</p>
<p>Seriously, you should check ik out. You can, for example, setup a project to be build after every SVN commit. A build can consist of running all tests, creating code coverage reports, generating API-documentation, &#8230;</p>
<p>phpUnderControl parses the generated reports and displays them to you nicely. Like so:</p>
<div id="attachment_24" class="wp-caption aligncenter" style="width: 310px"><a href="http://fabrizzio.files.wordpress.com/2008/10/metrics.jpg"><img class="size-medium wp-image-24" title="metrics" src="http://fabrizzio.files.wordpress.com/2008/10/metrics.jpg?w=300&#038;h=126" alt="Automated integration metrics" width="300" height="126" /></a><p class="wp-caption-text">Automated integration metrics</p></div>
<p>Permission to say: &#8220;Fuck Yeah&#8221;!. Granted.</p>
<p>Apart from the above metrics, you can generate a list giving you a code test coverage report. (example for some models):</p>
<div id="attachment_26" class="wp-caption aligncenter" style="width: 310px"><a href="http://fabrizzio.files.wordpress.com/2008/10/coverage.jpg"><img class="size-medium wp-image-26" title="coverage" src="http://fabrizzio.files.wordpress.com/2008/10/coverage.jpg?w=300&#038;h=125" alt="Code test coverage" width="300" height="125" /></a><p class="wp-caption-text">Code test coverage</p></div>
<p>I know, I still have some work to do. Enough reasons to start testing your applications, have some monitoring fun AND reasons for some bitchslap-galore?!?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fabrizzio.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fabrizzio.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fabrizzio.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fabrizzio.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fabrizzio.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fabrizzio.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fabrizzio.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fabrizzio.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=18&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fabrizzio.wordpress.com/2008/10/03/continuous-integration-with-phpundercontrol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0464160709b6f3bf587ecde5c731fc30?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FabriZZio</media:title>
		</media:content>

		<media:content url="http://fabrizzio.files.wordpress.com/2008/10/metrics.jpg?w=300" medium="image">
			<media:title type="html">metrics</media:title>
		</media:content>

		<media:content url="http://fabrizzio.files.wordpress.com/2008/10/coverage.jpg?w=300" medium="image">
			<media:title type="html">coverage</media:title>
		</media:content>
	</item>
		<item>
		<title>Mocking your database</title>
		<link>http://fabrizzio.wordpress.com/2008/10/01/mocking-your-database/</link>
		<comments>http://fabrizzio.wordpress.com/2008/10/01/mocking-your-database/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 19:03:23 +0000</pubDate>
		<dc:creator>FabriZZio</dc:creator>
				<category><![CDATA[Application testing]]></category>
		<category><![CDATA[phpunit]]></category>
		<category><![CDATA[mocking]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://fabrizzio.wordpress.com/?p=19</guid>
		<description><![CDATA[I think mocking the database in integration tests is a bad idea. It is not a fact, it is my personal opinion. I think that when you are running your integration tests, you should try to mimick the live environment as good as possible. Using a mock to replace your database object doesn&#8217;t fit this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=19&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I think <a title="Mock objects" href="http://www.phpunit.de/pocket_guide/3.3/en/test-doubles.html#test-doubles.mock-objects">mocking</a> the database in integration tests is a bad idea. It is not a fact, it is my personal opinion. I think that when you are running your integration tests, you should try to mimick the live environment as good as possible. Using a mock to replace your database object doesn&#8217;t fit this idea.</p>
<p>If you decide to use the database object you use in your application, you may want to change the actual backend. I use Mysql for different projects, but running integration tests against a mysql test-database is kind of slow. You have to consider filling up you database with a defined dataset (setUp()) for every test and that can take a while. (latest project is about 1sec/test) Instead, you could use an SQLite backend.</p>
<p>Using the SQLite backend is easy when you use a database component that&#8217;s worth it. <a title="Zend_Db" href="http://framework.zend.com/manual/en/zend.db.html">Zend_Db</a> for instance, easily offers you that functionality. By using a different adapter (SQLite instead of MySQLi) you can run your tests a lot faster.</p>
<p>I haven&#8217;t found much information about using the SQLite adapter and initializing the database. I guess it all comes down to exporting you MySQL-code to setup you database (DDL) to an SQLite format. Using the <a title="PHPUnit XML dataset" href="http://www.phpunit.de/pocket_guide/3.3/en/database.html">XML dataset feature in PHPUnit</a> you can populate that in-memory database and you&#8217;re ready to go. Faster.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fabrizzio.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fabrizzio.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fabrizzio.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fabrizzio.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fabrizzio.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fabrizzio.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fabrizzio.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fabrizzio.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=19&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fabrizzio.wordpress.com/2008/10/01/mocking-your-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0464160709b6f3bf587ecde5c731fc30?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FabriZZio</media:title>
		</media:content>
	</item>
		<item>
		<title>Integration testing</title>
		<link>http://fabrizzio.wordpress.com/2008/09/26/integration-testing/</link>
		<comments>http://fabrizzio.wordpress.com/2008/09/26/integration-testing/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 17:54:01 +0000</pubDate>
		<dc:creator>FabriZZio</dc:creator>
				<category><![CDATA[Application testing]]></category>
		<category><![CDATA[phpunit]]></category>
		<category><![CDATA[tests]]></category>

		<guid isPermaLink="false">http://fabrizzio.wordpress.com/?p=9</guid>
		<description><![CDATA[I recently started using the PHP continous integration tool phpUnderControl in some of the projects I&#8217;m currently working on. A little before that, I started writing integration tests. I have to admit, I really had to convince myself to start writing tests because a lot of people writing tests sometimes make me feel a bit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=9&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently started using the PHP continous integration tool phpUnderControl in some of the projects I&#8217;m currently working on. A little before that, I started writing integration tests.</p>
<p>I have to admit, I really had to convince myself to start writing tests because a lot of people writing tests sometimes make me feel a bit awkward. I don&#8217;t feel very comfortable with those kind of people. They give me the impression they always have everything under control, that everything is &#8220;<em>all good</em>&#8220;. Fact is, I&#8217;m trying hard to keep these guys out of my friendzone. Either way, they scare the girls, and boys shouldn&#8217;t do that.</p>
<p>Anyway, since I have a girlfriend, I thought what the fuck, so I started Unit Testing <em>(how about my reason to start unit testing?)</em></p>
<p><a href="http://fabrizzio.files.wordpress.com/2008/09/photo.jpg"><img class="alignright size-full wp-image-13" title="photo" src="http://fabrizzio.files.wordpress.com/2008/09/photo.jpg?w=129&#038;h=192" alt="Sebastian Bergmann" width="129" height="192" /></a>It seemed I had the choice between SimpleTest and <a title="PHPUnit" href="http://www.phpunit.de">PHPUnit</a> but since Germany always wins, I chose Sebastian Bergmann&#8217;s framework. Luckily, Seba developed a framework using his immense forehead resulting in a easy-to-use yet powerful development tool. I installed everything in a jiffy and started out with the <a title="PHPUnit Pocket Guide" href="http://www.phpunit.de/manual/3.3/en/">PHPUnit Pocket Guide</a>.</p>
<p>The cool thing is that you can use you terminal (Linux) or command prompt (Windows) and look like a real professional when your boss passes by. Since I wanted to test my projects models, I started using the <a title="PHPUnit Database testing" href="http://www.phpunit.de/manual/3.3/en/database.html">database testing tools</a> available by the framework. The models I use for the project aren&#8217;t really complex, hence my choice of writing integration tests. I setup a small XML datasetfile used in my setUp-blocks to run the tests against.</p>
<p>Now, during my intensive period (2 weeks) of using Tests, I already came across some problems concerning integration testing. The problem is that you want to test your code against a certain dataset (setup in XML) that gets loaded into a test-database by the framework. I wrote about 100 tests and since my XML dataset kinda grows like hell, It now takes about 1 second/test. I started drinking a lot (of water) these last days and I managed to start taking 100-second pisses every 45 minutes. The problem is that I want to run these tests more frequently thus <em>faster</em>.</p>
<p>I read some things about mocking objects, but I haven&#8217;t figured out whether one can use that with database objects. (say an instance of Zend_Db)</p>
<p>If anyone knows how to handle this kind of problem, feel free to let me know. You don&#8217;t have to come by, just write a comment or a postcard&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fabrizzio.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fabrizzio.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fabrizzio.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fabrizzio.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fabrizzio.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fabrizzio.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fabrizzio.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fabrizzio.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=9&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fabrizzio.wordpress.com/2008/09/26/integration-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0464160709b6f3bf587ecde5c731fc30?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FabriZZio</media:title>
		</media:content>

		<media:content url="http://fabrizzio.files.wordpress.com/2008/09/photo.jpg" medium="image">
			<media:title type="html">photo</media:title>
		</media:content>
	</item>
		<item>
		<title>Take-off</title>
		<link>http://fabrizzio.wordpress.com/2008/09/25/take-off/</link>
		<comments>http://fabrizzio.wordpress.com/2008/09/25/take-off/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 18:50:04 +0000</pubDate>
		<dc:creator>FabriZZio</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fabrizzio.wordpress.com/?p=3</guid>
		<description><![CDATA[A new blog, a fresh start. Since me and myself decided to try to enjoy developing webapplications even more, this might be an opportunity to start a new blog about webdevelopment. A man has got to eat, and since I got fed up flipping burgers @McDonalds while I was studying, I started my new career [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=3&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A new blog, a fresh start. Since me and myself decided to try to enjoy developing webapplications even more, this might be an opportunity to start a new blog about webdevelopment.</p>
<p>A man has got to eat, and since I got fed up flipping burgers @McDonalds while I was studying, I started my new career about a year ago as PHP Developer. Asides PHP, I keep myself occupied in a personal (everlasting) struggle with Javascript. Hooray for AJAX, AJAH and XmlHttpRequest&#8217;s other bastard sons.</p>
<p>My main field of interest is still the beautiful language of PHP. This explains why I will be using PHP to illustrate stuff like design principles, design patterns or overall best practices.</p>
<p><span style="text-decoration:underline;">Important sidenote</span>: I will be writing articles because I think I have found a better way to figure out certain problems. I do this in English even though this isn&#8217;t &#8220;<em>mi main language</em>&#8220;. The only reason why I chose to do so is my goal to build up an audience of interested readers which might exceed the total number of 2. (My mother also knows about the internet.)</p>
<p>If you think you have a solution to a certain issue which is better than the one I proposed, please share it with me. If not, silence is golden.</p>
<p>Right now, I&#8217;m going to pet my ego. Ciao.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fabrizzio.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fabrizzio.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fabrizzio.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fabrizzio.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fabrizzio.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fabrizzio.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fabrizzio.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fabrizzio.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fabrizzio.wordpress.com&amp;blog=4979936&amp;post=3&amp;subd=fabrizzio&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fabrizzio.wordpress.com/2008/09/25/take-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0464160709b6f3bf587ecde5c731fc30?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FabriZZio</media:title>
		</media:content>
	</item>
	</channel>
</rss>
