<?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>Datensarg</title>
	<atom:link href="http://www.datensarg.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.datensarg.de</link>
	<description>DevBlog::create('cool web service')</description>
	<lastBuildDate>Fri, 22 Jul 2011 15:12:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>fritz!box call monitor with node.js</title>
		<link>http://www.datensarg.de/2011/07/19/fritzbox-call-monitor-with-node-js/</link>
		<comments>http://www.datensarg.de/2011/07/19/fritzbox-call-monitor-with-node-js/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 22:56:02 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[node.js]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=72</guid>
		<description><![CDATA[After two years: A new post. Yay! The fritz!box has an integrated call monitor that can be activated by dialling #96*5* (and deactivated by #96*4* &#8230;). With just a few lines of code we can use node.js to build a small TCP client: var net = require&#40;'net'&#41;; var sys = require&#40;'sys'&#41;; &#160; var client = [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2011/07/19/fritzbox-call-monitor-with-node-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlogDesk?</title>
		<link>http://www.datensarg.de/2009/11/11/blogdesk/</link>
		<comments>http://www.datensarg.de/2009/11/11/blogdesk/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 21:58:04 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/2009/11/11/blogdesk/</guid>
		<description><![CDATA[Trying BlogDesk for posting &#8230;]]></description>
		<wfw:commentRss>http://www.datensarg.de/2009/11/11/blogdesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singleton Design Pattern</title>
		<link>http://www.datensarg.de/2009/11/05/singleton-design-pattern/</link>
		<comments>http://www.datensarg.de/2009/11/05/singleton-design-pattern/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 23:00:26 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Desing patterns]]></category>
		<category><![CDATA[PHP development]]></category>
		<category><![CDATA[design patterns]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=63</guid>
		<description><![CDATA[Issue no. 3 on design patterns: The singleton pattern. Whenever we need a place to save and retrieve data throughout a script without using globals the singleton pattern comes in handy. It allows only one instance of itself. What seems like a drawback is quite useful: Wherever in your source you instantiate such an object: [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2009/11/05/singleton-design-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parameterized Factory Desing Pattern</title>
		<link>http://www.datensarg.de/2009/11/01/parameterized-factory-desing-pattern/</link>
		<comments>http://www.datensarg.de/2009/11/01/parameterized-factory-desing-pattern/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 23:00:14 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Desing patterns]]></category>
		<category><![CDATA[PHP development]]></category>
		<category><![CDATA[design patterns]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=56</guid>
		<description><![CDATA[The parameterized factory design pattern is an extension to the factory design pattern as you might have guessed, but here we can make the factory create different objects depending on the parameter passed to the create-method. Imagine your application is supposed to connect to a MySQL-DB or to a PostgreSQL-DB. Instead of creating different objects [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2009/11/01/parameterized-factory-desing-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Factory Design Pattern</title>
		<link>http://www.datensarg.de/2009/10/28/factory-design-pattern/</link>
		<comments>http://www.datensarg.de/2009/10/28/factory-design-pattern/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 23:56:26 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Desing patterns]]></category>
		<category><![CDATA[PHP development]]></category>
		<category><![CDATA[design patterns]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=48</guid>
		<description><![CDATA[Design Patters part 1. I built these samples on PHP design patterns a while ago to make some friends write better code. They ignored it, so I give it to you. I hope they are self-explanatory. If not: Feel free to ask! First off: The factory design pattern. It encapsulates the creation of a class [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2009/10/28/factory-design-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BLAZEserver</title>
		<link>http://www.datensarg.de/2009/05/13/blazeserver/</link>
		<comments>http://www.datensarg.de/2009/05/13/blazeserver/#comments</comments>
		<pubDate>Tue, 12 May 2009 23:28:42 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[BLAZEserver]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=20</guid>
		<description><![CDATA[Introducing BLAZEserver. Get it HERE!]]></description>
		<wfw:commentRss>http://www.datensarg.de/2009/05/13/blazeserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging on local Apache with PhpED</title>
		<link>http://www.datensarg.de/2008/03/29/debugging-on-local-apache-with-phped/</link>
		<comments>http://www.datensarg.de/2008/03/29/debugging-on-local-apache-with-phped/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 16:42:13 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[PHP development]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[phped]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/2008/03/29/debugging-on-local-apache-with-phped/</guid>
		<description><![CDATA[I&#8217;ve been working with PhpED for quite some time, but now that I&#8217;m using the Zend Framework I reached the point, where the integrated server isn&#8217;t good enough anymore. The main concern was mod_rewrite. I needed a way to debug on my local Apache installation (XAMPP to be specific). I fought my way through multiple [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2008/03/29/debugging-on-local-apache-with-phped/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Zend Tutorial</title>
		<link>http://www.datensarg.de/2008/03/24/zend-tutorial/</link>
		<comments>http://www.datensarg.de/2008/03/24/zend-tutorial/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 22:44:36 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Tonick.net]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XAMPP]]></category>
		<category><![CDATA[Zend framework]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=5</guid>
		<description><![CDATA[I&#8217;ve been trying to set up my directories on the production server yesterday. Meanwhile I came across Rob Allen&#8217;s Blog. It features a nice tutorial including database access and forms. Rob doesn&#8217;t waste time doing it the &#8220;easy&#8221; way, like the Zend framework quick start tutorial does. You get your full load of class inheritance [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2008/03/24/zend-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frameworks</title>
		<link>http://www.datensarg.de/2008/03/22/frameworks/</link>
		<comments>http://www.datensarg.de/2008/03/22/frameworks/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 17:09:45 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Tonick.net]]></category>

		<guid isPermaLink="false">http://www.datensarg.de/?p=4</guid>
		<description><![CDATA[After trying to rewrite my code using design patterns till 4:20 a.m. I thought, that someone already might have built a working collection of classes to do the same thing. It&#8217;s important to understand how design patterns work and why and where they can help you simplifying things, but hey: I wan&#8217;t to build a [...]]]></description>
		<wfw:commentRss>http://www.datensarg.de/2008/03/22/frameworks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

