<?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>Too busy to... &#187; Geeky</title>
	<atom:link href="http://www.toobusyto.org.uk/tooBusy/categories/geeky/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.toobusyto.org.uk/tooBusy</link>
	<description>Coffee, travel and tech.</description>
	<lastBuildDate>Sat, 21 Jan 2012 23:20:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Au Revoir, Internet Café</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2011/12/29/au-revoir-internet-cafe/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2011/12/29/au-revoir-internet-cafe/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 09:23:46 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/2011/12/29/au-revoir-internet-cafe/</guid>
		<description><![CDATA[On previous trips, publishing a blog post or keeping in touch with home meant allocating some time to locate a reasonably priced Internet café and writing while watching a ticking timer. For this trip however I have been able to &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2011/12/29/au-revoir-internet-cafe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On previous trips, publishing a blog post or keeping in touch with home meant allocating some time to locate a reasonably priced Internet café and writing while watching a ticking timer. For this trip however I have been able to write at leisure in spare moments on my phone thanks to the availability of pre-pay GSM sim cards with data allowances. </p>
<p>In Australia, <a href="http://www.amaysim.com.au">amaysim</a> have been particularly good value although I only discovered their existence after considerable Internet research. A $10 purchase in-store sim card purchase gave us 1GB of data valid for 30 days plus $10 of pre-pay phone credit (90 day expiry). The network is provided by Optus, in common with most of the cheap prepaid sim offerings. There were a couple of issues though which I document here for future travellers.</p>
<ul>
<li>We bought the sim card in a Seven-Eleven. The website claims you can buy them in post offices but the one we tried did not stock it so the availability might not be great. The same pack contains a sim that may be used with either the normal or micro sim formats. </li>
<li>Online activation claimed to work but actually failed because of my non-Australian address and credit card. You must call them to get your $10 purchase converted to a data plan. I have not tried to top up the credit yet but it makes me think that credit card top ups might be difficult. Buying vouchers works around this, but see the note above on availability.</li>
<li>The sim we bought has been used in multiple devices. I can report that despite rumours to the contrary, a sync with iTunes is <strong>not</strong> required to change the provider on an iPhone (at least on iOS5). However some devices could not access the Internet until the APN had been set manually to “Internet”, others just worked, for reasons I have yet to figure out.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2011/12/29/au-revoir-internet-cafe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Terminal to restore from a Time Machine backup</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2011/12/04/using-the-terminal-to-restore-from-a-time-machine-backup/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2011/12/04/using-the-terminal-to-restore-from-a-time-machine-backup/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 18:19:15 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=814</guid>
		<description><![CDATA[I recently had to restore some Application Data from a Time Machine backup and since Finder in OS X 10.7 (Lion) now hides the Library folder in your home directory I thought it easiest to just cp the files from &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2011/12/04/using-the-terminal-to-restore-from-a-time-machine-backup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently had to restore some Application Data from a Time Machine backup and since Finder in OS X 10.7 (Lion) now hides the Library folder in your home directory I thought it easiest to just <em>cp</em> the files from the mounted volume to the right place. It turned out that this it was not as straightforward as that because the restored files retained the read only permissions that prevent you from modifying a backup.</p>
<p>The ACL does not appear in the Finder, but can be seen using <code>ls -le</code>:<br />
<code>
<pre>0: group:everyone deny write,delete,append,writeattr,writeextattr,chown</pre>
<p></code></p>
<p>and also metadata:<code>	com.apple.metadata:_kTimeMachineNewestSnapshot	     50 </code></p>
<p>The ACL can be removed using <code>chmod -a #n <em>filename</em></code> where n is replaced by the number at the front of the ACL description (0 in this case). Applying it recursively is possible but potentially dangerous<sup><a href="#footnote-1-814" id="footnote-link-1-814" title="See the footnote.">1</a></sup> unless you know this is the only ACL applied to the files in the directory. The metadata can be removed using xattr, like this:<br />
<code>xattr -d com.apple.metadata <em>filename</em></code></p>
<br /><ol class="footnotes"><li id="footnote-1-814">and consequently left as an exercise to the reader  [<a href="#footnote-link-1-814">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2011/12/04/using-the-terminal-to-restore-from-a-time-machine-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postfix and SMTP AUTH on OS X Lion</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2011/08/07/postfix-and-smtp-auth-on-os-x-lion/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2011/08/07/postfix-and-smtp-auth-on-os-x-lion/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 19:42:51 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=693</guid>
		<description><![CDATA[The standard instructions for configuring postfix to use authenticated SMTP to use authentication when forwarding to a relay host did initially work for me on OS X Lion so for future searchers here is how I made it work. Create &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2011/08/07/postfix-and-smtp-auth-on-os-x-lion/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://postfix.state-of-mind.de/patrick.koetter/smtpauth/smtp_auth_mailservers.html">standard instructions</a> for configuring postfix to use authenticated SMTP to use authentication when forwarding to a relay host did initially work for me on OS X Lion so for future searchers here is how I made it work.</p>
<ol>
<li>Create the file /etc/postfix/sasl_passwd as described in the standard docs, i.e. at least one line containing:<br />
<code>server username:password</code><br />
and set the permissions using <tt>sudo chmod 600 /etc/postfix/sasl_passwd</tt>.
	</li>
<li>Make the db version used by postfix: <tt>sudo postmap /etc/postfix/sasl_passwd</tt> (the new file will inherit the permissions of the original file).</li>
<li>If you have upgraded from a previous version of OS X, particularly if you modified your postfix configs, follow the advice in the <a href="#postfix-upgrade">section below</a> before continuing.</li>
<li>To tell postfix to use authenticated SMTP, add the following lines to <tt>/etc/postfix/main.cf</tt>:<br />
<code><br />
mydomain = &lt;&lt;your.mail.domain&gt;&gt;<br />
mydomain_fallback = localhost<br />
smtp_sasl_auth_enable = yes<br />
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd<br />
</code><br />
If your domain&#8217;s MX records do not specify your relayhost then you must also set the <tt>relayhost</tt> line.
</li>
<li>postfix on OS X runs &#8220;on demand&#8221; so there is no need to instruct it to reload its configuration. The log file is in the standard UNIX location, /var/log/mail.log.</li>
</ol>
<h3 id="postfix-upgrade">Upgrading from Snow Leopard</h3>
<p>I had previously had this postfix setup working under Snow Leopard, and the upgrade process appeared to have preserved my configuration settings so I was surprised to see that after upgrading to Lion, my smarthost was not accepting mail.</p>
<p>Examining the files in /etc/postfix I noticed that in addition to my customised main.cf there was also a file called main.cf.default which was modified the date I had upgraded to Lion. Comparing the two files showed a number of subtle differences but after being unable to determine why postfix was not authenticating to my upstream server, I decided to copy it over my customised main.cf and re-apply my changes. </p>
<p>Having done this, the mailq command gave me the following error:<br />
<code>postfix[17922]: fatal: bad string length 0 &lt; 1: setgid_group =</code><br />
Setting <tt>setgid_group = _postdrop</tt> in main.cf fixed that but then I hit another error:<br />
<code>fatal: file /etc/postfix/main.cf: parameter mail_owner: user postfix has same user ID as _postfix</code><br />
Resolving this required me to change the value of <tt>mail_owner</tt> from postfix to _postfix but I don&#8217;t know if this is a bug in Apple&#8217;s supplied main.cf or an artefact of my user and group information evolving from a 10.6 install to 10.7.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2011/08/07/postfix-and-smtp-auth-on-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Buying Advice</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2011/04/28/iphone-buying-advice/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2011/04/28/iphone-buying-advice/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 23:13:59 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=653</guid>
		<description><![CDATA[A number of people have recently asked my advice on buying an iPhone so I thought it worth writing up my current thoughts. iPhone or Android (Samsung/HTC) At the moment any phone marketed as an &#8220;iPhone competitor&#8221; is running Google&#8217;s &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2011/04/28/iphone-buying-advice/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A number of people have recently asked my advice on buying an iPhone so I thought it worth writing up my current thoughts. </p>
<h3>iPhone or Android (Samsung/HTC)</h3>
<p>At the moment any phone marketed as an &#8220;iPhone competitor&#8221; is running Google&#8217;s Android software. I have not personally used an Android phone beyond a quick demo of friends&#8217; devices but a survey of articles suggest that latest software has a comparable set of features to the iPhone, and every Apple-hater will quickly tell you that Android is better because it can do X, Y and/or Z, which Apple are too arrogant or controlling to allow.  If you are someone who understands what feature X, Y or Z is and feel you need it, then you should get an Android phone. Everyone else should read this quote from a <a href="http://hunter.pairsite.com/blogs/20110419/">review</a> of the newly released iPad-clone from people that make Blackberries:</p>
<blockquote><p>&#8220;Browsing on the PlayBook ends up feeling very much like an Android device &#8211; perfectly usable, but not up to iOS [i.e. iPhone] standards.&#8221;
</p></blockquote>
<p>Whether this is something you find annoying enough to justify a more expensive iPhone over an Android device can to some extend be determined by spending some time with a friend&#8217;s phone or an in-store demo, so I highly recommend doing this. Another frequent complaint about Android phones is that the battery life is worse than that of an iPhone<sup><a href="#footnote-1-653" id="footnote-link-1-653" title="See the footnote.">1</a></sup>, especially those models with the larger screens. </p>
<p>One of the major features of Android is the ability to install apps which have not been vetted by Apple. However it is highly unlikely that an average user would want to install an application that was banned by Apple so that advantage is moot. There is also an argument that since the iPhone+iPod+iPad<sup><a href="#footnote-2-653" id="footnote-link-2-653" title="See the footnote.">2</a></sup> platform is currently making developers a lot of money, and Android upgrades must be blessed by the phone manufacturer<sup><a href="#footnote-3-653" id="footnote-link-3-653" title="See the footnote.">3</a></sup> after being released by Google, iPhone owners are likely to get the latest and greatest apps before Android owners, and certainly no later.</p>
<p>It is natural that older Android phones which do not have all the latest iPhone features are practically being given away by the phone companies (so too the two-year old iPhone 3GS) but recently released Android phones are also considerably cheaper than iPhone 4s. For example today on <a href="http://www.orange.co.uk">orange.co.uk</a> a &pound;35 per month contract for 24 months will get you the recently released HTC Desire S for &pound;0, while an iPhone4 costs &pound;119 on the same monthly tariff. I don&#8217;t think I can tell you whether it is worth you paying that extra &pound;119, only hands-on demonstration and experimentation with a phone will tell you whether you think the phone will be good enough, the right apps available for what you want, and the battery life long enough.</p>
<h3>Should I buy an iPhone 4 now or wait for iPhone 5?</h3>
<p>While Apple are highly secretive about their product plans, it is widely believed that Apple have unofficially set media expectations that unlike previous years they will not be announcing a new device at their annual developer conference in June. There is no reliable information as to when a new iPhone might be released but the smart money is on a September announcement alongside this year&#8217;s iPod line-up. </p>
<p>Historically, supplies of new models has been extremely limited for the first few months so waiting until September realistically means waiting another month or two after the release date, and expect to pay at least the current cost of an iPhone 4. At the moment (May 2011), there is the possibility you may find a carrier able to offer some sort of discount on an iPhone 4 which will easily give you 18 months of good service before an Autumn 2012 release of the next generation.</p>
<h3>Do I need a screen protector for my iPhone?</h3>
<p>No. The iPhone 4 screen is  designed to be touched directly and manufactured to a high quality. Placing an additional layer of low quality plastic between you and the screen will impair its function. I can really recommend the <a href="http://www.goincase.com/products/detail/snap-case-cl59593">InCase Snap case</a> (~&pound;10 on ebay.co.uk, or half that for a clear plastic knock off) which protects the back and has a raised ridge around the front preventing contact should the phone be placed face down on a surface. If you need to protect the screen while the phone is not in use (e.g. inside a hand bag or similar) then buy a case that has a cover you put over the screen when not in use, or store the phone in a sock when inside the handbag.</p>
<br /><ol class="footnotes"><li id="footnote-1-653">7 hours of talk time and 300 hours standby <a href="http://www.apple.com/iphone/specs.html">is claimed by Apple</a>  [<a href="#footnote-link-1-653">back</a>]</li><li id="footnote-2-653">a.k.a. &#8220;iOS&#8221;  [<a href="#footnote-link-2-653">back</a>]</li><li id="footnote-3-653">This is significant since if an app requires the latest version of Android and your manufacturer has not blessed it yet then that app will not be available to you, even if it it is available on other Android phones.  [<a href="#footnote-link-3-653">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2011/04/28/iphone-buying-advice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeviewHD PVR Review</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2010/05/30/freeviewhd-pvr-review/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2010/05/30/freeviewhd-pvr-review/#comments</comments>
		<pubDate>Sun, 30 May 2010 21:42:04 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=496</guid>
		<description><![CDATA[FreeviewHD has been broadcasting in our area for several months but since we almost never watch live television it seemed pointless to to buy a FreeviewHD (or DVB-T2 to use the technical name) receiver without some sort of recording capability. &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2010/05/30/freeviewhd-pvr-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>FreeviewHD has been broadcasting in our area for several months but since we almost never watch live television it seemed pointless to to buy a FreeviewHD (or DVB-T2 to use the technical name) receiver without some sort of recording capability. These have taken a surprisingly long time to reach the market but I noticed last weekend that the venerable <a href="http://www.johnlewis.com/">John Lewis</a> were selling a 500GB <em>Digital Stream DHR8205U</em> FreeviewHD hard-disk recorder and since the reviews on the web forums were broadly positive, made something of an impulse buy. </p>
<p>I quickly discovered that if the TV is not plugged in during boot then the box will flash &#8220;loading&#8221; at you forever but after that initial false start installation was smooth and the HD reception is an appreciable upgrade. The feature set appears comprehensive and although there is no option to repeat a recording daily or weekly, it can be instructed to record an entire series of programmes which is usually sufficient.</p>
<p>My biggest complaint is that the user interface is definitely quirky, which reminds you that this is definitely early-adopter territory. Most annoying is the remote control which has some of the most commonly used features (such as &#8216;pause&#8217; and &#8216;library&#8217;) on tiny buttons which are laid out with no semblance of logical grouping. The listings guide is quite useable, although the ordering of the channel list is not customisable which means the three HD channels are 6 screens away from their non-HD equivalents. Pressing the large &#8220;OK&#8221; button during viewing brings up the list of channels with no programme information which seems redundant: on my previous PVR this button showed the current and next programmes. The screen showing the recorded programmes appears to have had so little attention that it might actually be an afterthought: recordings are laughably labelled simply as ProgrammeName_DDMMHHMM.trp.  Fortunately there is at least a chance that the software issues might be fixed with the next software update scheduled for the end of June.</p>
<p>The user guide suffers from similar problems of poor readability including at least one circular reference (the effect of enabling &#8220;standby power-saving mode&#8221; is never explained). The packaging describes the product as &#8220;Manufactured in the UK&#8221; but DigitalStream itself seems to be a Korean company and the terminology used by the software is from a bizarre parallel universe: channels are called &#8220;services&#8221;, future recording &#8220;reservations&#8221; and the stored programmes library is  &#8220;media&#8221;. Despite these foibles, so far I am a happy customer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2010/05/30/freeviewhd-pvr-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Personal History of UNIX Tool Management on OS X</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2010/05/25/unix-tool-management-on-os-x/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2010/05/25/unix-tool-management-on-os-x/#comments</comments>
		<pubDate>Tue, 25 May 2010 22:36:24 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=491</guid>
		<description><![CDATA[When I first switched to Mac from Linux I used fink to provide the simple software installation (and removal!) to which I had become addicted while using Debian. In addition to being command line compatible, fink also shipped the software &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2010/05/25/unix-tool-management-on-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When I first switched to Mac from Linux I used <a href="http://www.finkproject.org/">fink</a> to provide the simple software installation (and removal!) to which I had become addicted while using Debian. In addition to being command line compatible, fink also shipped the software as binaries which on the relatively slow CPUs of the day meant the software was able to be used much more immediately than if it had to be compiled.</p>
<p>About three years ago, I noticed that the fink binary distribution no longer had all the packages I wanted to use. The website would indicate the package was available but actually it would be only available in source code form and my aging laptop did not have the CPU or disk space available to compile not just the package but all its dependencies.  When I upgraded that old laptop, and compiling everything from source seemed feasible, I decided that the <a href="http://www.macports.org/">MacPorts</a> project had more community activity and jumped ship. </p>
<p>MacPorts worked very well. The initial install took time, and worked the fan of my MacBook quite hard, but once the base packages were compiled, subsequent software installs and updates were mostly painless. MacPorts also made it vary easy to tweak installs using its <a href="http://guide.macports.org/#using.variants">variants</a> mechanism. However MacPorts&#8217; downfall, in my opinion, is that it is not content to be just a  way of augmenting the existing UNIX tools on my Mac but that it wants to be a self-contained operating system itself.  For example, in order to install the git-svn tool MacPorts was going to download, compile and install not only an older version of Perl than is shipped with 10.6 but also a second version of the subversion tool that Apple have already provided. I am sure this is a good way to deliver a powerful and stable system, but it felt like MacPorts was taking over. </p>
<p>I am not the first to think this since someone has developed <a href="http://mxcl.github.com/homebrew/">homebrew</a>. It has the explicit goals of playing nicely with the OS defaults and programming language specific distribution systems such as RubyGems, CPAN and PyPi. I am pleased to be report that homebrew was very quick to setup and install the few remaining UNIX packages to which I remain addicted. The installer makes the assertion that every user on your system should be in the staff group,<sup><a href="#footnote-1-491" id="footnote-link-1-491" title="See the footnote.">1</a></sup> but the script was very simple to modify and I have submitted <a href="http://gist.github.com/403175">my version</a>  back to the maintainer.</p>
<p>The one package where I do not find homebrew satisfactory is LaTeX. homebrew uses the <a href="http://www.tug.org/texlive/">TeX Live</a> distribution  rather than the tetex package I have used in the past. However TeX Live is a humungous 1GB download and some quick research showed that it was very much a kitchen sink package with many sub-packages that were completely unnecessary for me. Instead I highly recommend the 85MB download (234MB installed) <a href="http://www.tug.org/mactex/morepackages.html">BasicTeX</a> package which has proved to be entirely adequate for my needs, even if it does have softie GUI installer!</p>
<br /><ol class="footnotes"><li id="footnote-1-491">I noticed that on a fresh install of 10.6 no one is a member of the staff group. It appears that all Administrator users are members of the admin group though, and since it seems to only allow admins to change the machine&#8217;s homebrew install, I forked this gist and replaced all the instances of staff with admin.  [<a href="#footnote-link-1-491">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2010/05/25/unix-tool-management-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Motion Pictures</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2010/03/04/on-motion-pictures/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2010/03/04/on-motion-pictures/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 23:24:43 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=466</guid>
		<description><![CDATA[I have a fairly sizeable collection of video clips from our trip to New Zealand, which one day I hope to assemble into something which might be worthy of the term film. My first observation is that while holiday photographs &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2010/03/04/on-motion-pictures/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have a fairly sizeable collection of video clips from our trip to <a href="http://www.toobusyto.org.uk/tooBusy/tag/new-zealand/">New Zealand</a>, which one day I hope to assemble into something which might be worthy of the term <em>film</em>.</p>
<p>My first observation is that while holiday photographs need a nominal amount of sorting and post-processing before being displayed, video is much more demanding of time, effort, and computing power.  Having struggled to get to grips with previous incarnations, Apple&#8217;s iMovie 09 has been fantastic: arranging clips through drag and drop is very natural and when a &#8220;drop&#8221; is ambiguous it pops up a short menu of options. Cropping, rotating and reversing clips is simple and speedy (admittedly this is a borrowed MacBook Pro rather than my own wimpier and older MacBook). At first I was wary of the themes but the strong visual style makes it easy to decorate the film in an attractive way.</p>
<p>My second observation is that next time we capture videos there are some basic rules we can follow to make the post-processing a lot easier!</p>
<ul>
<li>Set the scene with a strong opening shot. For example, when capturing a ferry crossing, start the clip with the shot of the ferry&#8217;s funnel instead of panning onto it at the end (the aforementioned &#8220;reverse clip&#8221; feature has rescued at least one such clip which ended where it should have started).</li>
<li>Keep the panoramas to a minimum: the vista may be beautiful but try to capture something a photograph cannot, such as the motion of waves lapping/pounding a shoreline.</li>
<li>Leading on from the previous point, sound is important. The camera records audio as well as video, so even if there is little or no action the sound can bring interest to a clip.</li>
</ul>
<p>To thank you for reading this far, while I have not finished my masterpiece film of our entire three week trip, I did make a short trailer featuring just the footage from our dolphin encounter in Kaikoura.<br />
<span class="youtube">
<object type="application/x-shockwave-flash" width="480" height="295" data="http://www.youtube.com/v/nqe0y9pyng4?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;loop=&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1&amp;hd=1">
<param name="movie" value="http://www.youtube.com/v/nqe0y9pyng4?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;loop=&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1&amp;hd=1" />
<param name="allowFullScreen" value="true" />
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=nqe0y9pyng4&fmt=18">www.youtube.com/watch?v=nqe0y9pyng4</a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2010/03/04/on-motion-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Upgrade: 8.04 to 9.04</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2009/04/19/ubuntu-upgrade-804-to-904/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2009/04/19/ubuntu-upgrade-804-to-904/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 21:55:27 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=382</guid>
		<description><![CDATA[Yesterday I upgraded my Ubuntu machine directly from Hardy Heron to Jaunty Jackalope (release candidate&#160;1), in defiance of the release notes. I could not find any specific problems indicating what would happen if I broke the rules so I went &#8230; <a href="http://www.toobusyto.org.uk/tooBusy/2009/04/19/ubuntu-upgrade-804-to-904/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I upgraded my Ubuntu machine directly from Hardy Heron to <a href="https://wiki.ubuntu.com/JauntyJackalope">Jaunty Jackalope</a> (release candidate&nbsp;1), in defiance of the <a href="http://www.ubuntu.com/getubuntu/releasenotes/904">release notes</a>. I could not find any specific problems indicating what would happen if I broke the rules so I went ahead anyway and it worked fine&#8212;fortunately there is no <a href="http://en.wikipedia.org/wiki/ITIL">Change Management Board</a> in this flat!</p>
<p>Upon first boot it is not immediately obvious what is new in this release, although the new &#8216;Dust&#8217; theme is so polished it feels like my desktop has received a heavy application of windolene, and it was nice to see that my widescreen monitor was now recognised automatically rather than requiring the installation of an additional package. Moving to Jaunty also brought an upgrade of my entire application set, including the latest version of <a href="http://do.davebsd.com/">Gnome Do</a> which features an OS X-style dock. </p>
<p>Rarely is an upgrade without issues but this was a pretty good one:</p>
<ul>
<li>The Gnome desktop sharing service (vino-server) now causes X to consume 60% of CPU time even when no one is connected. The only workaround is to turn off desktop sharing. </li>
<li>The new human-theme package conflicts with the Blubuntu theme packages. I just left this un-upgraded since I really like the blue theme.</li>
<li>Not so much an issue, but after three years of successive upgrades there was some junk that needed to be removed manually: php5 and emacs22 are now default/production (and you still need emacs-snapshot for anti-aliased fonts) so I removed all the php4 and emacs21 packages. There were also half a dozen old kernels that were too out of date to be any use.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2009/04/19/ubuntu-upgrade-804-to-904/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs: Conversation or Monologue?</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2009/04/05/blogs-conversation-or-monologue/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2009/04/05/blogs-conversation-or-monologue/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 21:45:35 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=370</guid>
		<description><![CDATA[This weblog now allows for commenting via Facebook. Read on for the reasons why social networks will make blogs are proper conversation. <a href="http://www.toobusyto.org.uk/tooBusy/2009/04/05/blogs-conversation-or-monologue/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Back in February, the twitter-verse reverberated with a post describing a <a href="http://dsandler.org/wp/archives/2009/02/26/twitter-comments">system for using twitter as a replacement for comments on blog posts</a>. Regardless of the effectiveness or shortcomings of that particular system, I think the author explains very succinctly the failings of blog comments and the potential of using a social network to overcome them. Recently another blogger noted that  <a href="http://inessential.com/2009/03/30/comments_theory">when it comes to popular websites</a>:</p>
<blockquote><p>I&#8217;d rather hear what any of my friends says on any topic, rather than what people I don&#8217;t know say about a specific article.</p></blockquote>
<p>Sites such as <a href="http://disqus.com/docs/about/">Disqus</a> and <a href="http://intensedebate.com/">Intense Debate</a> also try to address these problems but populating yet another website with &#8216;friend&#8217; information seems like duplication  compared to using an existing network like Twitter, or Facebook. </p>
<p>Facebook recently released a very simple <a href="http://wiki.developers.facebook.com/index.php/Comments_Box">Comments Widget</a> which I have installed below as a trial-replacement for traditional comments. To leave a comment, click &#8216;Connect with Facebook&#8217; and authorise toobusyto.org.uk as a Facebook application, then leave your comment in the box. Regular comments are available below the Facebook Comment widget for people without Facebook accounts but since the Facebook widget can be customised to support anonymous comments, if the experiment is successful I eventually plan to turn that off.  Let me know what you think! </p>
<p><del datetime="2009-05-04T17:35:05+00:00"><em>PS &#8211; The &#8216;number of comments&#8217; stat on the front page will be inaccurate due to the new system.</em></del><br />
<ins datetime="2009-05-04T17:35:05+00:00">Comment counts should now (mostly) be accurate.</ins> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2009/04/05/blogs-conversation-or-monologue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet document sharing done right?</title>
		<link>http://www.toobusyto.org.uk/tooBusy/2008/11/28/internet-document-sharing-done-right/</link>
		<comments>http://www.toobusyto.org.uk/tooBusy/2008/11/28/internet-document-sharing-done-right/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 19:16:35 +0000</pubDate>
		<dc:creator>Nathan Dimmock</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://www.toobusyto.org.uk/tooBusy/?p=329</guid>
		<description><![CDATA[Glowing review of a &#8220;make my files available everywhere&#8221; service called Dropbox. (Via Ranchero.com.)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.randsinrepose.com/archives/2008/11/25/dumbing_down_the_cloud.html">Glowing review</a> of a &#8220;make my files available everywhere&#8221; service called <a href="http://getdropbox.com">Dropbox</a>.  (Via <a href="http://ranchero.com">Ranchero.com</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toobusyto.org.uk/tooBusy/2008/11/28/internet-document-sharing-done-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

