<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Brian Crescimanno</title>
	<link>http://briancrescimanno.com</link>
	<description>Thoughts on Web Design, Development, and Applications</description>
	<lastBuildDate>Thu, 19 Aug 2010 16:00:08 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>Incredibly Strange iOS Issue</title>
		<description><![CDATA[Update 8/19/2010 @ 11:55 EDT It looks like this may be a cross-domain issue after all.  I changed my testing methodology and was able to reproduce this issue without Gmail being involved. That&#8217;s the good news, the bad news is &#8230; <a href="http://briancrescimanno.com/2010/08/19/incredibly-strange-ios-issue/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/08/19/incredibly-strange-ios-issue/</link>
			</item>
	<item>
		<title>Back from Hiatus</title>
		<description><![CDATA[I&#8217;m back from my blogging hiatus. Between a wedding, honeymoon, and the whirlwind that is HTML5 video, I&#8217;ve been completely out of the loop blogging-wise. Add onto that that just 45 days after the wedding my wife got pregnant, and &#8230; <a href="http://briancrescimanno.com/2010/08/06/back-from-hiatus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/08/06/back-from-hiatus/</link>
			</item>
	<item>
		<title>Hey Web Developers: Step up!</title>
		<description><![CDATA[In my career, I&#8217;ve been fortunate (or unfortunate depending on your point of view) to become heavily involved in the process of recruiting and hiring engineering talent for multiple companies.  I&#8217;m discouraged to say that the User Interface Engineer (which &#8230; <a href="http://briancrescimanno.com/2010/03/31/hey-web-developers-step-up/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/31/hey-web-developers-step-up/</link>
			</item>
	<item>
		<title>Dear MSFT and AAPL, Embrace Theora!</title>
		<description><![CDATA[I swear; I&#8217;m not a hypocrite. I 100% stand by what I wrote to Mozilla about supporting H.264 or risking killing video on the Web sans plugins. I also continue to believe that H.264 is a significantly superior codec to &#8230; <a href="http://briancrescimanno.com/2010/03/22/dear-msft-and-aapl-embrace-theora/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/22/dear-msft-and-aapl-embrace-theora/</link>
			</item>
	<item>
		<title>Webkit vs. Firefox on H264</title>
		<description><![CDATA[I posted this as a comment on another thread; but I thought it warranted its own post. Webkit is an open source project. Webkit development is sponsored by corporations (Apple and Google primarily). Webkit includes support for h264 video. Firefox &#8230; <a href="http://briancrescimanno.com/2010/03/19/webkit-vs-firefox-on-h264/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/19/webkit-vs-firefox-on-h264/</link>
			</item>
	<item>
		<title>Mozilla&#8217;s Not Non-profit (And Other Thoughts)</title>
		<description><![CDATA[Wow, I wrote my &#8220;Dear Mozilla&#8230;&#8221; post last night around 10:30 pm and in less than 12 hours it has generated more traffic than my Blog has generated in any single month since I launched it. As I expected, the &#8230; <a href="http://briancrescimanno.com/2010/03/18/mozillas-not-non-profit-and-other-thoughts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/18/mozillas-not-non-profit-and-other-thoughts/</link>
			</item>
	<item>
		<title>Dear Mozilla, Please Don&#8217;t Kill HTML5 Video!</title>
		<description><![CDATA[Mozilla and I have a long and not-so-storied history together. I first began running what was at the time called the Mozilla App Suite with the &#8220;Milestone 10&#8221; release in October 1999. I was (I believe) one of the first &#8230; <a href="http://briancrescimanno.com/2010/03/17/dear-mozilla-please-dont-kill-html5-video/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/17/dear-mozilla-please-dont-kill-html5-video/</link>
			</item>
	<item>
		<title>Could Anything Make You Use IE9?</title>
		<description><![CDATA[There&#8217;s been a fair amount of publicity lately about Microsoft bringing Internet Explorer much more in-line with modern rendering engines with the upcoming release of Internet Explorer 9.0 which they plan to unveil at Mix10. There&#8217;s talk of strong HTML5 &#8230; <a href="http://briancrescimanno.com/2010/03/05/could-anything-make-you-use-ie9/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/05/could-anything-make-you-use-ie9/</link>
			</item>
	<item>
		<title>Pass that Interview 2: Understanding Recursion</title>
		<description><![CDATA[Recursion is one of the most misunderstood concepts in software development. Truthfully, in modern software development it has been almost completely replaced by iterative control structures (loops). In front-end UI-layer development, it is very rarely used. However, it&#8217;s very common &#8230; <a href="http://briancrescimanno.com/2010/03/01/understanding-recursion/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/03/01/understanding-recursion/</link>
			</item>
	<item>
		<title>Pass that Interview 1: Mimic a Class in Javascript</title>
		<description><![CDATA[Javascript, unlike most object-oriented programming languages, does not have the concept of Classes. Instead, Javascript uses a model in which objects are created, cloned, and enhanced by creating copies of the objects (it&#8217;s loosely based on the Prototype pattern). There &#8230; <a href="http://briancrescimanno.com/2010/02/10/mimic-a-class-in-javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://briancrescimanno.com/2010/02/10/mimic-a-class-in-javascript/</link>
			</item>
</channel>
</rss>
