<?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>Squio.blog &#187; firefox</title>
	<atom:link href="http://squio.nl/tags/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://squio.nl</link>
	<description>Creative internet development</description>
	<lastBuildDate>Mon, 24 Jan 2011 21:08:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>	<div id='fb-root'></div>
					<script type='text/javascript'>
						window.fbAsyncInit = function()
						{
							FB.init({appId: 139820809411699, status: true, cookie: true, xfbml: true});
						};
						(function()
						{
							var e = document.createElement('script'); e.async = true;
							e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
							document.getElementById('fb-root').appendChild(e);
						}());
					</script>	
						<item>
		<title>Firefox 3.5 does geolocation!</title>
		<link>http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/</link>
		<comments>http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 13:41:54 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[Firefox 3.5]]></category>
		<category><![CDATA[Geolocation]]></category>
		<category><![CDATA[Geolocation API]]></category>
		<category><![CDATA[Google Gears]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Maps API]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=356</guid>
		<description><![CDATA[Image by KonMan via Flickr Since early beta release of Firefox 3.1 there is experimental support for the experimental W3C Geolocation API. Now Doug Turner, one of the engineers who is behind the Geolocation support in Firefox, wrote a nice background story geolocation in Firefox 3.5 (hacks.mozilla.org). A very interesting read, and it turns out [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/76812253@N00/215867223"><img title="Firefox crop circle" src="http://farm1.static.flickr.com/72/215867223_031d80d4c3_m.jpg" alt="Firefox crop circle"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/76812253@N00/215867223">KonMan</a> via Flickr</dd>
</dl>
</div>
</div>
<p>Since early beta release of Firefox 3.1 there is experimental support for the experimental <a href="http://dev.w3.org/geo/api/spec-source.html">W3C Geolocation API</a>.</p>
<p>Now Doug Turner, one of the engineers who is behind the Geolocation support in Firefox, wrote a nice background story <a href="http://hacks.mozilla.org/2009/06/geolocation/">geolocation in Firefox 3.5</a> (hacks.mozilla.org). A very interesting read, and it turns out that geolocation is not only for mobile devices, but also available in regular Firefox versions, using wifi or IP address mapping.</p>
<p>Using Firefox 3.5 or another location aware browser? Give it a try by clicking the button below, a <a href="#map_canvas">map with your current location</a> will be loaded&#8230;</p>
<input onclick="getPosition();" value="Show my location..." type="button">
<p>Note:</p>
<ul>
<li>Firefox 3.5b4 has an <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490046">annoying bug (#490046)</a> which lets you get your location only once per run.</li>
<li>Privacy is an issue, Firefox asks for permission by showing a notification bar on top of the screen. Click &#8220;Tell them&#8221; to proceed&#8230;
<p><img class="size-full wp-image-373 " title="location-notification" src="http://squio.nl/blog/wp-content/2009/06/location-notification.png" alt="Click &quot;tell Them&quot;..." height="37" width="369"></li>
</ul>
<p><script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAvtM-3wbz7AiDMy291kdzZBRFqEeOhvAcuHhSGFpRouMth2UItBSi65zYtrc5qDooht3X7kynqH18mw" type="text/javascript"></script></p>
<div id="map_canvas" style="padding: 1em; width: 490px; height: 300px; background-color: silver;">Map your location&#8230;</div>
<p><script type="text/javascript"><!--
function getPosition() {
	if (navigator.geolocation) {
		try{
			document.getElementById('map_canvas').innerHTML = "Loading, please wait...";
			navigator.geolocation.getCurrentPosition(showPosition);
		} catch(e) {
			document.getElementById('map_canvas').innerHTML = "Exception: " + e;
		}
	} else {
		document.getElementById('map_canvas').innerHTML = "Your browser doesn't support the geolocation interface";
	}
}
function showPosition(position) {
	if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(position.coords.latitude, position.coords.longitude), 13);
        var point = new GLatLng(position.coords.latitude, position.coords.longitude);
        map.addOverlay(new GMarker(point));
		window.onunload = GUnload;
	} else {
		document.getElementById('map_canvas').innerHTML = 'Your browser seems unable to load Google Maps';
	}
}
// --></script></p>
<p>What the script does&#8230;</p>
<pre>// call native geolocation API:
navigator.geolocation.getCurrentPosition(callback);

// callback initializes a google map with the geo data:
function callback(position) {
    ...
    var point = new GLatLng(position.coords.latitude,
         position.coords.longitude);
    ...
}
</pre>
<p>Google provides a similar <a href="http://code.google.com/apis/gears/api_geolocation.html">Geolocation API implementation through Gears</a>.</p>
<p>Got another browser where the API works? Please leave a comment!</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://google-code-updates.blogspot.com/2009/04/google-location-services-now-in-mozilla.html"> Google Location Services now in Mozilla Firefox </a> (google-code-updates.blogspot.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/rsarver/w3c-geolocation-api-making-websites-locationaware">W3C Geolocation API &#8211; Making Websites Location-aware</a> (slideshare.net)</li>
<li class="zemanta-article-ul-li"><a href="http://radar.oreilly.com/2009/05/new-geo-for-devs-from-google-i.html"> New Geo For Devs From Google I/O </a> (radar.oreilly.com)</li>
<li class="zemanta-article-ul-li"><a href="http://mashable.com/2009/03/26/opera-geolocation/">Opera, Now With Geolocation</a> (mashable.com)</li>
<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5235763/firefox-35-gets-geolocation-powered-by-google"> Firefox 3.5 Gets Geolocation, Powered by Google </a> (lifehacker.com)</li>
<li class="zemanta-article-ul-li"><a href="http://venturebeat.com/2009/04/30/google-and-mozilla-team-up-to-pinpoint-your-location/"> Google and Mozilla team up to pinpoint your location </a> (venturebeat.com)</li>
<li class="zemanta-article-ul-li"><a href="http://arstechnica.com/software/news/2009/03/location-awareness-spreads-to-opera-browser.ars">Location awareness spreads to Opera browser</a> (arstechnica.com)</li>
</ul>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/61ed241c-3cee-4fb0-8186-666c8e1ec536/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=61ed241c-3cee-4fb0-8186-666c8e1ec536" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Firefox+3.5+does+geolocation%21+http%3A%2F%2Fsquio.nl%2F%3Fp%3D356" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Firefox+3.5+does+geolocation%21+http%3A%2F%2Fsquio.nl%2F%3Fp%3D356" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/&amp;title=Firefox+3.5+does+geolocation%21" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/&amp;title=Firefox+3.5+does+geolocation%21" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/&amp;title=Firefox+3.5+does+geolocation%21" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/&amp;title=Firefox+3.5+does+geolocation%21" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/&amp;title=Firefox+3.5+does+geolocation%21" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/&amp;title=Firefox+3.5+does+geolocation%21" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=356&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/06/09/firefox-35-does-geolocation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Old greasemonkey news</title>
		<link>http://squio.nl/blog/2009/04/24/old-greasemonkey-news/</link>
		<comments>http://squio.nl/blog/2009/04/24/old-greasemonkey-news/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 18:25:55 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[ikea]]></category>
		<category><![CDATA[user script]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=331</guid>
		<description><![CDATA[Funny, just today I discovered a really old article by Computer Totaal (in Dutch) about a couple of Greasemonkey scripts: Websites aanpassen met Greasemonkey (August, 2007). Two of my greasemonkey scripts are discussed: Kilometerdeclaratie (Dutch only, outdated) Ikea Availability Check (as international as Ikea itself, recently updated) The first script used the route planner of [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_332" class="wp-caption alignright" style="width: 160px"><a href="https://addons.mozilla.org/en-US/firefox/addon/748"><img class="size-full wp-image-332" title="greasemonkeylogo" src="http://squio.nl/blog/wp-content/2009/04/greasemonkeylogo.png" alt="Greasemonkey logo" width="150" height="150" /></a><p class="wp-caption-text">Greasemonkey logo</p></div>
<p>Funny, just today I discovered a really old article by Computer Totaal (in Dutch) about a couple of <a class="zem_slink" title="Greasemonkey" rel="homepage" href="http://www.greasespot.net/">Greasemonkey</a><span class="zem_slink"> scripts</span>: <a title="Dutch language articlle" href="http://www.computertotaal.nl/web/Artikelpaginas/Cursus-artikel/Websites-aanpassen-met-Greasemonkey.htm">Websites aanpassen met Greasemonkey</a> (August, 2007).</p>
<p>Two of my greasemonkey scripts are discussed:</p>
<ol>
<li><a href="http://userscripts.org/scripts/show/2031">Kilometerdeclaratie</a> (Dutch only, outdated)</li>
<li><a href="http://userscripts.org/scripts/show/7192">Ikea Availability Check</a> (as international as <a class="zem_slink" title="IKEA" rel="homepage" href="http://www.IKEA.com/">Ikea</a> itself, recently updated)</li>
</ol>
<p>The first script used the route planner of a local provider to batch process distances between two addresses (based on Dutch Postal Codes), useful for mass reimbursements of work related trips by car. This script is no longer maintained, a <a class="zem_slink" title="Mashup (web application hybrid)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mashup_%28web_application_hybrid%29">mashup</a> based on the Google geo <a class="zem_slink" title="Application programming interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/Application_programming_interface">API</a> makes more sense now.</p>
<p>The second script runs on every product detail page of the Ikea site.If your country or region has more than one ikea store, availability and stock data is automatically retrieved from each separate store and displayed in a table all at once.</p>
<p>Most international Ikea sites are built on the very same content management platform, so it works for the Dutch, Russian and US sites equally well. Install it here: <a href="http://userscripts.org/scripts/show/7192">Ikea Availability Check</a>.</p>
<p>Nice discovery, nearly two years after&#8230;</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/c26087d6-96c2-44e0-9531-079acdcbc1f4/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=c26087d6-96c2-44e0-9531-079acdcbc1f4" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Old+greasemonkey+news+http%3A%2F%2Fsquio.nl%2F%3Fp%3D331" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Old+greasemonkey+news+http%3A%2F%2Fsquio.nl%2F%3Fp%3D331" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/04/24/old-greasemonkey-news/&amp;title=Old+greasemonkey+news" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/04/24/old-greasemonkey-news/&amp;title=Old+greasemonkey+news" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/04/24/old-greasemonkey-news/&amp;title=Old+greasemonkey+news" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/04/24/old-greasemonkey-news/&amp;title=Old+greasemonkey+news" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/04/24/old-greasemonkey-news/&amp;title=Old+greasemonkey+news" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/04/24/old-greasemonkey-news/&amp;title=Old+greasemonkey+news" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/04/24/old-greasemonkey-news/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=331&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/04/24/old-greasemonkey-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozCamp &#8211; open innovation</title>
		<link>http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/</link>
		<comments>http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 11:50:13 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[mozcamp]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[mozzilla foundation]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=299</guid>
		<description><![CDATA[Image via Wikipedia Explained by Tristan Nitot The numbers are huge: 230M+ Mozilla users (Firefox, Thunderbird etc) 1000+ code contributers Now both numbers are huge, but there could be even more innovation happening with even more contributors. Most often these are just people &#8220;scratching their itch&#8221;. These are not only coders &#8211; for example an [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 212px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Mozilla_Foundation_logo.svg"><img title="Mozilla Foundation logo" src="http://upload.wikimedia.org/wikipedia/en/thumb/7/74/Mozilla_Foundation_logo.svg/202px-Mozilla_Foundation_logo.svg.png" alt="Mozilla Foundation logo" width="202" height="190" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:Mozilla_Foundation_logo.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>Explained by <a title="Link to his Twitter page" href="http://twitter.com/nitot">Tristan Nitot</a></p>
<p>The numbers are huge:</p>
<ul>
<li>230M+ <a class="zem_slink" title="Mozilla" rel="homepage" href="http://mozilla.com">Mozilla</a> users (Firefox, <a class="zem_slink" title="Mozilla Thunderbird" rel="homepage" href="http://www.mozilla.com/thunderbird">Thunderbird</a> etc)</li>
<li>1000+ code contributers</li>
</ul>
<p>Now both numbers are huge, but there could be even more innovation happening with even more contributors. Most often these are just people &#8220;scratching their itch&#8221;. These are not only coders &#8211; for example an artist who couldn&#8217;t bear looking at the crappy logo designed an elegant new logo.</p>
<p>So what does the Mozilla foundation do to help this happen?</p>
<ul>
<li>provide improved frameworks for development (under a OSS license)</li>
<li>organize events, Mozilla Labs nights and café (Paris &amp; London)</li>
<li>concept series (online) and contests.</li>
</ul>
<p>Technology</p>
<ul>
<li><a class="zem_slink" title="Ubiquity" rel="homepage" href="http://labs.mozilla.com/2008/08/introducing-ubiquity/">Ubiquity</a> (command driven UI)</li>
<li>Personas (profiles beyond skins, more lightweight and easy to use, based on just a PNG image)</li>
<li><a class="zem_slink" title="Weave" rel="homepage" href="http://labs.mozilla.com/projects/weave/">Weave</a> (sync profiles between Firefox and <a class="zem_slink" title="Fennec Browser" rel="wikipedia" href="http://en.wikipedia.org/wiki/Fennec_Browser">Fennec</a> instances)</li>
<li>Bespin (online collaborative source / text editing).</li>
</ul>
<p>So what does the innovation cycle look like?</p>
<p>We start out with a smart idea, make a prototype which is in fact a bad product, see if it can live up to its expectations and either improve it to turn into a real product, or abandon it and work on something else.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/d1af61c3-5884-4e9a-a434-7b38cc659978/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=d1af61c3-5884-4e9a-a434-7b38cc659978" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=MozCamp+%E2%80%93+open+innovation+http%3A%2F%2Fsquio.nl%2F%3Fp%3D299" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=MozCamp+%E2%80%93+open+innovation+http%3A%2F%2Fsquio.nl%2F%3Fp%3D299" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/&amp;title=MozCamp+%E2%80%93+open+innovation" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/&amp;title=MozCamp+%E2%80%93+open+innovation" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/&amp;title=MozCamp+%E2%80%93+open+innovation" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/&amp;title=MozCamp+%E2%80%93+open+innovation" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/&amp;title=MozCamp+%E2%80%93+open+innovation" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/&amp;title=MozCamp+%E2%80%93+open+innovation" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=299&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/03/06/mozcamp-open-innovation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozCamp Utrecht &#8211; kick off</title>
		<link>http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/</link>
		<comments>http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 10:18:57 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[mozcamp]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[Mozilla Europe]]></category>
		<category><![CDATA[open standards]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[Paul Rouget]]></category>
		<category><![CDATA[Tristan Nitot]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=291</guid>
		<description><![CDATA[Today is the first of a series of MozCamps, held at the Surfnet HQ in Utrecht. Some notes&#8230; Tristan Nitot (chairman of Mozilla Europe) started his talk about the Open Web and why it matters. Quote: &#8220;standards are boring&#8220;, but they are essential for interoperability. So I can care about the brand of my phone [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_292" class="wp-caption alignright" style="width: 310px"><a href="http://squio.nl/blog/wp-content/2009/03/20090306102317.jpg"><img class="size-medium wp-image-292 " title="MozCamp Utrecht" src="http://squio.nl/blog/wp-content/2009/03/20090306102317-300x225.jpg" alt="&quot;What is the Open Web and Why it Matters&quot; - Tristan Nitot" width="300" height="225" /></a><p class="wp-caption-text">&quot;What is the Open Web and Why it Matters&quot; - Tristan Nitot (note: the slide mentions 2008 and there&#39;s a nice Fennec poster to the left)</p></div>
<p>Today is the first of a series of MozCamps, held at the Surfnet HQ in Utrecht. Some notes&#8230;</p>
<p><span id="msgtxt1287563302" class="msgtxt en"><a class="zem_slink" title="Tristan Nitot" rel="wikipedia" href="http://en.wikipedia.org/wiki/Tristan_Nitot">Tristan Nitot</a> (chairman of Mozilla Europe) started his talk about the Open Web and why it matters. Quote: &#8220;<em>standards are boring</em>&#8220;, but they are essential for interoperability. So I can care about the <em>brand</em> of my phone (iPhone vs Nokia) and convey my lifestyle, rather than worrying about the <em>network operator</em> I&#8217;m using. </span></p>
<p><span class="msgtxt en">Also, standards enable the network effect: the value of all users combined on one single network is much more than the sum of users of disjoint networks.<br />
</span></p>
<p><span class="msgtxt en">Standardization worked out for telephony and email, but initially failed for IM (iCQ vs Yahoo vs MSN vs <a class="zem_slink" title="Extensible Messaging and Presence Protocol" rel="wikipedia" href="http://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol">Jabber</a> and so on &#8211; remember Excite PAL?).</span></p>
<p><span class="msgtxt en">Same considerations apply for using proprietary plugins in browsers (Adobe Flash) vs using native browser capabikities, based on open standards: Canvas as a widely implemented alternative.</span></p>
<p><span class="msgtxt en">All major brands (firefox 3.x, Safari 4.x, Google Chrome and Opera 10) <em>except</em> msie 8.0 implement SVG, Canvas native video, JIT Tracing for Javascript and HTML 5 features.</span></p>
<p><span class="msgtxt en">The message is: <em>we should improve the market share of open standards based browsers and enjoy the interoperability</em>.<br />
</span></p>
<p>Next <a href="https://twitter.com/paul_rouget"><em>Paul Rouget</em></a> gives a demo of some these new cool features: native video, canvas, css3, filters, clip paths, canvas overlays&#8230; cool stuff indeed!</p>
<p>Tristan Nitot again: <em>the web is not TV,</em> we can not only consume the content but change it if we want!</p>
<p>Demo of people unknowingly working together: <a title="Kutiman mixes Youtube" href="http://throu-you.com/#/videos/">ThruYOU</a> &#8211; a mix of youtube videos, resulting in a funky song. Each users&#8217; contribution was useful even if they didn&#8217;t know in advance what their work would be used for. That is exactly how Open Source development is  working.</p>
<p>Followed by a demo by <em>Olivier Gambier</em> &#8211; Take back control over the Web using JavaScript (greasemonkey), Add-ons and <a class="zem_slink" title="Ubiquity" rel="homepage" href="http://labs.mozilla.com/2008/08/introducing-ubiquity/">Ubiquity</a> &#8211; all means to take control over web content and interaction. Especially the pretty new Ubiquity is really useful!</p>
<p>Nitot again: do we want TV and passively consume content, or be part of a world where we can participate instead?</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/d489011d-aca1-47db-bb05-eb532d8c6cbc/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=d489011d-aca1-47db-bb05-eb532d8c6cbc" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=MozCamp+Utrecht+%E2%80%93+kick+off+http%3A%2F%2Fsquio.nl%2F%3Fp%3D291" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=MozCamp+Utrecht+%E2%80%93+kick+off+http%3A%2F%2Fsquio.nl%2F%3Fp%3D291" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/&amp;title=MozCamp+Utrecht+%E2%80%93+kick+off" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/&amp;title=MozCamp+Utrecht+%E2%80%93+kick+off" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/&amp;title=MozCamp+Utrecht+%E2%80%93+kick+off" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/&amp;title=MozCamp+Utrecht+%E2%80%93+kick+off" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/&amp;title=MozCamp+Utrecht+%E2%80%93+kick+off" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/&amp;title=MozCamp+Utrecht+%E2%80%93+kick+off" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=291&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/03/06/mozcamp-utrecht-kick-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enhance Twitter with Twitter Hash Tools</title>
		<link>http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/</link>
		<comments>http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 22:23:49 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[hashtag]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[userscript]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=285</guid>
		<description><![CDATA[Image via CrunchBase Using Twitter in Firefox? Want to easily follow everything which is contributed to your favorite subject (#hashtag)? And want to know who is participating? Good, read on! First: what are hashtags? These are a convention to indicate that your tweet is about a certain subject or event, for example #sxsw is used [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 220px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/twitter"><img title="Image representing Twitter as depicted in Crun..." src="http://www.crunchbase.com/assets/images/resized/0000/2755/2755v2-max-450x450.png" alt="Image representing Twitter as depicted in Crun..." width="210" height="49" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>Using <a class="zem_slink" title="Twitter" rel="wikipedia" href="http://en.wikipedia.org/wiki/Twitter">Twitter</a> in Firefox? Want to easily follow everything which is contributed to your favorite subject (#<a class="zem_slink" title="hashtag" rel="homepage" href="http://twitter.pbwiki.com/Hashtags">hashtag</a>)? And want to know who is participating?</p>
<p>Good, read on!</p>
<p>First: what are hashtags?</p>
<p>These are a convention to indicate that your tweet is about a certain subject or event, for example #sxsw is used for tweets about <a class="zem_slink" title="South by Southwest" rel="wikipedia" href="http://en.wikipedia.org/wiki/South_by_Southwest">South by South West</a>, and so on.</p>
<p>Now there are a few services which make using this convention really useful:</p>
<ul>
<li><a href="http://search.twitter.com/search?q=hashtag">Twitter Search</a> &#8211; performs a live search on #hashtags and keywords</li>
<li><a href="http://www.hashtweeps.com/search/index?term=hashtag">HashTweeps</a> &#8211; finds all users who used a certain #hashtag</li>
</ul>
<p>So far so good, but Twitter does not link the hashtags in any way. Wouldn&#8217;t it be nice to have these services linked to the hashtag?</p>
<p>Well, that is exactly what my <a href="http://userscripts.org/scripts/show/43655">Greasmonkey userscript</a> does.</p>
<p>It turns this line:</p>
<p style="padding-left: 30px;">@jake will I be seeing you at #sxsw this year?</p>
<p>into this:</p>
<p style="padding-left: 30px;">@jake will I be seeing you at #<a title="tag: sxsw" href="http://search.twitter.com/search?q=sxsw" target="_blank">sxsw</a> [<a title="see who else used tag: sxsw" href="http://www.hashtweeps.com/search/index?term=sxsw" target="_blank">+</a>] this year?</p>
<p>So if you&#8217;re using Firefox, head over to <a href="http://userscripts.org/scripts/show/43655">Twitter Hash Tools</a> on userscripts.org and hit the black install button at the right of the title bar.</p>
<p>Make sure you have <a title="Greasmonkey add-on home" href="https://addons.mozilla.org/firefox/addon/748">Greasemonkey</a> installed first!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/66191059-b0fe-4cd9-adaa-6fab08d855ac/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=66191059-b0fe-4cd9-adaa-6fab08d855ac" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Enhance+Twitter+with+Twitter+Hash+Tools+http%3A%2F%2Fsquio.nl%2F%3Fp%3D285" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Enhance+Twitter+with+Twitter+Hash+Tools+http%3A%2F%2Fsquio.nl%2F%3Fp%3D285" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/&amp;title=Enhance+Twitter+with+Twitter+Hash+Tools" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/&amp;title=Enhance+Twitter+with+Twitter+Hash+Tools" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/&amp;title=Enhance+Twitter+with+Twitter+Hash+Tools" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/&amp;title=Enhance+Twitter+with+Twitter+Hash+Tools" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/&amp;title=Enhance+Twitter+with+Twitter+Hash+Tools" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/&amp;title=Enhance+Twitter+with+Twitter+Hash+Tools" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=285&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/03/05/enhance-twitter-with-twitter-hash-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing for Firefox 3.1: add-on fixes</title>
		<link>http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/</link>
		<comments>http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 16:46:53 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[livehttpheaders]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[openprofilefolder]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=277</guid>
		<description><![CDATA[Image via Wikipedia It&#8217;s that time of the Firefox release cycle again: we&#8217;re at the verge of the 3.1 release, code named Shiretoko. The betas are getting pretty stable and usable for everyday use. This usually means also that many of our tried and trusted add-ons stop working, because they have not been marked compatible [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 138px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Deer_Park_Globe.png"><img title="The generic globe logo used when Firefox is co..." src="http://upload.wikimedia.org/wikipedia/commons/9/9e/Deer_Park_Globe.png" alt="The generic globe logo used when Firefox is co..." width="128" height="128" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Deer_Park_Globe.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>It&#8217;s that time of the Firefox release cycle again: we&#8217;re at the verge of the 3.1 release, code named <a title="Direct download link" href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-1.9.1/">Shiretoko</a>. The betas are getting pretty stable and usable for everyday use.</p>
<p>This usually means also that many of our tried and trusted add-ons stop working, because they have not been marked compatible with the latest Firefox version yet.</p>
<p>So for your convenience links to add-ons with incremented <em>maxVersion</em> number in their install manifest.</p>
<ul>
<li><a href="http://squio.nl/blog/wp-content/2009/03/livehttpheaders.xpi">livehttpheaders 1.14</a> updated for Firefox 3.1<a href="http://squio.nl/blog/wp-content/2009/03/livehttpheaders.xpi"><br />
</a></li>
<li><a href="http://squio.nl/blog/wp-content/2009/03/openprofilefolder-117.xpi">openprofilefolder 1.1.7</a> updated v1.1.6 for Firefox 3.1, see <a title="Permanent link to Open Firefox Profile (add-on)" rel="bookmark" href="../2008/07/28/open-firefox-profile-add-on/">Open Firefox Profile (add-on)</a></li>
</ul>
<p>These are not changed in any other way than setting the <em>maxVersion</em> number &#8211; but you should&#8217;nt trust me and verify for yourself!</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://arstechnica.com/news.ars/post/20081208-first-look-firefox-3-1-beta-2-now-with-private-browsing.html">First look: Firefox 3.1 beta 2, now with private browsing</a> (arstechnica.com)</li>
<li class="zemanta-article-ul-li"><a href="http://news.cnet.com/8301-17939_109-10118707-2.html?part=rss&amp;tag=feed&amp;subj=Webware">Second Firefox 3.1 beta brings significant changes</a> (news.cnet.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.lockergnome.com/blade/2008/12/09/firefox-31-beta-2-now-available/">Firefox 3.1 beta 2 now available!</a> (lockergnome.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.theregister.co.uk/2008/12/09/firefox_3_1_beta_2/">Mozilla boudoir shoots out second Firefox 3.1 beta</a> (theregister.co.uk)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/5c64289f-f433-434f-9686-a791027d1e19/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=5c64289f-f433-434f-9686-a791027d1e19" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Preparing+for+Firefox+3.1%3A+add-on+fixes+http%3A%2F%2Fsquio.nl%2F%3Fp%3D277" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Preparing+for+Firefox+3.1%3A+add-on+fixes+http%3A%2F%2Fsquio.nl%2F%3Fp%3D277" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/&amp;title=Preparing+for+Firefox+3.1%3A+add-on+fixes" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/&amp;title=Preparing+for+Firefox+3.1%3A+add-on+fixes" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/&amp;title=Preparing+for+Firefox+3.1%3A+add-on+fixes" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/&amp;title=Preparing+for+Firefox+3.1%3A+add-on+fixes" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/&amp;title=Preparing+for+Firefox+3.1%3A+add-on+fixes" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/&amp;title=Preparing+for+Firefox+3.1%3A+add-on+fixes" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=277&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/03/03/preparing-for-firefox-31-add-on-fixes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sqlite3 db in Firefox: SQLite Manager Add-on!</title>
		<link>http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/</link>
		<comments>http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 16:06:59 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[sqlite3]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=221</guid>
		<description><![CDATA[So you want to peek under the hood of all those mysterious Firefox 3.x databases? Easy does it: just install SQLite Manager in&#8230; Firefox itself (for easy installation visit SQLite Manager on the AMO site). This add-on can be activated from the Tool menu and opens in a separate window. By default, a shortcut to [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 212px"><a href="http://commons.wikipedia.org/wiki/Image:SQLite_Logo_4.png"><img title="The :en:SQLite logo as of 2007-12-15" src="http://squio.nl/blog/wp-content/2009/02/sqlite_logo_4.png" alt="The :en:SQLite logo as of 2007-12-15" width="202" height="60" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p>So you want to peek under the hood of all those mysterious Firefox 3.x databases? Easy does it: just install <a class="zem_slink" title="SQLite Manager" rel="homepage" href="http://sqlite-manager.googlecode.com/">SQLite Manager</a> in&#8230; Firefox itself (for easy installation visit <a href="https://addons.mozilla.org/en-US/firefox/addon/5817">SQLite Manager on the AMO site</a>).</p>
<p>This add-on can be activated from the Tool menu and opens in a separate window. By default, a shortcut to your profile directory is provided, but there is nothing preventing you from opening other <a class="zem_slink" title="SQLite" rel="homepage" href="http://sqlite.org/">sqlite3</a> databases when you&#8217;re done staring at the <em>places.sqlite</em> database.</p>
<p>On <a class="zem_slink" title="Mac OS X" rel="homepage" href="http://www.apple.com/macosx/">Mac OSX</a> there is lots to explore about your <a class="zem_slink" title="Mail (application)" rel="homepage" href="http://www.apple.com/macosx/features/mail">Mail.app</a> settings in your <em>~/Library/Mail</em> directory, e.g to <a href="http://menson.wordpress.com/2009/02/08/forever-for-now-optimizing-mailapp-performance/">optimize mail performance</a>. Just be careful that you don&#8217;t make any changes on the live database (you work on a back-up copy, right?).</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/e4d94470-d3d6-48a2-9a69-c8ebbd68d2ec/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=e4d94470-d3d6-48a2-9a69-c8ebbd68d2ec" alt="Reblog this post [with Zemanta]" /></a></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21+http%3A%2F%2Fsquio.nl%2F%3Fp%3D221" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21+http%3A%2F%2Fsquio.nl%2F%3Fp%3D221" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/&amp;title=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/&amp;title=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/&amp;title=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/&amp;title=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/&amp;title=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/&amp;title=sqlite3+db+in+Firefox%3A+SQLite+Manager+Add-on%21" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=221&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/02/09/sqlite3-db-in-firefox-sqlite-manager-add-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google apps secure connection</title>
		<link>http://squio.nl/blog/2009/01/25/google-apps-secure-connection/</link>
		<comments>http://squio.nl/blog/2009/01/25/google-apps-secure-connection/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 07:32:05 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=189</guid>
		<description><![CDATA[Update Feb 10: Google is listening to their critical users and takes their responsibility serious, it appears! Today I discovered that they did not only restore the &#8220;always use https&#8221; setting in gmail, but there is now a global switch on the Apps for your domain settings page as well. Ironically, the associated help page [...]]]></description>
			<content:encoded><![CDATA[<p>Update Feb 10: <a class="zem_slink" title="Google" rel="homepage" href="http://google.com">Google</a> is listening to their critical users and takes their responsibility serious, it appears!</p>
<p>Today I discovered that they did not only restore the &#8220;<em>always use https</em>&#8221; setting in <em>gmail</em>, but there is now a global switch on the Apps for your domain settings page as well. Ironically, the <a href="http://www.google.com/support/a/bin/answer.py?hl=en&amp;answer=100181">associated help page</a> still tells you that this is a &#8220;<em>premier edition only feature</em> &#8220;.</p>
<p>Now that is a big improvement, thank you Google!</p>
<div id="attachment_232" class="wp-caption alignnone" style="width: 492px"><a href="http://www.google.com/support/a/bin/answer.py?hl=en&amp;answer=100181"><img class="size-full wp-image-232" title="Apps: ssl settings" src="http://squio.nl/blog/wp-content/2009/01/ssl-setting-apps.png" alt="Domain settings: always use SSL" width="482" height="66" /></a><p class="wp-caption-text">Apps for your domain: DomainSettings: always use SSL</p></div>
<p><span id="more-189"></span></p>
<p>In my <a href="http://squio.nl/blog/2009/01/24/the-end-of-free-also-for-google/">previous post</a> I noticed that <a class="zem_slink" title="Google Apps" rel="homepage" href="http://www.google.com/a/">Google Apps</a>, free edition, no longer allows you to use SSL as standard connection setting.</p>
<div id="attachment_191" class="wp-caption alignright" style="width: 225px"><img class="size-full wp-image-191" title="gmail-https" src="http://squio.nl/blog/wp-content/2009/01/gmail-https1.png" alt="gmail: use httpS instead of http" width="215" height="38" /><p class="wp-caption-text">gmail: use httpS instead of http</p></div>
<p>Luckily, the old trick of replacing <a class="zem_slink" title="Hypertext Transfer Protocol" rel="wikipedia" href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol">http</a> by <a class="zem_slink" title="Https" rel="wikipedia" href="http://en.wikipedia.org/wiki/Https">https</a> in the browser&#8217;s location bar still appeears to work (verified for Google Apps mail).</p>
<p>Using <a class="zem_slink" title="Firefox" rel="homepage" href="http://www.mozilla.com/firefox/">Firefox</a> and <a class="zem_slink" title="Greasemonkey" rel="homepage" href="http://www.greasespot.net/">Greasemonkey</a>?</p>
<p>Pick one of <a title="Results for gmail + ssl" href="http://userscripts.org/scripts/search?q=gmail+ssl">these user scripts</a> to automate the process (I haven&#8217;t chosen a favorite yet).</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/2372a81c-927a-4358-a2f4-837851b3d7b7/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=2372a81c-927a-4358-a2f4-837851b3d7b7" alt="Reblog this post [with Zemanta]" /></a></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Google+apps+secure+connection+http%3A%2F%2Fsquio.nl%2F%3Fp%3D189" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Google+apps+secure+connection+http%3A%2F%2Fsquio.nl%2F%3Fp%3D189" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/01/25/google-apps-secure-connection/&amp;title=Google+apps+secure+connection" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2009/01/25/google-apps-secure-connection/&amp;title=Google+apps+secure+connection" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/01/25/google-apps-secure-connection/&amp;title=Google+apps+secure+connection" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2009/01/25/google-apps-secure-connection/&amp;title=Google+apps+secure+connection" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/01/25/google-apps-secure-connection/&amp;title=Google+apps+secure+connection" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2009/01/25/google-apps-secure-connection/&amp;title=Google+apps+secure+connection" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2009/01/25/google-apps-secure-connection/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=189&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2009/01/25/google-apps-secure-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Firefox Profile (add-on)</title>
		<link>http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/</link>
		<comments>http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 10:08:11 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=167</guid>
		<description><![CDATA[It is easy to get lost if you&#8217;re working with many development profiles in FIrefox: what profile is currently running? There is no easy way to find out from the browser. So&#8230; a search on addons.mozilla.org brought up open-profilefolder which was almost what I wanted, except it has not been updated for Firefox 3.0. So [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-166" style="float: right;" title="Firefox Add-on" src="http://squio.nl/blog/wp-content/2008/07/ff-add-on.png" alt="" width="133" height="100" />It is easy to get lost if you&#8217;re working with many development profiles in FIrefox: what profile is currently running? There is no easy way to find out from the browser.</p>
<p>So&#8230; a search on addons.mozilla.org brought up <a href="https://addons.mozilla.org/en-US/firefox/addon/545">open-profilefolder</a> which was almost what I wanted, except it has not been updated for Firefox 3.0.</p>
<p>So here my version with the following changes:</p>
<ul>
<li>installs in Firefox 2.0.x and 3.0.x</li>
<li>shows the name of the current profile folder in the Tools menu </li>
</ul>
<div>Get it here: <a href="http://squio.nl/blog/wp-content/2008/07/open-profilefolder-116.xpi">open-profilefolder-1.1.6.xpi</a></div>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Open+Firefox+Profile+%28add-on%29+http%3A%2F%2Fsquio.nl%2F%3Fp%3D167" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Open+Firefox+Profile+%28add-on%29+http%3A%2F%2Fsquio.nl%2F%3Fp%3D167" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/&amp;title=Open+Firefox+Profile+%28add-on%29" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/&amp;title=Open+Firefox+Profile+%28add-on%29" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/&amp;title=Open+Firefox+Profile+%28add-on%29" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/&amp;title=Open+Firefox+Profile+%28add-on%29" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/&amp;title=Open+Firefox+Profile+%28add-on%29" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/&amp;title=Open+Firefox+Profile+%28add-on%29" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=167&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2008/07/28/open-firefox-profile-add-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiveHTTPheaders for Firefox 3.0 released</title>
		<link>http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/</link>
		<comments>http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/#comments</comments>
		<pubDate>Mon, 12 May 2008 12:57:57 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[livehttpheaders]]></category>

		<guid isPermaLink="false">http://squio.nl/blog/?p=163</guid>
		<description><![CDATA[Just a quick followup to my blog post about Firefox 3.0 and LiveHTTPheaders. I introduced a quick and dirty fix, which made it possible to install the add-on on the newest beta versions of Firefox. Now there is the official update, go on and install it right away! Here&#8217;s the new release annoucement: LiveHTTPheader 0.14 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://squio.nl/blog/wp-content/2008/01/livehttpheaders.png" alt="Live HTTP Headers" /></p>
<p>Just a quick followup to my blog post about <a href="http://squio.nl/blog/2008/01/22/livehttpheaders-for-firefox-30-beta/">Firefox 3.0 and LiveHTTPheaders</a>.</p>
<p>I introduced a quick and dirty fix, which made it possible to install the add-on on the newest beta versions of Firefox. Now there is the official update, go on and install it right away!</p>
<p>Here&#8217;s the new release annoucement: <a href="http://livehttpheaders.mozdev.org/installation.html#0.14">LiveHTTPheader 0.14 supports firefox 3.0</a>.</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=LiveHTTPheaders+for+Firefox+3.0+released+http%3A%2F%2Fsquio.nl%2F%3Fp%3D163" title="Post to Twitter"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=LiveHTTPheaders+for+Firefox+3.0+released+http%3A%2F%2Fsquio.nl%2F%3Fp%3D163" title="Post to Twitter">Tweet This</a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/&amp;title=LiveHTTPheaders+for+Firefox+3.0+released" title="Post to Delicious"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/&amp;title=LiveHTTPheaders+for+Firefox+3.0+released" title="Post to Delicious">Delicious</a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/&amp;title=LiveHTTPheaders+for+Firefox+3.0+released" title="Post to Reddit"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/&amp;title=LiveHTTPheaders+for+Firefox+3.0+released" title="Post to Reddit">Reddit This Post</a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/&amp;title=LiveHTTPheaders+for+Firefox+3.0+released" title="Post to StumbleUpon"><img class="nothumb" src="http://squio.nl/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/&amp;title=LiveHTTPheaders+for+Firefox+3.0+released" title="Post to StumbleUpon">Stumble This Post</a></p></div><div class='wpfblike' style='height: 40px;'><fb:like href='http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://squio.nl/blog/?ak_action=api_record_view&id=163&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://squio.nl/blog/2008/05/12/livehttpheaders-for-firefox-30-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

