<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dale&#039;s Random Ramblings ;-)</title>
	<atom:link href="http://blog.dale.id.au/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.dale.id.au</link>
	<description>I reject your reality and substitute my own</description>
	<lastBuildDate>Wed, 01 May 2013 12:12:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<atom:link rel="search"
           href="http://blog.dale.id.au/opensearch"
           type="application/opensearchdescription+xml"
           title="Content Search" />		<item>
		<title>Kismet-2011-01-R1 suidroot not working under Debian</title>
		<link>http://blog.dale.id.au/archives/1652</link>
		<comments>http://blog.dale.id.au/archives/1652#comments</comments>
		<pubDate>Sun, 10 Mar 2013 11:00:10 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Kismet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1652</guid>
		<description><![CDATA[This is a pretty easy fix as follows # chmod u-w /usr/bin/kismet* # chmod u+s,o-r /usr/bin/kismet_capture Now you should be able to run kismet now under standard user accounts.]]></description>
				<content:encoded><![CDATA[<p>This is a pretty easy fix as follows</p>
<blockquote><p>
# chmod u-w /usr/bin/kismet*<br />
# chmod u+s,o-r /usr/bin/kismet_capture
</p></blockquote>
<p>Now you should be able to run kismet now under standard user accounts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1652/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to PPTPD (PopTop)</title>
		<link>http://blog.dale.id.au/archives/1643</link>
		<comments>http://blog.dale.id.au/archives/1643#comments</comments>
		<pubDate>Fri, 08 Mar 2013 14:23:30 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[WiFi]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1643</guid>
		<description><![CDATA[Below is a way to connect your clients like smartphone, laptop, etc to the Internets while you are out and about connecting to random WiFi networks etc like Mac Donalds, and to help protect yourself while on them unknown networks with unknown users Install mppe kernel support # modprobe ppp-compress-18 Install PPTPD # apt-get install [...]]]></description>
				<content:encoded><![CDATA[<p>Below is a way to connect your clients like smartphone, laptop, etc to the Internets while you are out and about connecting to random WiFi networks etc like Mac Donalds, and to help protect yourself while on them unknown networks with unknown users</p>
<p>Install mppe kernel support</p>
<blockquote><p># modprobe ppp-compress-18</p></blockquote>
<p>Install PPTPD</p>
<blockquote><p># apt-get install pptpd</p></blockquote>
<p>Configure IP Address Range<br />
Edit the file /etc/pptpd.conf for the IP address range</p>
<blockquote><p>localip 172.16.100.1<br />
remoteip 172.16.100.200-250</p></blockquote>
<p>restart pptpd to activate changes</p>
<blockquote><p># invoke-rc.d pptpd restart</p></blockquote>
<p>Adding users accounts<br />
Edit the file /etc/ppp/chap-secrets</p>
<blockquote><p>test_user  *  lamepassword   *</p></blockquote>
<p>The above will give you a working PPTPD where your able to connect to securely but you&#8217;ll most probably can&#8217;t connect to the outside network.</p>
<p>To allow you PPTP clients access to the big bad internet</p>
<p>Enable IPv4 forwarding</p>
<blockquote><p>echo 1 > /proc/sys/net/ipv4/ip_forward</p></blockquote>
<p>Finally configure your iptables</p>
<blockquote><p>iptables -A INPUT -i ppp+ -j ACCEPT<br />
iptables -A OUTPUT -o ppp+ -j ACCEPT<br />
iptables -A POSTROUTING -t nat -o eth0 -j MASQUERADE<br />
iptables -A POSTROUTING -t nat -o ppp+ -j MASQUERADE</p></blockquote>
<p>If you want all traffic to go through the PPTP connection<br />
Edit the file /etc/ppp/pptpd-options and change</p>
<blockquote><p># Debian: do not replace the default route<br />
nodefaultroute</p></blockquote>
<p>to</p>
<blockquote><p># Debian: do not replace the default route<br />
#nodefaultroute</p></blockquote>
<p>and don&#8217;t forget to restart pptpd <img src='http://blog.dale.id.au/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Reference<br />
<a href="http://poptop.sourceforge.net/dox/debian-howto.phtml" target="_blank">Debian pptpd HOWTO</a><br />
<a href="http://www.ipchicken.com/" target="_blank">IP Chicken</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1643/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adelaide Mini Maker Faire</title>
		<link>http://blog.dale.id.au/archives/1640</link>
		<comments>http://blog.dale.id.au/archives/1640#comments</comments>
		<pubDate>Fri, 08 Mar 2013 10:02:05 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Adelaide Mini Maker Faire]]></category>
		<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Craft]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1640</guid>
		<description><![CDATA[WHAT IS A MINI MAKER FAIRE? A Maker Faire is where makers of all kinds get together and show what they can do. Adelaide Mini Maker Faire will have all kinds of demonstrations from 3D printing to blacksmithing and knitting to digital fabrication and everything in between. Maker Faires feature innovation and experimentation across the [...]]]></description>
				<content:encoded><![CDATA[<p>WHAT IS A MINI MAKER FAIRE?<br />
A Maker Faire is where makers of all kinds get together and show what they can do. Adelaide Mini Maker Faire will have all kinds of demonstrations from 3D printing to blacksmithing and knitting to digital fabrication and everything in between.</p>
<p>Maker Faires feature innovation and experimentation across the spectrum of science, engineering, art, performance and craft.</p>
<p>Maker Faire is part of a growing DIY local and global movement of people who look at things a little differently and who just might spark the next generation of scientists, engineers and makers.</p>
<p>Date: Saturday 6 April 2013<br />
Venue: Adelaide College of Arts 39 Light Square, Adelaide<br />
Time: 10.00am to 6.00pm</p>
<p>Official website: <a href="http://www.makerfaireadelaide.com" target="_blank">http://www.makerfaireadelaide.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1640/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Air-Stream hosted Foundation Licence Course</title>
		<link>http://blog.dale.id.au/archives/1636</link>
		<comments>http://blog.dale.id.au/archives/1636#comments</comments>
		<pubDate>Mon, 04 Mar 2013 15:08:40 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[Examinations]]></category>
		<category><![CDATA[Foundation Licence]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1636</guid>
		<description><![CDATA[Following the many expressions of interest from our members, we have now arranged the weekend 23rd and 24th of March for another Foundation Licence training and examination course. Thanks again go to Paul Hoffman VK5PH for taking the time to organise and host this event. Location: Parkside Primary School Date: 23rd &#038; 24th of March [...]]]></description>
				<content:encoded><![CDATA[<blockquote><p>
Following the many expressions of interest from our members, we have now arranged the weekend 23rd and 24th of March for another Foundation Licence training and examination course. Thanks again go to Paul Hoffman VK5PH for taking the time to organise and host this event.</p></blockquote>
<p><strong>Location:</strong> Parkside Primary School<br />
<strong>Date:</strong> 23rd &#038; 24th of March 2013<br />
<strong>Time:</strong> 0900-1700 hrs</p>
<p><a href="http://www.air-stream.org/events/amateur-radio-foundation-course-2013" target="_blank">For further details and making a booking</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1636/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>udev rules for ADB</title>
		<link>http://blog.dale.id.au/archives/1631</link>
		<comments>http://blog.dale.id.au/archives/1631#comments</comments>
		<pubDate>Sat, 02 Mar 2013 13:18:55 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[ADB]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[udev]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1631</guid>
		<description><![CDATA[# nano /etc/udev/rules.d/51-android.rules # chmod +x /etc/udev/rules.d/51-android.rules Reference: Using Hardware Devices]]></description>
				<content:encoded><![CDATA[<blockquote><p>
# nano /etc/udev/rules.d/51-android.rules
</p></blockquote>
<pre class="brush: plain; title: Example; notranslate">
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0502&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0B05&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;413C&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0489&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;091E&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;18D1&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;109B&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0BB4&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;12D1&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;24E3&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;2116&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0482&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;17EF&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;1004&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;22B8&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0409&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;2080&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0955&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;2257&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;10A9&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;1D4D&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0471&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;04DA&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;05C6&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;1F53&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;04E8&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;04DD&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0FCE&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;2340&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;0930&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;19D2&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;
</pre>
<blockquote><p>
# chmod +x /etc/udev/rules.d/51-android.rules
</p></blockquote>
<p><strong>Reference:</strong><br />
<a href="https://developer.android.com/tools/device.html" target="_blank">Using Hardware Devices</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1631/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foundation Licence Course and all levels of assessment</title>
		<link>http://blog.dale.id.au/archives/1627</link>
		<comments>http://blog.dale.id.au/archives/1627#comments</comments>
		<pubDate>Sat, 16 Feb 2013 00:23:01 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[AHARS]]></category>
		<category><![CDATA[Examinations]]></category>
		<category><![CDATA[Foundation Licence]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1627</guid>
		<description><![CDATA[When: 16th and 17th March 2013 at 9.00 am Where: “The Shack”, Behind Blackwood Girl Guides Hall Hannaford Road Blackwood SA 5052 Contact: Sasi Nayar (VK5SN) 0417 858 547 vk5sn@wia.org.au refer to flier for more details References: AHARS]]></description>
				<content:encoded><![CDATA[<p><strong>When:</strong><br />
16th and 17th March 2013 at 9.00 am</p>
<p><strong>Where:</strong><br />
“The Shack”, Behind Blackwood Girl Guides Hall<br />
Hannaford Road<br />
Blackwood<br />
SA 5052</p>
<p><strong>Contact:</strong><br />
Sasi Nayar (VK5SN)<br />
0417 858 547<br />
vk5sn@wia.org.au</p>
<p>refer to <a href="http://ahars.com.au/documents/foundation_exam_mar2012.pdf">flier</a> for more details</p>
<p><strong>References:</strong><br />
<a href="http://ahars.com.au/">AHARS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1627/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Festival of History</title>
		<link>http://blog.dale.id.au/archives/1622</link>
		<comments>http://blog.dale.id.au/archives/1622#comments</comments>
		<pubDate>Sat, 09 Feb 2013 03:19:46 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Festival]]></category>
		<category><![CDATA[Festival of History]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Old Reynella]]></category>
		<category><![CDATA[Re-enactments]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1622</guid>
		<description><![CDATA[About: The Old Reynella Festival of History includes re-enactors in uniforms and historic clothing, the firing of old cannon and mock battles and huge model soldier re-enactment of the Battle of Leipzig. There will be a major street parade featuring vintage cars, old military vehicles and bands When: Saturday 9th Sunday 10th March 2013 Where: [...]]]></description>
				<content:encoded><![CDATA[<p><strong>About:</strong><br />
The Old Reynella Festival of History includes re-enactors in uniforms and historic clothing, the firing of old cannon and mock battles and huge model soldier re-enactment of the Battle of Leipzig. There will be a major street parade featuring vintage cars, old military vehicles and bands</p>
<p><strong>When:</strong><br />
Saturday 9th Sunday 10th March 2013</p>
<p><strong>Where:</strong><br />
Old Reynella South Australia</p>
<p>Attached is a pdf explaining the whole event, the groups participating, and some the history of Old Reynella.<br />
<a href="http://blog.dale.id.au/wp-content/uploads/2013/02/2013_Festival_of_History_Nov_V6.pdf">2013 Festival of History</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1622/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acceleration of an object</title>
		<link>http://blog.dale.id.au/archives/1591</link>
		<comments>http://blog.dale.id.au/archives/1591#comments</comments>
		<pubDate>Thu, 07 Feb 2013 00:11:27 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Physics]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1591</guid>
		<description><![CDATA[AIM: Estimate the acceleration of an object due to gravitational force. Equipment: mass (weights) ticker tape ticker machine PSU tape measure sticky tape Method: Connect sticky tape to one end the ticker taper and thread the other end through the ticker tape machine. Connect the ticker tape machine to the AC connectors on the PSU [...]]]></description>
				<content:encoded><![CDATA[<p><strong>AIM:</strong><br />
Estimate the acceleration of an object due to gravitational force.</p>
<p><strong>Equipment:</strong></p>
<ol>
<li>mass (weights)</li>
<li>ticker tape</li>
<li>ticker machine</li>
<li>PSU</li>
<li>tape measure</li>
<li>sticky tape</li>
</ol>
<p><strong>Method:</strong></p>
<ol>
<li>Connect sticky tape to one end the ticker taper and thread the other end through the ticker tape machine.</li>
<li>Connect the ticker tape machine to the AC connectors on the PSU and set the PSU to ~6VAC.</li>
<li>Connect weight (mass) to the end of the ticker tape with the sticky tape on and turn on PSU and drop mass from min. of one meter.</li>
<li>Check for dots made by the ticker machine and pic a section of ~500mm of ticker tape and measure between the first and last dots in the section, then count up the intervals between the dots.</li>
<li>Work out the acceleration now by doubling the intervals and divide by 100 to get a decimal value (t)</li>
</ol>
<p>using the formula  <img src="//s0.wp.com/latex.php?latex=a%3D%7B%5Cfrac%7B2s%7D%7Bt%5E2%7D%7D&#038;bg=111111&#038;fg=989eae&#038;s=2" alt="a={&#92;frac{2s}{t^2}}" title="a={&#92;frac{2s}{t^2}}" class="latex" /></p>
<p>S = length of tape section</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1591/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Holidays</title>
		<link>http://blog.dale.id.au/archives/1583</link>
		<comments>http://blog.dale.id.au/archives/1583#comments</comments>
		<pubDate>Mon, 24 Dec 2012 00:48:49 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[/dev/urandom]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1583</guid>
		<description><![CDATA[I&#8217;d like to wish you all a happy holidays and happy new year for 2013. Please take care, and enjoy your great hobbies.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;d like to wish you all a happy holidays and happy new year for 2013. Please take care, and enjoy your great hobbies.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1583/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EARC Crystal set compitition</title>
		<link>http://blog.dale.id.au/archives/1545</link>
		<comments>http://blog.dale.id.au/archives/1545#comments</comments>
		<pubDate>Thu, 20 Dec 2012 07:28:32 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[Crystal Set]]></category>
		<category><![CDATA[EARC]]></category>
		<category><![CDATA[MVPS]]></category>
		<category><![CDATA[The National Military Vehicle Museum]]></category>
		<category><![CDATA[VK5LZ]]></category>

		<guid isPermaLink="false">http://blog.dale.id.au/?p=1545</guid>
		<description><![CDATA[Last night the 19th Dec. the EARC had its tech night at The National Military Vehicle Museum at Edinburgh Parks and here are some the images from the night Crystal Receiver judging. The prize was donated by Aztronics which was a solder fume extractor that was won by Chris VK5ZST. I also like to give [...]]]></description>
				<content:encoded><![CDATA[<p>Last night the 19th Dec. the <a href="http://earc.org.au/" target="_blank">EARC</a> had its tech night at <a href="http://www.military-vehicle-museum.org.au/" target="_blank">The National Military Vehicle Museum</a> at Edinburgh Parks and here are some the images from the night Crystal Receiver judging. The prize was donated by <a href="http://www.aztronics.com.au/" target="_blank">Aztronics</a> which was a solder fume extractor that was won by Chris VK5ZST.</p>
<p>I also like to give a big thanks for Paul VK5VCO who arrange the crystal receiver comp, the prize, and the doing the judging. Also a big thanks to the <a href="http://www.military-vehicle-museum.org.au/" target="_blank">Military Vehicle Preservation Society</a> (MVPS) for the Museum tour and venue for the crystal set judging. And also big thanks to all that entered comp and turned up for the night.</p>
<p>Enjoy the pics I took from the night<br />

<a href='http://blog.dale.id.au/archives/1545/img_1848' title='IMG_1848'><img data-attachment-id="1547" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1848.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944872&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;21&quot;,&quot;iso&quot;:&quot;500&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1848" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1848-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1848-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1848-150x150.jpg" class="attachment-thumbnail" alt="IMG_1848" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1849' title='IMG_1849'><img data-attachment-id="1548" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1849.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944883&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1849" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1849-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1849-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1849-150x150.jpg" class="attachment-thumbnail" alt="IMG_1849" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1850' title='IMG_1850'><img data-attachment-id="1549" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1850.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944890&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;28&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1850" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1850-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1850-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1850-150x150.jpg" class="attachment-thumbnail" alt="IMG_1850" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1851' title='IMG_1851'><img data-attachment-id="1550" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1851.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944902&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;320&quot;,&quot;shutter_speed&quot;:&quot;0.025&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1851" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1851-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1851-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1851-150x150.jpg" class="attachment-thumbnail" alt="IMG_1851" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1852' title='IMG_1852'><img data-attachment-id="1551" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1852.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944909&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;24&quot;,&quot;iso&quot;:&quot;640&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1852" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1852-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1852-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1852-150x150.jpg" class="attachment-thumbnail" alt="IMG_1852" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1853' title='IMG_1853'><img data-attachment-id="1552" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1853.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944920&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;33&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1853" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1853-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1853-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1853-150x150.jpg" class="attachment-thumbnail" alt="IMG_1853" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1854' title='IMG_1854'><img data-attachment-id="1553" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1854.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944924&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;32&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1854" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1854-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1854-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1854-150x150.jpg" class="attachment-thumbnail" alt="IMG_1854" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1855' title='IMG_1855'><img data-attachment-id="1554" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1855.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944931&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;44&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1855" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1855-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1855-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1855-150x150.jpg" class="attachment-thumbnail" alt="IMG_1855" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1856' title='IMG_1856'><img data-attachment-id="1555" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1856.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944942&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1856" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1856-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1856-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1856-150x150.jpg" class="attachment-thumbnail" alt="IMG_1856" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1857' title='IMG_1857'><img data-attachment-id="1556" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1857.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944952&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;28&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1857" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1857-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1857-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1857-150x150.jpg" class="attachment-thumbnail" alt="IMG_1857" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1858' title='IMG_1858'><img data-attachment-id="1557" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1858.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944968&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1858" data-image-description="&lt;p&gt;The prize donated by Aztronics&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1858-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1858-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1858-150x150.jpg" class="attachment-thumbnail" alt="The prize donated by Aztronics" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1859' title='IMG_1859'><img data-attachment-id="1558" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1859.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944975&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;30&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1859" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1859-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1859-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1859-150x150.jpg" class="attachment-thumbnail" alt="IMG_1859" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1860' title='IMG_1860'><img data-attachment-id="1559" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1860.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944985&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;25&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1860" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1860-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1860-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1860-150x150.jpg" class="attachment-thumbnail" alt="IMG_1860" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1861' title='IMG_1861'><img data-attachment-id="1560" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1861.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944998&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1861" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1861-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1861-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1861-150x150.jpg" class="attachment-thumbnail" alt="IMG_1861" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1862' title='IMG_1862'><img data-attachment-id="1561" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1862.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355946016&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1862" data-image-description="&lt;p&gt;Paul (VK5VCO) judging the receivers&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1862-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1862-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1862-150x150.jpg" class="attachment-thumbnail" alt="Paul (VK5VCO) judging the receivers" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1863' title='IMG_1863'><img data-attachment-id="1562" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1863.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355946706&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;21&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1863" data-image-description="&lt;p&gt;Paul (VK5VCO) judging the receivers&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1863-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1863-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1863-150x150.jpg" class="attachment-thumbnail" alt="Paul (VK5VCO) judging the receivers" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1864' title='IMG_1864'><img data-attachment-id="1563" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1864.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355948811&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;23&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1864" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1864-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1864-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1864-150x150.jpg" class="attachment-thumbnail" alt="IMG_1864" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1865' title='IMG_1865'><img data-attachment-id="1564" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1865.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355948820&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;33&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1865" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1865-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1865-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1865-150x150.jpg" class="attachment-thumbnail" alt="IMG_1865" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1866' title='IMG_1866'><img data-attachment-id="1565" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1866.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355949192&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1866" data-image-description="&lt;p&gt;Paul (VK5VCO) judging the receivers&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1866-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1866-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1866-150x150.jpg" class="attachment-thumbnail" alt="I am sure I can hear something..." /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1868' title='IMG_1868'><img data-attachment-id="1566" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1868.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953518&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;1600&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1868" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1868-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1868-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1868-150x150.jpg" class="attachment-thumbnail" alt="IMG_1868" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1869' title='IMG_1869'><img data-attachment-id="1567" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1869.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953569&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;40&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1869" data-image-description="&lt;p&gt;The winning receiver by VK5ZST&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1869-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1869-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1869-150x150.jpg" class="attachment-thumbnail" alt="The winning receiver by VK5ZST" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1870' title='IMG_1870'><img data-attachment-id="1568" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1870.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953651&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;40&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1870" data-image-description="&lt;p&gt;The winning receiver by VK5ZST&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1870-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1870-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1870-150x150.jpg" class="attachment-thumbnail" alt="The winning receiver by VK5ZST" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1871' title='IMG_1871'><img data-attachment-id="1569" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1871.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953691&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;32&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1871" data-image-description="&lt;p&gt;The winning receiver by VK5ZST&lt;/p&gt;
" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1871-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1871-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1871-150x150.jpg" class="attachment-thumbnail" alt="The winning receiver by VK5ZST" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1872' title='IMG_1872'><img data-attachment-id="1570" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1872.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953700&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;32&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1872" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1872-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1872-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1872-150x150.jpg" class="attachment-thumbnail" alt="IMG_1872" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1873' title='IMG_1873'><img data-attachment-id="1571" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1873.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953717&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;27&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1873" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1873-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1873-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1873-150x150.jpg" class="attachment-thumbnail" alt="IMG_1873" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1874' title='IMG_1874'><img data-attachment-id="1572" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1874.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953727&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;29&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1874" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1874-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1874-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1874-150x150.jpg" class="attachment-thumbnail" alt="IMG_1874" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1875' title='IMG_1875'><img data-attachment-id="1573" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1875.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4.5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355953797&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;32&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1875" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1875-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1875-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1875-150x150.jpg" class="attachment-thumbnail" alt="IMG_1875" /></a>
<a href='http://blog.dale.id.au/archives/1545/img_1847' title='IMG_1847'><img data-attachment-id="1546" data-orig-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1847.jpg" data-orig-size="1280,853" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 1100D&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1355944861&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;18&quot;,&quot;iso&quot;:&quot;800&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="IMG_1847" data-image-description="" data-medium-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1847-300x199.jpg" data-large-file="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1847-1024x682.jpg" width="150" height="150" src="http://blog.dale.id.au/wp-content/uploads/2012/12/IMG_1847-150x150.jpg" class="attachment-thumbnail" alt="IMG_1847" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dale.id.au/archives/1545/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
