<?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>Mostly Technical &#187; firefox extensions</title>
	<atom:link href="http://www.rosssimpson.com/blog/tag/firefox-extensions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rosssimpson.com/blog</link>
	<description>Development, Technical bits, Other.</description>
	<lastBuildDate>Wed, 11 Feb 2009 23:40:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Essential tools for web developers</title>
		<link>http://www.rosssimpson.com/blog/2009/02/01/essential-tools-for-web-developers/</link>
		<comments>http://www.rosssimpson.com/blog/2009/02/01/essential-tools-for-web-developers/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 23:00:52 +0000</pubDate>
		<dc:creator>simpsora</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[firefox extensions]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.rosssimpson.com/blog/?p=16</guid>
		<description><![CDATA[This post focuses on web development tools, specifically Firefox extensions.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a firm believer in the principle of using the right tool for the job.  It applies equally well when building software as it does building a house or fixing a car.  There are literally thousands of tools available to do the job, and it can be hard finding the right one.  This post focuses on web development tools, specifically Firefox extensions.</p>
<ol>
<li>
<p><a href="http://www.getfirefox.com" target="_blank">Firefox</a>: while it&#8217;s not an extension, the browser itself deserves mention.  Primary web development should happen in a standards-compliant environment, and Firefox is a great platform for that.  There are certainly other browsers that fit the bill (<a href="http://www.apple.com/safari/">Safari</a> and <a href="http://www.opera.com/">Opera</a> are candidates), but neither has the wealth of extensions that Firefox offers, nor the developer community behind them.</p>
</li>
<li><a href="http://www.getfirebug.com" target="_blank">Firebug</a>: the tagline at the Firebug site is &#8220;web development evolved&#8221;, and that is a true statement.  Firebug may well be the largest single innovation in web development, ever.  That&#8217;s a bold statement, but it provides so much functionality, you hardly need other tools.  Some of it&#8217;s best features include:
<ul>
<li>Visual DOM exploration: mouse over nodes in the DOM tree, see them highlighted in the browser window.  Conversely, inspect an element in the browser window and access it in the DOM tree</li>
<li>Realtime CSS editing: changes to styles take effect immediately</li>
<li>Javascript console: execute arbitrary javascript in the context of the page</li>
<li>Network monitor: see full details on every request and response the browser makes, as they happen</li>
<li>Javascript debugging: a full-featured debugger and profiler for javascript code</li>
<li>Realtime reporting of Javascript and CSS errors: you&#8217;ll know when something&#8217;s not right</li>
</ul>
<p>If you don&#8217;t have Firebug yet, go get it.  Now.</p>
</li>
<li>
<p><a href="http://users.skynet.be/mgueury/mozilla/" target="_blank">HTML Validator</a>: invalid markup is a web developer&#8217;s nightmare &#8212; if your markup isn&#8217;t right, how can anything else be expected to function or look right?  Yet, unless you&#8217;re extremely well disciplined (and even then, sometimes), you&#8217;ll make mistakes.  This extension adds on-the-fly validation to Firefox, letting you know right away when there&#8217;s an error, indicating where it is, and even offering suggestions on how to fix it.  The validator has multiple validation engines; for best effect choose the serial algorithm (w3C&#8217;s SGML parser first, then HTML Tidy).  There&#8217;s no longer an excuse for invalid markup.</p>
</li>
<li>
<p><a href="http://chrispederick.com/work/web-developer/" target="_blank">Web Developer Toolbar</a>: Chris Pederick&#8217;s toolbar was one of the first Firefox extensions targeted at web developers, and it still offers plenty of functionality.  Besides offering shortcuts to oft-used Firefox features, it works with cookies, forms, window resizing, HTML validation and more.  It also provides lots of information about the page and it&#8217;s elements.</p>
</li>
<li>
<p><a href="http://tamperdata.mozdev.org/" target="_blank">Tamper Data</a>: when you need detailed information about HTTP requests and responses, the Net tab in Firebug is one place to look.  Another is Tamper Data, which provides an easily-filtered interface for inspecting HTTP traffic.  However, Tamper Data also allows the user to &#8220;tamper&#8221; with the request before it&#8217;s dispatched to the server, an incredibly useful trick when debugging misbehaving web applications.</p>
</li>
</ol>
<p>Using the right tools will not only make your job easier, it&#8217;ll make you a better developer.  These tools can alert you to mistakes in your code, and you&#8217;ll learn to avoid repeating them in the future.</p>
<p>Everyone has their own favorite tools in their toolbox.  These are my favorites, and I ones I believe no professional web developer should be without.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rosssimpson.com/blog/2009/02/01/essential-tools-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Load flags</title>
		<link>http://www.rosssimpson.com/blog/2007/05/21/load-flags/</link>
		<comments>http://www.rosssimpson.com/blog/2007/05/21/load-flags/#comments</comments>
		<pubDate>Mon, 21 May 2007 22:30:40 +0000</pubDate>
		<dc:creator>simpsora</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[firefox extensions]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.rosssimpson.com/blog/?p=3</guid>
		<description><![CDATA[Mozilla&#8217;s load flags defined (useful in tamper data): http://www.xulplanet.com/references/xpcomref/ifaces/nsIRequest.html]]></description>
			<content:encoded><![CDATA[<p>Mozilla&#8217;s load flags defined (useful in tamper data):</p>
<p><a href="http://www.xulplanet.com/references/xpcomref/ifaces/nsIRequest.html">http://www.xulplanet.com/references/xpcomref/ifaces/nsIRequest.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rosssimpson.com/blog/2007/05/21/load-flags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
