<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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" version="2.0">

<channel>
	<title>hinchley.net</title>
	
	<link>http://hinchley.net</link>
	<description>This is the web site of Peter Hinchley (Hinch). I live in Canberra, Australia, with my wife, Megan, and our miniature schnauzer, Holly.</description>
	<pubDate>Sat, 21 Feb 2009 00:04:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/hinchley" type="application/rss+xml" /><item>
		<title>Using JavaScript and the iTunes COM SDK to update album total track count.</title>
		<link>http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-update-album-total-track-count/</link>
		<comments>http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-update-album-total-track-count/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 01:27:03 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=254</guid>
		<description><![CDATA[This post continues on from my previous entry: Using JavaScript and the iTunes COM SDK to manage album artwork.
This is the problem: you want to ensure that the track numbers in your iTunes library always include the total number of album tracks.  For example, on an album with 12 songs, you want the first [...]]]></description>
			<content:encoded><![CDATA[<p>This post continues on from my previous entry: <a href="http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-manage-album-artwork/" title="Using JavaScript and the iTunes COM SDK to manage album artwork">Using JavaScript and the iTunes COM SDK to manage album artwork</a>.</p>
<p>This is the problem: you want to ensure that the track numbers in your iTunes library always include the total number of album tracks.  For example, on an album with 12 songs, you want the first song to be numbered 1/12, the second, 2/12, etc.</p>
<p><span id="more-254"></span>You could easily do this by hand by entering the total number of tracks into the properties dialog of each album, but if you&#8217;ve got thousands of albums in your library, this is simply not practicable.  What do you do?  You write a script to do the hard work for you.</p>
<p>The following script does just that. It&#8217;s written in JavaScript and leverages the <a title="iTunes COM SDK" href="http://developer.apple.com/sdk/itunescomsdk.html">iTunes COM SDK</a>.</p>
<p>It will parse an entire iTunes library, and for each album, count the total number of tracks, and then write that number into the track meta data.  The most difficult task for the script is to work out what tracks constitute an album.  This can be somewhat challenging in the case of compilation albums, and where different contributing artists are identified in the Artist field of multiple tracks on a singe non-compilation album.  The latter could be addressed by using the Album Artist field; however, in my case, this is not necessary, as i ensure all non-compilation albums always use a consistent value in the Artist field.  The script avoids any confusion with compilation albums by skipping them entirely (you will need to process them manually).</p>
<p>As the script works its way through the library, it reads the album name of each track, and if the album name is new (i.e. has not been previously seen), an array named after the album is created, and the track is added to the array.  In the event that the album is not new, the script checks to make sure the artist of the current track is the same as the artist of the previously processed album with the same name. If the artist names are different, we have potentially identified two albums with the same name by different artists. In this case, the script skips the current track, and continues processing.  The upshot of this is that if you have multiple albums with the same name, the script will only update the total track count of the first album it processes.  You will need to manually update the other albums with the same name.</p>
<p>The script could be easily modified to support the considerations i&#8217;ve highlighted, but in my case, these extensions were not warranted, and secondly, i preferred to ere on the side of caution, skipping over any album (such as multiple disk sets) that might serve well from manual processing.</p>
<p>Anyway, use the script at your own discretion.  It will update the meta data of the songs in your library, and hence, has the potential to do some nasty stuff.  It worked for me, but that is no guarantee that it will work for you.</p>
<p>You do not need to install any software on your system to run this code; all you need is a Windows computer running iTunes.</p>
<p>Take the script below, save it into a file on your computer named totaltracks.js (e.g. c:\temp\totaltracks.js).  Open a command prompt, navigate to the folder where you saved the file, and then execute the script as follows:</p>
<pre>cscript totaltracks.js</pre>
<p>Just to be clear, this script will not update the individual track numbers of your songs, but only the total number of tracks on each album.</p>
<pre>/* Script configured to process tracks in playlist
   called Test.  Comment out section 1, and
   uncomment section 2, to apply script to entire
   library. */

// Section 1
var iTunesApp =
  WScript.CreateObject(&quot;iTunes.Application&quot;);
var colSources = iTunesApp.Sources;
var objSource = colSources.ItemByName(&quot;Library&quot;);
var colPlaylists = objSource.Playlists;
var objPlaylist = colPlaylists.ItemByName(&quot;Test&quot;);
var tracks = objPlaylist.Tracks;

/*
// Section 2
var iTunesApp =
  WScript.CreateObject(&quot;iTunes.Application&quot;);
var mainLibrary = iTunesApp.LibraryPlaylist;
var mainLibrarySource = iTunesApp.LibrarySource;
var tracks = mainLibrary.Tracks;
*/

var numTracks = tracks.Count;
var albumTrackCount = 0;
var i;

var albumArray = new Array();

// iterate through all tracks
for (i = 1; i &lt;= numTracks; i++) {
  var currTrack = tracks.Item(i);

  // exclude tracks thare are podcasts or
  //  audio books also exclude compilations
  if ((currTrack.Genre != &quot;Podcast&quot;) &amp;&amp;
    (currTrack.Genre != &quot;Book&quot;)  &amp;&amp;
    (!currTrack.Compilation)) {
    var album = currTrack.Album;

    // only process albums with a name
    if ((album != undefined) &amp;&amp; (album != &quot;&quot;)) {

      // if this is a new album...
      if (albumArray[album] == undefined) {
          albumArray[album] = new Array();
      }

      // if this track doesn&#8217;t belong to a
      //  multi-disc set and the track artist
      //  is the same as the album artist
      if ((currTrack.DiscCount == 0) &amp;&amp;
        ((albumArray[album].length == 0) ||
        ((albumArray[album][0].Artist)
        == currTrack.Artist))) {
        albumArray[album].push(currTrack);
      }
    }
  }
}

for (var albumNameKey in albumArray) {
  var trackArray = albumArray[albumNameKey];

  // calculate the number of tracks on album
  albumTrackCount = trackArray.length;

  for (var trackIndex in trackArray) {
    var currTrack = trackArray[trackIndex];

    // if the track does not have a
    //  total track count&#8230;
    if ((currTrack.TrackCount == undefined)
      || (currTrack.TrackCount == &quot;&quot;)) {
      currTrack.TrackCount = albumTrackCount;
    }
  }
}</pre>
<p>You may want to test the script out on a small sample of albums before processing your entire collection. To do this, first create a new playlist in iTunes (let’s call it Test). Add a couple of albums to the playlist. And now replace the following few lines at the start of the script:</p>
<pre>var iTunesApp =
  WScript.CreateObject('iTunes.Application');
var mainLibrary = iTunesApp.LibraryPlaylist;
var mainLibrarySource = iTunesApp.LibrarySource;
var tracks = mainLibrary.Tracks;</pre>
<p>With these lines, where the word &#8220;Test&#8221; is the name of the playlist you want to process.</p>
<pre>var iTunesApp =
  WScript.CreateObject('iTunes.Application');
var colSources = iTunesApp.Sources;
var objSource = colSources.ItemByName('Library');
var colPlaylists = objSource.Playlists;
var objPlaylist =
  colPlaylists.ItemByName('Test');
var tracks = objPlaylist.Tracks;</pre>
<p>If the script runs without error, and works as expected, you can revert to the original script and process the entire library. Note: There is no harm done in running the script multiple times.</p>
<p>To avoid any potential issues with quotation marks, line breaks, and other oddities, when copying the code above, i recommend you <a href="/assets/2009/02/PlayCounts.js" title="Download script">download the script</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-update-album-total-track-count/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using JavaScript and the iTunes COM SDK to manage album artwork.</title>
		<link>http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-manage-album-artwork/</link>
		<comments>http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-manage-album-artwork/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 01:25:03 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=252</guid>
		<description><![CDATA[I recently moved my iTunes library from OSX to Windows Vista.  The switch motivated me to reconsider the way i stored the album artwork in the music library.  &#8220;What&#8217;s that?&#8221;, you say, &#8220;There is more than one way to store your album art?&#8221;;  Oh, yes there is.
If you right click on an [...]]]></description>
			<content:encoded><![CDATA[<p>I recently moved my iTunes library from OSX to Windows Vista.  The switch motivated me to reconsider the way i stored the album artwork in the music library.  &#8220;What&#8217;s that?&#8221;, you say, &#8220;There is more than one way to store your album art?&#8221;;  Oh, yes there is.</p>
<p>If you right click on an album in your iTunes library, and select the option to &#8220;Get Album Artwork&#8221;, the image file downloaded from the internet will be stored in a special folder on your computer and associated to the album through an entry stored in your iTunes database.  If you want to copy the album to another computer, or if you decide to play the album through another music player (e.g. Windows Media Player), the artwork, which is linked to the album only through iTunes, will be sadly left behind.</p>
<p><span id="more-252"></span>A second option is to explicitly paste an existing artwork image into the properties dialog of an album in iTunes.  You can take an image previously downloaded by iTunes, or you can manually find an image on the web, copy it to the clipboard, open the properties dialog of the relevant album, navigate to the Artwork tab, and paste.  This method will actually write the artwork into the music files comprising the album.  The primary benefit of this approach is that the music and album artwork are forever linked.  If you copy the music to another computer, or to some kind of removable storage, the album artwork will follow, for it is literally embedded in the music files.  The only downside to this option is that the size of each file increases in accordance with the size of the artwork image.  If you associate a 100KB image with an album, and there are 20 songs on the album, the artwork will consume an additional 2,000KB (or 2MB) of storage.  This is generally not a concern, but if you have a very large music library, limited storage, and a preference for high quality artwork, you may want to consider the additional storage requirements before adopting this approach.</p>
<p>If you don&#8217;t like the idea of managing your artwork in a way that is iTunes specific (option 1), and if the idea of embedding the artwork into each and every music file (option 2) seems overly redundant, you can always emulate the solution preferred by Windows Media Player.  If your music library is hierarchically organised (i.e. automatically managed by iTunes), and all tracks from an album are stored in a single folder, you could store the artwork side by side with the music in a special file named Folder.jpg.  This is similar to option 1, but this time the artwork is stored in the same folder as the music.  The two key benefits of this approach are that when the artwork is saved in this way it is recognized by Windows Media Player (and hence Windows Media Center), and the artwork will travel with an album when the album folder is copied to another computer or to removable storage.</p>
<p>Now that you are armed with these options, what should you do?  Well, i decided to implement them all.  I used the &#8220;Get Album Artwork&#8221; feature of iTunes to automatically download the artwork of each album in the library, and then with the help of a few lines of JavaScript (the script is provided below), and the <a title="iTunes COM SDK" href="http://developer.apple.com/sdk/itunescomsdk.html">iTunes COM SDK</a>, i took care of the rest.</p>
<p>The script will parse your entire iTunes library and save the extracted artwork of each album to the file system as Folder.jpg (if the artwork is stored in png or bmp format the image file will be named Folder.png or Folder.bmp), and then embed the saved artwork back into the music files comprising the album.  The code supports extraction of artwork that has been linked to an album through the iTunes database and artwork that has been explicitly embedded in the music files.  It also supports the different file formats recognized by iTunes (e.g. mp3, m4a).</p>
<p>You do not need to install any software on your system to run this code; all you need is a Windows computer running iTunes.</p>
<p>Take the script below, save it into a file on your computer named artwork.js (e.g. c:\temp\artwork.js).  Open a command prompt, navigate to the folder where you saved the file, and then execute the script as follows:</p>
<pre>cscript artwork.js</pre>
<p>Just to be clear, this script will not download artwork from the internet.  It will only process album artwork that is already present in your iTunes library (either referenced via the iTunes database, or specifically embedded in the music files).</p>
<p>This script will attempt to embed artwork into your music files, and hence, it will make changes to those files.  I take no responsibility for any calamity that may ensue as a result of running this script.  It worked for me, but hey, that&#8217;s never a guarantee of infallibility.</p>
<p>Depending on the size of your iTunes library, and the grunt of your computer, the script may take a few minutes to run.  At the end of the process any artwork used by iTunes will be embedded in your music files and stored along side your music on the file system as Folder.jpg (or .png/.bmp).  Any errors caught during the execution of the script will be written to the command prompt window.</p>
<pre>/* Script configured to process tracks in playlist
   called Test.  Comment out section 1, and
   uncomment section 2, to apply script to entire
   library. */

// Section 1
var iTunesApp =
  WScript.CreateObject(&quot;iTunes.Application&quot;);
var colSources = iTunesApp.Sources;
var objSource = colSources.ItemByName(&quot;Library&quot;);
var colPlaylists = objSource.Playlists;
var objPlaylist = colPlaylists.ItemByName(&quot;Test&quot;);
var tracks = objPlaylist.Tracks;

/*
// Section 2
var iTunesApp =
  WScript.CreateObject(&quot;iTunes.Application&quot;);
var mainLibrary = iTunesApp.LibraryPlaylist;
var mainLibrarySource = iTunesApp.LibrarySource;
var tracks = mainLibrary.Tracks;
*/

var numTracks = tracks.Count;
var albumTrackCount = 0;
var i;

var albumArray = new Array();

var fso =
  new ActiveXObject(&quot;Scripting.FileSystemObject&quot;);

// iterate through all tracks
for (i = 1; i &lt;= numTracks; i++) {
  var currTrack = tracks.Item(i);

  // exclude tracks thare are podcasts or
  //  audio books also exclude compilations
  if ((currTrack.Genre != &quot;Podcast&quot;) &amp;&amp;
    (currTrack.Genre != &quot;Book&quot;)  &amp;&amp;
    (!currTrack.Compilation)) {
    var album = currTrack.Album;

    // only process albums with a name
    if ((album != undefined) &amp;&amp; (album != &quot;&quot;)) {

      // if this is a new album...
      if (albumArray[album] == undefined) {
          albumArray[album] = new Array();
      }

      // if this track doesn&#8217;t belong to a
      //  multi-disc set and the track artist
      //  is the same as the album artist
      if ((currTrack.DiscCount == 0) &amp;&amp;
        ((albumArray[album].length == 0) ||
        ((albumArray[album][0].Artist)
        == currTrack.Artist))) {
        albumArray[album].push(currTrack);
      }
    }
  }
}

for (var albumNameKey in albumArray) {
  var trackArray = albumArray[albumNameKey];
  var trackLocation = trackArray[0].Location;
  var trackFileName =
    trackLocation.split(&#8217;\\&#8217;)[trackLocation.split('\\').
     length-1];
  var albumLocation =
    trackLocation.split(trackFileName)[0];

  var artworkArray = trackArray[0].Artwork;

  if (artworkArray.Count &gt; 0) {
    var artwork = artworkArray.Item(1);
    switch (artwork.Format) {
      case 1:
        artworkFileName = &quot;Folder.jpg&quot;;
        break;
      case 2:
        artworkFileName = &quot;Folder.png&quot;;
        break;
      case 3:
        artworkFileName = &quot;Folder.bmp&quot;;
        break;
    }

    try {
      if ((fso.FileExists(albumLocation + &quot;Folder.jpg&quot;))
       || (fso.FileExists(albumLocation + &quot;Folder.png&quot;))
       || (fso.FileExists(albumLocation + &quot;Folder.bmp&quot;))) {
        fso.DeleteFile(albumLocation + &quot;Folder.*&quot;);
      }
    }
    catch(err) {
      WScript.Echo(&quot;Error: &quot; + albumLocation);
    }

    artworkPath = albumLocation + artworkFileName;
    try {
      artwork.SaveArtworkToFile(artworkPath);
    }
    catch(err) {
      WScript.Echo(err.description);
      WScript.Echo(&quot;Error writing to filesystem: &quot;
       + artworkPath);
    }

    for (var trackIndex in trackArray) {
      var trackArtwork = trackArray[trackIndex].Artwork;
      try {
        trackArtwork.Item(1).
         SetArtworkFromFile(artworkPath);
      }
      catch(err) {
        WScript.Echo(err.description);
        WScript.Echo(&quot;Error writing to track: &quot;
          + trackIndex.Name);
      }
    }
  }
}</pre>
<p>At this point you may be a little cautious.  If so, why not test the script out on a small sample of albums before processing your entire collection.  To do this, first create a new playlist in iTunes (let&#8217;s call it Test).  Add a couple of albums to the playlist.  And now replace the following few lines at the start of the script:</p>
<pre>var iTunesApp =
  WScript.CreateObject('iTunes.Application');
var mainLibrary = iTunesApp.LibraryPlaylist;
var mainLibrarySource = iTunesApp.LibrarySource;
var tracks = mainLibrary.Tracks;</pre>
<p>With these lines, where the word &#8220;Test&#8221; is the name of the playlist you want to process.</p>
<pre>var iTunesApp =
  WScript.CreateObject('iTunes.Application');
var colSources = iTunesApp.Sources;
var objSource = colSources.ItemByName('Library');
var colPlaylists = objSource.Playlists;
var objPlaylist =
  colPlaylists.ItemByName('Test');
var tracks = objPlaylist.Tracks;</pre>
<p>If the script runs without error, and works as expected, you can revert to the original script and process the entire library.  Note: There is no harm done in running the script multiple times.</p>
<p>Finally, good luck.</p>
<p>To avoid any potential issues with quotation marks, line breaks, and other oddities, when copying the code above, i recommend you <a href="/assets/2009/02/Artwork.js" title="Download script">download the script</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2009/02/08/using-javascript-and-the-itunes-com-sdk-to-manage-album-artwork/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Reader 9.0 has stopped working on Windows Vista.</title>
		<link>http://hinchley.net/2009/01/15/adobe-reader-90-has-stopped-working-on-windows-vista/</link>
		<comments>http://hinchley.net/2009/01/15/adobe-reader-90-has-stopped-working-on-windows-vista/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 09:36:31 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[adobe]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=251</guid>
		<description><![CDATA[You try and start Adobe Reader 9 and you see a dialog that says: &#8220;Adobe Reader 9.0 has stopped working&#8221;.
An error is recorded in the Application event log with ID 1000.  The error text reports:
Faulting application AcroRd32.exe, version 9.0.0.332, time stamp 0&#215;4850f0a3, faulting module Annots.api, version 9.0.0.332, time stamp 0&#215;4850e57f, exception code 0xc0000005, fault [...]]]></description>
			<content:encoded><![CDATA[<p>You try and start Adobe Reader 9 and you see a dialog that says: &#8220;Adobe Reader 9.0 has stopped working&#8221;.</p>
<p>An error is recorded in the Application event log with ID 1000.  The error text reports:</p>
<blockquote><p>Faulting application AcroRd32.exe, version 9.0.0.332, time stamp 0&#215;4850f0a3, faulting module Annots.api, version 9.0.0.332, time stamp 0&#215;4850e57f, exception code 0xc0000005, fault offset 0&#215;001bd9e0, process id 0xbb8, application start time 0&#215;01c976d1d3722447.</p></blockquote>
<p>Adobe Reader is attempting to write temporary content into a non-existent folder.  Instead of writing data into %TEMP%, which under Windows Vista typically resolves to C:\Users\&lt;user&gt;\AppData\Local\Temp, Adobe Reader is attempting to write to C:\Users\&lt;user&gt;\AppData\LocalLow\Temp (where &lt;user&gt; is the username of the user attempting to launch Adobe Reader).  To resolve the issue, simply create the LocalLow folder (no need to create the subordinate Temp folder).  Your day will suddenly brighten and Adobe Reader will launch successfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2009/01/15/adobe-reader-90-has-stopped-working-on-windows-vista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Exploring options for managing smoking in motor vehicles when children are present.</title>
		<link>http://hinchley.net/2009/01/03/exploring-options-for-managing-smoking-in-motor-vehicles-when-children-are-present/</link>
		<comments>http://hinchley.net/2009/01/03/exploring-options-for-managing-smoking-in-motor-vehicles-when-children-are-present/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 04:36:28 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Health]]></category>

		<category><![CDATA[government]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=250</guid>
		<description><![CDATA[I&#8217;ve decided to become more involved in local issues.  As they say, if you don&#8217;t get involved in the discussions taking place in your community, especially when prompted, you have no grounds for complaint when you don&#8217;t like the results.
With that in mind, i decided to respond to a ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to become more involved in local issues.  As they say, if you don&#8217;t get involved in the discussions taking place in your community, especially when prompted, you have no grounds for complaint when you don&#8217;t like the results.</p>
<p>With that in mind, i decided to respond to a <a http://www.health.act.gov.au/c/health?a=da&#038;did=10010771&#038;pid=1230850379" title="ACT Health - Smoking In Cars When Children Are Present">consultation paper</a> issued by the ACT Government canvassing options for prohibiting smoking in motor vehicles when children are present.</p>
<p><span id="more-250"></span>The paper presents four options for addressing the stated issue.  These are:</p>
<ol>
<li>Ban smoking in a motor vehicle when a child under the age of 16 years is present.</li>
<li>Ban smoking in a motor vehicle when any passengers are present.</li>
<li>Total ban on smoking while driving.</li>
<li>Educative approach/awareness programs.</li>
</ol>
<p>In addition, the paper asks the community to respond to 10 questions. These questions, and my responses which i have submitted to the department, are shown below.</p>
<p>I encourage all ACT residents to get on board and share their thoughts.</p>
<blockquote><p>
Hi,</p>
<p>Thanks for the opportunity to provide feedback on the consultation paper &#8220;Exploring options for managing smoking in motor vehicles when children are present&#8221;.</p>
<p>In relation to the questions:</p>
<p>Question 1: Do you think 16 years is an appropriate age? If yes, why? If no, what other age would you suggest and why?</p>
<p>An adult should not be able to smoke in a car in which a person under the age of 18 years is present.  A person is not deemed an adult, and remains a dependent of an adult guardian, until the age of 18.  It is therefore possible that a person under the age of 18 will not be able to remove themselves from risk when people smoke in their presence.</p>
<p>Question 2: Should the offence require it to be proved by the ‘defendant’ that a child was not present in the motor vehicle while he/she was smoking?</p>
<p>Either by the defendant, or by the person assumed to be the child (e.g. the assumed child provides identification that proves they are an adult).</p>
<p>Question 3: Should the ban apply to a motor vehicle that is moving or should it apply to the entire journey irrespective of whether the motor vehicle is moving or stationary?</p>
<p>The ban should apply irrespective of whether the vehicle is moving (based on an understanding that the risk is equivalent when the vehicle is stationary).</p>
<p>Question 4: Who commits an offence? On whom should the penalty be imposed – the driver of the motor vehicle, or the person who is smoking if it is not the driver?</p>
<p>The driver should be held responsible, in the same way that the driver is currently held responsible for the vehicle&#8217;s passengers wearing a seatbelt.</p>
<p>Question 5: Are the regulatory options considered suitable? If yes, why?  If no, why and what other regulatory option(s) should be considered?</p>
<p>Option 1 (with the amendment that the age limit be lifted to 18 years) is appropriate to meeting the stated aim of: &#8220;addressing smoking in motor vehicles when children are present&#8221;.  The other options move beyond this aim, and although potentially beneficial in their own right, are best considered independently (e.g. banning smoking outright as a way of reducing vehicle accidents resulting from driver distraction).</p>
<p>Question 6: Would a non-regulatory approach be more appropriate than a regulatory approach? If yes, why and what approach (e.g. radio commercials, mail out posters, etc) should be considered?</p>
<p>I think the regulatory approach should be supported by an awareness campaign (i.e. the two approaches - regulation and public awareness - should not be seen as mutually exclusive).  The communication medium/media should be selected based on research that identifies the demographic of the predominant offenders (e.g. a local AM radio station may not be appropriate if the primary offenders are young adults).</p>
<p>Question 7: What is the best method to bring about awareness of this issue in the community, among smokers and particularly among parents who are smokers?</p>
<p>This question is best answered with targeted research, but my initial instinct is to focus on how smoking in a vehicle will affect the health of children (i.e. play the adult/parental responsibility angle; no one wants to be seen as a bad parent).</p>
<p>Question 8: What are your views as to the likely costs and benefits to the options?</p>
<p>The benefits undoubtedly relate to the health and well being of children in the care of adult smokers.  The costs are financial (relating to the adoption of an awareness campaign and the enforcement of the regulation), but also personal, as it is possible that citizens may be inappropriately accused, or find it difficult to prove the age of an adult passenger assumed to be a child.  However, i expect the false positives to be greatly outnumbered by the volume of offenders rightfully exposed.</p>
<p>Question 9: Is there any other option not already outlined that you could suggest?</p>
<p>None.</p>
<p>Question 10: Are there any other issues about this proposal that you wish to raise?</p>
<p>It is essential that the adopted option clearly addresses the stated aim of: &#8220;addressing smoking in motor vehicles when children are present&#8221;.  A proposal that smoking should be banned outright whilst driving (option 3) should be framed for what it is, a policy to prevent accidents relating to increased distraction.  This is a very different issue from child exposure to cigarette smoke, and it is important that the two issues are not inappropriately conjoined, for to implement a regulatory option on a false premise is surely to raise the ire of the general public.</p>
<p>Thanks,</p>
<p>Peter Hinchley.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2009/01/03/exploring-options-for-managing-smoking-in-motor-vehicles-when-children-are-present/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 15 Aussie songs.</title>
		<link>http://hinchley.net/2009/01/01/top-15-aussie-songs/</link>
		<comments>http://hinchley.net/2009/01/01/top-15-aussie-songs/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 04:56:47 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[list]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=248</guid>
		<description><![CDATA[What better way to start the new year than a list of the top 15 quintessentially Australian songs.  These are not necessarily the greatest songs to emerge from our wonderful country (some, like Tie Me Kangaroo Down Sport, are justifiably embarrassing), nor do they always explicitly reference Australia, but to my mind anyway, these [...]]]></description>
			<content:encoded><![CDATA[<p>What better way to start the new year than a list of the top 15 quintessentially Australian songs.  These are not necessarily the greatest songs to emerge from our wonderful country (some, like Tie Me Kangaroo Down Sport, are justifiably embarrassing), nor do they always explicitly reference Australia, but to my mind anyway, these are the songs that most prudently evoke the spirit and the mood of this great land - the songs that turn my thoughts to Australia whenever, and wherever, i hear them.</p>
<p><span id="more-248"></span>In no particular order:</p>
<ul class="bullet">
<li>I Was Only 19 - Redgum</li>
<li>Great Southern Land - Icehouse</li>
<li>How to Make Gravy - Paul Kelly</li>
<li>Land Down Under - Men At Work</li>
<li>Treaty - Yothu Yindi</li>
<li>My Island Home - Christine Anu</li>
<li>Beds are Burning - Midnight Oil</li>
<li>Khe San - Cold Chisel</li>
<li>Cattle and Cane - The Go-Betweens</li>
<li>Pub With No Beer - Slim Dusty</li>
<li>Under the Milky Way - The Church</li>
<li>True Blue - John Williamson</li>
<li>Better Be Home Soon - Crowded House</li>
<li>Sounds of Then (This is Australia) - GANGgajang</li>
<li>Tie Me Kangaroo Down Sport - Rolf Harris</li>
</ul>
<p>The following YouTube playlist will take you through each of the songs:</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/p/47C1DBBEF1D4E9AA"></param><embed src="http://www.youtube.com/p/47C1DBBEF1D4E9AA" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2009/01/01/top-15-aussie-songs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 40 albums of 2008.</title>
		<link>http://hinchley.net/2008/12/21/top-40-albums-of-2008/</link>
		<comments>http://hinchley.net/2008/12/21/top-40-albums-of-2008/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 06:48:21 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=247</guid>
		<description><![CDATA[It&#8217;s that time of year again, when we look back and assess the year that was, pausing to stew over the mountains of albums that we listened to over hundreds of hours.  And out of the swarm of melodies, driving rhythms, and swirling electronica, we hold aloft the best of the best.  The [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s that time of year again, when we look back and assess the year that was, pausing to stew over the mountains of albums that we listened to over hundreds of hours.  And out of the swarm of melodies, driving rhythms, and swirling electronica, we hold aloft the best of the best.  The top 40 albums of the year.  This is it.</p>
<p>The albums are listed top to bottom in order of greatness.  For each entry i’ve provided a link to Amazon where you can read reviews, and maybe even buy the album, and a link to YouTube, where you can watch a clip of a song from the album. Unless explicitly stated, the YouTube reference is what i consider to be the standout track from each release (although in many cases i had to resort to low quality live videos, as a large number of the songs are not accompanied by official film clips).</p>
<p>Also, at the bottom of the list i’ve provided two links where you can download all 40 standout tracks. Yep, that’s 40 top notch songs, delivered right to your desktop. I’ve split the tracks across two zip files (the first containing tracks 1-20, and the second tracks 21-40). Oh, and remember, if you like the music, buy it!</p>
<p><span id="more-247"></span></p>
<ul class="piclist fix">
<li> <img title="Heretic Pride" src="/assets/2008/12/HereticPride.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>1</h4>
<h4><span>Artist: </span>The Mountain Goats</h4>
<h4><span>Album: </span>Heretic Pride</h4>
<h4><span>Standout: </span>Sax Rohmer #1</h4>
<p>An incredibly earnest album, bursting with melody and passion.</p>
<p class="meta"><a title="Heretic Pride at Amazon" href="http://www.amazon.com/Heretic-Pride-Mountain-Goats/dp/B0011458QA/">Amazon</a> | <a title="Sax Rohmer #1 at YouTube" href="http://au.youtube.com/watch?v=jd3zjozVSEg">YouTube</a></p>
</div>
</li>
<li> <img title="The Midnight Organ Fight" src="/assets/2008/12/TheMidnightOrganFight.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>2</h4>
<h4><span>Artist: </span>Frightened Rabbit</h4>
<h4><span>Album: </span>The Midnight Organ Fight</h4>
<h4><span>Standout: </span>The Modern Leper</h4>
<p>Powerful and poignant.  An album of indie classics.</p>
<p class="meta"><a title="The Midnight Organ Fight at Amazon" href="http://www.amazon.com/Midnight-Organ-Fight-Frightened-Rabbit/dp/B000ZOSMXI/">Amazon</a> | <a title="The Modern Leper (Acoustic) at YouTube" href="http://au.youtube.com/watch?v=ReCQEMcZHwE">YouTube</a></p>
</div>
</li>
<li> <img title="Med Sud I Eyrum Vid Spilum Endalaust" src="/assets/2008/12/MedSudIEyrumVidSpilumEndalaust.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>3</h4>
<h4><span>Artist: </span>Sigur Ros</h4>
<h4><span>Album: </span>Med Sud I Eyrum Vid Spilum Endalaust</h4>
<h4><span>Standout: </span>Fljotavík</h4>
<p>Consistently brilliant.  Haunting vocals drift over majestic aural landscapes.</p>
<p class="meta"><a title="Med Sud I Eyrum Vid Spilum Endalaust at Amazon" href="http://www.amazon.com/Med-Sud-Eyrum-Spilum-Endalaust/dp/B001ACY8D2/">Amazon</a> | <a title="Fljotavík at YouTube" href="http://au.youtube.com/watch?v=2opPAo-FAe4">YouTube</a></p>
</div>
</li>
<li> <img title="Forth" src="/assets/2008/12/Forth.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>4</h4>
<h4><span>Artist: </span>The Verve</h4>
<h4><span>Album: </span>Forth</h4>
<h4><span>Standout: </span>Love Is Noise</h4>
<p>A mind blowing return to form.  An album of striking confidence.</p>
<p class="meta"><a title="Forth at Amazon" href="http://www.amazon.com/Forth-Verve/dp/B001C47ZOM/">Amazon</a> | <a title="Love Is Noise at YouTube" href="http://au.youtube.com/watch?v=_XBgB1vxmD4">YouTube</a></p>
</div>
</li>
<li> <img title="Fleet Foxes" src="/assets/2008/12/FleetFoxes.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>5</h4>
<h4><span>Artist: </span>Fleet Foxes</h4>
<h4><span>Album: </span>Fleet Foxes</h4>
<h4><span>Standout: </span>White Winter Hymnal</h4>
<p>Harmony at its best.  A pure joy.</p>
<p class="meta"><a title="Fleet Foxes at Amazon" href="http://www.amazon.com/Fleet-Foxes/dp/B0017R5UAA/">Amazon</a> | <a title="White Winter Hymnal at YouTube" href="http://au.youtube.com/watch?v=DrQRS40OKNE">YouTube</a></p>
</div>
</li>
<li> <img title="Robyn" src="/assets/2008/12/Robyn.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>6</h4>
<h4><span>Artist: </span>Robyn</h4>
<h4><span>Album: </span>Robyn</h4>
<h4><span>Standout: </span>Handle Me</h4>
<p>Perfect pop delivered with attitude.</p>
<p class="meta"><a title="Robyn at Amazon" href="http://www.amazon.com/Robyn/dp/B0013PVGJ0/">Amazon</a> | <a title="Handle Me at YouTube" href="http://au.youtube.com/watch?v=x4UHNhVSrEM">YouTube</a></p>
</div>
</li>
<li> <img title="Intimacy" src="/assets/2008/12/Intimacy.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>7</h4>
<h4><span>Artist: </span>Bloc Party</h4>
<h4><span>Album: </span>Intimacy</h4>
<h4><span>Standout: </span>Ion Square</h4>
<p>Huge beats, soaring vocals, hooks galore; what more could we ask for?</p>
<p class="meta"><a title="Intimacy at Amazon" href="http://www.amazon.com/Intimacy-Bloc-Party/dp/B001G0LBY2/">Amazon</a> | <a title="Ion Square at YouTube" href="http://au.youtube.com/watch?v=3uanSjd91cM">YouTube</a></p>
</div>
</li>
<li> <img title="Cardinology" src="/assets/2008/12/Cardinology.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>8</h4>
<h4><span>Artist: </span>Ryan Adams and the Cardinals</h4>
<h4><span>Album: </span>Cardinology</h4>
<h4><span>Standout: </span>Born Into A Light</h4>
<p>The prolific song writer is back with another masterpiece. No bullshit, just perfect craftsmanship.</p>
<p class="meta"><a title="Cardinology at Amazon" href="http://www.amazon.com/Cardinology-Ryan-Adams-Cardinals/dp/B001GJ7ZMK/">Amazon</a> | <a title="Fix It at YouTube" href="http://au.youtube.com/watch?v=AbP7SNspwdE">YouTube (Fix It)</a></p>
</div>
</li>
<li> <img title="The Virginia EP" src="/assets/2008/12/TheVirginiaEP.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>9</h4>
<h4><span>Artist: </span>The National</h4>
<h4><span>Album: </span>The Virginia EP</h4>
<h4><span>Standout: </span>You&#8217;ve Done It Again Virginia</h4>
<p>A handful of new songs intermixed with b-sides, covers, and live tracks.  All perfectly hit the mark.</p>
<p class="meta"><a title="The Virginia EP at Amazon" href="http://www.amazon.co.uk/National-Skin-Night-Virginia-EP/dp/B0016MJ2TG">Amazon</a> | <a title="You've Done It Again Virginia (Live) at YouTube" href="http://au.youtube.com/watch?v=JHEA_r880mg">YouTube</a></p>
</div>
</li>
<li> <img title="Life, Death, Love, And Freedom" src="/assets/2008/12/LifeDeathLoveAndFreedom.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>10</h4>
<h4><span>Artist: </span>John Mellencamp</h4>
<h4><span>Album: </span>Life, Death, Love, And Freedom</h4>
<h4><span>Standout: </span>Longest Days</h4>
<p>An album composed and delivered from the very depths of the heart.</p>
<p class="meta"><a title="Life, Death, Love, And Freedom at Amazon" href="http://www.amazon.com/Life-Death-Love-Freedom-Mellencamp/dp/B0018Q7K4O/">Amazon</a> | <a title="Longest Days at YouTube" href="http://au.youtube.com/watch?v=BWGKZMEgDAo">YouTube</a></p>
</div>
</li>
<li> <img title="Viva La Vida or Death And All His Friends" src="/assets/2008/12/VivaLaVidaorDeathAndAllHisFriends.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>11</h4>
<h4><span>Artist: </span>Coldplay</h4>
<h4><span>Album: </span>Viva La Vida or Death And All His Friends</h4>
<h4><span>Standout: </span>Life In Technicolor</h4>
<p>Not the reinvention that some were hoping for, but hey, it&#8217;s brilliant all the same.</p>
<p class="meta"><a title="Viva La Vida or Death And All His Friends at Amazon" href="http://www.amazon.com/Viva-Vida-Death-All-Friends/dp/B0017W7FPS/">Amazon</a> | <a title="Life In Technicolor at YouTube" href="http://au.youtube.com/watch?v=KGq86Ue2i0Y">YouTube</a></p>
</div>
</li>
<li> <img title="Conor Oberst" src="/assets/2008/12/ConorOberst.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>12</h4>
<h4><span>Artist: </span>Conor Oberst</h4>
<h4><span>Album: </span>Conor Oberst</h4>
<h4><span>Standout: </span>Cape Canaveral</h4>
<p>A surprisingly optimistic album of first rate songs by this fecund writer.</p>
<p class="meta"><a title="Conor Oberst at Amazon" href="http://www.amazon.com/Conor-Oberst/dp/B001APM3XQ/">Amazon</a> | <a title=" at YouTube" href="http://au.youtube.com/watch?v=sklLM38aZ8c">YouTube</a></p>
</div>
</li>
<li> <img title="Dig, Lazarus, Dig!!!" src="/assets/2008/12/DigLazarusDig.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>13</h4>
<h4><span>Artist: </span>Nick Cave and the Bad Seeds</h4>
<h4><span>Album: </span>Dig, Lazarus, Dig!!!</h4>
<h4><span>Standout: </span>Dig, Lazarus, Dig!!!</h4>
<p>Raucous, hilarious, and violent; another witty onslaught from a man that seems to only get stronger with age.</p>
<p class="meta"><a title="Dig Lazarus Dig at Amazon" href="http://www.amazon.com/Dig-Lazarus-Nick-Cave-Seeds/dp/B0014DBZT2/">Amazon</a> | <a title="Dig, Lazarus, Dig!!! at YouTube" href="http://au.youtube.com/watch?v=7kV5XkBQsKU">YouTube</a></p>
</div>
</li>
<li> <img title="Smilers" src="/assets/2008/12/Smilers.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>14</h4>
<h4><span>Artist: </span>Aimee Mann</h4>
<h4><span>Album: </span>Smilers</h4>
<h4><span>Standout: </span>Freeway</h4>
<p>A poet with melody: another collection of insightful hook-laden songs.</p>
<p class="meta"><a title="Smilers at Amazon" href="http://www.amazon.com/%25-Smilers-Aimee-Mann/dp/B00171MNKQ/">Amazon</a> | <a title="Freeway at YouTube" href="http://au.youtube.com/watch?v=TQF5CXV9cos">YouTube</a></p>
</div>
</li>
<li> <img title="4:13 Dream" src="/assets/2008/12/413Dream.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>15</h4>
<h4><span>Artist: </span>The Cure</h4>
<h4><span>Album: </span>4:13 Dream</h4>
<h4><span>Standout: </span>Underneath the Stars</h4>
<p>I&#8217;ll admit it: not quite what i&#8217;d hoped for, but if we judge by merit, and not by expectation, this album deserves respect.</p>
<p class="meta"><a title="4:13 Dream at Amazon" href="http://www.amazon.com/4-13-Dream-Cure/dp/B001FBSMOO/">Amazon</a> | <a title="Underneath the Stars at YouTube" href="http://au.youtube.com/watch?v=O6K4K7khCVU">YouTube</a></p>
</div>
</li>
<li> <img title="Carried to Dust" src="/assets/2008/12/CarriedtoDust.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>16</h4>
<h4><span>Artist: </span>Calexico</h4>
<h4><span>Album: </span>Carried to Dust</h4>
<h4><span>Standout: </span>Two Silver Trees</h4>
<p>A deeply enveloping album.  A wonderful musical tapestry.</p>
<p class="meta"><a title="Carried to Dust at Amazon" href="http://www.amazon.com/Carried-Dust-Calexico/dp/B001CVCB9O/">Amazon</a> | <a title="Two Silver Trees at YouTube" href="http://au.youtube.com/watch?v=sCA0_bNXAao">YouTube</a></p>
</div>
</li>
<li> <img title="Mark Ronson presents Rhymefest: Man In The Mirror!" src="/assets/2008/12/ManInTheMirror.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>17</h4>
<h4><span>Artist: </span>Rhymefest</h4>
<h4><span>Album: </span>Mark Ronson presents Rhymefest: Man In The Mirror!</h4>
<h4><span>Standout: </span>Man In The Mirror</h4>
<p>Michael Jackson pimped to the max.  Funny, but reverent; an inspired and richly creative album.</p>
<p class="meta"><a title="Download Mark Ronson presents Rhymefest: Man In The Mirror!" href="http://rhymefeststore.com/catalog/index.php?main_page=page&#038;id=1">Download (Free)</a> | <a title="No Sunshine at YouTube" href="http://au.youtube.com/watch?v=sHXucWjQ-R0">YouTube (No Sunshine)</a></p>
</div>
</li>
<li> <img title="Re-Arrange Us" src="/assets/2008/12/ReArrangeUs.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>18</h4>
<h4><span>Artist: </span>Mates of State</h4>
<h4><span>Album: </span>Re-Arrange Us</h4>
<h4><span>Standout: </span>Blue And Gold Print</h4>
<p>Another album laden with big hooks and killer harmonies from the husband and wife duo.</p>
<p class="meta"><a title="Re-Arrange Us at Amazon" href="http://www.amazon.com/Re-Arrange-Us-Mates-State/dp/B0016MJ2PU/">Amazon</a> | <a title="Blue And Gold Print at YouTube" href="http://au.youtube.com/watch?v=MUZQSoqKuLw">YouTube</a></p>
</div>
</li>
<li> <img title="Narrow Stairs" src="/assets/2008/12/NarrowStairs.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>19</h4>
<h4><span>Artist: </span>Death Cab for Cutie</h4>
<h4><span>Album: </span>Narrow Stairs</h4>
<h4><span>Standout: </span>I Will Possess Your Heart</h4>
<p>It may not yield the instant accessibility of their previous release, but this album grows, and grows, and grows&#8230;</p>
<p class="meta"><a title="Narrow Stairs at Amazon" href="http://www.amazon.com/Narrow-Stairs-Death-Cab-Cutie/dp/B0017I1RH4/">Amazon</a> | <a title="I Will Possess Your Heart at YouTube" href="http://au.youtube.com/watch?v=C5S0CWPDRAA">YouTube</a></p>
</div>
</li>
<li> <img title="Acid Tounge" src="/assets/2008/12/AcidTounge.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>20</h4>
<h4><span>Artist: </span>Jenny Lewis</h4>
<h4><span>Album: </span>Acid Tounge</h4>
<h4><span>Standout: </span>Godspeed</h4>
<p>Lewis pushes her voice and her style to new heights in this wonderful, almost audacious, album.</p>
<p class="meta"><a title="Acid Tounge at Amazon" href="http://www.amazon.com/Acid-Tongue-Jenny-Lewis/dp/B001CFQO7U/">Amazon</a> | <a title="Godspeed at YouTube" href="http://au.youtube.com/watch?v=T4-ksXp7Oas">YouTube</a></p>
</div>
</li>
<li> <img title="Seventh Tree" src="/assets/2008/12/SeventhTree.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>21</h4>
<h4><span>Artist: </span>Goldfrapp</h4>
<h4><span>Album: </span>Seventh Tree</h4>
<h4><span>Standout: </span>Cologne Cerrone Houdini</h4>
<p>In a word: smooth. To that we can add: gentle, hypnotic, spelling binding&#8230;</p>
<p class="meta"><a title="Seventh Tree at Amazon" href="http://www.amazon.com/Seventh-Tree-Goldfrapp/dp/B000Y8GFY8/">Amazon</a> | <a title="Cologne Cerrone Houdini at YouTube" href="http://au.youtube.com/watch?v=rUNI-UHEzlc">YouTube</a></p>
</div>
</li>
<li> <img title="Third" src="/assets/2008/12/Third.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>22</h4>
<h4><span>Artist: </span>Portishead</h4>
<h4><span>Album: </span>Third</h4>
<h4><span>Standout: </span>Machine Gun</h4>
<p>It was worth the wait: art at its best; gritty yet beautiful.</p>
<p class="meta"><a title="Third at Amazon" href="http://www.amazon.com/Third-Portishead/dp/B0016HNOXQ/">Amazon</a> | <a title="Machine Gun at YouTube" href="http://au.youtube.com/watch?v=BKm-OkHj-VM">YouTube</a></p>
</div>
</li>
<li> <img title="Evil Urges" src="/assets/2008/12/EvilUrges.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>23</h4>
<h4><span>Artist: </span>My Morning Jacket</h4>
<h4><span>Album: </span>Evil Urges</h4>
<h4><span>Standout: </span>Evil Urges</h4>
<p>Typically bagged by the critics, generally weird, and often questionable, ride with it, and you won&#8217;t be disappointed.</p>
<p class="meta"><a title="Evil Urges at Amazon" href="http://www.amazon.com/Evil-Urges-My-Morning-Jacket/dp/B0017PB5TW/">Amazon</a> | <a title="Evil Urges at YouTube" href="http://au.youtube.com/watch?v=Y3BBncUVsMI">YouTube</a></p>
</div>
</li>
<li> <img title="Me and Armini" src="/assets/2008/12/MeandArmini.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>24</h4>
<h4><span>Artist: </span>Emiliana Torrini</h4>
<h4><span>Album: </span>Me and Armini</h4>
<h4><span>Standout: </span>Fireheads</h4>
<p>A simply gorgeous voice wrapped up in a surprisingly diverse musical score.</p>
<p class="meta"><a title="Me and Armini at Amazon" href="http://www.amazon.com/Me-Armini-Emiliana-Torrini/dp/B001CB0UJC/">Amazon</a> | <a title="Fireheads at YouTube" href="http://au.youtube.com/watch?v=Z4yAgj1k7_Y">YouTube</a></p>
</div>
</li>
<li> <img title="Velocifero" src="/assets/2008/12/Velocifero.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>25</h4>
<h4><span>Artist: </span>Ladytron</h4>
<h4><span>Album: </span>Velocifero</h4>
<h4><span>Standout: </span>Black Cat</h4>
<p>Infectious electronica and driving industrial beats that will rock your socks off.</p>
<p class="meta"><a title="Velocifero at Amazon" href="http://www.amazon.com/Velocifero-Ladytron/dp/B0017V7GLC/">Amazon</a> | <a title="Ghosts at YouTube" href="http://au.youtube.com/watch?v=9yaEwcmrR4Q">YouTube (Ghosts)</a></p>
</div>
</li>
<li> <img title="The Seldom Seen Kid" src="/assets/2008/12/TheSeldomSeenKid.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>26</h4>
<h4><span>Artist: </span>Elbow</h4>
<h4><span>Album: </span>The Seldom Seen Kid</h4>
<h4><span>Standout: </span>The Loneliness Of A Tower Crane Driver</h4>
<p>Take complex arrangements, add soaring vocals and a drop of lyrical genius, stir, and you have The Seldom Seen Kid.</p>
<p class="meta"><a title="The Seldom Seen Kid at Amazon" href="http://www.amazon.com/Seldom-Seen-Kid-Elbow/dp/B0015I2P0Y/">Amazon</a> | <a title="The Loneliness Of A Tower Crane Driver at YouTube" href="http://au.youtube.com/watch?v=vnDM1SxLHIY">YouTube</a></p>
</div>
</li>
<li> <img title="Some People Have Real Problems" src="/assets/2008/12/SomePeopleHaveRealProblems.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>27</h4>
<h4><span>Artist: </span>Sia</h4>
<h4><span>Album: </span>Some People Have Real Problems</h4>
<h4><span>Standout: </span>Lentil</h4>
<p>Sia’s voice is simply magnetic. It exudes confidence and frailty, playfulness and power. It owns this album, from beginning to end.</p>
<p class="meta"><a title="Some People Have Real Problems at Amazon" href="http://www.amazon.com/Some-People-Have-Real-Problems/dp/B0010DJ1VA/">Amazon</a> | <a title="Lentil at YouTube" href="http://au.youtube.com/watch?v=Kewt_KX11Gk">YouTube</a></p>
</div>
</li>
<li> <img title="Do You Like Rock Music" src="/assets/2008/12/DoYouLikeRockMusic.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>28</h4>
<h4><span>Artist: </span>British Sea Power</h4>
<h4><span>Album: </span>Do You Like Rock Music</h4>
<h4><span>Standout: </span>The Great Skua</h4>
<p>A wonderful bag of hook infested indie rock classics; vigorous, fresh, imaginative, and swathed in tenderness, this is an album that pleases on all fronts.</p>
<p class="meta"><a title="Do You Like Rock Music at Amazon" href="http://www.amazon.com/Do-You-Like-Rock-Music/dp/B00111COHO/">Amazon</a> | <a title="The Great Skua at YouTube" href="http://au.youtube.com/watch?v=vRM83aqodcQ">YouTube</a></p>
</div>
</li>
<li> <img title="Gurrumul" src="/assets/2008/12/Gurrumul.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>29</h4>
<h4><span>Artist: </span>Gurrumul Yunupingu</h4>
<h4><span>Album: </span>Gurrumul</h4>
<h4><span>Standout: </span>Wiarthul</h4>
<p>Born blind, but with the voice of an angel, the latest release from Geoffrey Gurrumul Yunupingu, former member of Yothu Yindi, is nothing short of haunting.</p>
<p class="meta"><a title="Gurrumul at Amazon" href="http://www.amazon.com/Gurrumul-Geoffrey-Yunupingu/dp/B0013NFQ8O/">Amazon</a> | <a title="Djarimirri at YouTube" href="http://au.youtube.com/watch?v=bawDFY8G-o4">YouTube (Djarimirri)</a></p>
</div>
</li>
<li> <img title="Vivian Girls" src="/assets/2008/12/VivianGirls.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>30</h4>
<h4><span>Artist: </span>Vivian Girls</h4>
<h4><span>Album: </span>Vivian Girls</h4>
<h4><span>Standout: </span>Where Do You Run To</h4>
<p>Low-fi noise mixed with a wonderful pop sensibility.  Immersive.</p>
<p class="meta"><a title="Vivian Girls at Amazon" href="http://www.amazon.com/Vivian-Girls/dp/B001CQP48E/">Amazon</a> | <a title="Where Do You Run To at YouTube" href="http://au.youtube.com/watch?v=ZSxKIJp0WAY">YouTube</a></p>
</div>
</li>
<li> <img title="Microcastle" src="/assets/2008/12/Microcastle.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>31</h4>
<h4><span>Artist: </span>Deerhunter</h4>
<h4><span>Album: </span>Microcastle</h4>
<h4><span>Standout: </span>Agoraphobia</h4>
<p>Lush and distorted, and recorded in 1 week; a self-contained meandering musical journey.</p>
<p class="meta"><a title="Microcastle at Amazon" href="http://www.amazon.com/Microcastle-Deerhunter/dp/B001E7QLJW/">Amazon</a> | <a title="Agoraphobia at YouTube" href="http://au.youtube.com/watch?v=oup-m8Hxx4Y">YouTube</a></p>
</div>
</li>
<li> <img title="Everything That Happens Will Happen Today" src="/assets/2008/12/EverythingThatHappensWillHappenToday.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>32</h4>
<h4><span>Artist: </span>David Byrne and Brian Eno</h4>
<h4><span>Album: </span>Everything That Happens Will Happen Today</h4>
<h4><span>Standout: </span>Everything That Happens</h4>
<p>Two legends of the game unite to deliver an album that sparkles wit maturity at every level.</p>
<p class="meta"><a title="Everything That Happens Will Happen Today at Amazon" href="http://www.amazon.com/Everything-That-Happens-Happen-Today/dp/B001FWRZ1O/">Amazon</a> | <a title="Making of 'Everything That Happens Will Happen Today' at YouTube" href="http://au.youtube.com/watch?v=6Ji0HUfEDeE">YouTube (The Making Of&#8230;)</a></p>
</div>
</li>
<li> <img title="Dear Science" src="/assets/2008/12/DearScience.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>33</h4>
<h4><span>Artist: </span>TV on the Radio</h4>
<h4><span>Album: </span>Dear Science</h4>
<h4><span>Standout: </span>Shout Me Out</h4>
<p>Like its predecessor, Return to Cookie Mountain, Dear Science is a musical hotpot, diverse and creative, and yet this time, there is room for the emotive melodies to breath.</p>
<p class="meta"><a title="Dear Science at Amazon" href="http://www.amazon.com/Dear-Science-TV-Radio/dp/B001EOQTSI/">Amazon</a> | <a title="Shout Me Out at YouTube" href="http://au.youtube.com/watch?v=PjsjYDljRlk">YouTube</a></p>
</div>
</li>
<li> <img title="Feed the Animals" src="/assets/2008/12/FeedtheAnimals.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>34</h4>
<h4><span>Artist: </span>Girl Talk</h4>
<h4><span>Album: </span>Feed the Animals</h4>
<h4><span>Standout: </span>What It&#8217;s All About</h4>
<p>The master mashup man lovingly interweaves in-excess of 300 samples in this cohesive and masterful work.</p>
<p class="meta"><a title="Download Feed the Animals" href="http://74.124.198.47/illegal-art.net/__girl__talk___feed__the__anima.ls___/">Download (Name Your Price)</a> | <a title="What It's All About at YouTube" href="http://au.youtube.com/watch?v=sLOAcMVmCiU">YouTube</a></p>
</div>
</li>
<li> <img title="Anywhere I Lay My Head" src="/assets/2008/12/AnywhereILayMyHead.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>35</h4>
<h4><span>Artist: </span>Scarlett Johansson</h4>
<h4><span>Album: </span>Anywhere I Lay My Head</h4>
<h4><span>Standout: </span>Falling Down</h4>
<p>Ok, she can&#8217;t sing, she didn&#8217;t write the songs, and everyone says it sucks, but somehow this collection of Tom Waits covers really works.  Trust me.</p>
<p class="meta"><a title="Anywhere I Lay My Head at Amazon" href="http://www.amazon.com/Anywhere-I-Lay-My-Head/dp/B0014IH1N6/">Amazon</a> | <a title="Falling Down at YouTube" href="http://au.youtube.com/watch?v=seXsyQq8n1M">YouTube</a></p>
</div>
</li>
<li> <img title="For Emma, Forever Ago" src="/assets/2008/12/ForEmmaForeverAgo.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>36</h4>
<h4><span>Artist: </span>Bon Iver</h4>
<h4><span>Album: </span>For Emma, Forever Ago</h4>
<h4><span>Standout: </span>Skinny Love</h4>
<p>Written from a log cabin nestled in the wilderness, this album perfectly captures a life in catharsis.</p>
<p class="meta"><a title="For Emma, Forever Ago at Amazon" href="http://www.amazon.com/Emma-Forever-Ago-Bon-Iver/dp/B0011HF6GE/">Amazon</a> | <a title="Skinny Love at YouTube" href="http://au.youtube.com/watch?v=rtbPmyf3O9c">YouTube</a></p>
</div>
</li>
<li> <img title="Watch Me Disappear" src="/assets/2008/12/WatchMeDisappear.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>37</h4>
<h4><span>Artist: </span>Augie March</h4>
<h4><span>Album: </span>Watch Me Disappear</h4>
<h4><span>Standout: </span>Farmer&#8217;s Son</h4>
<p>Overshadowed by the commercial success of their previous release, this is a consistently strong album worthy of greater attention.</p>
<p class="meta"><a title="Watch Me Disappear at Amazon" href="http://www.amazon.com/Watch-Me-Disappear-Augie-March/dp/B001FQFTJA/">Amazon</a> | <a title="Watch Me Disappear at YouTube" href="http://au.youtube.com/watch?v=gIXmBQsqf5Q">YouTube (Watch Me Disappear)</a></p>
</div>
</li>
<li> <img title="Hercules and Love Affair" src="/assets/2008/12/HerculesandLoveAffair.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>38</h4>
<h4><span>Artist: </span>Hercules and Love Affair</h4>
<h4><span>Album: </span>Hercules and Love Affair</h4>
<h4><span>Standout: </span>Blind</h4>
<p>Jazzy dance floor grooves abound, and the mighty voice of Antony Hegarty soars.</p>
<p class="meta"><a title="Hercules and Love Affair at Amazon" href="http://www.amazon.com/Hercules-Love-Affair/dp/B00193PV24/">Amazon</a> | <a title="Blind at YouTube" href="http://au.youtube.com/watch?v=Fb8S51M2GAc">YouTube</a></p>
</div>
</li>
<li> <img title="Bad Sun [The Moon]" src="/assets/2008/12/BadSun.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>39</h4>
<h4><span>Artist: </span>The Bravery</h4>
<h4><span>Album: </span>Bad Sun [The Moon]</h4>
<h4><span>Standout: </span>Time Won&#8217;t Let Me Go</h4>
<p>Bad Sun [The Moon] is a reworking of Bad Sun [The Sun].  The two albums comprise the same songs, but The Moon, in the words of singer Sam Endicott, sees The Bravery &#8220;back on home turf.&#8221;  I think he is right.</p>
<p class="meta"><a title="Bad Sun at Amazon" href="http://www.amazon.com/Bad-Sun/dp/B000XO2R68/">Amazon</a> | <a title="Time Won't Let Me Go at YouTube" href="http://au.youtube.com/watch?v=H5ZxQ8tnAG8">YouTube</a></p>
</div>
</li>
<li> <img title="Receivers" src="/assets/2008/12/Receivers.jpg" alt="Album" />
<div class="info">
<h4><span>Rank: </span>40</h4>
<h4><span>Artist: </span>Parts &#038; Labor</h4>
<h4><span>Album: </span>Receivers</h4>
<h4><span>Standout: </span>Nowheres Nigh</h4>
<p>I&#8217;ve only just acquired this album, but i&#8217;m already hooked by the onslaught of guitar and low-fi melody.  Would surely be ranked higher if we&#8217;d only had more time together.</p>
<p class="meta"><a title="Receivers at Amazon" href="http://www.amazon.com/Receivers-Parts-Labor/dp/B001EN461Q/">Amazon</a> | <a title="Nowheres Nigh at YouTube" href="http://au.youtube.com/watch?v=2KUGJaVMwno">YouTube</a></p>
</div>
</li>
</ul>
<p>Click the following two links to download all 40 of the standout tracks listed above. Note: Each link will download a file approximately 150MB in size.  That&#8217;s large.  It may take a while, so take it easy.</p>
<p><a title="Tracks 1 - 15" href="http://hinchley.s3.amazonaws.com/2008/12/21/Tracks1-20.zip">Tracks 1 - 20</a> | <a title="Tracks 1 - 20" href="http://hinchley.s3.amazonaws.com/2008/12/21/Tracks21-40.zip">Tracks 21 - 40</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2008/12/21/top-40-albums-of-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Buttons by Sia.</title>
		<link>http://hinchley.net/2008/11/18/buttons-by-sia/</link>
		<comments>http://hinchley.net/2008/11/18/buttons-by-sia/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 09:11:44 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=246</guid>
		<description><![CDATA[I just love the Buttons film clip by Sia.

]]></description>
			<content:encoded><![CDATA[<p>I just love the Buttons film clip by <a href="http://en.wikipedia.org/wiki/Sia_Furler" title="Sia at Wikipedia">Sia</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="420" height="336" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.dailymotion.com/swf/k5huxOv9LkLOt2lsh1&amp;related=1" /><embed type="application/x-shockwave-flash" width="420" height="336" src="http://www.dailymotion.com/swf/k5huxOv9LkLOt2lsh1&amp;related=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2008/11/18/buttons-by-sia/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Obama victory speech and the 106 year old woman.</title>
		<link>http://hinchley.net/2008/11/06/obama-victory-speech-and-the-106-year-old-woman/</link>
		<comments>http://hinchley.net/2008/11/06/obama-victory-speech-and-the-106-year-old-woman/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 20:38:41 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Commentary]]></category>

		<category><![CDATA[politics]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=245</guid>
		<description><![CDATA[I&#8217;ll admit it.  I cried.

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll admit it.  I cried.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/2Mb1Xg48tyE" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/2Mb1Xg48tyE" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2008/11/06/obama-victory-speech-and-the-106-year-old-woman/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PhotoFunia.</title>
		<link>http://hinchley.net/2008/11/03/photofunia/</link>
		<comments>http://hinchley.net/2008/11/03/photofunia/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 04:24:26 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Photos]]></category>

		<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=242</guid>
		<description><![CDATA[The following photos were created using the online photo manipulation site PhotoFunia.  Simply upload a photo, select a template, and whamo, you have instant amusement.


Link via Lifehacker Australia.
]]></description>
			<content:encoded><![CDATA[<p>The following photos were created using the online photo manipulation site <a href="http://www.photofunia.com/" title="PhotoFunia">PhotoFunia</a>.  Simply upload a photo, select a template, and whamo, you have instant amusement.</p>
<p><a href='/assets/2008/11/photofunia1.jpg'><img src="/assets/2008/11/photofunia1.jpg" alt="PhotoFunia Mug Shot 1" title="PhotoFunia Mug Shot 1" width="425" height="299" class="flickr" /></a></p>
<p><span id="more-242"></span><a href='/assets/2008/11/photofunia2.jpg'><img src="/assets/2008/11/photofunia2.jpg" alt="PhotoFunia Mug Shot 2" title="PhotoFunia Mug Shot 2" width="276" height="425" class="flickr" /></a></p>
<p>Link via <a href="http://www.lifehacker.com.au/tips/2008/11/03/photofunia_pastes_your_face_all_over_the_place-2.html" title="Lifehacker Australia">Lifehacker Australia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2008/11/03/photofunia/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ten photos from European holiday.</title>
		<link>http://hinchley.net/2008/11/03/ten-photos-from-european-holiday/</link>
		<comments>http://hinchley.net/2008/11/03/ten-photos-from-european-holiday/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 03:58:13 +0000</pubDate>
		<dc:creator>hinch</dc:creator>
		
		<category><![CDATA[Photos]]></category>

		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://hinchley.net/?p=241</guid>
		<description><![CDATA[I&#8217;ve just returned from a 5 week holiday in Europe, spending time in London, Paris, and several locations in Italy.  Here are 10 photos i took whilst traveling.










]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just returned from a 5 week holiday in Europe, spending time in London, Paris, and several locations in Italy.  Here are 10 photos i took whilst traveling.</p>
<p><a href="http://www.flickr.com/photos/hinchley/2998031552/" title="Grocery store in Naples on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3205/2998031552_06ce686892.jpg" width="284" height="425" alt="Grocery store in Naples" /></a></p>
<p><span id="more-241"></span><a href="http://www.flickr.com/photos/hinchley/2998024060/" title="Roman Church on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3182/2998024060_64ec6d2467.jpg" width="425" height="284" alt="Roman Church" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2998013762/" title="Hut in Cinque Terre on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3208/2998013762_8aaf86e70a.jpg" width="425" height="284" alt="Hut in Cinque Terre" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2998007972/" title="Manarola in Cinque Terre on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3029/2998007972_9d726a4b0f.jpg" width="425" height="284" alt="Manarola in Cinque Terre" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2997160421/" title="Old Woman and a Church on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3245/2997160421_f533fbb84e.jpg" width="425" height="284" alt="Old Woman and a Church" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2997154711/" title="Transfixed Tourist in Venice on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3295/2997154711_532f9840bf.jpg" width="425" height="284" alt="Transfixed Tourist in Venice" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2997150065/" title="Old Building in Murano on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3196/2997150065_aebc545a91.jpg" width="425" height="284" alt="Old Building in Murano" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2997985086/" title="Cat in Murano on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3248/2997985086_6008911719.jpg" width="425" height="284" alt="Cat in Murano" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2997134971/" title="Chandelier in Versailles on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3239/2997134971_6722f5afb5.jpg" width="425" height="284" alt="Chandelier in Versailles" /></a></p>
<p><a href="http://www.flickr.com/photos/hinchley/2997974798/" title="Kate Moss - Siren on Flickr"><img class="flickr" src="http://farm4.static.flickr.com/3033/2997974798_5a5338022b.jpg" width="284" height="425" alt="Kate Moss - Siren" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hinchley.net/2008/11/03/ten-photos-from-european-holiday/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
