<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Dan Dean</title>
	<link>http://dandean.com</link>
	<description></description>
	<pubDate>Tue, 19 Feb 2008 00:49:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Simulate Network Delays</title>
		<link>http://dandean.com/category/php/2008/simulate-network-delays/</link>
		<comments>http://dandean.com/category/php/2008/simulate-network-delays/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 00:37:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dandean.com/category/net/2008/simulate-network-delays/</guid>
		<description><![CDATA[When developing web applications it is helpful to be able to simulate a slow network. This can help you see how your UI indicators, ajax loaders, etc., will operate in various network situations, unlike your local network which is generally free of any sort of interference.
These little snippets of code will freeze the execution of [...]]]></description>
			<content:encoded><![CDATA[<p>When developing web applications it is helpful to be able to simulate a slow network. This can help you see how your UI indicators, ajax loaders, etc., will operate in various network situations, unlike your local network which is generally free of any sort of interference.</p>
<p>These little snippets of code will freeze the execution of your web application for three seconds:</p>
<pre>
// PHP
sleep(3);

// .Net
System.Threading.Thread.Sleep(3000);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dandean.com/category/php/2008/simulate-network-delays/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fluent: PHP Data Types as Fluent Objects</title>
		<link>http://dandean.com/category/code/2007/fluent-php-data-types-as-fluent-objects/</link>
		<comments>http://dandean.com/category/code/2007/fluent-php-data-types-as-fluent-objects/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 16:19:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Code/Projects]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dandean.com/category/code/2007/fluent-php-data-types-as-fluent-objects/</guid>
		<description><![CDATA[Introducing Fluent, a set of PHP 5 classes that make writing code happier. Fluent enables you to deal with data types as objects in the fluent api style, like you can in most other modern programming languages.

// JavaScript
"Hello There".toUpperCase()-&#38;gt;split(' ');

// C#
"Hello There".ToUpper().Split(new Char[] {' '});

// Ruby
"Hello There".upcase.split(' ')

// Python
"Hello There".upper().split()

// PHP
explode(' ', strtoupper('Hello There'));

// PHP [...]]]></description>
			<content:encoded><![CDATA[<p>Introducing <strong>Fluent</strong>, a set of <a href="http://www.php.net/manual/en/language.oop5.php">PHP 5</a> classes that make writing code happier. Fluent enables you to deal with data types as objects in the <a href="http://www.alexatnet.com/node/98">fluent</a> <a href="http://www.travisswicegood.com/index.php/2007/10/26/fluent_api_here_i_come">api</a> style, like you can in most other modern programming languages.</p>
<pre>
// JavaScript
"Hello There".toUpperCase()-&amp;gt;split(' ');

// C#
"Hello There".ToUpper().Split(new Char[] {' '});

// Ruby
"Hello There".upcase.split(' ')

// Python
"Hello There".upper().split()

// PHP
explode(' ', strtoupper('Hello There'));

// PHP using Fluent
S('Hello There')-&amp;gt;toupper()-&amp;gt;explode(' ');</pre>
<p> <a href="http://dandean.com/category/code/2007/fluent-php-data-types-as-fluent-objects/#more-13" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dandean.com/category/code/2007/fluent-php-data-types-as-fluent-objects/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
