<?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>my2cents &#187; Firefox</title>
	<atom:link href="http://www.frightanic.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frightanic.com</link>
	<description>&#34;The Earth was made round so that we would not see too far down the road&#34; - Karen Blixen</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:20:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Tell Mozilla to slow down</title>
		<link>http://www.frightanic.com/2011/10/06/tell-mozilla-to-slow-down/</link>
		<comments>http://www.frightanic.com/2011/10/06/tell-mozilla-to-slow-down/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 20:35:59 +0000</pubDate>
		<dc:creator>frightanic</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://www.frightanic.com/?p=765</guid>
		<description><![CDATA[Here&#8217;s an idea for your one-good-deed-per-day program: tell Mozilla on every channel to reverse their idiotic and suicidal rapid release process. Why not start by commenting the chairperson&#8217;s personal blog post: http://blog.lizardwrangler.com/2011/08/25/rapid-release-process I wish the big wings at Mozilla realized that it’s not just the enterprise folks who care about stability (releases &#38; API). Simple [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an idea for your one-good-deed-per-day program: tell Mozilla on every channel to reverse their idiotic and suicidal rapid release process.</p>
<p>Why not start by commenting the chairperson&#8217;s personal blog post: <a href="http://blog.lizardwrangler.com/2011/08/25/rapid-release-process" target="_blank">http://blog.lizardwrangler.com/2011/08/25/rapid-release-process</a></p>
<p>I wish the big wings at Mozilla realized that it’s not just the enterprise folks who care about stability (releases &amp; API).<br />
Simple question: what do you think counts more for the average non-enterprise Firefox/Thunderbird user<br />
a) a few new features every month thereby loosing a few add-ons because fewer and fewer add-on devs want to release that quickly (they all devote their *spare* time, get it?)<br />
b) a batch of new features every 9 months which had given add-on devs ample time to prepare</p>
<p>Isn’t really a question, is it?</p>
<p>Firefox isn’t so great because it’s Firefox from Mozilla but because of the ecosystem around it. Go out and piss off those who built the ecosystem and it’s gonna die.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frightanic.com/2011/10/06/tell-mozilla-to-slow-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send a HEAD request from Firefox</title>
		<link>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/</link>
		<comments>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 00:11:51 +0000</pubDate>
		<dc:creator>frightanic</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Authoring]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.frightanic.com/?p=453</guid>
		<description><![CDATA[Use the JavaScript console in Firebug and run the following script snippet: var xmlhttp = new XMLHttpRequest(); xmlhttp.open("HEAD", "the_url",true); // Async HEAD request (relative path to avoid cross-domain restrictions) xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { // make sure the request is complete alert(xmlhttp.getAllResponseHeaders()) // display the headers } } xmlhttp.send(null); // send request]]></description>
			<content:encoded><![CDATA[<p>Use the JavaScript console in Firebug and run the following script snippet:</p>
<pre class="brush: javascript;" lang="JAVASCRIPT">
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("HEAD", "the_url",true); // Async HEAD request (relative path to avoid cross-domain restrictions)
xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) { // make sure the request is complete
    alert(xmlhttp.getAllResponseHeaders()) // display the headers
  }
}
xmlhttp.send(null); // send request
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

