<?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: The Perfect Firefox (Mozilla) Development Environment</title>
	<atom:link href="http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/</link>
	<description>Getting there ...</description>
	<lastBuildDate>Wed, 28 Jul 2010 12:25:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: find job</title>
		<link>http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/comment-page-1/#comment-16146</link>
		<dc:creator>find job</dc:creator>
		<pubDate>Wed, 26 May 2010 15:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/#comment-16146</guid>
		<description>I feel a lot more folks need to read this, very very good info.</description>
		<content:encoded><![CDATA[<p>I feel a lot more folks need to read this, very very good info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tonita Gelabert</title>
		<link>http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/comment-page-1/#comment-15758</link>
		<dc:creator>Tonita Gelabert</dc:creator>
		<pubDate>Sun, 11 Apr 2010 03:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/#comment-15758</guid>
		<description>I have been looking everywhere for some of this information. I also found a free resourse that helped me when writing my resume. It explained why I dont need a &lt;a href=&quot;http://www.oneshotresume.com/oneshotresume_coverletterforresume.php&quot; rel=&quot;nofollow&quot;&gt;cover letter for resume&lt;/A&gt; its free so I thought ok to post it here</description>
		<content:encoded><![CDATA[<p>I have been looking everywhere for some of this information. I also found a free resourse that helped me when writing my resume. It explained why I dont need a <a href="http://www.oneshotresume.com/oneshotresume_coverletterforresume.php" rel="nofollow">cover letter for resume</a> its free so I thought ok to post it here</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandrar</title>
		<link>http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/comment-page-1/#comment-13984</link>
		<dc:creator>sandrar</dc:creator>
		<pubDate>Thu, 10 Sep 2009 22:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/#comment-13984</guid>
		<description>Hi! I was surfing and found your blog post... nice! I love your blog.  :) Cheers! Sandra. R.</description>
		<content:encoded><![CDATA[<p>Hi! I was surfing and found your blog post&#8230; nice! I love your blog.  <img src='http://www.francisrobichaud.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers! Sandra. R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skaber</title>
		<link>http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/comment-page-1/#comment-1298</link>
		<dc:creator>Skaber</dc:creator>
		<pubDate>Mon, 23 Jun 2008 15:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/#comment-1298</guid>
		<description>I&#039;ll try that out. Thanks for the hint !</description>
		<content:encoded><![CDATA[<p>I&#8217;ll try that out. Thanks for the hint !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois Marier</title>
		<link>http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/comment-page-1/#comment-1036</link>
		<dc:creator>Francois Marier</dc:creator>
		<pubDate>Tue, 27 May 2008 22:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.francisrobichaud.com/index.php/2008/05/27/the-perfect-firefox-devenv/#comment-1036</guid>
		<description>The perfect companion to distcc is ccache:

  http://ccache.samba.org

It speeds up compilation by making sure that only files that need to be recompiled will be sent to distcc and gcc. For example, if you do a &quot;make clean&quot; followed by another make, it will not need to recompile anything if the source files haven&#039;t changed, since everything will be in cache already.

On Debian/Ubuntu, install it using apt-get:

  sudo apt-get install ccache

Then, replace &quot;distcc gcc&quot; in your makefile with &quot;ccache gcc&quot; and put this in your shell (e.g. ~/.bashrc):

  export CCACHE_PREFIX=distcc

(See the ccache manpage at http://ccache.samba.org/ccache-man.html for more info on how to run both at the same time.)</description>
		<content:encoded><![CDATA[<p>The perfect companion to distcc is ccache:</p>
<p>  <a href="http://ccache.samba.org" rel="nofollow">http://ccache.samba.org</a></p>
<p>It speeds up compilation by making sure that only files that need to be recompiled will be sent to distcc and gcc. For example, if you do a &#8220;make clean&#8221; followed by another make, it will not need to recompile anything if the source files haven&#8217;t changed, since everything will be in cache already.</p>
<p>On Debian/Ubuntu, install it using apt-get:</p>
<p>  sudo apt-get install ccache</p>
<p>Then, replace &#8220;distcc gcc&#8221; in your makefile with &#8220;ccache gcc&#8221; and put this in your shell (e.g. ~/.bashrc):</p>
<p>  export CCACHE_PREFIX=distcc</p>
<p>(See the ccache manpage at <a href="http://ccache.samba.org/ccache-man.html" rel="nofollow">http://ccache.samba.org/ccache-man.html</a> for more info on how to run both at the same time.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
