<?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>justaddwater.dk &#187; Web Development</title>
	<atom:link href="http://justaddwater.dk/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://justaddwater.dk</link>
	<description>Instant Usability &#38; Web Standards</description>
	<lastBuildDate>Thu, 02 Feb 2012 08:51:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>GWT Developer Plugin now Works with Firefox 9</title>
		<link>http://justaddwater.dk/2012/01/28/gwt-developer-plugin-now-works-with-firefox-9/</link>
		<comments>http://justaddwater.dk/2012/01/28/gwt-developer-plugin-now-works-with-firefox-9/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 13:38:44 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[gwt]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1562</guid>
		<description><![CDATA[(UPDATED) The GWT developer plugin has been updated to works with Firefox 9, a couple of days ago. Its not yet officially available, but can be downloaded directly from the codebase: google-web-toolkit.googlecode.com/svn/trunk/ prebuilt folder in here  is the gwt-dev-plugin.xpi, and it works like a charm :) Previously i wrote when the plugin was updated to [...]]]></description>
			<content:encoded><![CDATA[<p>(UPDATED) The GWT developer plugin has been updated to works with Firefox 9, a couple of days ago.</p>
<p>Its not yet officially available, but can be downloaded directly from the codebase:<br />
<a href="http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/">google-web-toolkit.googlecode.com/svn/trunk/ prebuilt folder</a> in here  is the <a href="http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi">gwt-dev-plugin.xpi</a>, and it works like a charm :)</p>
<p>Previously i wrote when the plugin was updated to <a href="http://justaddwater.dk/2011/10/10/gwt-developer-plugin-for-firefox-7-is-now-ready/">work with Firefox 7 and 8</a>.</p>
<p>More info in the group discussion: &#8220;<a href="https://groups.google.com/group/google-web-toolkit/browse_thread/thread/8d9d369fdbfdf87e/98f045c1eb38af0d#cdb775c291719219">GWT Developer Plugin for Firefox 9</a>&#8221;</p>
<p>What timing, as Mozilla is likely to release <a href="https://wiki.mozilla.org/Releases#Firefox_10">Firefox 10 this coming Tuesday</a>. For the sake of web developers that use GWT, i hope the plugin updates can come sooner in the future.</p>
<p>&nbsp;</p>
<p><strong>UPDATE 2012-02-02: This thread in the google group follows <a href="https://groups.google.com/group/google-web-toolkit/browse_thread/thread/2a259452c849c881#">plugin development for Firefox 10</a>.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2012/01/28/gwt-developer-plugin-now-works-with-firefox-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IntelliJ Structural Search to Convert from JUnit3 to Junit4</title>
		<link>http://justaddwater.dk/2012/01/18/intellij-structural-search-to-convert-from-junit3-to-junit4/</link>
		<comments>http://justaddwater.dk/2012/01/18/intellij-structural-search-to-convert-from-junit3-to-junit4/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 12:37:24 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[intellij]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1541</guid>
		<description><![CDATA[Just a quick tip for intellij users. For an old project i wanted to convert JUnit 3 testcases to JUnit4 format. Most stuff was already in place, but after the conversion, i found that some of the old &#8220;assertTrue&#8221;, &#8220;assertFalse&#8221;, and &#8220;assertEquals&#8221; statements were failing. So i ended up with some short search/replace, which are really [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick tip for intellij users. For an old project i wanted to convert JUnit 3 testcases to JUnit4 format. Most stuff was already in place, but after the conversion, i found that some of the old &#8220;assertTrue&#8221;, &#8220;assertFalse&#8221;, and &#8220;assertEquals&#8221; statements were failing.</p>
<p>So i ended up with some short search/replace, which are really handy in IntelliJ.</p>
<h2>Replace &#8220;assertTrue&#8221; and &#8220;assertFalse&#8221; with &#8220;assertThat&#8221;</h2>
<p>Search template</p>
<blockquote>
<pre>assertTrue($msg$, $actual$);</pre>
</blockquote>
<p>Replacement template:</p>
<blockquote>
<pre>org.junit.Assert.assertThat.assertThat($msg$, $actual$, org.hamcrest.core.Is.is(true));</pre>
</blockquote>
<h2>Remove &#8220;assertEquals&#8221; with delta values</h2>
<p>Search template</p>
<blockquote>
<pre>assertEquals($msg$, $expected$, $actual$, $delta$);</pre>
</blockquote>
<p>Replacement template:</p>
<blockquote>
<pre>org.junit.Assert.assertThat($msg$, $actual$, org.hamcrest.core.Is.is($expected$));</pre>
</blockquote>
<h2>Optional Replace &#8220;assertEquals&#8221; with &#8220;assertThat&#8221;</h2>
<p>Search template</p>
<blockquote>
<pre>assertEquals($msg$, $expected$, $actual$);</pre>
</blockquote>
<p>Replacement template:</p>
<blockquote>
<pre>org.junit.Assert.assertThat.assertThat($msg$, $actual$, org.hamcrest.core.Is.is($expected$));</pre>
</blockquote>
<p><a href="http://justaddwater.dk/wp-content/uploads/2012/01/intellij-structural-search-assertequals-replace-by-assertThat.png"><img class="aligncenter size-medium wp-image-1542" title="intellij-structural-search-assertequals-replace-by-assertThat" src="http://justaddwater.dk/wp-content/uploads/2012/01/intellij-structural-search-assertequals-replace-by-assertThat-300x247.png" alt="" width="300" height="247" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2012/01/18/intellij-structural-search-to-convert-from-junit3-to-junit4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GWT Developer plugin for Firefox 7 is now Ready</title>
		<link>http://justaddwater.dk/2011/10/10/gwt-developer-plugin-for-firefox-7-is-now-ready/</link>
		<comments>http://justaddwater.dk/2011/10/10/gwt-developer-plugin-for-firefox-7-is-now-ready/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 22:18:42 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[gwt]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1531</guid>
		<description><![CDATA[UPDATED 2011-12-14: Prebuilt folder now contains Firefox 8 version of the GWT developer plugin. Since Firefox 7 was released, i have defered upgrading for one simple reason: At work I am dependent on GWT Developer plugin. Today I found the ready-to-release plugin which actually works with Firefox 7: http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/ in here  is the gwt-dev-plugin.xpi, and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATED 2011-12-14:</strong> <a href="http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/">Prebuilt</a> folder now contains Firefox 8 version of the GWT developer plugin.</p>
<p>Since Firefox 7 was released, i have defered upgrading for one simple reason: At work I am dependent on GWT Developer plugin.</p>
<p>Today I found the ready-to-release plugin which actually works with Firefox 7:</p>
<p><a href="http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/">http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/</a> in here  is the <a href="http://google-web-toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi">gwt-dev-plugin.xpi</a>, and it works like a charm :)</p>
<p>(In firefox, it asks you to download. And then you can drag the downloaded .xpi back into the browser to install. Why Firefox will not instantly recognize the .xpi file is kind of strange)</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2011/10/10/gwt-developer-plugin-for-firefox-7-is-now-ready/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Useful Background research for Certification</title>
		<link>http://justaddwater.dk/2011/10/04/useful-background-research-for-certification/</link>
		<comments>http://justaddwater.dk/2011/10/04/useful-background-research-for-certification/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 19:44:55 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[capgemini]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[rup]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1529</guid>
		<description><![CDATA[I have just applied for certification to become Capgemini Software Engineer level 1+2. The process had some tests and a thorough application formula where i should describe my deeds. The tests were of two formats: 10 questions in 15 minutes, and 30 questions in 40 minutes (multiple choice questions). For the tests I took, these [...]]]></description>
			<content:encoded><![CDATA[<p>I have just applied for certification to become Capgemini Software Engineer level 1+2. The process had some tests and a thorough application formula where i should describe my deeds.</p>
<p>The tests were of two formats: 10 questions in 15 minutes, and 30 questions in 40 minutes (multiple choice questions).</p>
<p>For the tests I took, these were some links with background material which I found most helpful:</p>
<ul>
<li>IBM Developerworks: <a href="http://www.ibm.com/developerworks/rational/library/apr05/crain/index.html">Understanding RUP roles</a></li>
<li>Wikipedia <a href="http://en.wikipedia.org/wiki/Capability_Maturity_Model_Integration">Capability Maturity Model Integration (<strong>CMMI</strong>)</a></li>
<li>Wikipedia <a href="http://en.wikipedia.org/wiki/IBM_Rational_Unified_Process">RUP (Rational Unified Process)</a></li>
<li>Wikipedia <a href="http://en.wikipedia.org/wiki/Software_configuration_management">Software configuration management</a></li>
<li>Wikipedia <a href="http://en.wikipedia.org/wiki/Information_Systems_Architecture">Enterprise architecture</a></li>
<li>Unified Process for EDUcation: A <a href="http://www.upedu.org/process/activity/chklists/ck_sad.htm">Software Architecture Document example</a></li>
<li>and finally a blog post about <a href="http://appdevchronicles.blogspot.com/2007/10/test-specification-techniques.html">test specification techniques</a></li>
</ul>
<p>As you may notice, the topics mostly covered were RUP, IAF (a capgemini architecture framework), A little CMMI, and hardly any agile methodologies at all. No SCRUM, Lean, Kanban or similar references. Although i think i saw one question on XP (eXtreme Programming).</p>
<p>Now the tests are passed, the application is submitted. I will have a verdict probably within a month.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2011/10/04/useful-background-research-for-certification/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Make IntelliJ highlight usages</title>
		<link>http://justaddwater.dk/2011/08/11/make-intellij-highlight-usages/</link>
		<comments>http://justaddwater.dk/2011/08/11/make-intellij-highlight-usages/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 11:23:16 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1480</guid>
		<description><![CDATA[By default, Eclipse highlights usage of a word, if you double click it. But IntelliJ IDEA can also do that.

<a href="http://justaddwater.dk/?p=1480"><img class="aligncenter size-thumbnail wp-image-1487" title="intellij-highlight-usages-example-annotated-crop" src="http://justaddwater.dk/wp-content/uploads/2011/08/intellij-highlight-usages-example-annotated-crop1-150x150.png" alt="" width="150" height="150" /></a>
]]></description>
			<content:encoded><![CDATA[<p>By default, Eclipse highlights usage of a word, if you double click it. But IntelliJ IDEA can also do that.</p>
<p><a href="http://justaddwater.dk/?p=1480"><img class="aligncenter size-full wp-image-1487" title="intellij-highlight-usages-example-annotated-crop" src="http://justaddwater.dk/wp-content/uploads/2011/08/intellij-highlight-usages-example-annotated-crop1.png" alt="" width="595" height="323" /><br />
</a></p>
<p>It is a very convenient feature, which highlights all occurrences of the word you place the cursor in.</p>
<p>To turn it on, just go to &#8220;File&gt;Settings&#8221; window.</p>
<p>Check &#8220;Highlight usages of element at caret&#8221; under &#8220;IDE Settings &gt; Editor&#8221;</p>
<p><a href="http://justaddwater.dk/wp-content/uploads/2011/08/intellij-highlight-usages-of-element-at-caret-crop.png"><img class="aligncenter size-medium wp-image-1483" title="intellij-highlight-usages-of-element-at-caret-crop" src="http://justaddwater.dk/wp-content/uploads/2011/08/intellij-highlight-usages-of-element-at-caret-crop-300x152.png" alt="" width="300" height="152" /></a></p>
<p>Frankly, I do not understand why this is not default turned on in IntelliJ.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2011/08/11/make-intellij-highlight-usages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to move IntelliJ system file to another folder</title>
		<link>http://justaddwater.dk/2011/04/04/how-to-move-intellij-system-file-to-another-folder/</link>
		<comments>http://justaddwater.dk/2011/04/04/how-to-move-intellij-system-file-to-another-folder/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 08:23:57 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[intellij]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1444</guid>
		<description><![CDATA[For work, I use IntelliJ IDEA, when working in Java world. For my current client, there is a quota on my user directory, which means I have to move IDEA system files to another folders. Locate the file idea.properties in your IntelliJ Idea\bin folder Edit idea.config.path Restart I changed it from idea.config.path=${user.home}/.IntelliJIdea10/config to idea.config.path=${idea.home}/.IntelliJIdea10/config It [...]]]></description>
			<content:encoded><![CDATA[<p>For work, I use IntelliJ IDEA, when working in Java world. For my current client, there is a quota on my user directory, which means I have to move IDEA system files to another folders.</p>
<ol>
<li>Locate the file
<div class="codesnip-container" >idea.properties</div>
<p> in your IntelliJ Idea\bin folder</li>
<li>Edit
<div class="codesnip-container" >idea.config.path</div>
</li>
<li>Restart</li>
</ol>
<p>I changed it from</p>
<div class="codesnip-container" >idea.config.path=${user.home}/.IntelliJIdea10/config</div>
<p>to</p>
<div class="codesnip-container" >idea.config.path=${idea.home}/.IntelliJIdea10/config</div>
<p>It is very easy to do, but it was hard for me to google the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2011/04/04/how-to-move-intellij-system-file-to-another-folder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Challenges Configuring Hudson Emails</title>
		<link>http://justaddwater.dk/2011/03/10/challenges-configuring-hudson-emails/</link>
		<comments>http://justaddwater.dk/2011/03/10/challenges-configuring-hudson-emails/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 21:01:03 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Continous integration]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[continuous integration]]></category>
		<category><![CDATA[hudson]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1437</guid>
		<description><![CDATA[My recent Stackoverflow question How to use Hudson “Parameterized Build” values in an email earned me the &#8220;tumbleweed&#8221; badge because it had almost no views (39 in a week), got no answers and no votes. Therefore I decided to offer 200 of my reputation points for a usable answer. But despite the high bounty of 200 [...]]]></description>
			<content:encoded><![CDATA[<p>My recent Stackoverflow question <a href="http://stackoverflow.com/questions/5181502/how-to-use-hudson-parameterized-build-values-in-an-email">How to use Hudson “Parameterized Build” values in an email</a> earned me the &#8220;tumbleweed&#8221; badge because it had almost no views (39 in a week), got no answers and no votes. Therefore I decided to offer 200 of my reputation points for a usable answer.</p>
<p>But despite the high bounty of 200 geek points, i doubt that anybody notices it: The question is buried back at fourth page, near the bottom of 193 other bounty questions.</p>
<p><a href="http://justaddwater.dk/wp-content/uploads/2011/03/Bounty-Questions-Page-4-Stack-Overflow.png"><img class="aligncenter size-medium wp-image-1438" title="Bounty Questions - Page 4 - Stack Overflow" src="http://justaddwater.dk/wp-content/uploads/2011/03/Bounty-Questions-Page-4-Stack-Overflow-56x300.png" alt="" width="56" height="300" /></a></p>
<p>Of course, in case you know somebody who can help with an answer, the question is here: <a href="http://stackoverflow.com/questions/5181502/how-to-use-hudson-parameterized-build-values-in-an-email">How to use Hudson “Parameterized Build” values in an email</a></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2011/03/10/challenges-configuring-hudson-emails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GWT relevant snippets for IntelliJ Idea editor</title>
		<link>http://justaddwater.dk/2010/10/05/gwt-relevant-snippets-for-intellij-idea-editor/</link>
		<comments>http://justaddwater.dk/2010/10/05/gwt-relevant-snippets-for-intellij-idea-editor/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 21:47:32 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[gwt]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[w]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1361</guid>
		<description><![CDATA[I created a list of snippets that I loaded into my IntelliJ editor, which I find useful when working with Google Webtoolkit (GWT). So far, it&#8217;s a very short list. Snippet 1: Live template to bootstrap a class to use UI binder logic. Very useful when converting existing (pre gwt 2.0) Java classes to UI [...]]]></description>
			<content:encoded><![CDATA[<p>I created a list of snippets that I loaded into my IntelliJ editor, which I find useful when working with Google Webtoolkit (GWT). So far, it&#8217;s a very short list.</p>
<p>Snippet 1: Live template to bootstrap a class to use UI binder logic. Very useful when converting existing (pre gwt 2.0) Java classes to UI binder pattern, which gives better separation of logic and view.</p>
<p>Snippet 2: Create new UiBinder.ui.xml file. Intellij has support for creating entire new java class + uibinder file. That is useful for new classes, but most often I find myself converting an existing class, and needed this shortcut for that.</p>
<p><script src="http://gist.github.com/612402.js"> </script> </p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2010/10/05/gwt-relevant-snippets-for-intellij-idea-editor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Explanation of Firebug Net Panel Findings</title>
		<link>http://justaddwater.dk/2010/04/22/explanation-of-firebug-net-panel-findings/</link>
		<comments>http://justaddwater.dk/2010/04/22/explanation-of-firebug-net-panel-findings/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 13:07:11 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1311</guid>
		<description><![CDATA[Jan Odvarko – one of the Firebug developers – posted some very good explanations on the information available from the Firebug net panel. Here is the explanation of the detailed mouseover view when zooming in on each request: The second request started 109ms after the start of the first request (since the beginning of the [...]]]></description>
			<content:encoded><![CDATA[<p>Jan Odvarko – one of the Firebug developers – posted some very good explanations on the information available from the Firebug net panel.</p>
<p><img class="aligncenter size-full wp-image-1312" title="firebug-1.5-netpanel-explained" src="http://justaddwater.dk/wp-content/uploads/2010/04/firebug-1.5-netpanel-explained.png" alt="" width="520" height="229" /></p>
<p>Here is the explanation of the detailed mouseover view when zooming in on each request:</p>
<p><img class="aligncenter size-full wp-image-1313" title="firebug-1.5-network-tooltip" src="http://justaddwater.dk/wp-content/uploads/2010/04/firebug-1.5-network-tooltip.png" alt="" width="520" height="235" /></p>
<blockquote cite="http://www.softwareishard.com/blog/firebug/firebug-net-panel-timings/">
<ul>
<li>The second request started <strong>109ms</strong> after the start of  the first request (since the beginning of the waterfall graph).</li>
<li>There are two numbers for each <strong>request phase</strong> (5  phases). The first number on the left says when the phase started within  the request. The second number on the right (closer to the phase label)  says the time needed to complete each phase. In this case, the first  three phases took zero time, and so the <strong>Waiting</strong> phase  was the first real and it needed 32ms to complete. The <strong>Receiving</strong> phase started in <strong>32nd ms</strong> of the request and needed <strong>15ms</strong> to complete</li>
<li><em><strong>DOMContenLoaded</strong></em> event was fired <strong>7ms</strong> after this request started. If this number is negative the event was  fired before the request is started.</li>
<li><em><strong>load</strong></em> event was fired <strong>189ms</strong> after this request started. If this number is negative the event was  fired before the request is started.</li>
</ul>
<p>Here are some notes about each request phase.</p>
<ul>
<li><strong>DNS Lookup</strong>: DNS resolution time</li>
<li><strong>Connecting</strong>: Elapsed time required to create a TCP  connection.</li>
<li><strong>Blocking</strong> (not on the screenshot): Elapsed time  spent in a browser queue waiting for a network connection. Displayed  only in the case where this situation happens (see also <a href="http://www.softwareishard.com/blog/firebug/page-load-analysis-using-firebug/">this  post</a>).</li>
<li><strong>Sending</strong>: Time needed to send request data to the  server.</li>
<li><strong>Waiting</strong>: Waiting for the response (till the first  byte is received from the server).</li>
<li><strong>Receiving</strong>: Time necessary to download response  body.</li>
</ul>
</blockquote>
<p>I found myself reading up on this because I did a HTML5 offline experiment, where the &#8220;<a href="http://groups.google.com/group/firebug/browse_thread/thread/e920884868df9555#">HTML5  .manifest files did not appear in Firebug net panel</a>&#8221;</p>
<p>Jan Odvarko has two excellent posts explaining most functionality of the Firebug Net panel. The two posts are highly recommendable</p>
<ul>
<li><a href="http://www.softwareishard.com/blog/firebug/firebug-net-panel-timings/">Firebug  Net Panel Timings</a> (March 2010)</li>
<li><a href="http://www.softwareishard.com/blog/firebug/introduction-to-firebug-net-panel/">Introduction  to Firebug: Net Panel</a> (May 2009)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2010/04/22/explanation-of-firebug-net-panel-findings/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Direct Links Inside Suggestion List</title>
		<link>http://justaddwater.dk/2010/03/26/googles-direct-links-inside-suggestion-list/</link>
		<comments>http://justaddwater.dk/2010/03/26/googles-direct-links-inside-suggestion-list/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 13:53:05 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1298</guid>
		<description><![CDATA[I just saw this feature today: Google added direct links into the list of autocompleting search results: In this case, I searched for &#8220;earth h&#8230;.&#8221; and it suggests &#8220;earth hour 2010&#8243; But on top of that, it inserts a link to the most relevant website directly. Smart and time-saving, i suppose. Also, it does not [...]]]></description>
			<content:encoded><![CDATA[<p>I just saw this feature today: Google added direct links into the list of autocompleting search results:</p>
<p><a href="http://justaddwater.dk/wp-content/uploads/2010/03/Screen-shot-2010-03-26-at-2.36.26-PM.png"><img class="aligncenter size-medium wp-image-1299" title="Google autocomplete with direct links to websites" src="http://justaddwater.dk/wp-content/uploads/2010/03/Screen-shot-2010-03-26-at-2.36.26-PM-300x168.png" alt="" width="300" height="168" /></a>In this case, I searched for &#8220;earth h&#8230;.&#8221; and it suggests &#8220;earth hour 2010&#8243; But on top of that, it inserts a link to the most relevant website directly. Smart and time-saving, i suppose.</p>
<p>Also, it does not clutter the suggestion box completely. Adding link to all suggestions would clutter the box, I think.</p>
<p>Also, I saw that google now shows real-time updates of news results inside the search result page:</p>
<p><a href="http://justaddwater.dk/wp-content/uploads/2010/03/Screen-shot-2010-03-26-at-2.36.26-PM.png"><br />
</a><a href="http://justaddwater.dk/wp-content/uploads/2010/03/Screen-shot-2010-03-26-at-2.38.51-PM.png"><img class="aligncenter size-medium wp-image-1300" title="Google search result page with scrollbar and realtime-update of news results" src="http://justaddwater.dk/wp-content/uploads/2010/03/Screen-shot-2010-03-26-at-2.38.51-PM-264x300.png" alt="" width="264" height="300" /></a>Notice that scrollbar in the bottom of the screenshot: The result page keeps updating.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2010/03/26/googles-direct-links-inside-suggestion-list/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

