<?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>Dan Dean &#187; .Net</title>
	<atom:link href="http://dandean.com/category/category/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://dandean.com</link>
	<description></description>
	<lastBuildDate>Wed, 12 May 2010 04:50:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<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>Dan Dean</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 [...]]]></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 class="brush: php; gutter: false;">
// PHP
sleep(3);
</pre>
<pre class="brush: csharp; gutter: false;">
// .Net
System.Threading.Thread.Sleep(3000);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dandean.com/category/php/2008/simulate-network-delays/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
