<?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: Look Ma, no restarts!</title>
	<atom:link href="http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts/feed" rel="self" type="application/rss+xml" />
	<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts</link>
	<description>Spouting nonsense from the depths of my spare time</description>
	<lastBuildDate>Sat, 14 Jan 2012 22:20:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Luke Cole</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-55292</link>
		<dc:creator>Luke Cole</dc:creator>
		<pubDate>Mon, 09 Aug 2010 18:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-55292</guid>
		<description>Thats awesome.</description>
		<content:encoded><![CDATA[<p>Thats awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ibrahim</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-45152</link>
		<dc:creator>Ibrahim</dc:creator>
		<pubDate>Tue, 13 Apr 2010 01:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-45152</guid>
		<description>Not quite, only newly created Chrome tabs get the extensions. Tabs that were running before an extension was installed don&#039;t get the new extension, because of the very limited way Chrome extensions work.</description>
		<content:encoded><![CDATA[<p>Not quite, only newly created Chrome tabs get the extensions. Tabs that were running before an extension was installed don&#8217;t get the new extension, because of the very limited way Chrome extensions work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oxymoronical &#187; Blog Archive &#187; How do restartless add-ons work?</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-45139</link>
		<dc:creator>Oxymoronical &#187; Blog Archive &#187; How do restartless add-ons work?</dc:creator>
		<pubDate>Mon, 12 Apr 2010 20:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-45139</guid>
		<description>[...] blogged a short time ago about how we&#8217;re adding support for a new form of add-on to Firefox that can install and [...]</description>
		<content:encoded><![CDATA[<p>[...] blogged a short time ago about how we&#8217;re adding support for a new form of add-on to Firefox that can install and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wladimir Palant</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43748</link>
		<dc:creator>Wladimir Palant</dc:creator>
		<pubDate>Thu, 18 Mar 2010 08:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43748</guid>
		<description>I see. I prefer to keep Array.prototype alone and to strictly separate &quot;arrays&quot; and &quot;maps&quot;. But in your case it isn&#039;t all under your control of course.</description>
		<content:encoded><![CDATA[<p>I see. I prefer to keep Array.prototype alone and to strictly separate &#8220;arrays&#8221; and &#8220;maps&#8221;. But in your case it isn&#8217;t all under your control of course.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mossop</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43743</link>
		<dc:creator>Mossop</dc:creator>
		<pubDate>Thu, 18 Mar 2010 07:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43743</guid>
		<description>Mostly because it is a good habit to get into, using for each ... in on arrays can be dangerous as detailed here: https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Statements/for...in#Description

It&#039;s true it is basically safe in this case though.</description>
		<content:encoded><![CDATA[<p>Mostly because it is a good habit to get into, using for each &#8230; in on arrays can be dangerous as detailed here: <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Statements/for...in#Description" rel="nofollow">https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Statements/for&#8230;in#Description</a></p>
<p>It&#8217;s true it is basically safe in this case though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wladimir Palant</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43740</link>
		<dc:creator>Wladimir Palant</dc:creator>
		<pubDate>Thu, 18 Mar 2010 06:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43740</guid>
		<description>Dave, thank you for implementing my suggestions - starts looking really good.

Just out of curiosity: is there a particular reason you use &#124;for (let i = 0; i &lt; methods.length; i++)&#124; rather than &#124;for each (let method in methods)&#124;? Somehow I always assumed that the latter is slightly faster because it immediately stores the member in a local variable rather than requiring you to access it by its index. But with TraceMonkey you cannot really know.</description>
		<content:encoded><![CDATA[<p>Dave, thank you for implementing my suggestions &#8211; starts looking really good.</p>
<p>Just out of curiosity: is there a particular reason you use |for (let i = 0; i &lt; methods.length; i++)| rather than |for each (let method in methods)|? Somehow I always assumed that the latter is slightly faster because it immediately stores the member in a local variable rather than requiring you to access it by its index. But with TraceMonkey you cannot really know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Té</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43613</link>
		<dc:creator>Té</dc:creator>
		<pubDate>Tue, 16 Mar 2010 15:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43613</guid>
		<description>This goes by the name of Dynamic Theme Switching on the tracker, for those interested.
https://bugzilla.mozilla.org/show_bug.cgi?id=134260

Also related, from the above:
https://addons.mozilla.org/firefox/addon/61769</description>
		<content:encoded><![CDATA[<p>This goes by the name of Dynamic Theme Switching on the tracker, for those interested.<br />
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=134260" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=134260</a></p>
<p>Also related, from the above:<br />
<a href="https://addons.mozilla.org/firefox/addon/61769" rel="nofollow">https://addons.mozilla.org/firefox/addon/61769</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mossop</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43609</link>
		<dc:creator>Mossop</dc:creator>
		<pubDate>Tue, 16 Mar 2010 14:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43609</guid>
		<description>If someone were to fix the bugs relating to applying themes without restarting then yes we could switch this on for themes.</description>
		<content:encoded><![CDATA[<p>If someone were to fix the bugs relating to applying themes without restarting then yes we could switch this on for themes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alfred Kayser</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43600</link>
		<dc:creator>Alfred Kayser</dc:creator>
		<pubDate>Tue, 16 Mar 2010 11:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43600</guid>
		<description>Will we also also themes to install and apply without a restart?</description>
		<content:encoded><![CDATA[<p>Will we also also themes to install and apply without a restart?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fqueze</title>
		<link>http://www.oxymoronical.com/blog/2010/03/Look-Ma-no-restarts#comment-43565</link>
		<dc:creator>fqueze</dc:creator>
		<pubDate>Mon, 15 Mar 2010 20:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.oxymoronical.com/?p=722#comment-43565</guid>
		<description>Exciting news! Keep up the good work :)</description>
		<content:encoded><![CDATA[<p>Exciting news! Keep up the good work <img src='http://www.oxymoronical.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

