<?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>Routing Life &#187; Software Development</title>
	<atom:link href="http://blog.lodeblomme.be/category/software-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lodeblomme.be</link>
	<description>Life at a belgian navigation startup</description>
	<lastBuildDate>Mon, 21 Jun 2010 20:02:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>A fast Queue for Routing in PHP</title>
		<link>http://blog.lodeblomme.be/2010/06/21/a-fast-queue-for-routing-in-php/</link>
		<comments>http://blog.lodeblomme.be/2010/06/21/a-fast-queue-for-routing-in-php/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 19:47:49 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Routing]]></category>

		<guid isPermaLink="false">http://blog.lodeblomme.be/?p=134</guid>
		<description><![CDATA[Lets honour the title of this blog, and talk about routing. Routing is the process of selecting paths in a network. (from Wikipedia). At RouteYou we are interested in all sorts of paths in street networks : Shortest walk route Shortest cycling route Nicest walk route Nicest cycling route &#8230; In the past we used [...]]]></description>
		<wfw:commentRss>http://blog.lodeblomme.be/2010/06/21/a-fast-queue-for-routing-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Global Javascript Variable &#8220;media&#8221; in Chrome 5</title>
		<link>http://blog.lodeblomme.be/2010/06/02/global-javascript-variable-media-in-chrome-5/</link>
		<comments>http://blog.lodeblomme.be/2010/06/02/global-javascript-variable-media-in-chrome-5/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 12:11:29 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blog.lodeblomme.be/?p=135</guid>
		<description><![CDATA[Apparently, you can&#8217;t use a global Javascript variable named &#8220;media&#8221; in Chrome 5. In all Chrome version prior to version 5, this was not an issue. Starting with version 5, the global variable &#8220;media&#8221; contains an object of type Media. I&#8217;m not sure what it&#8217;s use is, but I guess it has something to do [...]]]></description>
		<wfw:commentRss>http://blog.lodeblomme.be/2010/06/02/global-javascript-variable-media-in-chrome-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Optimized by-value Assignments in PHP</title>
		<link>http://blog.lodeblomme.be/2010/02/13/optimized-by-value-assignments-in-php/</link>
		<comments>http://blog.lodeblomme.be/2010/02/13/optimized-by-value-assignments-in-php/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 20:02:12 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[memory usage]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.lodeblomme.be/?p=96</guid>
		<description><![CDATA[In programming some variable types are passed by value, others by reference. Using one or the other has a number of implications. This article handles about the implications of passing variables by value on speed and memory usage in PHP. According to the Zend PHP5 certification study guide, by-reference activity is often slower than using [...]]]></description>
		<wfw:commentRss>http://blog.lodeblomme.be/2010/02/13/optimized-by-value-assignments-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging PHP SoapClient</title>
		<link>http://blog.lodeblomme.be/2009/12/06/debugging-php-soapclient/</link>
		<comments>http://blog.lodeblomme.be/2009/12/06/debugging-php-soapclient/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 13:33:48 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SOAP]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://blog.lodeblomme.be/?p=67</guid>
		<description><![CDATA[When working with SOAP Web Services, it&#8217;s sometimes handy to see the raw SOAP request sent by the client and the raw SOAP response received from the server. This makes debugging your SOAP server or SOAP client that much easier. Wireshark One option is to install Wireshark, a network protocol analyzer for Unix and Windows. [...]]]></description>
		<wfw:commentRss>http://blog.lodeblomme.be/2009/12/06/debugging-php-soapclient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Side Language Detection with Google Language API</title>
		<link>http://blog.lodeblomme.be/2008/03/21/server-side-language-detection-with-google-language-api/</link>
		<comments>http://blog.lodeblomme.be/2008/03/21/server-side-language-detection-with-google-language-api/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 16:35:06 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[FireBug]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://blog.lodeblomme.be/2008/03/21/server-side-language-detection-with-google-language-api/</guid>
		<description><![CDATA[Yesterday Google announced a new AJAX API for translation and language detection. It&#8217;s a Javascript API to translate and detect the language of blocks of text within a webpage. But I need server side language detection of a text using PHP and the Google AJAX Language API. Step 1 : Find Out Internal Working You [...]]]></description>
		<wfw:commentRss>http://blog.lodeblomme.be/2008/03/21/server-side-language-detection-with-google-language-api/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
