<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 6 easy things you can do to improve your JavaScript runtime performance</title>
	<atom:link href="http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 05 Aug 2010 21:56:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: General JavaScript tips/tricks &#171; Pat IT Dude Blog</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-14739</link>
		<dc:creator>General JavaScript tips/tricks &#171; Pat IT Dude Blog</dc:creator>
		<pubDate>Mon, 07 Dec 2009 11:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-14739</guid>
		<description>[...] Best way to load your JavaScript  Fast by Default and Web Performances  6 ideas to improve JavaScript performance  Slow [...]</description>
		<content:encoded><![CDATA[<p>[...] Best way to load your JavaScript  Fast by Default and Web Performances  6 ideas to improve JavaScript performance  Slow [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evgeniy Dolzhenko</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-13553</link>
		<dc:creator>Evgeniy Dolzhenko</dc:creator>
		<pubDate>Sun, 22 Nov 2009 10:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-13553</guid>
		<description>I believe the WTF with IE slow script alert could be explained by the following quote:

&quot;Because the Internet Explorer 4.0, 5.0, 6, and 7 time-out is based on the number of script statements executed, the time-out dialog box will not display during ActiveX control or database-access delays. Endless loops in script will still be detected.&quot;

http://support.microsoft.com/kb/175500</description>
		<content:encoded><![CDATA[<p>I believe the WTF with IE slow script alert could be explained by the following quote:</p>
<p>&#8220;Because the Internet Explorer 4.0, 5.0, 6, and 7 time-out is based on the number of script statements executed, the time-out dialog box will not display during ActiveX control or database-access delays. Endless loops in script will still be detected.&#8221;</p>
<p><a href="http://support.microsoft.com/kb/175500" rel="nofollow">http://support.microsoft.com/kb/175500</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastien Grosjean</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-13229</link>
		<dc:creator>Sebastien Grosjean</dc:creator>
		<pubDate>Sun, 15 Nov 2009 22:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-13229</guid>
		<description>Thanks a lot for showing off this performance tests, really helpful and time savers.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for showing off this performance tests, really helpful and time savers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12702</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Mon, 09 Nov 2009 21:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12702</guid>
		<description>parseInt(&quot;3px&quot;) // gives 3</description>
		<content:encoded><![CDATA[<p>parseInt(&#8220;3px&#8221;) // gives 3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rhett Anderson</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12689</link>
		<dc:creator>Rhett Anderson</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12689</guid>
		<description>Does anyone have a short way to turn &quot;3px&quot; into 3 or &quot;3&quot; (and &quot;30px&quot; into 30 or &quot;30&quot;)?</description>
		<content:encoded><![CDATA[<p>Does anyone have a short way to turn &#8220;3px&#8221; into 3 or &#8220;3&#8243; (and &#8220;30px&#8221; into 30 or &#8220;30&#8243;)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rhett Anderson</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12688</link>
		<dc:creator>Rhett Anderson</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:53:23 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12688</guid>
		<description>And you don&#039;t need the unary plus at all, really.

~~&quot;12.5&quot;
&quot;12.5&quot;&#124;0

Note that these replacements for floor work right only on positive numbers. But that&#039;s OK for many applications.</description>
		<content:encoded><![CDATA[<p>And you don&#8217;t need the unary plus at all, really.</p>
<p>~~&#8221;12.5&#8243;<br />
&#8220;12.5&#8243;|0</p>
<p>Note that these replacements for floor work right only on positive numbers. But that&#8217;s OK for many applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikola Klaric</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12687</link>
		<dc:creator>Nikola Klaric</dc:creator>
		<pubDate>Mon, 09 Nov 2009 15:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12687</guid>
		<description>This should be even faster: str &#124; 0

~~+&quot;12.5&quot; == 12
&quot;12.5&quot; &#124; 0 == 12
~~+&quot;abc&quot; == 0
&quot;abc&quot; &#124; 0 == 0

QED

;-)</description>
		<content:encoded><![CDATA[<p>This should be even faster: str | 0</p>
<p>~~+&#8221;12.5&#8243; == 12<br />
&#8220;12.5&#8243; | 0 == 12<br />
~~+&#8221;abc&#8221; == 0<br />
&#8220;abc&#8221; | 0 == 0</p>
<p>QED</p>
<p> <img src='http://mir.aculo.us/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radoslav Stankov</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12672</link>
		<dc:creator>Radoslav Stankov</dc:creator>
		<pubDate>Sun, 08 Nov 2009 20:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12672</guid>
		<description>Very informative, one of the first things on Monday morning is to spread it though colleagues at work :) 10x</description>
		<content:encoded><![CDATA[<p>Very informative, one of the first things on Monday morning is to spread it though colleagues at work <img src='http://mir.aculo.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  10x</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Kurdoghlian</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12670</link>
		<dc:creator>Daniel Kurdoghlian</dc:creator>
		<pubDate>Sun, 08 Nov 2009 20:03:24 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12670</guid>
		<description>Super Artikel - Dankeschön!
War sehr informativ und hilfreich!

kleine Anmerkung - aus dem IE8  [ 8) ]  ist ein smiley geworden ;)</description>
		<content:encoded><![CDATA[<p>Super Artikel &#8211; Dankeschön!<br />
War sehr informativ und hilfreich!</p>
<p>kleine Anmerkung &#8211; aus dem IE8  [ <img src='http://mir.aculo.us/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> ]  ist ein smiley geworden <img src='http://mir.aculo.us/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Fuchs</title>
		<link>http://mir.aculo.us/2009/11/08/6-easy-things-you-can-do-to-improve-your-javascript-runtime-performance/comment-page-1/#comment-12666</link>
		<dc:creator>Thomas Fuchs</dc:creator>
		<pubDate>Sun, 08 Nov 2009 16:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://mir.aculo.us/?p=12047#comment-12666</guid>
		<description>Here&#039;s a little update to the &quot;string to integer coercion&quot; part of the presentation:

You can also do: ~~+&quot;12.5&quot; to coerce the string into an integer number.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a little update to the &#8220;string to integer coercion&#8221; part of the presentation:</p>
<p>You can also do: ~~+&#8221;12.5&#8243; to coerce the string into an integer number.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.221 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 07:28:14 -->

