<?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>aKa Web Design &#187; Firebug</title>
	<atom:link href="http://blog.akawebdesign.com/index.php/category/web-development/firebug/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.akawebdesign.com</link>
	<description>...how a nerd sees the world-wide-web.</description>
	<lastBuildDate>Thu, 22 Jul 2010 20:13:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JavaScript Tabs: ExtCore vs jQuery UI</title>
		<link>http://blog.akawebdesign.com/index.php/2010/01/21/javascript-tabs-extcore-vs-jquery-ui/</link>
		<comments>http://blog.akawebdesign.com/index.php/2010/01/21/javascript-tabs-extcore-vs-jquery-ui/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:25:41 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/?p=374</guid>
		<description><![CDATA[ExtCore and jQuery UI are both JavaScript libraries which allow web developers to create all kinds of widgets. I have been using both over the past year or so, and specifically to use their respective "Tab" widgets.

How do these two libraries compare when you want to build tabs from existing HTML markup? ]]></description>
			<content:encoded><![CDATA[<p>A while back, I built a website for a client using jQuery 1.3 because I needed a slide-show widget for the homepage. More recently I&#8217;ve been using ExtCore for small website widgets &#8211; mainly because I&#8217;m a bigger fan of ExtJS than jQuery. (ExtCore also didn&#8217;t exist at the time I built that website).</p>
<p>Long story short, this particular client (a restaurant) asked me to add some new content to their menu. Rather than expecting the user to scroll down a lengthy list of mouthwatering lunch options, I suggested that we add tabs to the menu in order to logically separate the menu items.</p>
<p>Since I already had jQuery 1.3 running the slide-show on this website I simply decided to build the menu tabs in jQuery to maintain consistency. But I was suddenly struck by an idea: why not compare how ExtCore and jQuery UI create tabs from HTML markup!</p>
<h3>ExtCore</h3>
<p><strong><a href="http://www.extjs.com/products/extcore/" target="_blank">ExtCore</a></strong> can be downloaded from the ExtJS website, and an online demo of the simple tabs can be seen <strong><a href="http://www.extjs.com/playpen/ext-core-latest/examples/tabs/" target="_blank">here</a></strong>.</p>
<p>The first step to building tabs from HTML markup using ExtCore is to reference <em>ext-core.js</em> in your page header. You also need to include the <em>tabs.css</em> file and the &#8220;<em>images</em>&#8221; folder containing the necessary 5 background images. (These can be found under &#8220;<em>/examples/tabs/</em>&#8221; of your ExtCore download ZIP.)</p>
<p><strong>Note:</strong> I&#8217;m using ExtCore 3.0, although I believe 3.1 is available for download.</p>
<p>Next, we need to add the appropriate HTML markup for our tabs. Here&#8217;s a quick example.</p>
<p align="center"><img src="http://www.akawebdesign.com/blog/2010/01-21/extcore-html.gif" alt="ExtCore HTML Markup" /></p>
<p>As you can see from the picture above, ExtCore takes a wrapping DIV element (class &#8220;tab_container&#8221;) and converts a nested unordered list into the tabs. Subsequent child DIV elements contain the markup for each tab&#8217;s content. (The source code in this example is taken directly from the ExtCore tab example.)</p>
<p>The only thing to notice is that each DIV element has a CSS class assigned to it &#8211; these classes are essential to proper tab theming. The DOM ID properties are used to click back-and-forth between tabs.</p>
<p>Lastly, you need to include a JavaScript snippet which converts your HTML markup into a fancy tabbed widget:</p>
<p align="center"><img src="http://www.akawebdesign.com/blog/2010/01-21/extcore-js.gif" alt="ExtCore JavaScript Code" /></p>
<p><strong>jQuery UI</strong></p>
<p><strong><a href="http://jqueryui.com" target="_blank">jQuery UI</a></strong> has a tab widget which is dependant on the larger jQuery library. An online demo of their tab widget can be seen <strong><a href="http://jqueryui.com/demos/tabs/" target="_blank">here</a></strong>.</p>
<p>The first step to using tabbed content with jQuery is to reference:</p>
<ul>
<li>jquery-1.3.2.min.js</li>
<li>jquery-ui-1.7.2.min.js</li>
</ul>
<p>Your file versions may differ (I think jQuery 1.4 was just released), but these are the versions I&#8217;m using. I&#8217;m also using the &#8220;smoothness&#8221; theme &#8211; for some reason jQuery UI would not allow me to download the package without specifying a theme. (That may affect my analysis for speed in the next section.)</p>
<p>You will also need to include the CSS file and images folder included with your download of jQuery UI. In my case, it&#8217;s <em>jquery-ui-1.7.2.css</em> and an &#8220;<em>images</em>&#8221; folder containing 13 background images.</p>
<p>Next, write your HTML markup:</p>
<p align="center"><img src="http://www.akawebdesign.com/blog/2010/01-21/jquery-html.gif" alt="jQuery HTML Markup" /></p>
<p>Compared to ExtCore, jQuery UI expects less HTML markup as we lose several layers of nested DIV elements. The most obvious difference between jQuery UI and ExtCore is probably that jQuery UI doesn&#8217;t need the extra CSS classes applied to the DIV elements.</p>
<p>Next, we add our JavaScript snippet:</p>
<p align="center"><img src="http://www.akawebdesign.com/blog/2010/01-21/jquery-js.gif" alt="jQuery JavaScript Code" /></p>
<p>Again, jQuery UI expects less code to generate the tabbed widget.</p>
<h3>A Deeper Look</h3>
<p>Let&#8217;s take a look at the file sizes for each library. This is about as un-scientific a study as it can get; I&#8217;m using Firebug&#8217;s &#8220;Net&#8221; tab to grab file size and download speed numbers. These numbers will probably be different for you because of any number of factors&#8230; but you get the idea.</p>
<p>As I already mentioned, ExtCore requires 1 JavaScript file, 1 CSS file and only 5 background images:</p>
<ul>
<li>ext-core.js (78.9 KB, 156ms)</li>
<li>Ext.tabs.css (1.3 KB, 147ms)</li>
<li>5 png files (2.8-2.9 KB each, average 107ms)</li>
</ul>
<p>Combing the file sizes and their download times (on my home network), you get a <strong>total of roughly 94.7 KB taking 838ms</strong>.</p>
<p>jQuery UI requires 2 JavaScript files, 1 CSS file and 13 background images (again, with the &#8220;smoothness&#8221; theme):</p>
<ul>
<li>jquery-1.3.2.min.js (55.9 KB, 116ms)</li>
<li>jquery-ui-1.7.2.min.js (188.1 KB, 221ms)</li>
<li>13 png files (22.3 KB total*)</li>
</ul>
<p>*Something interesting I noticed about the jQuery UI tabs is that my page only seemed to load 5 of the 13 background images, totaling something like 605 bytes and a total of 684ms. Perhaps someone more familiar with jQuery can explain that to me&#8230; I didn&#8217;t dig deep enough to figure out what was going on, but I&#8217;ll base my total on what Firebug says. I&#8217;m guessing that I&#8217;m not using all of the CSS background images for this theme.</p>
<p>Overall, that brings jQuery UI tabs to a <strong>total of roughly 245 KB taking 1021ms</strong>.</p>
<p>What Does That Even Mean?</p>
<p>According to my inaccurate, quasi-scientific study it appears that ExtCore requires slightly more code than jQuery UI. On the other hand, ExtCore also appears to be downloaded by my browser more quickly than jQuery UI. In reality, those numbers probably offset each other as the extra markup required by ExtCore increases the HTML file size. The fact that I&#8217;m using a theme on jQuery UI probably also has a slight impact on performance.</p>
<p><em>Which do I prefer?</em></p>
<p>In essence, both libraries create tabbed widgets from the same basic HTML markup &#8211; though the differences are significant enough that they&#8217;re not cross-compatible.</p>
<p>Judging both frameworks as they stand in my examples, I will say that I like the conciseness (is that a word?) of jQuery with regards to both HTML markup and JavaScript code. But I also like that ExtCore requires fewer files. As someone who uses the larger ExtJS framework a great deal, I&#8217;ll say that I am very likely to choose ExtCore over jQuery UI most days of the week.</p>
<p>Are there any ExtCore or jQuery UI users out there? <strong><em>What do you think?</em></strong></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;t=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;title=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;title=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI&amp;bodytext=ExtCore%20and%20jQuery%20UI%20are%20both%20JavaScript%20libraries%20which%20allow%20web%20developers%20to%20create%20all%20kinds%20of%20widgets.%20I%20have%20been%20using%20both%20over%20the%20past%20year%20or%20so%2C%20and%20specifically%20to%20use%20their%20respective%20%22Tab%22%20widgets.%0D%0A%0D%0AHow%20do%20these%20two%20libraries%20compare%20when%20you%20want%20to%20build%20tabs%20from%20existing%20HTML%20markup%3F%20" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;title=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI&amp;notes=ExtCore%20and%20jQuery%20UI%20are%20both%20JavaScript%20libraries%20which%20allow%20web%20developers%20to%20create%20all%20kinds%20of%20widgets.%20I%20have%20been%20using%20both%20over%20the%20past%20year%20or%20so%2C%20and%20specifically%20to%20use%20their%20respective%20%22Tab%22%20widgets.%0D%0A%0D%0AHow%20do%20these%20two%20libraries%20compare%20when%20you%20want%20to%20build%20tabs%20from%20existing%20HTML%20markup%3F%20" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;title=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;title=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=ExtCore%20and%20jQuery%20UI%20are%20both%20JavaScript%20libraries%20which%20allow%20web%20developers%20to%20create%20all%20kinds%20of%20widgets.%20I%20have%20been%20using%20both%20over%20the%20past%20year%20or%20so%2C%20and%20specifically%20to%20use%20their%20respective%20%22Tab%22%20widgets.%0D%0A%0D%0AHow%20do%20these%20two%20libraries%20compare%20when%20you%20want%20to%20build%20tabs%20from%20existing%20HTML%20markup%3F%20" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2010%2F01%2F21%2Fjavascript-tabs-extcore-vs-jquery-ui%2F&amp;submitHeadline=JavaScript%20Tabs%3A%20ExtCore%20vs%20jQuery%20UI&amp;submitSummary=ExtCore%20and%20jQuery%20UI%20are%20both%20JavaScript%20libraries%20which%20allow%20web%20developers%20to%20create%20all%20kinds%20of%20widgets.%20I%20have%20been%20using%20both%20over%20the%20past%20year%20or%20so%2C%20and%20specifically%20to%20use%20their%20respective%20%22Tab%22%20widgets.%0D%0A%0D%0AHow%20do%20these%20two%20libraries%20compare%20when%20you%20want%20to%20build%20tabs%20from%20existing%20HTML%20markup%3F%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2010/01/21/javascript-tabs-extcore-vs-jquery-ui/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ext-Doc: ExtJS-style JavaScript Documentation</title>
		<link>http://blog.akawebdesign.com/index.php/2009/06/25/ext-doc-extjs-style-javascript-documentation/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/06/25/ext-doc-extjs-style-javascript-documentation/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 13:39:23 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/?p=138</guid>
		<description><![CDATA[A while back, I posted about my struggle to find a good JavaScript documentation tool. Over the past week, I began exploring one more option which is very promising.
Ext-Doc is a JavaScript documentation tool which creates by far the best looking documentation. Created and maintained by several members of the ExtJS community, Ext-Doc outputs your [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, I posted about my struggle to find a <a href="http://blog.akawebdesign.com/?p=38" target="_blank"><strong>good JavaScript documentation tool</strong></a>. Over the past week, I began exploring one more option which is very promising.</p>
<p><a href="http://code.google.com/p/ext-doc/" target="_blank"><strong>Ext-Doc</strong></a> is a JavaScript documentation tool which creates by far the best looking documentation. Created and maintained by several members of the ExtJS community, Ext-Doc outputs your documentation using a template mimicking the ExtJS documentation. The tool is compatible on both Windows and Mac/Linux (it runs off Java) and fairly easy to setup.</p>
<p>So far, I&#8217;ve only encountered three issues:</p>
<ol>
<li>The instructional Wiki on Ext-Doc site (hosted on Google Code) is simply terrible. It&#8217;s clear that the focus has been on developing the tool itself, but there&#8217;s close to zero documentation supporting it. If you need help, you have to search the ExtJS message boards.</li>
<li>The documentation output by the tool cannot be viewed locally &#8211; it must be uploaded to a server as it relies on Ajax.</li>
<li>The documentation tags are different from some of the other JS documentation tools</li>
</ol>
<p>The first issue is obviously frustrating, particularly as the Java JAR file will hit errors and give you no reason why anything fails. Searching through the ExtJS forum and talking with the community has helped me get started, but this is a huge flaw and is (in my opinion) preventing Ext-Doc from being the defacto JavaScript documentation tool available. If they can get their Wiki up to date then this tool will certainly make an impact.</p>
<p>The second issue is actually pretty easy to work around on Microsoft Vista. Since Vista comes packaged with IIS7, you can simply tell the .BAT file to output the documentation to your local host&#8217;s root. This way, you can update and view your docs without having to copy/paste or FTP files to a web server.</p>
<p>Lastly, the tags used to document your JavaScript code are different in Ext-Doc than in JSDoc Toolkit (which is what I had been using). I don&#8217;t know if either tool is actually consistent with documentation standards in JAVA, but <em>I wish that all of these JavaScript tools would use the same set of tags</em>. It would make testing other tools much easier, and consistency in documentation is really important. <a href="http://www.crockford.com/" target="_blank"><strong>Douglas Crockford</strong></a> (if you&#8217;re reading this), can we PLEASE get this discussion in front of the ECMA Standards board?</p>
<p>At the very least, I&#8217;m biased towards this new Ext-Doc tool (not really so new, actually) because I use ExtJS and I love their documentation. Once I get my tags updated, I think I&#8217;ll be very happy with this tool.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;t=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;title=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;title=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation&amp;bodytext=A%20while%20back%2C%20I%20posted%20about%20my%20struggle%20to%20find%20a%20good%20JavaScript%20documentation%20tool.%20Over%20the%20past%20week%2C%20I%20began%20exploring%20one%20more%20option%20which%20is%20very%20promising.%0D%0A%0D%0AExt-Doc%20is%20a%20JavaScript%20documentation%20tool%20which%20creates%20by%20far%20the%20best%20looking%20" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;title=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation&amp;notes=A%20while%20back%2C%20I%20posted%20about%20my%20struggle%20to%20find%20a%20good%20JavaScript%20documentation%20tool.%20Over%20the%20past%20week%2C%20I%20began%20exploring%20one%20more%20option%20which%20is%20very%20promising.%0D%0A%0D%0AExt-Doc%20is%20a%20JavaScript%20documentation%20tool%20which%20creates%20by%20far%20the%20best%20looking%20" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;title=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;title=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=A%20while%20back%2C%20I%20posted%20about%20my%20struggle%20to%20find%20a%20good%20JavaScript%20documentation%20tool.%20Over%20the%20past%20week%2C%20I%20began%20exploring%20one%20more%20option%20which%20is%20very%20promising.%0D%0A%0D%0AExt-Doc%20is%20a%20JavaScript%20documentation%20tool%20which%20creates%20by%20far%20the%20best%20looking%20" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F25%2Fext-doc-extjs-style-javascript-documentation%2F&amp;submitHeadline=Ext-Doc%3A%20ExtJS-style%20JavaScript%20Documentation&amp;submitSummary=A%20while%20back%2C%20I%20posted%20about%20my%20struggle%20to%20find%20a%20good%20JavaScript%20documentation%20tool.%20Over%20the%20past%20week%2C%20I%20began%20exploring%20one%20more%20option%20which%20is%20very%20promising.%0D%0A%0D%0AExt-Doc%20is%20a%20JavaScript%20documentation%20tool%20which%20creates%20by%20far%20the%20best%20looking%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/06/25/ext-doc-extjs-style-javascript-documentation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Parsing XML: jQuery vs. ExtJS</title>
		<link>http://blog.akawebdesign.com/index.php/2009/06/18/parsing-xml-jquery-vs-extjs/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/06/18/parsing-xml-jquery-vs-extjs/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:32:29 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ExtJs]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/?p=131</guid>
		<description><![CDATA[If you follow my blog, you&#8217;ve noticed that I constantly talk about ExtJS. I use it extensively at my office, and I know the API (for version 2.2.1) about as well as anyone not working for their company.
I recently came across a situation that has me frustrated because ExtJS doesn&#8217;t seem to have a built-in [...]]]></description>
			<content:encoded><![CDATA[<p>If you follow my blog, you&#8217;ve noticed that I constantly talk about ExtJS. I use it extensively at my office, and I know the API (for version 2.2.1) about as well as anyone not working for their company.</p>
<p>I recently came across a situation that has me frustrated because ExtJS doesn&#8217;t seem to have a built-in utility to solve my problem. Obviously, I can code something custom. . . but I&#8217;m frustrated because it&#8217;s more work than necessary and far from elegant.</p>
<p>The story begins about a year ago. My company (<a href="http://www.gfxi.com" target="_blank"><strong>GFX International</strong></a>) has been working on an enterprise software solution for some time, and the developers wrote a method using jQuery (v1.2.6) to parse an XHTML server response returned during 500 errors. The idea is to create a popup window with the error message (one line of code), which is parsed from a rather long XHTML document (the default 500 error page returned by .NET).</p>
<p>The jQuery method is actually quite elegant and works perfectly.</p>
<pre>getErrorText: function (response) {
    var errorCode = response.status;

    if (errorCode == 401 || errorCode == 403) {
        return 'You are not permitted to perform this action.';
    }

    //the custom error page has a DIV tag with this ID
    var errorMessage = $(response.responseText).find("div#errortext").html();

    if (!errorMessage) {
        //in DEBUG mode, we don't use custom error page.
        errorMessage = $(response.responseText).find("h2").html();
    }

    return errorMessage;
}</pre>
<p>Over the past 9 months since I was hired as our Web Developer, I&#8217;ve redesigned the UI of this application so that it is built almost entirely on ExtJS widgets and extensions. The problem with the above method is that this now is the only place in the application where we use jQuery &#8211; meaning we have to include the jQuery library for only 2 lines of code.</p>
<p>My initial thought was: <em>&#8220;I&#8217;ll just re-write this method using ExtJS and remove our dependency on jQuery!&#8221;</em> Sounds easy enough, but in reality it&#8217;s actually a pain in the ass for several reasons.</p>
<p>First, the <em>response</em> variable returned during the 500 error is not a valid XML document. . . it&#8217;s not even valid HTML. The .NET framework generates a detailed error message contained within HTML tags, but after closing the final HTML tag is appends a stack of executed code lines leading up to the error. This section of appended data breaks the XML/HTML validity, essentially making it impossible for me to just throw the <em>response</em> variable into an DOMparser() object.</p>
<p>Second, ExtJS has no built-in utility for parsing a generic XML string for a specified value. In jQuery, every variable called by <em>$(someVariable)</em> is checked (1) to see if it&#8217;s a string, and if so (2) to see if it is HTML code (using a regular expression match). If jQuery believes your variable to be an HTML chunk, it runs it through a clean() method to convert the HTML string into DOM nodes (getting rid of any junk. . . *cough* .NET stack trace).</p>
<p>ExtJS <em>does</em> have a similar utility: <em>Ext.query(selector, root)</em>. Unfortunately for me, this means that I can only parse an exisiting DOM node. Since my <em>response</em> variable isn&#8217;t part of the DOM (or even formatted as a proper DOM element) this method doesn&#8217;t really help me until I solve the first problem.</p>
<p>After <a href="http://extjs.com/forum/showthread.php?p=344531&amp;posted=1#post344531" target="_blank"><strong>posting this problem on the ExtJS message board</strong></a>, a member of their support team suggested that I simply build a regular expression to parse my response object. Obviously, this would solve my problem. However, it&#8217;s not an elegant solution; regular expressions are ugly at best (they are in fact my nemesis), and this solution fails to solve similar problems faced by other ExtJS users (I assume others have encountered this problem). The bottom line is that this type of utility would make a reasonable and very useful addition to the ExtJS library. . . so why isn&#8217;t one available?</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;t=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;title=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;title=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS&amp;bodytext=If%20you%20follow%20my%20blog%2C%20you%27ve%20noticed%20that%20I%20constantly%20talk%20about%20ExtJS.%20I%20use%20it%20extensively%20at%20my%20office%2C%20and%20I%20know%20the%20API%20%28for%20version%202.2.1%29%20about%20as%20well%20as%20anyone%20not%20working%20for%20their%20company.%0D%0A%0D%0AI%20recently%20came%20across%20a%20situation%20that%20has%20" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;title=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS&amp;notes=If%20you%20follow%20my%20blog%2C%20you%27ve%20noticed%20that%20I%20constantly%20talk%20about%20ExtJS.%20I%20use%20it%20extensively%20at%20my%20office%2C%20and%20I%20know%20the%20API%20%28for%20version%202.2.1%29%20about%20as%20well%20as%20anyone%20not%20working%20for%20their%20company.%0D%0A%0D%0AI%20recently%20came%20across%20a%20situation%20that%20has%20" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;title=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;title=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=If%20you%20follow%20my%20blog%2C%20you%27ve%20noticed%20that%20I%20constantly%20talk%20about%20ExtJS.%20I%20use%20it%20extensively%20at%20my%20office%2C%20and%20I%20know%20the%20API%20%28for%20version%202.2.1%29%20about%20as%20well%20as%20anyone%20not%20working%20for%20their%20company.%0D%0A%0D%0AI%20recently%20came%20across%20a%20situation%20that%20has%20" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F06%2F18%2Fparsing-xml-jquery-vs-extjs%2F&amp;submitHeadline=Parsing%20XML%3A%20jQuery%20vs.%20ExtJS&amp;submitSummary=If%20you%20follow%20my%20blog%2C%20you%27ve%20noticed%20that%20I%20constantly%20talk%20about%20ExtJS.%20I%20use%20it%20extensively%20at%20my%20office%2C%20and%20I%20know%20the%20API%20%28for%20version%202.2.1%29%20about%20as%20well%20as%20anyone%20not%20working%20for%20their%20company.%0D%0A%0D%0AI%20recently%20came%20across%20a%20situation%20that%20has%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/06/18/parsing-xml-jquery-vs-extjs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>YSlow 2.0 (beta2) Released</title>
		<link>http://blog.akawebdesign.com/index.php/2009/04/29/yslow-20-beta2-released/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/04/29/yslow-20-beta2-released/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 19:06:52 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/?p=83</guid>
		<description><![CDATA[I read earlier today that Yahoo released YSlow 2 (beta2) and I decided to give it a try.
I&#8217;ve been a big fan of the Firebug plugin, and so far I&#8217;m impressed with the improvements. I suppose time will tell (I&#8217;ve been using it for about an hour now), but I like the new UI. More [...]]]></description>
			<content:encoded><![CDATA[<p>I read earlier today that Yahoo released YSlow 2 (beta2) and I decided to give it a try.</p>
<p>I&#8217;ve been a big fan of the Firebug plugin, and so far I&#8217;m impressed with the improvements. I suppose time will tell (I&#8217;ve been using it for about an hour now), but I like the new UI. More importantly, the changes in their website grading scale seem to be worth while. YSlow now offers developers to select &#8220;Small Site of Blog&#8221; as an option when grading &#8211; a feature which makes the grade much more relevant in such cases.</p>
<p>However, I did notice that YSlow grades on an A thru F basis, including grade E (as in better than F, worse than D). I&#8217;m not sure what schools the Yahoo developers graduated from, but I&#8217;ve never had a teacher who gave Es. Odd, but I&#8217;m obviously nitpicking.</p>
<p>And while I do like the UI improvements, they seem to be better suited for when Firebug is a separate window rather than docked at the bottom of the browser. It&#8217;s a bit annoying to have to scroll constantly to read the output.</p>
<p>I haven&#8217;t read much about what else YSlow 2 will offer when it&#8217;s out of beta testing, but so far Yahoo has done an excellent job. It&#8217;s long overdue.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;t=YSlow%202.0%20%28beta2%29%20Released" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;title=YSlow%202.0%20%28beta2%29%20Released" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;title=YSlow%202.0%20%28beta2%29%20Released&amp;bodytext=I%20read%20earlier%20today%20that%20Yahoo%20released%20YSlow%202%20%28beta2%29%20and%20I%20decided%20to%20give%20it%20a%20try.%0D%0A%0D%0AI%27ve%20been%20a%20big%20fan%20of%20the%20Firebug%20plugin%2C%20and%20so%20far%20I%27m%20impressed%20with%20the%20improvements.%20I%20suppose%20time%20will%20tell%20%28I%27ve%20been%20using%20it%20for%20about%20an%20hour%20now%29" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;title=YSlow%202.0%20%28beta2%29%20Released&amp;notes=I%20read%20earlier%20today%20that%20Yahoo%20released%20YSlow%202%20%28beta2%29%20and%20I%20decided%20to%20give%20it%20a%20try.%0D%0A%0D%0AI%27ve%20been%20a%20big%20fan%20of%20the%20Firebug%20plugin%2C%20and%20so%20far%20I%27m%20impressed%20with%20the%20improvements.%20I%20suppose%20time%20will%20tell%20%28I%27ve%20been%20using%20it%20for%20about%20an%20hour%20now%29" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;title=YSlow%202.0%20%28beta2%29%20Released" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;title=YSlow%202.0%20%28beta2%29%20Released&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=I%20read%20earlier%20today%20that%20Yahoo%20released%20YSlow%202%20%28beta2%29%20and%20I%20decided%20to%20give%20it%20a%20try.%0D%0A%0D%0AI%27ve%20been%20a%20big%20fan%20of%20the%20Firebug%20plugin%2C%20and%20so%20far%20I%27m%20impressed%20with%20the%20improvements.%20I%20suppose%20time%20will%20tell%20%28I%27ve%20been%20using%20it%20for%20about%20an%20hour%20now%29" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=YSlow%202.0%20%28beta2%29%20Released%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F04%2F29%2Fyslow-20-beta2-released%2F&amp;submitHeadline=YSlow%202.0%20%28beta2%29%20Released&amp;submitSummary=I%20read%20earlier%20today%20that%20Yahoo%20released%20YSlow%202%20%28beta2%29%20and%20I%20decided%20to%20give%20it%20a%20try.%0D%0A%0D%0AI%27ve%20been%20a%20big%20fan%20of%20the%20Firebug%20plugin%2C%20and%20so%20far%20I%27m%20impressed%20with%20the%20improvements.%20I%20suppose%20time%20will%20tell%20%28I%27ve%20been%20using%20it%20for%20about%20an%20hour%20now%29&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/04/29/yslow-20-beta2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Documentation Tools</title>
		<link>http://blog.akawebdesign.com/index.php/2009/03/10/javascript-documentation-tools/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/03/10/javascript-documentation-tools/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 19:49:13 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/?p=38</guid>
		<description><![CDATA[JavaScript documentation is a pain in the ass.
I&#8217;ve complained about this on my blog before, but I&#8217;ve spent the past week or so trying to test the handful of JavaScript documentation tools that are available and I&#8217;m actually starting to get mad. Why? Because there&#8217;s little standardization, and you have to be a computer scientist [...]]]></description>
			<content:encoded><![CDATA[<p>JavaScript documentation is a pain in the ass.</p>
<p>I&#8217;ve complained about this on my blog before, but I&#8217;ve spent the past week or so trying to test the handful of JavaScript documentation tools that are available and I&#8217;m actually starting to get mad. <em>Why?</em> Because there&#8217;s little standardization, and you have to be a computer scientist to get some of the tools to work.</p>
<p>Working on a Windows machine seems to further tie my hands, as (again) the tools all seem to use command line processes. While this isn&#8217;t a major handicap, I&#8217;m lucky in that I know what I&#8217;m doing &#8212; the average (or beginner) programmer is going to quickly get lost.</p>
<p>In an ongoing effort to explore my options as a JavaScript developer, here&#8217;s a review of the tools I&#8217;ve tried so far:</p>
<h3><a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JS Doc Toolkit</a></h3>
<p>After downloading the ZIP file, it&#8217;s pretty basic to extract. The project uses JAVA to walk the filesystem, parse your JS files, and build your documentation. The readme file is pretty self-explanatory, and walks you through using the command line (Mac, Linux, or Windows). I wrote a simple .BAT file to do the work for me&#8230; and I&#8217;m now a double-click away from fresh documentation.</p>
<h3><a href="http://developer.yahoo.com/yui/yuidoc/" target="_blank">YUI DOC</a></h3>
<p>I&#8217;m already very critical of YUI, and I personally think this tool just sucks.</p>
<p>Not only do you have to know Python to run YUI DOC, but <em>it doesn&#8217;t even work with the current version of Python!</em> Are you kidding me? It needs to run on v2.4.3 &#8211; when v2.6.1 and v3.0.1 are available. That&#8217;s just retarded, and because I don&#8217;t feel like installing an older version of Python onto either of my machines (I have Vista and MacOSX) I simply gave up.</p>
<p>I also don&#8217;t like the output on YUI&#8217;s own documentation site, so I&#8217;m not really crying about this.</p>
<h3><a href="http://code.google.com/p/jgrousedoc/" target="_blank">jGrouse</a></h3>
<p>jGrouse is another JAVA-based tool which runs on top of the ANT platform.</p>
<p>Honestly, I had a hell of a time installing and running jGrouse. I had to re-install JAVA on my machine because I didn&#8217;t have the SDK with tools.jar installed&#8230; oy vey.</p>
<p>Once I finally got jGrouse running, I noticed that it didn&#8217;t pick up most of the comments I already had written for JS Doc Toolkit. Boo urns.</p>
<h3><a href="http://www.scriptdoc.org/" target="_blank">ScriptDoc</a></h3>
<p>Here&#8217;s a framework you don&#8217;t have to install &#8211; it comes builtin with the Aptana IDE!</p>
<p>I haven&#8217;t been using the Aptana IDE much, but I might start. The interface is slick, and the fact that it has ScriptDoc builtin with the IDE is gravy.</p>
<h3>Lessons Learned</h3>
<p>If I weren&#8217;t doing a bunch of .NET development side-by-side with JavaScript, I would absolutely be using Aptana&#8230; and ScriptDoc. It&#8217;s by far the easiest documentation tool available, and clearly the best choice for Windows users.</p>
<p>JS Doc Toolkit is a close second, and (for now) the option I&#8217;m going with.</p>
<p>I have to say that it really bothers me that JavaScript documentation is not standarized at this point. Not only is setting up a tool a pain in the ass, but many of the tools want your documentation parameters in a specific order &#8211; which is just confusing. The parameters aren&#8217;t standardized across all of the documentation tools, which is even more confusing and frustrating if you want to change tools.</p>
<p><a href="http://blog.akawebdesign.com/?p=138" target="_blank"><strong>UPDATE (6/25/09): New post on Ext-Doc tool.</strong></a></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;t=JavaScript%20Documentation%20Tools" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;title=JavaScript%20Documentation%20Tools" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;title=JavaScript%20Documentation%20Tools&amp;bodytext=JavaScript%20documentation%20is%20a%20pain%20in%20the%20ass.%0D%0A%0D%0AI%27ve%20complained%20about%20this%20on%20my%20blog%20before%2C%20but%20I%27ve%20spent%20the%20past%20week%20or%20so%20trying%20to%20test%20the%20handful%20of%20JavaScript%20documentation%20tools%20that%20are%20available%20and%20I%27m%20actually%20starting%20to%20get%20mad.%20W" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;title=JavaScript%20Documentation%20Tools&amp;notes=JavaScript%20documentation%20is%20a%20pain%20in%20the%20ass.%0D%0A%0D%0AI%27ve%20complained%20about%20this%20on%20my%20blog%20before%2C%20but%20I%27ve%20spent%20the%20past%20week%20or%20so%20trying%20to%20test%20the%20handful%20of%20JavaScript%20documentation%20tools%20that%20are%20available%20and%20I%27m%20actually%20starting%20to%20get%20mad.%20W" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;title=JavaScript%20Documentation%20Tools" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;title=JavaScript%20Documentation%20Tools&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=JavaScript%20documentation%20is%20a%20pain%20in%20the%20ass.%0D%0A%0D%0AI%27ve%20complained%20about%20this%20on%20my%20blog%20before%2C%20but%20I%27ve%20spent%20the%20past%20week%20or%20so%20trying%20to%20test%20the%20handful%20of%20JavaScript%20documentation%20tools%20that%20are%20available%20and%20I%27m%20actually%20starting%20to%20get%20mad.%20W" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=JavaScript%20Documentation%20Tools%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F03%2F10%2Fjavascript-documentation-tools%2F&amp;submitHeadline=JavaScript%20Documentation%20Tools&amp;submitSummary=JavaScript%20documentation%20is%20a%20pain%20in%20the%20ass.%0D%0A%0D%0AI%27ve%20complained%20about%20this%20on%20my%20blog%20before%2C%20but%20I%27ve%20spent%20the%20past%20week%20or%20so%20trying%20to%20test%20the%20handful%20of%20JavaScript%20documentation%20tools%20that%20are%20available%20and%20I%27m%20actually%20starting%20to%20get%20mad.%20W&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/03/10/javascript-documentation-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with AJAX in Safari 4 Beta</title>
		<link>http://blog.akawebdesign.com/index.php/2009/02/25/playing-with-ajax-in-safari-4-beta/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/02/25/playing-with-ajax-in-safari-4-beta/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 15:08:00 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/index.php/2009/02/25/playing-with-ajax-in-safari-4-beta/</guid>
		<description><![CDATA[If you&#8217;ve been following my blog over the past several months, you&#8217;ve probably learned a few things about me.

I do a lot of JavaScript and AJAX development
I&#8217;m a complete snob about using Firebug
I&#8217;m definitely not a fan of Safari (see It&#8217;s Official: I Hate Safari, and I Hate Safari, part 2 for reference)

I heard that [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been following my blog over the past several months, you&#8217;ve probably learned a few things about me.</p>
<ol>
<li>I do a lot of JavaScript and AJAX development</li>
<li>I&#8217;m a complete snob about using Firebug</li>
<li>I&#8217;m definitely not a fan of Safari (see <a href="http://blog.akawebdesign.com/?p=15" target="_blank">It&#8217;s Official: I Hate Safari</a>, and <a href="http://blog.akawebdesign.com/?p=16" target="_blank">I Hate Safari, part 2</a> for reference)</li>
</ol>
<p>I heard that Apple just released <a href="http://www.apple.com/safari/" target="_blank">Safari 4 (BETA)</a>, which <a href="http://www.apple.com/pr/library/2009/02/24safari.html" target="_blank">touts improvements</a> in a handful of areas. As someone who openly hates Safari, my excitement regarding this release was easily contained.</p>
<p>What&#8217;s new in Safari 4? Besides a bunch of (in my opinion) minor and pointless UI changes, the browser will support HTML 5 and CSS effects. (I wrote a previous post about <a href="http://blog.akawebdesign.com/?p=23" target="_blank">why I think CSS effects are a bad idea</a>.) However, I was interested in two particular improvements &#8212; the Nitro engine, and the Developer Tools.</p>
<p>The Nitro engine (according to the press release) basically allows Safari to process JavaScript exponentially faster than both IE and Firefox. This is cool, and actually very useful&#8230; and by useful, I mean that applications relying heavily on JavaScript and AJAX will process information more quickly.</p>
<p>Safari also added some improvements to the debugging features in the Developer Toolbar. Namely, it looks like Apple has added the ability to see XHR actions and their request/response headers. This is pretty cool, though it doesn&#8217;t actually catch the POST parameters used in the requests like Firebug does&#8230; and that&#8217;s a huge feature to miss. Nonetheless, it makes my life easier to debug JavaScript in Safari.</p>
<p>My overall first impression: Safari 4 BETA is a good step forward (I&#8217;m testing the Windows Vista version). It still doesn&#8217;t make me want to stop using Firefox, but it will start making my life easier as a JavaScript developer. I guess I can&#8217;t say that I still hate Safari&#8230; but I&#8217;m far from being a fan.</p>
<p>One last thought: as Safari 4 is just a BETA version, I&#8217;ll be curious to see the finished 4.0 release.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;t=Playing%20with%20AJAX%20in%20Safari%204%20Beta" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;title=Playing%20with%20AJAX%20in%20Safari%204%20Beta" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;title=Playing%20with%20AJAX%20in%20Safari%204%20Beta&amp;bodytext=If%20you%27ve%20been%20following%20my%20blog%20over%20the%20past%20several%20months%2C%20you%27ve%20probably%20learned%20a%20few%20things%20about%20me.%0D%0A%0D%0A%09I%20do%20a%20lot%20of%20JavaScript%20and%20AJAX%20development%0D%0A%09I%27m%20a%20complete%20snob%20about%20using%20Firebug%0D%0A%09I%27m%20definitely%20not%20a%20fan%20of%20Safari%20%28see%20It%27s%20O" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;title=Playing%20with%20AJAX%20in%20Safari%204%20Beta&amp;notes=If%20you%27ve%20been%20following%20my%20blog%20over%20the%20past%20several%20months%2C%20you%27ve%20probably%20learned%20a%20few%20things%20about%20me.%0D%0A%0D%0A%09I%20do%20a%20lot%20of%20JavaScript%20and%20AJAX%20development%0D%0A%09I%27m%20a%20complete%20snob%20about%20using%20Firebug%0D%0A%09I%27m%20definitely%20not%20a%20fan%20of%20Safari%20%28see%20It%27s%20O" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;title=Playing%20with%20AJAX%20in%20Safari%204%20Beta" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;title=Playing%20with%20AJAX%20in%20Safari%204%20Beta&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=If%20you%27ve%20been%20following%20my%20blog%20over%20the%20past%20several%20months%2C%20you%27ve%20probably%20learned%20a%20few%20things%20about%20me.%0D%0A%0D%0A%09I%20do%20a%20lot%20of%20JavaScript%20and%20AJAX%20development%0D%0A%09I%27m%20a%20complete%20snob%20about%20using%20Firebug%0D%0A%09I%27m%20definitely%20not%20a%20fan%20of%20Safari%20%28see%20It%27s%20O" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Playing%20with%20AJAX%20in%20Safari%204%20Beta%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F02%2F25%2Fplaying-with-ajax-in-safari-4-beta%2F&amp;submitHeadline=Playing%20with%20AJAX%20in%20Safari%204%20Beta&amp;submitSummary=If%20you%27ve%20been%20following%20my%20blog%20over%20the%20past%20several%20months%2C%20you%27ve%20probably%20learned%20a%20few%20things%20about%20me.%0D%0A%0D%0A%09I%20do%20a%20lot%20of%20JavaScript%20and%20AJAX%20development%0D%0A%09I%27m%20a%20complete%20snob%20about%20using%20Firebug%0D%0A%09I%27m%20definitely%20not%20a%20fan%20of%20Safari%20%28see%20It%27s%20O&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/02/25/playing-with-ajax-in-safari-4-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Official: I hate Safari</title>
		<link>http://blog.akawebdesign.com/index.php/2009/01/07/its-official-i-hate-safari/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/01/07/its-official-i-hate-safari/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 20:04:00 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Firebug]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/index.php/2009/01/07/its-official-i-hate-safari/</guid>
		<description><![CDATA[I&#8217;ve mentioned before that I do a ton of JavaScript and AJAX development. I&#8217;ve also mentioned that debugging JS code is simple in Firefox (using Firebug), and a bit of a pain-in-the-ass when viewing in IE.
As I near the completion of a software iteration, I have begun testing across all other browsers. Apple&#8217;s Safari (at [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned before that I do a ton of JavaScript and AJAX development. I&#8217;ve also mentioned that debugging JS code is simple in Firefox (using Firebug), and a bit of a pain-in-the-ass when viewing in IE.</p>
<p>As I near the completion of a software iteration, I have begun testing across all other browsers. <strong>Apple&#8217;s Safari (at least on Windows) is by far the worst browser when it comes to debugging JS code.</strong></p>
<p>Why do I say that? Isn&#8217;t Apple supposed to be way ahead of Microsoft in just about everything???</p>
<p>For starters&#8230; I do like that Safari has a &#8216;Developer&#8217; section built-in to the browser. That&#8217;s awesome! &#8230;except that it lacks something really important &#8212; a decent JavaScript debugger!</p>
<p>To further illustrate my point, the <a href="http://developer.apple.com/internet/safari/faq.html#anchor14">Apple developer docs</a> are just as bad: they expect you to insert JS code into your own code so that your errors show up in their console debugger. <em>You mean I have to add code just so your software works? No!</em> The folks at Firebug figured that problem out&#8230; why couldn&#8217;t Apple?</p>
<p>It gets worse&#8230; even after adding the
<pre>window.console.log();</pre>
<p> code to my own script, the Safari console log isn&#8217;t even helpful! It gives me an <em>undefined</em> error in a file&#8230; but I have 2000 lines of code! Can you be more specific???</p>
<p>I officially hate Safari. I never really used it before, but now I loathe the browser. I wouldn&#8217;t even bother to test in it if my client didn&#8217;t primarily use Mac products&#8230;</p>
<p>Has anyone found a great JS debugger for Safari?</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;t=It%27s%20Official%3A%20I%20hate%20Safari" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;title=It%27s%20Official%3A%20I%20hate%20Safari" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;title=It%27s%20Official%3A%20I%20hate%20Safari&amp;bodytext=I%27ve%20mentioned%20before%20that%20I%20do%20a%20ton%20of%20JavaScript%20and%20AJAX%20development.%20I%27ve%20also%20mentioned%20that%20debugging%20JS%20code%20is%20simple%20in%20Firefox%20%28using%20Firebug%29%2C%20and%20a%20bit%20of%20a%20pain-in-the-ass%20when%20viewing%20in%20IE.%0A%0AAs%20I%20near%20the%20completion%20of%20a%20software%20iter" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;title=It%27s%20Official%3A%20I%20hate%20Safari&amp;notes=I%27ve%20mentioned%20before%20that%20I%20do%20a%20ton%20of%20JavaScript%20and%20AJAX%20development.%20I%27ve%20also%20mentioned%20that%20debugging%20JS%20code%20is%20simple%20in%20Firefox%20%28using%20Firebug%29%2C%20and%20a%20bit%20of%20a%20pain-in-the-ass%20when%20viewing%20in%20IE.%0A%0AAs%20I%20near%20the%20completion%20of%20a%20software%20iter" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;title=It%27s%20Official%3A%20I%20hate%20Safari" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;title=It%27s%20Official%3A%20I%20hate%20Safari&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=I%27ve%20mentioned%20before%20that%20I%20do%20a%20ton%20of%20JavaScript%20and%20AJAX%20development.%20I%27ve%20also%20mentioned%20that%20debugging%20JS%20code%20is%20simple%20in%20Firefox%20%28using%20Firebug%29%2C%20and%20a%20bit%20of%20a%20pain-in-the-ass%20when%20viewing%20in%20IE.%0A%0AAs%20I%20near%20the%20completion%20of%20a%20software%20iter" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=It%27s%20Official%3A%20I%20hate%20Safari%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F07%2Fits-official-i-hate-safari%2F&amp;submitHeadline=It%27s%20Official%3A%20I%20hate%20Safari&amp;submitSummary=I%27ve%20mentioned%20before%20that%20I%20do%20a%20ton%20of%20JavaScript%20and%20AJAX%20development.%20I%27ve%20also%20mentioned%20that%20debugging%20JS%20code%20is%20simple%20in%20Firefox%20%28using%20Firebug%29%2C%20and%20a%20bit%20of%20a%20pain-in-the-ass%20when%20viewing%20in%20IE.%0A%0AAs%20I%20near%20the%20completion%20of%20a%20software%20iter&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/01/07/its-official-i-hate-safari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging in IE</title>
		<link>http://blog.akawebdesign.com/index.php/2009/01/06/debugging-in-ie/</link>
		<comments>http://blog.akawebdesign.com/index.php/2009/01/06/debugging-in-ie/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 17:04:00 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Firebug]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/index.php/2009/01/06/debugging-in-ie/</guid>
		<description><![CDATA[As a web developer, I&#8217;ve tended to do most of my development in Firefox. I wrote a post a while back talked about how much I love Firebug &#8212; the world&#8217;s best (in my opinion) console, JavaScript, CSS and DOM debugger.
However, when one has to figure out why something looks shitty in Internet Explorer&#8230; you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>As a web developer, I&#8217;ve tended to do most of my development in Firefox. I wrote a post a while back talked about how much I love Firebug &#8212; the world&#8217;s best (in my opinion) console, JavaScript, CSS and DOM debugger.</p>
<p>However, when one has to figure out why something looks shitty in Internet Explorer&#8230; you&#8217;re basically up Shit Creek with no paddle. (That&#8217;s technical-speak for &#8216;You&#8217;re pretty much fucked&#8221;)</p>
<p>I&#8217;ve been trying to use a tool called <a href="http://www.debugbar.com/?langage=en">DebugBar</a> in IE7, but I&#8217;m only mildly impressed. There&#8217;s no CSS or JS debugger, so I&#8217;ve only found it useful for monitoring the console. As I do a lot of AJAX work, it is helpful&#8230; and for-better or for-worse, it&#8217;s the best thing I&#8217;ve found so far.</p>
<p>I&#8217;ve been confounded by a CSS issue recently in IE7, so I did yet another Google search for a CSS tool that I can use in IE. As luck would have it, I did find a useful tool&#8230; one which is actually pretty ingenious.</p>
<p>Called <a href="http://joshascript.com/dischover/">Joshascript DiscHover</a>, you simply add the link to your favorites. Once you&#8217;ve navigated to the page where you need a CSS debugger, you select the link from your favorites list&#8230;</p>
<p>&#8230;and nothing happens!</p>
<p>Just kidding. The directions on the download page are fuzzy, but once you have clicked on your &#8220;favorite&#8221; link, you can left-click anywhere on your page and a popup appears detailing the CSS of that DOM element.</p>
<p>Pretty cool! I&#8217;m hoping this solves my issue in IE&#8230; if this tool doesn&#8217;t help me, you&#8217;ll definitely hear about it.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;t=Debugging%20in%20IE" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;title=Debugging%20in%20IE" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;title=Debugging%20in%20IE&amp;bodytext=As%20a%20web%20developer%2C%20I%27ve%20tended%20to%20do%20most%20of%20my%20development%20in%20Firefox.%20I%20wrote%20a%20post%20a%20while%20back%20talked%20about%20how%20much%20I%20love%20Firebug%20--%20the%20world%27s%20best%20%28in%20my%20opinion%29%20console%2C%20JavaScript%2C%20CSS%20and%20DOM%20debugger.%0A%0AHowever%2C%20when%20one%20has%20to%20figure%20" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;title=Debugging%20in%20IE&amp;notes=As%20a%20web%20developer%2C%20I%27ve%20tended%20to%20do%20most%20of%20my%20development%20in%20Firefox.%20I%20wrote%20a%20post%20a%20while%20back%20talked%20about%20how%20much%20I%20love%20Firebug%20--%20the%20world%27s%20best%20%28in%20my%20opinion%29%20console%2C%20JavaScript%2C%20CSS%20and%20DOM%20debugger.%0A%0AHowever%2C%20when%20one%20has%20to%20figure%20" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;title=Debugging%20in%20IE" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;title=Debugging%20in%20IE&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=As%20a%20web%20developer%2C%20I%27ve%20tended%20to%20do%20most%20of%20my%20development%20in%20Firefox.%20I%20wrote%20a%20post%20a%20while%20back%20talked%20about%20how%20much%20I%20love%20Firebug%20--%20the%20world%27s%20best%20%28in%20my%20opinion%29%20console%2C%20JavaScript%2C%20CSS%20and%20DOM%20debugger.%0A%0AHowever%2C%20when%20one%20has%20to%20figure%20" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Debugging%20in%20IE%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2009%2F01%2F06%2Fdebugging-in-ie%2F&amp;submitHeadline=Debugging%20in%20IE&amp;submitSummary=As%20a%20web%20developer%2C%20I%27ve%20tended%20to%20do%20most%20of%20my%20development%20in%20Firefox.%20I%20wrote%20a%20post%20a%20while%20back%20talked%20about%20how%20much%20I%20love%20Firebug%20--%20the%20world%27s%20best%20%28in%20my%20opinion%29%20console%2C%20JavaScript%2C%20CSS%20and%20DOM%20debugger.%0A%0AHowever%2C%20when%20one%20has%20to%20figure%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2009/01/06/debugging-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development Tools</title>
		<link>http://blog.akawebdesign.com/index.php/2008/12/05/web-development-tools/</link>
		<comments>http://blog.akawebdesign.com/index.php/2008/12/05/web-development-tools/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 14:30:00 +0000</pubDate>
		<dc:creator>Arthur Kay</dc:creator>
				<category><![CDATA[Firebug]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.akawebdesign.com/index.php/2008/12/05/web-development-tools/</guid>
		<description><![CDATA[I&#8217;ve been working on a number of projects recently, and a thought occurred to me: How in the world could I do my job without Firebug?
Now, I&#8217;ve known for years now that Firebug is like the single best web development tool available. I use it extensively on every project that I touch, be it professional [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a number of projects recently, and a thought occurred to me: <span style="font-style: italic;">How in the world could I do my job without Firebug?</span></p>
<p>Now, I&#8217;ve known for years now that <a href="http://getfirebug.com/">Firebug</a> is like the single best web development tool available. I use it extensively on every project that I touch, be it professional or freelance.</p>
<p>The funny thing is&#8230; not every developer uses or even knows about it! I can&#8217;t imagine trying to debug CSS or JavaScript without it, namely because Firebug is so painlessly simple to use.</p>
<p>I was on a conference call the other day with an outsourced developer, and we were talking about some CSS issues that his team was facing. During the screencast, I opened their test site in my browser&#8230; and within seconds I had pinpointed the exact line in their CSS file causing the problem. The developer (who shall remain nameless) was floored.</p>
<p>I think I was more confused by the fact that no one on this guy&#8217;s team was using Firebug. Maybe I&#8217;m just enlightened (or spoiled), but in an age where technology is always changing and becoming more complex one would hope that programmers used the best tools available.</p>
<p><span style="font-weight: bold;">I do, however, have a major issue with Firebug</span> &#8212; it&#8217;s only available (as fully functional) on the Firefox browser. I work in a corporate environment, and the majority of corporate employees use either Internet Explorer (using Windows) or Safari (using Mac).</p>
<p>There aren&#8217;t really any good tools for IE that do anything close to what Firebug can do. As a web developer, I make sure to thoroughly test my code across the major browsers &#8212; but isolating CSS and JS problems can be a major pain in the arse.</p>
<p>The bottom line: <span style="font-weight: bold;">use Firebug</span>.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://blog.akawebdesign.com/index.php/feed/" title="RSS"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;t=Web%20Development%20Tools" title="Facebook"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;title=Web%20Development%20Tools" title="StumbleUpon"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;title=Web%20Development%20Tools&amp;bodytext=I%27ve%20been%20working%20on%20a%20number%20of%20projects%20recently%2C%20and%20a%20thought%20occurred%20to%20me%3A%20How%20in%20the%20world%20could%20I%20do%20my%20job%20without%20Firebug%3F%0A%0ANow%2C%20I%27ve%20known%20for%20years%20now%20that%20Firebug%20is%20like%20the%20single%20best%20web%20development%20tool%20available.%20I%20use%20it%20extensi" title="Digg"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F" title="Sphinn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;title=Web%20Development%20Tools&amp;notes=I%27ve%20been%20working%20on%20a%20number%20of%20projects%20recently%2C%20and%20a%20thought%20occurred%20to%20me%3A%20How%20in%20the%20world%20could%20I%20do%20my%20job%20without%20Firebug%3F%0A%0ANow%2C%20I%27ve%20known%20for%20years%20now%20that%20Firebug%20is%20like%20the%20single%20best%20web%20development%20tool%20available.%20I%20use%20it%20extensi" title="del.icio.us"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F" title="Technorati"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;title=Web%20Development%20Tools" title="Reddit"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;title=Web%20Development%20Tools&amp;source=aKa+Web+Design+...how+a+nerd+sees+the+world-wide-web.&amp;summary=I%27ve%20been%20working%20on%20a%20number%20of%20projects%20recently%2C%20and%20a%20thought%20occurred%20to%20me%3A%20How%20in%20the%20world%20could%20I%20do%20my%20job%20without%20Firebug%3F%0A%0ANow%2C%20I%27ve%20known%20for%20years%20now%20that%20Firebug%20is%20like%20the%20single%20best%20web%20development%20tool%20available.%20I%20use%20it%20extensi" title="LinkedIn"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Web%20Development%20Tools%20-%20http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F" title="Twitter"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fblog.akawebdesign.com%2Findex.php%2F2008%2F12%2F05%2Fweb-development-tools%2F&amp;submitHeadline=Web%20Development%20Tools&amp;submitSummary=I%27ve%20been%20working%20on%20a%20number%20of%20projects%20recently%2C%20and%20a%20thought%20occurred%20to%20me%3A%20How%20in%20the%20world%20could%20I%20do%20my%20job%20without%20Firebug%3F%0A%0ANow%2C%20I%27ve%20known%20for%20years%20now%20that%20Firebug%20is%20like%20the%20single%20best%20web%20development%20tool%20available.%20I%20use%20it%20extensi&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://blog.akawebdesign.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.akawebdesign.com/index.php/2008/12/05/web-development-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
