<?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"
	>

<channel>
	<title>tomputer</title>
	<atom:link href="http://droza.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://droza.net/blog</link>
	<description>Software. Gadgets. Music. Rants. By Tom D'Roza</description>
	<pubDate>Wed, 03 Dec 2008 22:21:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>TinyURL Bookmarklet</title>
		<link>http://droza.net/blog/2008/12/03/tinyurl-bookmarklet/</link>
		<comments>http://droza.net/blog/2008/12/03/tinyurl-bookmarklet/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 22:16:16 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[code]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[bookmarklet]]></category>

		<category><![CDATA[js]]></category>

		<category><![CDATA[json]]></category>

		<category><![CDATA[jsonp]]></category>

		<category><![CDATA[tinyurl]]></category>

		<category><![CDATA[wtframework]]></category>

		<guid isPermaLink="false">http://droza.net/blog/?p=97</guid>
		<description><![CDATA[
If you just want to try this out, drag the link below to your bookmarks toolbar, then click the new bookmark. I&#8217;ve only tested in Firefox 3.04 so far so your mileage may vary if you use another browser. Let me know in the comments if you find this useful or have any problems.

Tiny

Read on [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_119" class="wp-caption aligncenter" style="width: 510px"><a href="http://droza.net/blog/wp-content/uploads/2008/12/tiny_bookmarklet.gif"><img class="size-full wp-image-119" title="TinyURL bookmarklet" src="http://droza.net/blog/wp-content/uploads/2008/12/tiny_bookmarklet.gif" alt="TinyURL bookmarklet in action" width="500" height="117" /></a><p class="wp-caption-text">TinyURL bookmarklet in action</p></div>
<p>If you just want to try this out, drag the link below to your bookmarks toolbar, then click the new bookmark. I&#8217;ve only tested in Firefox 3.04 so far so your mileage may vary if you use another browser. Let me know in the comments if you find this useful or have any problems.</p>
<blockquote>
<p style="text-align: left;"><a class="aligncenter" title="TinyURL Bookmarklet" href="javascript:var%20el=document.getElementById('__tiny');if(el){document.body.removeChild(el)}else{var%20scriptTag=document.createElement('script');scriptTag.type='text/javascript';scriptTag.src='http://json-tinyurl.appspot.com/?callback=window.tinyCallback&amp;url='+document.location;scriptTag.id='__tinyURL_script';document.body.appendChild(scriptTag)}if(!window['tinyCallback']){window.tinyCallback=function(data){var%20c=document.createElement('span');c.id='__tiny';c.style.opacity='0.7';c.style.filter='alpha(opacity=70)';c.style.border='solid%202px%20%23fff';c.style.textDecoration='none';c.style.textAlign='left';c.style.position='fixed';c.style.zIndex='9000';c.style.top='15px';c.style.right='20px';c.style.background='#000';c.style.styleFloat='right';c.style.padding='7px%2010px';c.style.color='%23fff';c.style.font='12px%20Lucida%20Grande,Helvetica,Tahoma';c.style.MozBorderRadius='5px';c.style.WebkitBorderRadius='5px';c.style.WebkitBoxShadow='0px%200px%2020px%20%23000';c.style.MozBoxShadow='0px%200px%2020px%20%23000';document.body.appendChild(c);c.innerHTML=data.tinyurl;console.log('callback%20done');var%20x=document.getElementById('__tinyURL_script');if(x){document.body.removeChild(x)}}}void(0);">Tiny</a></p>
</blockquote>
<p>Read on for a description of how it works&#8230;</p>
<p><span id="more-97"></span></p>
<p><span style="text-decoration: underline;"><strong>What it does</strong></span><br />
Inspired by the <a title="WTFramework" href="http://blog.olicio.us/2008/11/08/wtframework-bookmarklet/" target="_blank">WTFramework</a> bookmarklet I decided to create a TinyURL bookmarklet that would generate a shortened url without opening a new browser window and without navigating the user away from the current page. It took me a little while to figure out how to define a callback function within a bookmarklet (thanks to <a title="Dion's blog" href="http://almaer.com/blog/">Dion Almaer</a> for a useful <a title="Dion's blog post" href="http://almaer.com/blog/translate-select-any-text-in-the-browser-and-have-it-convert-to-english-or-your-language">tutorial</a>) but I got it working in a couple of hours and I quite like it. Thanks also to <a title="About Oskar" href="http://blog.olicio.us/the-dude" target="_blank">Oskar Krawczyk</a> for the CSS which I &#8220;borrowed&#8221; from the aforementioned WTFramework.</p>
<p><span style="text-decoration: underline;"><strong>How it works<br />
</strong></span>When you click the bookmarklet, I first check whether the UI element is visible and if it is, remove it:</p>
<pre name="code" class="jscript">

var el=document.getElementById('__tiny');
if (el){
  document.body.removeChild(el);
}
</pre>
<p>This makes the bookmarklet act as a toggle: Click once to show the UI, click again to remove it. The WTFramework bookmarklet also removes the UI when the user clicks on the UI element itself  but I removed that functionality from this bookmarklet as the user is likely to want to click and select the tinyurl to copy it which would be difficut if the UI disappears on mouse click.</p>
<p>If the UI is not present, I generate a URL which is called via script injection to circumvent the browser&#8217;s same origin policy (i.e. I generate as <code>script</code> tag, set its <code>src</code> attribute and add the tag to the DOM):</p>
<pre name="code" class="jscript">

var scriptTag = document.createElement('script');
scriptTag.type='text/javascript';
scriptTag.src='http://json-tinyurl.appspot.com/?callback=window.tinyCallback&amp;url=' + document.location;
scriptTag.id='__tinyURL_script';
document.body.appendChild(scriptTag);
</pre>
<p>The response is a JSONP formatted string. TinyURL provides a very simple API (e.g. <a title="TinyURL API example" href="http://tinyurl.com/api-create.php?url=http://scripting.com/" target="_blank">http://tinyurl.com/api-create.php?url=http://www.droza.net/blog</a>) but doesn&#8217;t offer a JSONP interface - I was going to create one with Yahoo Pipes, but found that a suitable JSONP wrapper for TinyURL already exists, hosted in Google&#8217;s AppEngine (e.g. http://json-tinyurl.appspot.com/?callback=window.tinyCallback&amp;url=http://www.droza.net/blog) so I use that instead (thanks <a title="Simon Willison" href="http://simonwillison.net/2008/Aug/27/jsontinyurl/" target="_blank">Simon</a>!).</p>
<p>After the script tag is added to the page, the browser will call the API and the response will invoke the tinyCallback function (I check to see whether the function already exists before declaring it to prevent declaring it twice if the bookmarklet is used multiple times on the same page). The callback constructs a semi-transparent UI element positioned in the top-right of the browser page and sets its content to be the generated tiny url. The bulk of the code is CSS:</p>
<pre name="code" class="jscript">

window.tinyCallback = function(data) {
  var c=document.createElement('span');
  c.id='__tiny';
  c.style.opacity='0.7';
  c.style.filter='alpha(opacity=70)';
  c.style.border='solid 2px %23fff';
  c.style.textDecoration='none';
  c.style.textAlign='left';
  c.style.position='fixed';
  c.style.zIndex='9000';
  c.style.top='15px';
  c.style.right='20px';
  c.style.background='#000';
  c.style.styleFloat='right';
  c.style.padding='7px 10px';
  c.style.color='%23fff';
  c.style.font='12px Lucida Grande,Helvetica,Tahoma';
  c.style.MozBorderRadius='5px';
  c.style.WebkitBorderRadius='5px';
  c.style.WebkitBoxShadow='0px 0px 20px %23000';
  c.style.MozBoxShadow='0px 0px 20px %23000';
  document.body.appendChild(c);
  c.innerHTML=data.tinyurl;
</pre>
<p>It then removes the script tag that it added to the DOM, just to keep things tidy:</p>
<pre name="code" class="jscript">

var x=document.getElementById('__tinyURL_script');
if (x){
  document.body.removeChild(x);
}
</pre>
<p>After creating the script I used Dean Edward&#8217;s <a title="Dean's packer" href="http://dean.edwards.name/packer/" target="_blank">packer</a> to minify the code to a single line sans-whitespace suitable for using in the <code>href</code> attribute of an <code>a</code> tag.</p>
<p><span style="text-decoration: underline;"><strong>The full code</strong></span><br />
For reference, the listing below is the full non-minified sourcecode</p>
<pre name="code" class="jscript">

var el=document.getElementById('__tiny');
if (el){
  document.body.removeChild(el);
} else {
  var scriptTag = document.createElement('script');
  scriptTag.type='text/javascript';
  scriptTag.src='http://json-tinyurl.appspot.com/?callback=window.tinyCallback&amp;url=' + document.location;
  scriptTag.id='__tinyURL_script';
  document.body.appendChild(scriptTag);
}
if (!window['tinyCallback']) {
  window.tinyCallback = function(data) {
    var c=document.createElement('span');
    c.id='__tiny';
    c.style.opacity='0.7';
    c.style.filter='alpha(opacity=70)';
    c.style.border='solid 2px %23fff';
    c.style.textDecoration='none';
    c.style.textAlign='left';
    c.style.position='fixed';
    c.style.zIndex='9000';
    c.style.top='15px';
    c.style.right='20px';
    c.style.background='#000';
    c.style.styleFloat='right';
    c.style.padding='7px 10px';
    c.style.color='%23fff';
    c.style.font='12px Lucida Grande,Helvetica,Tahoma';
    c.style.MozBorderRadius='5px';
    c.style.WebkitBorderRadius='5px';
    c.style.WebkitBoxShadow='0px 0px 20px %23000';
    c.style.MozBoxShadow='0px 0px 20px %23000';
    document.body.appendChild(c);
    c.innerHTML=data.tinyurl;
    var x=document.getElementById('__tinyURL_script');
    if (x){
      document.body.removeChild(x);
    }
  }
}
void(0);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/12/03/tinyurl-bookmarklet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>XBMChumby sourcecode is now public</title>
		<link>http://droza.net/blog/2008/11/04/xbmchumby-sourcecode-is-now-public/</link>
		<comments>http://droza.net/blog/2008/11/04/xbmchumby-sourcecode-is-now-public/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:22:25 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[Chumby]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[gadgets]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[tech]]></category>

		<category><![CDATA[widgets]]></category>

		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[flash]]></category>

		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://droza.net/blog/?p=90</guid>
		<description><![CDATA[It&#8217;s taken me a while I&#8217;ll admit but I&#8217;ve just got around to releasing the sourcecode for the XBMChumby widget I wrote which displays the XBMC &#8220;Now Playing&#8221; queue on the Chumby. I decided early on that my very basic skills as a flash/ActionScript developer weren&#8217;t up to developing this to it&#8217;s full potential so [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s taken me a while I&#8217;ll admit but I&#8217;ve just got around to releasing the sourcecode for the XBMChumby widget I wrote which displays the XBMC &#8220;Now Playing&#8221; queue on the Chumby. I decided early on that my very basic skills as a flash/ActionScript developer weren&#8217;t up to developing this to it&#8217;s full potential so now if anyone is interested in taking it further please checkout the code and get in touch if you have any problems building it etc etc etc.</p>
<p>The sourceforge project page is: https://sourceforge.net/projects/xbmchumby/</p>
<p>&#8230;or you can point your CVS client at xbmchumby.cvs.sourceforge.net</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F11%2F04%2Fxbmchumby-sourcecode-is-now-public%2F&amp;title=XBMChumby+sourcecode+is+now+public" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/11/04/xbmchumby-sourcecode-is-now-public/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu on the Eee PC</title>
		<link>http://droza.net/blog/2008/10/03/ubuntu-on-the-eee-pc/</link>
		<comments>http://droza.net/blog/2008/10/03/ubuntu-on-the-eee-pc/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 14:16:40 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[Asus EeePC 901]]></category>

		<category><![CDATA[gadgets]]></category>

		<category><![CDATA[901]]></category>

		<category><![CDATA[asus]]></category>

		<category><![CDATA[eee]]></category>

		<category><![CDATA[eee901]]></category>

		<category><![CDATA[eeepc]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[mame]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[xandros]]></category>

		<guid isPermaLink="false">http://droza.net/blog/?p=84</guid>
		<description><![CDATA[After a couple of days playing with my new Asus EeePC 901 I was left more than a little disappointed: The innovative multitouch mouse pad was limited by the provided drivers - two-finger scroll would work but not pinch-to-zoom. The browser would crash if I tried using any flash recording in websites like youtube or [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">After a couple of days playing with my new Asus EeePC 901 I was left more than a little disappointed: The innovative multitouch mouse pad was limited by the provided drivers - two-finger scroll would work but not pinch-to-zoom. The browser would crash if I tried using any flash recording in websites like youtube or ustream with the in-built webcam. The performance seemed a little sluggish when swapping between applications or even between browser tabs, and I&#8217;d describe the interface as something I&#8217;d expect to see on a kids &#8220;my first laptop&#8221; - poor quality icons and use of colour. I also found the default Xandros Linux operating system to be cumbersome - the update manager failed to install updates that it told me were available and it was incredibly difficult to install applications not listed in the update manager. Then when I told the thing to shutdown, sometimes it would but sometimes it would refuse to turn off the power and just sit there with black screen. I spent two whole hours installing seven different packages just to install Firefox 3, and then a further hour changing the Firefox shortcut in the application launcher to load version 3 instead of 2. I thought Linux was supposed to be user friendly these days!? I was left wondering whether perhaps these were just compromises I would have to accept for the portability and battery life that the EeePC could provide?</p>
<div class="mceTemp mceIEcenter" style="text-align: left;">
<dl id="attachment_78" class="wp-caption aligncenter" style="width: 235px;">
<dt class="wp-caption-dt"><a href="http://droza.net/blog/wp-content/uploads/2008/10/eee_mame.jpg"><img class="size-medium wp-image-78" title="eee_mame" src="http://droza.net/blog/wp-content/uploads/2008/10/eee_mame-225x300.jpg" alt="MAME running on te Eee901" width="225" height="300" /></a></dt>
<dd class="wp-caption-dd">MAME running on the Eee901</dd>
</dl>
</div>
<p style="text-align: left;"><span id="more-84"></span></p>
<p style="text-align: left;">I mentioned these issues on Twitter and <a title="Robbie on Twittter" href="http://twitter.com/robb1e" target="_blank">@robb1e</a> replied to <a href="http://twitter.com/robb1e/statuses/912049235" target="_blank">suggest</a> I try Ubuntu instead of Xandros. I&#8217;d read good things about Ubuntu but also read that it needed some manual tweaks to get some features of the 901 (wifi, bluetooth, webcam) to work. Then I found the <a href="http://www.ubuntu-eee.com" target="_blank">Ubuntu Eee</a> project - a  version of Ubuntu customised with software and drivers specifically for the EeePC.  It can be installed on a USB flash drive using a windows installer so that you can give it a try completely risk free as it wont touch your existing OS.  I gave it a try and after just 15 minutes testing was convinced enough that I installed it permanently (from the same flash drive) and said goodbye to Xandros forever.</p>
<div class="mceTemp mceIEcenter" style="text-align: left;">
<dl id="attachment_63" class="wp-caption aligncenter" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://droza.net/blog/wp-content/uploads/2008/09/xandros1.png"><img class="size-medium wp-image-63" title="Xandros" src="http://droza.net/blog/wp-content/uploads/2008/09/xandros1.png" alt="Before: Xandros Linux" width="300" height="175" /></a></dt>
<dd class="wp-caption-dd">Before: Xandros Linux</dd>
</dl>
</div>
<div class="mceTemp mceIEcenter" style="text-align: left;">
<dl id="attachment_64" class="wp-caption aligncenter" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://droza.net/blog/wp-content/uploads/2008/09/screenshot.png"><img class="size-medium wp-image-64" title="Ubuntu" src="http://droza.net/blog/wp-content/uploads/2008/09/screenshot.png" alt="After: Netbook Remix on Ubuntu Eee" width="300" height="175" /></a></dt>
<dd class="wp-caption-dd">After: Netbook Remix in Ubuntu Eee</dd>
</dl>
</div>
<p style="text-align: left;">Here&#8217;s why I believe that Ubuntu Eee is streets ahead of Xandros:</p>
<ul style="text-align: left;">
<li>Much slicker, crisper user interface (the NetbookRemix interface is a simplified application launcher similar to that provided by Xandros, but it&#8217;s still possible to go back to the standard Ubuntu desktop although I think NetbookRemix is perfect for this form-factor).</li>
<li>Great set of bundled applications (OpenOffice, Firefox 3 (including full flash support), Skype)</li>
<li>Full support for the multitouch touchpad</li>
<li>Fully functioning update manager</li>
<li>Far more responsive when switching between applications</li>
<li>Almost all of the hardware works without any extra configuration (see below for the exceptions)</li>
<li>Shutdown really does shutdown and power off!</li>
</ul>
<p style="text-align: left;">There are still a couple of things I think could be improved with Ubuntu Eee but I have more confidence in the community being able to resolve these quickly than Asus being able to fix the Xandros issues. In fact, there&#8217;s a new version based around Ubuntu 8.10 due at the end of which should have even better support for the 901.  Here&#8217;s a quick roundup of the issues I had:</p>
<ul style="text-align: left;">
<li>Lack of bluetooth software - bluetooth drivers are installed but the only way to send or receive files (as far as I could tell) is via the command line until you install addiitional software to enable right-click &gt; Send-to&#8230;</li>
<li>SD card reader support - my card wasn&#8217;t mounted properly because of a conflict caused by Ubuntu expecting the presence of a CD-ROM drive. Easily fixed by a one-line change in a config file, but should work by default as none of the EeePCs have a CD-ROM</li>
<li>Shortcut keys weren&#8217;t configured (home key and the row of 4 buttons above the function keys)</li>
<li>MAME - one of the first things I installed. Surely Space Invaders and Pacman should come as standard, no? <img src='http://droza.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p style="text-align: left;">I&#8217;m so impressed that I&#8217;m even considering scrapping WinXP from my main laptop and installing Ubuntu. In fact, I&#8217;d go as far as to say that Asus are underselling their EeePC by shipping it with Xandros - it should come with Ubuntu Eee by default.</p>
]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/10/03/ubuntu-on-the-eee-pc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Netbook revolution</title>
		<link>http://droza.net/blog/2008/09/17/netbook-revolution/</link>
		<comments>http://droza.net/blog/2008/09/17/netbook-revolution/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 10:19:58 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[901]]></category>

		<category><![CDATA[asus]]></category>

		<category><![CDATA[eee]]></category>

		<category><![CDATA[eee901]]></category>

		<category><![CDATA[eeepc]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[xandros]]></category>

		<guid isPermaLink="false">http://droza.net/blog/?p=65</guid>
		<description><![CDATA[I&#8217;ve been paying attention to the market for portable internet enabled devices recently as I&#8217;ve been wanting a device that allows me to read news feeds, browse the web and manage emails while away from home. Most of the devices I&#8217;ve seen so far have been frustrating to use for one reason or another. I [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Asus EeePC 901" href="http://droza.net/blog/wp-content/uploads/2008/09/asus-901.jpg"><img src="http://droza.net/blog/wp-content/uploads/2008/09/asus-901.thumbnail.jpg" alt="Asus EeePC 901" align="left" /></a>I&#8217;ve been paying attention to the market for portable internet enabled devices recently as I&#8217;ve been wanting a device that allows me to read news feeds, browse the web and manage emails while away from home. Most of the devices I&#8217;ve seen so far have been frustrating to use for one reason or another. I have a Windows Mobile handset which is fine for reading short plain-text emails or checking train times but anything else is likely to lead throwing either the handset or myself from the top of a very high bridge! At the start of the year I  bought a Nokia N800 &#8220;internet tablet&#8221; but soon found that the screen was still not a high enough resolution, and there was a lack of thrid-party software (which was impossibly difficult to install anyway). I fount the N800 just too slow and clumsy when browsing web pages or scrolling through RSS feeds. I came to the conclusion that I don&#8217;t want to make do with a &#8220;mobile internet&#8221; experience, I want the full internet (including ajax, flash etc) but in a portable form-factor.</p>
<p style="text-align: left">Six months ago a friend bought an Asus EeePC 701. He soon returned it becuase he found the keyboard too cramped and the 7&#8243; screen too small, but I was sold on the concept. Asus have since saturated the market with a plethora of devices and model numbers which  serve only to confuse the consumer but the latest model, the EeePC 901, is significantly improved from that first model and I think has the potential to be just what I&#8217;m looking for. The important features for me are:</p>
<ul>
<li>9&#8243; screen</li>
<li>1024 pixels wide so almost all webpages will fit without horizontal scrolling.</li>
<li>Intel Atom mobile CPU running at 1.6GHz - low powered and cool running.</li>
<li>802.11b/g and n WiFi and bluetooth built-in</li>
<li>1.3megapixel webcam,</li>
<li>20GB solid state disk (SSD) if you go for the Linux option, otherwise 12GB so no moving parts and better battery life than a conventional hard disk.</li>
</ul>
<p>In fact, it&#8217;s claimed that with some clever CPU performance management it&#8217;s possible to eek out 8 hours from a single charge.</p>
<p>So, just over a week ago I bought one, and put the N800 on eBay. I&#8217;ve been playing with the Eee901 for a while now, I&#8217;ve used it on the train, taken it when I went away for the weekend and shown it to several friends and colleagues. So far I&#8217;ve been very impressed with the hardware, design and build quality but disappointed with the Xandros Linux operating system. However, I made one big change yesteerday which has completely transformend the Eee901 and resolved almost all of my concerns. More on that in my next EeePC post&#8230;</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F09%2F17%2Fnetbook-revolution%2F&amp;title=Netbook+revolution" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/09/17/netbook-revolution/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Open University Photography Course</title>
		<link>http://droza.net/blog/2008/09/16/open-university-photography-course/</link>
		<comments>http://droza.net/blog/2008/09/16/open-university-photography-course/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 15:51:11 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[photography]]></category>

		<category><![CDATA[digital]]></category>

		<category><![CDATA[digital photography]]></category>

		<category><![CDATA[open university]]></category>

		<category><![CDATA[ou]]></category>

		<category><![CDATA[photo]]></category>

		<category><![CDATA[t189]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2008/09/16/open-university-photography-course/</guid>
		<description><![CDATA[ In May this year I enrolled in a photography course at the Open University. I&#8217;ve been interested in photography for a while (I&#8217;m on my fifth digital camera in not many more years) but it was when I bought a Canon EOS 400d digital SLR a year ago that my interest became more serious. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/tdroza/2756831267/"> </a>In May this year I enrolled in a photography course at the Open University. I&#8217;ve been interested in photography for a while (I&#8217;m on my fifth digital camera in not many more years) but it was when I bought a Canon EOS 400d digital SLR a year ago that my interest became more serious. I had a look at the local college and looked into a couple of one or two day courses offered by local photographers but settled on the Open University&#8217;s <a href="http://www3.open.ac.uk/courses/bin/p12.dll?C01T189" target="_blank">Digital photography: creating and sharing better images</a> (course code: T189) as being the best value and most comprehensive. It&#8217;s a ten week course (run twice a year in May and October) and the focus is a roughly 50:50 split between in camera techniques and the so-called &#8220;digital darkroom&#8221; of image manipulation on the computer. This may not suit everyone as some believe that a photograph should be taken correctly in the first place and any post-processing is &#8220;cheating&#8221; but it suited me just fine.  The course is worth 10 Open University points (most OU qualifications are multiples of 20 points) but I intended to do the course to improve my photography rather than to work toward a recognised qualification.</p>
<p><a href="http://www.flickr.com/photos/tdroza/2756831267/"></p>
<p style="text-align: center"><img src="http://farm4.static.flickr.com/3231/2831560520_1e426fae0c_m.jpg" width="240" height="157" /></p>
<p></a> <a href="http://www.flickr.com/photos/tdroza/2756831267/"> </a></p>
<p><span id="more-67"></span>As with many OU courses there is no instructor led face-to-face training, after enrolling for the course students receive a couple of DVDs with course notes, video tutorials and a copy of Adobe Photoshop Elements.  All of the content can also be accessed on the OU website, although the videos are necessarily of lower quality which make the Photoshop tutorials difficult to follow. The course currently uses Elements version 5, which is not the latest version (version 7 will be released shortly) but is more than adequate.<a href="http://www.flickr.com/photos/tdroza/2756831267/"> </a></p>
<p>Each week students must read the notes for that week and watch the video tutorials which are generally a narrated recording of an instructor demonstrating a Photoshop technique - for the first couple of weeks one of the instructors had a slow monotonous voice that made the videos difficult to follow but this improved greatly with the instructors in later weeks. There&#8217;s then a practical exercise each week where students must submit a minimum of two but up to ten photos electronically using &#8220;Open Studio&#8221; (an online photo sharing site similar to flickr or picasa) for fellow students to critique. There&#8217;s no formal feedback from instructors, although there are experienced moderators who may also comment on students&#8217; work.</p>
<p><a href="http://www.flickr.com/photos/tdroza/2756831267/"></p>
<p style="text-align: center"><img src="http://farm4.static.flickr.com/3032/2756831267_a1bbc3803d_m.jpg" width="240" height="160" /></p>
<p></a></p>
<p>The OU say that any camera may be used for the course (2 Megapixel or above if it&#8217;s digital) and that an SLR is not required. However, I would say that a digital rather than film camera is essential as it would be too difficult to take a whole film of photographs each week in order to have it developed and digitised in order to submit pictures for that week&#8217;s task. I&#8217;d agree that an SLR is not essential (lots of my course mates were using compact digital cameras) but a camera with some level of manual settings is a must.</p>
<p>There were a couple of things that I thought could be improved with the course: one subject that I expected to be covered but wasn&#8217;t was flash photography (diffusers, slow sync, front/rear curtain).  I also felt that the topics were a little weak in the last couple of weeks - almost as though they had struggled to find enough material to fill the full 10 weeks, although I think the OU would argue that this was to allow students that may have missed earlier topics to catch up before the final assessment. Finally, although the Open Studio website was very well designed, the accompanying forum was non-intuitive and amongst the worst I have ever used. In fact I suspect that many students (myself included) didn&#8217;t use the forum because it was so poor choosing instead to have conversations using the commenting system in Open Studio or moving on to the T189 group on flickr. However, I know that this was only the second time that the course had been run and that improvements are being made to the online systems.</p>
<p style="text-align: center"><a href="http://www.flickr.com/photos/tdroza/2686056622/"><img src="http://farm4.static.flickr.com/3208/2686056622_b4c6e6bbf5_m.jpg" width="240" height="157" /></a></p>
<p>Overall I found T189 to be a very rewarding course and my fellow students provided encouragement and useful tips. I know understand concepts like depth-of-field and could even tell you what (most of) the abbreviations and funny little symbols on my camera all do! The weekly tasks are great because they give you a reason to go out and take photos each week My confidence and the quality of my photos has certainly improved as a result. - I might have found this more difficult if I had done the course in October: there are only so many pictures you can take in a grey and rainy Suffolk! Before I completed the course I would take photos save them to my computer and tag them, now I find myself cropping, straightening, tweaking the levels, adjusting the colour balance, cloning out distractions, sharpening, dodging, burning&#8230;</p>
<p>There&#8217;s a mid-course assessment (multiple choice Q&amp;A) and at the end of the course, students must submit a panel of 10 photographs and submit a written piece to answer a selection of questions about the photos they submit. I believe that students then get a pass or fail along with a score (I&#8217;ll find out at the end of the week when I get my result!) and those students getting the higher results are encouraged to work toward Licentiateship Distinction at the <a href="http://www.rps.org" target="_blank">Royal Photographic Society</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/09/16/open-university-photography-course/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Explorer Utilities</title>
		<link>http://droza.net/blog/2008/07/29/windows-explorer-utilities/</link>
		<comments>http://droza.net/blog/2008/07/29/windows-explorer-utilities/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 11:15:06 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[productivity]]></category>

		<category><![CDATA[qtaddressbar]]></category>

		<category><![CDATA[qttabbar]]></category>

		<category><![CDATA[utilities]]></category>

		<category><![CDATA[winxp]]></category>

		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2008/07/29/windows-explorer-utilities/</guid>
		<description><![CDATA[I installed two nice utilities yesterday to enhance the functionality of WindowsXP explorer. The first - QTTabBar - adds tabs and groups to explorer. Tabs in explorer are just as useful as tabs in a browser as it prevents having loads of windows cluttering the task bar. Folder groups add the ability to group frequently [...]]]></description>
			<content:encoded><![CDATA[<p>I installed two nice utilities yesterday to enhance the functionality of WindowsXP explorer. The first - <a href="http://qttabbar.wikidot.com/" title="QTTabBar" target="_blank">QTTabBar</a> - adds tabs and groups to explorer. Tabs in explorer are just as useful as tabs in a browser as it prevents having loads of windows cluttering the task bar. Folder groups add the ability to group frequently accessed folders together so they can be opened in tabs with a single click in the same way as tab groups in a browser. As a developer this is really useful as one of the first things I do every day is open the same set of folders for my code, server, database etc. Note the slightly confusing installation procedure of having to first install, then log off/on to windows, and finally having to make the toolbar visible from the &#8220;View &gt; Toolbars&#8221; menu in any explorer window.</p>
<p><img src="http://droza.net/blog/wp-content/uploads/2008/07/qttabbar.gif" alt="QTTabBar" /></p>
<p>The second utility by the same developer - <a href="http://qttabbar.wikidot.com/qtaddressbar" title="QTAddressBar">QTAddressBar</a> - is a new address bar that provides breadcrumb functionality so that each folder in a patch can be clicked to jump straight to that level in the path. You can also traverse the folder tree by clicking the arrow between folder names and using the popup folder tree rather than navigating up the tree and then back down a different branch. This is really a clone of the Vista address bar but is really handy to have in XP.</p>
<p><img src="http://droza.net/blog/wp-content/uploads/2008/07/qtaddressbar.gif" alt="QTAddressBar" /></p>
<p>Both of these utilities play nicely together to provide a much friendlier more productive file explorer.</p>
<p>[via <a href="http://lifehacker.com/399362/power-up-windows-explorer-with-free-add+ons" title="Lifehacker" target="_blank">lifehacker</a>]</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F29%2Fwindows-explorer-utilities%2F&amp;title=Windows+Explorer+Utilities" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/07/29/windows-explorer-utilities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Holiday photos</title>
		<link>http://droza.net/blog/2008/07/11/holiday-photos/</link>
		<comments>http://droza.net/blog/2008/07/11/holiday-photos/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 22:46:54 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[photography]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[Garda]]></category>

		<category><![CDATA[Italy]]></category>

		<category><![CDATA[photographs]]></category>

		<category><![CDATA[photos]]></category>

		<category><![CDATA[pics]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2008/07/11/holiday-photos/</guid>
		<description><![CDATA[I&#8217;ve finally finished sorting through all the photos from Italy last week. I started out with over 500 and got them down to a slightly more sensible 250ish. Highlights are now up on flickr.













]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally finished sorting through all the photos from Italy last week. I started out with over 500 and got them down to a slightly more sensible 250ish. Highlights are now up on <a href="http://flickr.com/photos/tdroza" title="Holiday pics on flickr">flickr</a>.</p>
<p><a href="http://flickr.com/photos/tdroza"></p>
<p style="text-align: center"><img src="http://droza.net/blog/wp-content/uploads/2008/07/garda_montage.jpg" alt="Lake Garda Holiday Pictures" /></p>
<p></a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F07%2F11%2Fholiday-photos%2F&amp;title=Holiday+photos" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/07/11/holiday-photos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My new phone - HTC S710</title>
		<link>http://droza.net/blog/2008/06/24/my-new-phone-htc-s710/</link>
		<comments>http://droza.net/blog/2008/06/24/my-new-phone-htc-s710/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 09:31:05 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[gadgets]]></category>

		<category><![CDATA[s710]]></category>

		<category><![CDATA[tech]]></category>

		<category><![CDATA[htc]]></category>

		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2008/06/24/my-new-phone-htc-s710/</guid>
		<description><![CDATA[I ordered an HTC S710 last week (arrived Friday) on the BT Total Broadband Anywhere package. It&#8217;s a Windows Mobile 6 Standard smartphone (no touch screen, but a nice slide-out qwerty keyboard). I&#8217;ve used the PocketPC OS before on PDAs but never on a phone and so I had the obvious concerns about running a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://droza.net/blog/wp-content/uploads/2008/06/s710.jpg" alt="s710.jpg" vspace="5" align="left" hspace="5" />I ordered an HTC S710 last week (arrived Friday) on the <a href="http://www.bt.com/broadbandanywhere" title="BTTBAnywhere">BT Total Broadband Anywhere</a> package. It&#8217;s a Windows Mobile 6 Standard smartphone (no touch screen, but a nice slide-out qwerty keyboard). I&#8217;ve used the PocketPC OS before on PDAs but never on a phone and so I had the obvious concerns about running a version of Windows on my main handset. Initially the responsiveness of some of the menus seemed a bit slow and accessing some of the common features like &#8220;compose new message&#8221; seemed more long-winded than I&#8217;ve been used to (I&#8217;ve been exclusively a SonyEricsson user for the past few years). After a few days use I&#8217;m starting to know my way around the menus though, I&#8217;m finding ways to customise the interface with shortcuts and I&#8217;ve installed a few new apps to provide the functionality I want.</p>
<p>I plan to post more feedback on the S710, Windows Mobile 6 and any useful software/hints/tips over the coming weeks. If you&#8217;re interested, you can view <a href="http://droza.net/blog/tag/S710/" title="All S710 related posts">all S710 posts</a> or subscribe to a <a href="http://droza.net/blog/tag/S170/feed/" title="RSS feed of S710 related posts">feed</a>.</p>
<p style="color:#c0c0c0; font-size:10px">Disclosure: Yes, I happen to work for BT, but I&#8217;m not directly involved in the Total Broadband Anywhere project and the opinions expressed here are entirely my own.  </p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdroza.net%2Fblog%2F2008%2F06%2F24%2Fmy-new-phone-htc-s710%2F&amp;title=My+new+phone+-+HTC+S710" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/06/24/my-new-phone-htc-s710/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hidden tracks on CDs - what&#8217;s the point?</title>
		<link>http://droza.net/blog/2008/04/21/hidden-tracks-on-cds-whats-the-point/</link>
		<comments>http://droza.net/blog/2008/04/21/hidden-tracks-on-cds-whats-the-point/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 21:56:08 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[general rant]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[double groove]]></category>

		<category><![CDATA[hidden track]]></category>

		<category><![CDATA[pre gap]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2008/04/21/hidden-tracks-on-cds-whats-the-point/</guid>
		<description><![CDATA[I originally thought that hidden tracks on albums were just tracks added at the end of the album and not listed on the sleeve notes but after doing a bit of reading it seems the history of why artists put hidden tracks on their albums is, in some cases, quite interesting. For example to avoid [...]]]></description>
			<content:encoded><![CDATA[<p>I originally thought that hidden tracks on albums were just tracks added at the end of the album and not listed on the sleeve notes but after doing a bit of <a href="http://en.wikipedia.org/wiki/Hidden_track" title="Wikipedia" target="_blank">reading</a> it seems the history of why artists put hidden tracks on their albums is, in some cases, quite interesting. For example to avoid controversy (Guns n&#8217; Roses, &#8220;Look at your game, girl&#8221;, <a href="http://en.wikipedia.org/wiki/%22The_Spaghetti_Incident%3F%22#Controversy"><em>The Spaghetti Incident?</em></a>) by &#8220;hiding&#8221; the track or to sneak a track onto an album that might cause legal or copyright violations (Ramones, &#8220;<a href="http://en.wikipedia.org/wiki/Cry_Baby_Cry">Cry Baby Cry</a>&#8220;<em>, Loco</em>).</p>
<p>The methods by which tracks were hidden on vinyl records is also more interesting than I realised: I knew about the method of hiding tracks at the end of an album often separated from the &#8220;final&#8221; track by an extended period of silence (on vinyl this is sometimes visible by a different density of the groove). I wasn&#8217;t aware of the &#8220;<a href="http://en.wikipedia.org/wiki/Multisided_record" title="Wikipedia">double-groove</a>&#8221; method though, which to me is a more genuinely &#8220;hidden&#8221; track and quite ingenious.<span id="more-53"></span></p>
<p>So in the days when everyone bought their music on pressed vinyl I can almost, maybe, just about<em> </em>see the point of including hidden tracks (by the way, I&#8217;m drawing a distinction between a hidden track an a &#8220;bonus&#8221; track - the latter being an additional track added in later releases of a record or for certain territories as a special edition). But these days when most of us buy music on CD or as digital downloads is there really a place for hidden tracks? For a start most CD players will tell you the total number of tracks as soon as you insert the disc so adding additional tracks not listed on the sleeve seems pointless. If you buy music downloads or rip your CDs you then you have the added problem of how to tag the track. A quick search of my music library (3281 tracks) shows 5 &#8220;untitled&#8221;, 1 &#8220;hidden&#8221;, 1 &#8220;untitled hidden&#8221; - there were probably others that were untitled when I ripped the disc but I&#8217;m somewhat &#8220;obsessive&#8221; about correctly tagging my music. No doubt there are also several others tacked on to the end of the final track after a period of silence (you could argue that these last ones are genuinely hidden because I haven&#8217;t managed to find a way of searching my library to find them!). But it&#8217;s this last category that I find the most annoying - when listening to an album I want to listen to the whole thing. I don&#8217;t want to sit through ten minutes of silence - or even worse than a nice round 10 minutes is something random like 11 minutes and 43 seconds. If I&#8217;m driving or listening on my phone&#8217;s MP3 player it isn&#8217;t convenient to fast-forward through all that silence.</p>
<p><a href="http://droza.net/blog/wp-content/uploads/2008/04/untitled_music.gif"><img src="http://droza.net/blog/wp-content/uploads/2008/04/untitled_music.gif" /></a></p>
<p>Just as the double-groove was a genuine way of hiding tracks on vinyl, the &#8220;<a href="http://en.wikipedia.org/wiki/Multisided_record" title="Wikipedia">pre-gap</a>&#8221; in the Red Book audio CD standard allows tracks to be hidden but this time in a way that may never be detected by the casual listener. The pre-gap allows tracks to be hidden <em>before</em> the first track of the disc. Such tracks are almost always inaccessible on a computer&#8217;s CD player but some standalone players will playback the track if you go to the start of the first track and then rewind past the start. Pre-gap tracks are too-well hidden for all but the most dedicated listeners though.  I have an album by <a href="http://davidford.mu/" title="David Ford">David Ford</a> which apparently has a track hidden in the pre-gap - I say &#8220;apparently&#8221; because I&#8217;ve still never managed to play it in any CD player I&#8217;ve tried! While reading the <a href="http://en.wikipedia.org/wiki/Multisided_record" title="Wikipedia">wikipedia page for pre-gap</a> I discovered that I also have several other CD&#8217;s with tracks hidden in this way (Bloc Party, Blur, David Gray, Damien Rice). So really, if you can&#8217;t see the track, it&#8217;s not listed on the sleeve, and most players won&#8217;t play it: what&#8217;s the point?</p>
<p>So there&#8217;s my case against hidden tracks on CDs. Artists, please take note!</p>
]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/04/21/hidden-tracks-on-cds-whats-the-point/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create 2D panoramic pictures with autostitch</title>
		<link>http://droza.net/blog/2008/04/02/create-2d-panoramic-pictures-with-autostitch/</link>
		<comments>http://droza.net/blog/2008/04/02/create-2d-panoramic-pictures-with-autostitch/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 22:18:54 +0000</pubDate>
		<dc:creator>tdroza</dc:creator>
		
		<category><![CDATA[photography]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[autostitch]]></category>

		<guid isPermaLink="false">http://droza.net/blog/2008/04/02/create-2d-panoramic-pictures-with-autostitch/</guid>
		<description><![CDATA[Here&#8217;s a recommendation for a piece of softare I&#8217;ve been using for a couple of years. Autostitch is a fantastic piece of software for creating panoramic images and the results are nothing short of amazing. I&#8217;ve tried several photo-stitching applications in the past: some require lots of manual intervention to approximately align the photos in [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a recommendation for a piece of softare I&#8217;ve been using for a couple of years. <a href="http://www.autostitch.net" target="_blank">Autostitch </a>is a fantastic piece of software for creating panoramic images and the results are nothing short of amazing. I&#8217;ve tried several photo-stitching applications in the past: some require lots of manual intervention to approximately align the photos in the correct order, others produce distorted or blurry images. Autostitch has none of these problems, just import a bunch of pictures and it works out which of them are part of the same scene (it will exclude any that don&#8217;t fit but it&#8217;s quicker if you only select the images you want to join together), it works out which images need to go where, and it then creates a single panoramic image. Another great feature is that it can create 2-dimensional panoramas - most other applications only create 1D panoramas so the camera has to be panned in the x- or y-axis but not both. This is great for creating an image where you can&#8217;t get a wide enough shot to include the whole scene -for example when photographing a building on a narrow road where can&#8217;t position the camera far enough away to fit it all in. Oh, and did I mention that autostitch is free?</p>
<p><img src="http://farm4.static.flickr.com/3084/2359091406_426b5db9a6.jpg?v=0" alt="Millennium Bridge, London. Can you spot the joins?" height="184" width="500" /><span id="more-52"></span></p>
<p>The autostitch software is the result of a research project at the University of British Columbia and the technology has been licenced to other companies for use in commercial products - it&#8217;s even been licensed to George Lucas&#8217; ILM for production of panoramic images for films. The free version has a quite a clunky interface with a bit of a &#8220;proof-of-concept&#8221; feel about and although it provides a ton of options for customisation the only think I ever change is the amount of memory that the app can consume (I usually allocate all the physical RAM in my PC), and the size of the output image (larger images take considerably longer to produce). The app itself is only 0.75MB to download, requires no installation and when the trial period expires just download a new copy!</p>
<p>The example images here are my own very <a href="http://www.flickr.com/photos/tdroza/tags/autostitch" title="my own autostitched images on flickr">basic efforts</a>. For some really impressive images checkout flickr for images tagged with autostitch: <a href="http://www.flickr.com/photos/tags/autostitch" target="_blank">flickr.com/photos/tags/autostitch</a></p>
<p><img src="http://farm1.static.flickr.com/48/125219692_67966eb4ef.jpg?v=0" alt="Ramsholt, Suffolk. Stitched from 4 separate images." height="264" width="500" /></p>
<p>I have no association with autostitch other than as a user of the software.</p>
<p><a href="http://www.autostitch.net" target="_blank">www.autostitch.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://droza.net/blog/2008/04/02/create-2d-panoramic-pictures-with-autostitch/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
