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

<channel>
	<title>Pics or it didn't happen!</title>
	<atom:link href="http://www.vq.id.au/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vq.id.au/blog</link>
	<description>Stories of procrastination</description>
	<pubDate>Tue, 26 Oct 2010 13:15:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Amazon Web Services - SimpleDB using the PHP SDK</title>
		<link>http://www.vq.id.au/blog/2010/10/27/amazon-web-services-simpledb-using-the-php-sdk/</link>
		<comments>http://www.vq.id.au/blog/2010/10/27/amazon-web-services-simpledb-using-the-php-sdk/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 13:15:37 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[amazon web services]]></category>

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

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

		<category><![CDATA[cloud computing]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=164</guid>
		<description><![CDATA[Long time no post&#8230; here&#8217;s a nerdy one which I am writing since I have found no information on it anywhere on the internet.

Amazon Web Services has recently released their PHP SDK. It&#8217;s not the most well documented library out there but it does make doing a lot of things on AWS a lot easier. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Long time no post&#8230; here&#8217;s a nerdy one which I am writing since I have found no information on it anywhere on the internet.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://awsmedia.s3.amazonaws.com/logo_aws.gif" alt="" /></p>
<p><a href="http://aws.amazon.com">Amazon Web Services</a> has recently released their <a href="http://aws.amazon.com/sdkforphp/">PHP SDK</a>. It&#8217;s not the most well documented library out there but it does make doing a lot of things on AWS a lot easier. I&#8217;ve been working on a few small projects as proof-of-concepts for scalable web applications that can run off a regular web server but leverage the cloud for storage and extra compute capacity.</p>
<p>One component I&#8217;ve spent a few hours on working out has been a monitoring component. Basically, a script runs regularly and collects a few statistics (e.g. S3 bucket size), storing all the information into a <a href="http://aws.amazon.com/simpledb/">SimpleDB</a> domain. Anyway, what it does isn&#8217;t relevant - the point is that it stores a load of data roughly resembling a logfile using SimpleDB. That bit is all very easy to architect and develop.</p>
<p>The hard part is retrieving this information. I&#8217;m planning to use the <a href="http://code.google.com/apis/visualization/interactive_charts.html">Google Visualisation API</a> to generate some cool graphs, and I was planning to create a simple PHP script that would basically extract some log data and output it to CSV. This is where the roadblock is. <strong>Amazon SimpleDB result sets are restricted to the lesser of 100 rows or 1 MB.</strong> Queries with larger result sets are paged, and each result set will contain a token which can be supplied on a subsequent request. Sounds simple.</p>
<p><strong>But the SDK has no method to retrieve the token from the request.</strong> The samples don&#8217;t mention it and the API reference is just a JavaDoc which doesn&#8217;t include much detail. (Although it at least does tell you how to pass the token on the next request). Without a way around this, the PHP SDK is just about useless for SimpleDB in most use cases where you&#8217;d use SimpleDB over a traditional RDBMS like MySQL.</p>
<p>It took some analysis and reverse engineering and eventually I found out how to get to the NextToken value in the response. Here&#8217;s a code snippet. I just realised I set this blog up for photography so I never bothered to put in a decent code highlighter so bear with me.</p>
<p><code><small>$sdb = new AmazonSDB();</small></code></p>
<p><small>$opt = array();<br />
$query = &#8220;SELECT * FROM `opengal_monitor`&#8221;;</small></p>
<p><small>do {<br />
// Send query to SimpleDB<br />
$results = @$sdb-&gt;select($query,$opt);</small></p>
<p><small> // The value for NextToken is found here<br />
$opt['NextToken'] = $results-&gt;body-&gt;SelectResult-&gt;NextToken;</small></p>
<p><small> // Remove all line breaks or subsequent queries will fail<br />
$opt['NextToken'] =<br />
ereg_replace(&#8221;/\r|\n/&#8221;, &#8220;&#8221;, $opt['NextToken']);</small></p>
<p><small> // Put the items in an array<br />
$items = $results-&gt;body-&gt;Item();</small></p>
<p><small> // Do Stuff</small></p>
<p><small>} while ($opt['NextToken']);</small></p>
<p>And that&#8217;s it! Based on this, it would be a trivial task to overload the CFResponse class for SimpleDB Select operations and provide a method that would return the NextToken value in its correct format (i.e. no linebreaks).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2010/10/27/amazon-web-services-simpledb-using-the-php-sdk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>japan trip - day zero</title>
		<link>http://www.vq.id.au/blog/2009/03/22/japan-trip-day-zero/</link>
		<comments>http://www.vq.id.au/blog/2009/03/22/japan-trip-day-zero/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 08:24:05 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Travel]]></category>

		<category><![CDATA[japan trip]]></category>

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

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=143</guid>
		<description><![CDATA[It has now been four months since I left on my trip to Japan. It was an amazing experience, full of all sorts of surprises that we would have never expected. This post details the prelude to the big trip. Some decided to stay at home and play the new WoW expansion, or at the [...]]]></description>
			<content:encoded><![CDATA[<p>It has now been four months since I left on my trip to Japan. It was an amazing experience, full of all sorts of surprises that we would have never expected. This post details the prelude to the big trip. Some decided to stay at home and play the new WoW expansion, or at the very least recover from the <a href="http://photos-h.ak.fbcdn.net/photos-ak-sf2p/v355/2/38/548853878/n548853878_1008215_5880.jpg">big</a> <a href="http://photos-c.ak.fbcdn.net/photos-ak-sf2p/v355/2/38/548853878/n548853878_1008754_3874.jpg">21st</a> <a href="http://photos-f.ak.fbcdn.net/photos-ak-sf2p/v355/2/38/548853878/n548853878_1008781_9267.jpg">party</a> the previous night but a small group of intrepid adventurers decided to forget about sleep and instead head straight to Sydney the morning after.</p>
<p>I was one of those senseless individuals who decided to travel north into the only Australian city that foreigners could name. It was a very early start. <a href="http://vq.id.au/img/2009/03/nottired.jpg">Here&#8217;s a photo of me trying hard to not look tired.</a></p>
<div style="float: left; padding-right: 5px;"><a href="http://www.flickr.com/photos/13233236@N04/3362120547/" title="Melbourne skyline from West Gate Bridge by vincentq, on Flickr"><img src="http://farm4.static.flickr.com/3591/3362120547_4ba5bcba8d_m.jpg" width="240" height="161" alt="Melbourne skyline from West Gate Bridge"/></a><br />
<caption><small>View from the West Gate Bridge</small></caption>
</div>
<p>For anyone who hasn&#8217;t had to use it, Avalon Airport is quite a dump. It&#8217;s far from everything (I don&#8217;t count the western suburbs) and there are no facilities there. But Jetstar flights are very cheap and so are train tickets from the nearby train station. However it does take longer to travel from Avalon to Melbourne&#8217;s south-eastern suburbs than it does to get from Avalon to Sydney.</p>
<p>Eventually we arrived in Sin City where we waited to check in at the Swissotel. Given that it was about 11am, our room wasn&#8217;t ready yet. Waited in the fancy foyer for a while until the room became available. <a href="http://www.flickr.com/photos/13233236@N04/3362979120/">Why are hotel corridors always so tacky?</a></p>
<p>Our view mainly consisted of the base of the <a href="http://www.flickr.com/photos/13233236@N04/3362138639/">Sydney Tower</a>.<br />
<a href="http://www.flickr.com/photos/13233236@N04/3362135875/" title="View from the Swissotel by vincentq, on Flickr"><img src="http://farm4.static.flickr.com/3449/3362135875_9570b15cf7.jpg" width="500" height="334" alt="View from the Swissotel" /></a><br />
<caption><small>Sydney sure uses a lot of sandstone or sandstone-coloured concrete.</small></caption>
<p>After a short bit of recovery, we explored Sydney a bit. Everyone was still tired from the previous night so not much was achieved. It also explains the noticeable shortage of photographs as you have probably noticed by now.</p>
<p><a href="http://www.flickr.com/photos/13233236@N04/3362158545/" title="Sydney monorail by vincentq, on Flickr"><img src="http://farm4.static.flickr.com/3174/3362158545_f0b93cc336.jpg" width="500" height="334" alt="Sydney monorail" /></a><br />
<caption><small>George and Market Streets</small></caption>
<p>Monorails are an epic fail when it comes to actually transporting people, but I guess they sounded like a cool idea back in the 1980s. We ended up walking around the immediate vicinity of the hotel such as the Queen Victoria Building which is quite like the Melbourne Central shopping centre.</p>
<div style="float: right; padding-left: 5px;"><a href="http://www.flickr.com/photos/13233236@N04/3362166603/" title="QVB by vincentq, on Flickr"><img src="http://farm4.static.flickr.com/3649/3362166603_57eb6833d1_m.jpg" width="158" height="240" alt="QVB" /></a><br />
<caption><small>QVB in HDR</small></caption>
</div>
<p>Nothing of note really happened in these few hours. I really need to go back up to Sydney for a bit longer next time and with a local to show me around. We did find a pretty nice steakhouse though, which was to be the last big tasty steak for quite some time.</p>
<p>On the way, we got to make a token crossing of the <a href="http://www.flickr.com/photos/13233236@N04/3362981082/">coathanger</a> on the way there and passed through Circular Quay which has one of the most picturesque railway stations in an urban environment in Australia.<br />
<br clear="all" /></p>
<p><a href="http://www.flickr.com/photos/13233236@N04/3362939532/" title="Sydney Harbour Bridge from Circular Quay station by vincentq, on Flickr"><img src="http://farm4.static.flickr.com/3547/3362939532_06e5202c3f.jpg" width="500" height="335" alt="Sydney Harbour Bridge from Circular Quay station" /></a><br />
<caption><small>Circular Quay station</small></caption>
<p>Oh yeah, later that night, we visited a convenience store where a fight was about to break out because some drunk muzza was complaining about a mobile phone recharge card that didn&#8217;t work.</p>
<hr />
I am now simul-blogging on <a href="http://vq.id.au/blog">Pics or it didn&#8217;t happen!</a> (formerly LimitedIntelligence) and <a href="http://www.cameland.net">Cameland</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2009/03/22/japan-trip-day-zero/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Poor man&#8217;s studio</title>
		<link>http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/</link>
		<comments>http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 16:56:38 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Photography]]></category>

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

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

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

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

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

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

		<category><![CDATA[sunpak 555]]></category>

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=125</guid>
		<description><![CDATA[I originally wrote this post last November but for unknown reasons never published it. I might as well, because I couldn&#8217;t find any instructions for my setup on the internet. It&#8217;s extremely low cost and only uses a couple of flashes.
The setup basically involves my Nikon D80 with an SB-800 attached, plus a Sunpak 555 [...]]]></description>
			<content:encoded><![CDATA[<p>I originally wrote this post last November but for unknown reasons never published it. I might as well, because I couldn&#8217;t find any instructions for my setup on the internet. It&#8217;s extremely low cost and only uses a couple of flashes.</p>
<p>The setup basically involves my Nikon D80 with an SB-800 attached, plus a Sunpak 555 connected to the SB-800&#8217;s sync port. There is nothing else fancy about it. The white background is just a pile of A3 paper spread out over my desk.</p>
<p>The most confusing part is the Sunpak flash. Mine is second-hand and there is very little documentation regarding how to actually operate it and whether it plays nice with my other gear. Well, it does. It has two ways of syncing to a camera: it has a weird proprietary sync port which requires a cable that I can&#8217;t find anywhere, or via hot-shoe or a regular sync cable using the STD-1D module. That&#8217;s the cheapest module and is a lot cheaper than the various TTL modules.</p>
<p>Anyway, I point one flash at the subject and the other at the ceiling. Then it&#8217;s just a matter of trial and error to get the flash exposure right. After a few minutes, I was producing great quality product shots which I never thought would have been so simple. The only key is to overexpose the flash a bit so that the overlapping edges of the paper blow out and disappear while keeping the subject properly lit. Everything is in manual mode.</p>
<p>Here are some samples. Sorry, I&#8217;ll find some more interesting (and a greater variety of) subjects next time.<br />

<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1582/' title='dsc_1582'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1582-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1657/' title='dsc_1657'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1657-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1689/' title='dsc_1689'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1689-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1699/' title='dsc_1699'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1699-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1703/' title='dsc_1703'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1703-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1705/' title='dsc_1705'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1705-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1707/' title='dsc_1707'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1707-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1708/' title='dsc_1708'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1708-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1710/' title='dsc_1710'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1710-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1721/' title='dsc_1721'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1721-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1737/' title='dsc_1737'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1737-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/dsc_1747/' title='dsc_1747'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/11/dsc_1747-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
</p>
<p><strong>Calculating flash exposure</strong></p>
<ul>
<li>Shutter speed is totally irrelevant because all light is coming from the flashes.</li>
<li>Aperture can be freely used to adjust depth of field and overall exposure, no need to worry about background exposure because there is none.</li>
<li>ISO - no need to explain that</li>
<li>Flash exposures - normally I start at max for both and reduce them until I get a good balance. The direct (non-bounced) flash can be turned down a bit to reduce shadows.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2009/03/12/poor-mans-studio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gallery Works!</title>
		<link>http://www.vq.id.au/blog/2009/01/15/gallery-works/</link>
		<comments>http://www.vq.id.au/blog/2009/01/15/gallery-works/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 18:55:14 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vq.id.au/blog/2009/01/15/gallery-works/</guid>
		<description><![CDATA[Well, I realised that developing a full featured gallery was never going to succeed because I keep changing the plans, so I decided to take another development approach. Make the pages that everyone sees first and leave out all the other features.
This latest iteration of the gallery is only able to display pictures and very [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I realised that developing a full featured gallery was never going to succeed because I keep changing the plans, so I decided to take another development approach. Make the pages that everyone sees first and leave out all the other features.</p>
<p>This latest iteration of the gallery is only able to display pictures and very crudely search the keywords gleaned from the metadata. But that&#8217;s all I need.</p>
<p>There isn&#8217;t really any home page to direct you to, so you&#8217;ll just have to do a keyword search for <a href="http://vq.id.au/image/keyword/melbourne">Melbourne</a>. The list of keywords is displayed at the bottom of the search page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2009/01/15/gallery-works/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows fail at logic</title>
		<link>http://www.vq.id.au/blog/2008/12/28/windows-fail-at-logic/</link>
		<comments>http://www.vq.id.au/blog/2008/12/28/windows-fail-at-logic/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 10:39:02 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

		<category><![CDATA[windows media centre]]></category>

		<guid isPermaLink="false">http://www.vq.id.au/blog/2008/12/28/windows-fail-at-logic/</guid>
		<description><![CDATA[
Microsoft has all kinds of logical reasons behind making things not work.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/12/mediacentrefail.png"><img class="alignnone size-full wp-image-129" title="mediacentrefail" src="http://www.vq.id.au/blog/wp-content/uploads/2008/12/mediacentrefail.png" alt="mediacentrefail" style="width: 100%" /></a></p>
<p>Microsoft has all kinds of logical reasons behind making things not work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2008/12/28/windows-fail-at-logic/feed/</wfw:commentRss>
		</item>
		<item>
		<title>lawl</title>
		<link>http://www.vq.id.au/blog/2008/12/13/lawl/</link>
		<comments>http://www.vq.id.au/blog/2008/12/13/lawl/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 07:57:18 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=127</guid>
		<description><![CDATA[I&#8217;m still alive. And yes, I really should post something. But I&#8217;m far too lazy.
Meanwhile, check out some of these other blogs:
Euphoric Trance
Rusty - Just Another Blog
Cameland
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still alive. And yes, I really should post something. But I&#8217;m far too lazy.</p>
<p>Meanwhile, check out some of these other blogs:</p>
<p><a href="http://www.euphorictrance.com">Euphoric Trance</a></p>
<p><a href="http://blog.rsh.id.au">Rusty - Just Another Blog</a></p>
<p><a href="http://www.cameland.net">Cameland</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2008/12/13/lawl/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Atop Mt Dandenong</title>
		<link>http://www.vq.id.au/blog/2008/04/26/mt-dandenong/</link>
		<comments>http://www.vq.id.au/blog/2008/04/26/mt-dandenong/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 02:33:15 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<category><![CDATA[long distance]]></category>

		<category><![CDATA[mt dandenong]]></category>

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

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

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=105</guid>
		<description><![CDATA[Bored shitless on Anzac Day, so what better to do than head up to the top of Mt Dandenong once again - this time circumventing the entry fee at Sky High and just going down a steep walking track in the dark.
Click on the photos to open a larger version.
Here&#8217;s the panorama I took, spot [...]]]></description>
			<content:encoded><![CDATA[<p>Bored shitless on Anzac Day, so what better to do than head up to the top of Mt Dandenong once again - this time circumventing the entry fee at Sky High and just going down a steep walking track in the dark.</p>
<p>Click on the photos to open a larger version.</p>
<p>Here&#8217;s the panorama I took, spot the <a href="http://en.wikipedia.org/wiki/Light_pollution">light pollution</a>.</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/04/mt-dandy-cc-3000.jpg"><img class="aligncenter size-full wp-image-106" title="Mt Dandenong Panorama" src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/mt-dandy-cc-3000.jpg" alt="" width="500" height="91" /></a></p>
<p>Close-up of the city skyline, 34km away using a 200mm lens.</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_4228.jpg"><img class="aligncenter size-medium wp-image-107" title="City skyline from Mt Dandenong" src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_4228-500x334.jpg" alt="" width="500" height="334" /></a></p>
<p>Same photo, cropped and annotated:</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/04/cbd-annotated-large.jpg"><img class="aligncenter size-full wp-image-108" title="cbd-annotated-small" src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/cbd-annotated-tiny.jpg" alt="" width="500" height="140" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2008/04/26/mt-dandenong/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Too much camera gear.</title>
		<link>http://www.vq.id.au/blog/2008/04/22/too-much-camera-gear/</link>
		<comments>http://www.vq.id.au/blog/2008/04/22/too-much-camera-gear/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 03:52:03 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=103</guid>
		<description><![CDATA[Hmm, I seem to have gathered a decent amount of stuff over the years.
(crappy picture yes, but obviously all my good cameras are in the photo)
Left to right:
Nikon AF Nikkor 70-300mm f/4-5.6G
Nikon AF Nikkor 28-80mm f/3.3-5.6G
Nikon D80, with:
Nikon AF-S DX VR Nikkor 18-200mm f/3.5-5.6G IF-ED
Nikon F90X, with:
Nikon SB-600 (broken locking pin, permanently attached), and
Nikon AF [...]]]></description>
			<content:encoded><![CDATA[<p>Hmm, I seem to have gathered a decent amount of stuff over the years.<a rel="attachment wp-att-104" href="http://www.vq.id.au/blog/2008/04/22/too-much-camera-gear/cameras/"><img class="aligncenter size-medium wp-image-104" title="A lot of cameras" src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/cameras-500x253.jpg" alt="" width="500" height="253" /></a></p>
<p>(crappy picture yes, but obviously all my good cameras are in the photo)</p>
<p>Left to right:</p>
<p>Nikon AF Nikkor 70-300mm f/4-5.6G<br />
Nikon AF Nikkor 28-80mm f/3.3-5.6G</p>
<p>Nikon D80, with:<br />
Nikon AF-S DX VR Nikkor 18-200mm f/3.5-5.6G IF-ED</p>
<p>Nikon F90X, with:<br />
Nikon SB-600 (broken locking pin, permanently attached), and<br />
Nikon AF Nikkor 50mm f/1.8D</p>
<p>Nikon D70, with:<br />
Tokina 12-24mm f/4 DX</p>
<p>Bronica Zenzanon 75mm f/2.8 EII<br />
Sunpak Auto 555 (need to get coupling modules for Nikon/Bronica)</p>
<p>Bronica ETR-SI, with:<br />
Bronica Zenzanon 150mm f/3.5 EC<br />
220 Roll Film Holder</p>
<p>Spare 200 roll film holder</p>
<p>Polaroid 360.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2008/04/22/too-much-camera-gear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fed Square, Southbank and Surrounds at Night (11/3)</title>
		<link>http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/</link>
		<comments>http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 09:34:23 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[Photography]]></category>

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

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

		<guid isPermaLink="false">http://www.vq.id.au/blog/?p=50</guid>
		<description><![CDATA[This is just testing the new gallery functionality in Wordpress 2.5. If this works, I won&#8217;t have to develop my custom gallery.
]]></description>
			<content:encoded><![CDATA[<p>This is just testing the new gallery functionality in Wordpress 2.5. If this works, I won&#8217;t have to develop my custom gallery.</p>

<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2873/' title='dsc_2873'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2873-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2877/' title='dsc_2877'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2877-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2878/' title='dsc_2878'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2878-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2882/' title='dsc_2882'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2882-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2889/' title='dsc_2889'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2889-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2896/' title='dsc_2896'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2896-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3050/' title='dsc_3050'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3050-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3053/' title='dsc_3053'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3053-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3060/' title='dsc_3060'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3060-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3062/' title='dsc_3062'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3062-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3063/' title='dsc_3063'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3063-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3074/' title='dsc_3074'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3074-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2898/' title='dsc_2898'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2898-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2900/' title='dsc_2900'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2900-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2902/' title='dsc_2902'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2902-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2904/' title='dsc_2904'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2904-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2910/' title='dsc_2910'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2910-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2916/' title='dsc_2916'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2916-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2921/' title='dsc_2921'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2921-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2928/' title='dsc_2928'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2928-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2930/' title='dsc_2930'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2930-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2931/' title='dsc_2931'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2931-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2932/' title='dsc_2932'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2932-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2933/' title='dsc_2933'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2933-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2934/' title='dsc_2934'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2934-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2940/' title='dsc_2940'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2940-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2945/' title='dsc_2945'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2945-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2994/' title='dsc_2994'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2994-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2996/' title='dsc_2996'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2996-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2998/' title='dsc_2998'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2998-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3001/' title='dsc_3001'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3001-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3013/' title='dsc_3013'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3013-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3025/' title='dsc_3025'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3025-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3026/' title='dsc_3026'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3026-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3027/' title='dsc_3027'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3027-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3042/' title='dsc_3042'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3042-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3043/' title='dsc_3043'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3043-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3046/' title='dsc_3046'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3046-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3063_4_5/' title='dsc_3063_4_5'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3063_4_5-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2878_79_80/' title='dsc_2878_79_80'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2878_79_80-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2900_1_2/' title='dsc_2900_1_2'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2900_1_2-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2906_7_8/' title='dsc_2906_7_8'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2906_7_8-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2912_3_4/' title='dsc_2912_3_4'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2912_3_4-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2921_2_3/' title='dsc_2921_2_3'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2921_2_3-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2934_5_6/' title='dsc_2934_5_6'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2934_5_6-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2937_8_9/' title='dsc_2937_8_9'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2937_8_9-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2943_4_5_6_7_8/' title='dsc_2943_4_5_6_7_8'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2943_4_5_6_7_8-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2949_50_51/' title='dsc_2949_50_51'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2949_50_51-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_2952_3_4/' title='dsc_2952_3_4'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_2952_3_4-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3049_50_51/' title='dsc_3049_50_51'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3049_50_51-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3052_3_4/' title='dsc_3052_3_4'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3052_3_4-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/dsc_3055_6_7/' title='dsc_3055_6_7'><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/04/dsc_3055_6_7-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2008/04/06/fed-square-southbank-and-surrounds-at-night-113/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Unpacking Jacob&#8217;s Polaroid</title>
		<link>http://www.vq.id.au/blog/2008/02/29/unpacking-jacobs-polaroid/</link>
		<comments>http://www.vq.id.au/blog/2008/02/29/unpacking-jacobs-polaroid/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 00:00:34 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
		
		<category><![CDATA[People]]></category>

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

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

		<category><![CDATA[polaroid 360]]></category>

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

		<category><![CDATA[vintage camera]]></category>

		<guid isPermaLink="false">http://www.vq.id.au/blog/2008/02/29/unpacking-jacobs-polaroid/</guid>
		<description><![CDATA[The awesomeness of my own vintage Polaroid convinced Jacob to also purchase a 360 - here are the unpacking photos.

35 year old packaging yay:


30 year old batteries ftw:

Fresh batteries, $20 of them.



]]></description>
			<content:encoded><![CDATA[<p>The awesomeness of my own vintage Polaroid convinced Jacob to also purchase a 360 - here are the unpacking photos.</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1523.jpg" title="dsc_1523.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1523.thumbnail.jpg" alt="dsc_1523.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1524.jpg" title="dsc_1524.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1524.thumbnail.jpg" alt="dsc_1524.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1525.jpg" title="dsc_1525.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1525.thumbnail.jpg" alt="dsc_1525.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1526.jpg" title="dsc_1526.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1526.thumbnail.jpg" alt="dsc_1526.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1527.jpg" title="dsc_1527.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1527.thumbnail.jpg" alt="dsc_1527.jpg" /></a></p>
<p>35 year old packaging yay:</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1531.jpg" title="dsc_1531.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1531.jpg" alt="dsc_1531.jpg" /></a></p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1532.jpg" title="dsc_1532.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1532.thumbnail.jpg" alt="dsc_1532.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1535.jpg" title="dsc_1535.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1535.thumbnail.jpg" alt="dsc_1535.jpg" /></a></p>
<p>30 year old batteries ftw:</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1538_1.jpg" title="dsc_1538_1.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1538_1.jpg" alt="dsc_1538_1.jpg" /></a></p>
<p>Fresh batteries, $20 of them.</p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1541_1.jpg" title="dsc_1541_1.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1541_1.thumbnail.jpg" alt="dsc_1541_1.jpg" /></a></p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1542.jpg" title="dsc_1542.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1542.jpg" alt="dsc_1542.jpg" /></a></p>
<p><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1544.jpg" title="dsc_1544.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1544.thumbnail.jpg" alt="dsc_1544.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1546.jpg" title="dsc_1546.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1546.thumbnail.jpg" alt="dsc_1546.jpg" /></a><a href="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1555.jpg" title="dsc_1555.jpg"><img src="http://www.vq.id.au/blog/wp-content/uploads/2008/02/dsc_1555.thumbnail.jpg" alt="dsc_1555.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vq.id.au/blog/2008/02/29/unpacking-jacobs-polaroid/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
