<?xml version="1.0"?>
<rss version="2.0">
<channel>
	<title>This one time, at bandcamp</title>
	<link>http://bandcamp.tv/blog/</link>
	<description>Random machinations from the brain of Greeno</description>
	<language>en</language>
	<managingEditor>tgreen@bandcamp.tv</managingEditor>
	<webMaster>tgreen@bandcamp.tv</webMaster>
	<!-- FIXME
	<image>
		<url>http://www.gnome.org/~jdub/img/jdub-64.png</url>
		<title>This one time, at bandcamp</title>
		<link>http://bandcamp.tv/blog/</link>
		<width>48</width>
		<height>48</height>
	</image>
	-->
	<item>
		<title>I shall call her &quot;Mini-She&quot;</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/harriet</guid>
		<description>
A little late in the notification, but Harriet Elizebeth decided to make an appearance on the 5th December.
&lt;p&gt;
&lt;img src=&apos;/graphics/harriet.jpg&apos;&gt;
&lt;p&gt;
It&apos;s been a hectic Christmas with two little ones and the invasion of the in-laws.  Thanks to everyone for their e-mails and thoughts.
</description>
		<pubDate>Fri, 04 Jan 2008 19:53 +1000</pubDate>
	</item>
	<item>
		<title>176 Star Wars Lines Improved By Replacing A Word With &quot;Pants&quot;</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/pants</guid>
		<description>
&quot;I find your lack of pants disturbing......&quot;
&lt;P&gt;
What more can I say...... 
&lt;a href=&quot;http://www.keepersoflists.org/index.php?lid=1906&quot;&gt;
Check out the rest of the list here
&lt;/a&gt;
</description>
		<pubDate>Sat, 30 Sep 2006 19:59 +1000</pubDate>
	</item>
	<item>
		<title>Move Like A Ninja Day</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/ninja</guid>
		<description>
Come on, Pirates seem to have all of the fun!  Movies, days where you talk like them!  I ask you!
&lt;p&gt;
That&apos;s why it&apos;s time for....... (wait for it)...........
&lt;p&gt;

&lt;a href=&quot;http://movelikeaninja.com&quot;&gt;International Move Like A Ninja Day!&lt;/a&gt;
&lt;p&gt;

Brought to you by the amazing movie podcast &lt;a href=&quot;http://coolshite.net&quot;&gt;Cool Shite On The Tube&lt;/a&gt;.

&lt;p&gt;
Keep watching this space for more info as it happens, for more info &lt;a href=&quot;mailto:info@movelikeaninja.com&quot;&gt;email us!&lt;/a&gt;

</description>
		<pubDate>Fri, 30 Jun 2006 18:37 +1000</pubDate>
	</item>
	<item>
		<title>Fastball special in X3?</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/fastball</guid>
		<description>
With a line from Wolverine like &quot;Hey Tinman, how&apos;s your throwing arm?&quot; I think
we might be happy to find the answers yes!
&lt;p&gt;
&lt;a href=&quot;/fastball.avi&quot;&gt;Find out for yourself here!&lt;/a&gt;
&lt;p&gt;
X-Men 3&apos;s released in a couple of weeks, can&apos;t wait!
</description>
		<pubDate>Sun, 30 Apr 2006 08:01 +1000</pubDate>
	</item>
	<item>
		<title>Solaris Jumpstart Clients using ISC DHCPD</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/jumpstart-dhcp</guid>
		<description>
Took me a while to figure out why I couldn&apos;t get Solaris Jumpstart clients
working off a Solaris based ISC DHCP install.  Finally figured it out and here&apos;s
the dhcpd.conf that I used :
&lt;P&gt;
&lt;pre&gt;
# option definitions common to all supported networks...
ddns-update-style ad-hoc;
option domain-name &quot;$DOMAIN&quot;;
option domain-name-servers $DNSIP;
                                                                                
option subnet-mask 255.255.0.0;
default-lease-time 600;
max-lease-time 7200;
                                                                                
# Jumpstart Support
option space SUNW;
option SUNW.root-mount-options code 1 = text;
option SUNW.root-server-ip-address code 2 = ip-address;
option SUNW.root-server-hostname code 3 = text;
option SUNW.root-path-name code 4 = text;
option SUNW.swap-server-ip-address code 5 = ip-address;
option SUNW.swap-file-path code 6 = text;
option SUNW.boot-file-path code 7 = text;
option SUNW.posix-timezone-string code 8 = text;
option SUNW.boot-read-size code 9 = unsigned integer 16;
option SUNW.install-server-ip-address code 10 = ip-address;
option SUNW.install-server-hostname code 11 = text;
option SUNW.install-path code 12 = text;
option SUNW.sysid-config-file-server code 13 = text;
option SUNW.JumpStart-server code 14 = text;
option SUNW.terminal-name code 15 = text;
                                                                                
                                                                                
subnet 10.218.0.0 netmask 255.255.0.0 {
        range 10.218.80.56 10.218.80.56;
        option broadcast-address 10.218.255.255;
        option routers 10.218.100.250;
}


host jumpstart-client1 {
        hardware ethernet 0:3:ba:4c:ff:7e;
        fixed-address $CLIENT-IP;
        option host-name &quot;jumpstart-client1&quot;;
        vendor-option-space SUNW;
        option SUNW.sysid-config-file-server &quot;$JUMPSTART-SERVER-NAME:$SYSIDCFGDIR&quot;;
        option SUNW.JumpStart-server &quot;$JUMPSTART-SERVER-NAME:$JUMPSTARTDIR&quot;;
        option SUNW.install-server-hostname &quot;$INSTALL-SERVER-NAME&quot;;
        option SUNW.install-server-ip-address $INSTALL-SERVER-IP;
        option SUNW.install-path &quot;$INSTALL-PATH&quot;;
        option SUNW.root-server-hostname &quot;$INSTALL-SERVER&quot;;
        option SUNW.root-server-ip-address $INSTALL-SERVER-IP;
        option SUNW.root-path-name &quot;$ROOT-PATH&quot;;
        next-server $TFTP-SERVER-IP;
}
&lt;/pre&gt;
&lt;p&gt;
Obviously, you&apos;ll need to edit all of the variables to match your own requirements (Anything starting with a $ will need to change).
&lt;p&gt;
It&apos;s the &apos;next-server&apos; that&apos;s really the key that&apos;s missing from a lot of the other howto&apos;s which I found.
&lt;P&gt;
Hope it helps someone.
</description>
		<pubDate>Wed, 25 Jan 2006 09:27 +1000</pubDate>
	</item>
	<item>
		<title>SMH Pull Erroneous Story About Gamer Suicide</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1137668009</guid>
		<description>&lt;P&gt;
Nice to know that the SMH will &lt;a href=&quot;http://smh.com.au/news/games/gamer-webcasts-his-own-suicide/2006/01/19/1137553695846.html&quot;&gt;
actually take action&lt;/a&gt; when someone points out that one of their  
web page&apos;s front page stories is full of errors.
&lt;P&gt;
This whole scenario was shocking and sad, we don&apos;t need the media  
hyping it up and distorting the facts.
&lt;P&gt;
&lt;P&gt;
Begin forwarded message:
&lt;P&gt;
 From: &quot;Tony Green&quot; &lt;tgreen@bandcamp.tv&gt;&lt;BR&gt;
 Date: 19 January 2006 3:33:16 PM&lt;BR&gt;
 To: readerlink@smh.com.au&lt;BR&gt;
 Subject: Serious factual errors in story about webcam suicide story&lt;BR&gt;
&lt;BR&gt;
&lt;BR&gt;
 Your posting&lt;BR&gt;
 http://smh.com.au/news/games/gamer-webcasts-his-own-suicide/ &lt;BR&gt;
 2006/01/19/1137553695846.html&lt;BR&gt;
 contains a number of very serious errors.&lt;BR&gt;
&lt;BR&gt;
 Firstly, his nickname was Kuja, not Kudjo; but more&lt;BR&gt;
 seriously, Mitchell did not broadcast himself over the internet via a&lt;BR&gt;
 webcam. No forum members thinking he was joking, no rambling for six&lt;BR&gt;
 hours. This is a complete fabrication.&lt;BR&gt;
&lt;BR&gt;
 http://news.gaminghorizon.com/media2/1137635340.3198.html&lt;BR&gt;
&lt;BR&gt;
 I think you should take down this story immediately and post a  &lt;BR&gt;
 correction.&lt;BR&gt;
&lt;BR&gt;
 -- &lt;BR&gt;
 Tony Green &lt;tgreen@bandcamp.tv&gt;&lt;BR&gt;&lt;BR&gt;
</description>
		<pubDate>Thu, 19 Jan 2006 22:06 +1000</pubDate>
	</item>
	<item>
		<title>Who you gonna call???</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/ghostbusters</guid>
		<description>
&lt;img src=&quot;http://www.sayagain.co.uk/b3tapix/images/GhostBusters.gif&quot;&gt;
&lt;p&gt;
Not quite DVD quality, but good fun non the less :-)
&lt;p&gt;
Bring on Ghostbusters 3!
</description>
		<pubDate>Wed, 18 Jan 2006 08:57 +1000</pubDate>
	</item>
	<item>
		<title>Discworld Movie?</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/discworld</guid>
		<description>
&quot;Top selling author Terry Pratchett could be coming to the big screen, as rumour has it that his hit book the Wee Free Men is being made into a film.&quot; (&lt;a href=&quot;http://news.bbc.co.uk/cbbcnews/hi/newsid_4590000/newsid_4598600/4598672.stm&quot;&gt;Source from the BBC&lt;/a&gt;)
&lt;p&gt;
What more can I see, I can&apos;t wait to see the Nac Mac Feegle on the big screen!
</description>
		<pubDate>Fri, 13 Jan 2006 09:23 +1000</pubDate>
	</item>
	<item>
		<title>Geek In Training</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/geek-in-training</guid>
		<description>
I think I&apos;ve got him on the right track already!
&lt;p&gt;
&lt;img src=&apos;/graphics/haxor-jnr.gif&apos;&gt;
&lt;p&gt;
His first command was :
&lt;br&gt;
&lt;pre&gt;
d;.mf,,;dlm ewlk sdklk nl ;lm
&lt;/pre&gt;
Who said spawing a child process wasn&apos;t fun!
</description>
		<pubDate>Sun, 23 Oct 2005 18:47 +1000</pubDate>
	</item>
	<item>
		<title>Hoffice</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/hoff</guid>
		<description>
I&apos;ve seen some strange things in the years I&apos;ve been using computers, but &lt;a href=&apos;http://au.news.yahoo.com/hoffice-attachments.html&apos;&gt;this is just wrong&lt;/a&gt;.
&lt;p&gt;
I can only think of &lt;a href=&quot;http://hardy.dropbear.id.au&quot;&gt;one man&lt;/a&gt; who would be frequenting that site.  
&lt;p&gt;
So how about a Hoffed up SLUG logo?
</description>
		<pubDate>Wed, 19 Oct 2005 13:51 +1000</pubDate>
	</item>
	<item>
		<title>Linux Demotivators</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1128542804</guid>
		<description>&lt;P&gt;
&lt;a href=&quot;http://bandcamp.tv/linux-demotivators/&quot;&gt;These posters&lt;/a&gt; are  
just amazing!
&lt;P&gt;
I only hope that ThinkGeek pick them up so I can get some big copies!
&lt;P&gt;
</description>
		<pubDate>Thu, 06 Oct 2005 06:22 +1000</pubDate>
	</item>
	<item>
		<title>Vault</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1128514354</guid>
		<description>&lt;P&gt;
I finally got around to revamping my password safe application &lt;a href=&quot;http://bandcamp.tv/vault&quot;&gt;Vault&lt;/a&gt; today.
&lt;P&gt;
Funny how these things work out.  I needed it for work, but I also  
spotted a thread on the
&lt;a href=&quot;http://slug.org.au&quot;&gt;SLUG&lt;/a&gt; mailing list about password  
safes.
&lt;P&gt;
Causality is a funny thing.
&lt;P&gt;
</description>
		<pubDate>Wed, 05 Oct 2005 22:13 +1000</pubDate>
	</item>
	<item>
		<title>greeno.inf</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1127811577</guid>
		<description>&lt;P&gt;
&lt;a href=&quot;http://www.bbspot.com/News/2004/10/extension_quiz.php&quot;&gt;&lt;img src=&quot;http://www.bbspot.com/Images/News_Features/2004/10/file_extensions/inf.jpg&quot; width=&quot;300&quot; height=&quot;90&quot; border=&quot;0&quot; alt=&quot;You are .inf You are informative.  When you are gone  you make life very difficult for others.&quot;&gt;&lt;br&gt;Which File Extension  are You?&lt;/a&gt;
&lt;P&gt;
Oh joy
</description>
		<pubDate>Tue, 27 Sep 2005 19:00 +1000</pubDate>
	</item>
	<item>
		<title>Paint the world red</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1127377309</guid>
		<description>&lt;P&gt;
&lt;img src=&quot;http://www.world66.com/community/mymaps/worldmap?visited=USDOJMEGGMZATNATBEDKFRDEGRIEITLUNLPLESSECHUKTRAECNINJPMYSGAU&quot;&gt;&lt;br/&gt; &lt;a href=&quot;http://douweosinga.com/projects/visitedcountries&quot;&gt;create  
your own visited countries map&lt;/a&gt;
&lt;P&gt;
Thought I might as well join in the fun
&lt;P&gt;
</description>
		<pubDate>Thu, 22 Sep 2005 18:23 +1000</pubDate>
	</item>
	<item>
		<title>Time for a new start</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1125395143</guid>
		<description>&lt;P&gt;
Well, I finished my job today.  One of the first times recently that  
I&apos;ve left a company while it&apos;s still running (current count is 5  
closed down/bankrupt companies in my wake).
&lt;P&gt;
It&apos;s a weird feeling to leave behind this group of guys, we built  
some seriously kick-ass solutions and it was one of the best teams I  
ever worked with.  It just got to feel like &lt;a href=&quot;http://dilbert.com&quot;&gt;I was living in a Dilbert cartoon&lt;/a&gt; and, as PHB Murder  
is still a crime, I decided to make a move.
&lt;P&gt;
Got a few days off in between jobs, time to catch up with Daddy  
duties and finish off the back garden.
&lt;P&gt;
I&apos;m ready for the next challenge and it&apos;ll be great to be hardcore  
tech again.
&lt;P&gt;
&lt;P&gt;
&lt;P&gt;
</description>
		<pubDate>Tue, 30 Aug 2005 20:15 +1000</pubDate>
	</item>
	<item>
		<title>Hi-ho, Hi-ho, it&apos;s time to play lego</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1125394238</guid>
		<description>&lt;P&gt;
Time for me to get my lego stash sent over from the UK I think  
(either that or buy Edward some and &apos;look after it&apos; for him for a few  
years)
&lt;P&gt;
I saw &lt;a href=&quot;http://home.hawaii.rr.com/chowfamily/lego/&quot;&gt; this &lt;/a&gt;  
and immediately started thinking of all the cool mods you could add  
to it!
&lt;P&gt;
</description>
		<pubDate>Tue, 30 Aug 2005 19:30 +1000</pubDate>
	</item>
	<item>
		<title>Monday morning giggles</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1125271706</guid>
		<description>&lt;P&gt;
&lt;a href=&quot;http://ars.userfriendly.org/cartoons/?id=20050828&quot;&gt;
&apos;nuff said
&lt;/a&gt;
&lt;P&gt;
&lt;P&gt;
</description>
		<pubDate>Mon, 29 Aug 2005 09:30 +1000</pubDate>
	</item>
	<item>
		<title>I&apos;m not certain</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1124167555</guid>
		<description>&lt;P&gt;
Heisenberg is driving down the road one day and gets pulled over by a  
policeman.
&lt;P&gt;
The cop says, &quot;Do you know how fast you were going?&quot;
&lt;P&gt;
Heisenberg replies, &quot;No, but I know exactly where I am.&quot;
&lt;P&gt;
&lt;P&gt;
&lt;P&gt;
It&apos;s been that kind of day.......
&lt;P&gt;
</description>
		<pubDate>Tue, 16 Aug 2005 14:45 +1000</pubDate>
	</item>
	<item>
		<title>Spare change?</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/darth2</guid>
		<description>
&lt;img src=&quot;/pics/darth.jpg&quot; &gt;
&lt;P&gt;
What more do I need to say?
</description>
		<pubDate>Thu, 23 Jun 2005 12:51 +1000</pubDate>
	</item>
	<item>
		<title>Day 2 of the &apos;Swing-a-thon&apos; Earworm</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1118972707</guid>
		<description>&lt;P&gt;
Does ANYONE know a reliable method of getting a song out of their  
head.  It wouldn&apos;t be so bad if it weren&apos;t the Bruce Willis version  
of Swinging on a Star.
&lt;P&gt;
Failing that, the number of a reliable assassin to take care of &lt;a  
href=&quot;http://hardy.dropbear.id.au/blog/you_could_be_better_than_you_are&quot;&gt;Mr  
Hasselhoff^H^H^H^H^H^H^H^H^H^HHardy&lt;/a&gt;
&lt;P&gt;
I guess I&apos;m off to get a cappuccino, rob the vatican and let Bunny  
Mayflower have her fun..... (&lt;a href=&quot;http://www.imdb.com/title/ 
tt0102070/&quot;&gt;Oh the pain&lt;/a&gt;)
&lt;P&gt;
</description>
		<pubDate>Fri, 17 Jun 2005 11:46 +1000</pubDate>
	</item>
	<item>
		<title>Stibbons, you MUST die!</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1118903867</guid>
		<description>&lt;P&gt;
All day long I&apos;ve had &apos;Swinging on a Star&apos; stuck in my head.  I&apos;m  
even going to have to go home and watch Hudson Hawk (yes, I have the  
DVD).
&lt;P&gt;
All because of a &lt;a href=&quot;http://hardy.dropbear.id.au/blog/ 
the_dangers_of_a_random_playlist&quot;&gt;blog by Mr Hardy&lt;/a&gt;
&lt;P&gt;
You&apos;ll get what&apos;s coming to you one day!!!!
&lt;P&gt;
</description>
		<pubDate>Thu, 16 Jun 2005 16:37 +1000</pubDate>
	</item>
	<item>
		<title>Don&apos;t forget your angry eyes!</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/darth</guid>
		<description>
OK, so it&apos;s a present for &lt;a href=&quot;/edward&quot;&gt;Edward&lt;/a&gt;, but he&apos;s a bit young
for it (and will be for the next 10 years or so!).  I couldn&apos;t let it just
sit in a box could I???
&lt;P&gt;
Thank you &lt;a href=&quot;http://chrislow.com&quot;&gt;Chris&lt;/a&gt; and Emma - he&apos;s great!
&amp;nbsp;
&lt;BR&gt;
&lt;a href=&quot;http://www.hasbro.com/playskool/mrpotatohead/pl/page.viewproduct/product_id.15642/dn/default.cfm&quot;&gt;
&lt;img src=&quot;/pics/darth-tater.jpg&quot; &gt;
&lt;/a&gt;
</description>
		<pubDate>Mon, 02 May 2005 13:10 +1000</pubDate>
	</item>
	<item>
		<title>Active Directory</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1109663656</guid>
		<description>&lt;P&gt;
I&apos;m currently managing a huge migration from Windows NT Domains to an 
Active Directory platform (yeah yeah, I know!).  I have to say, I&apos;m 
shocked.
&lt;P&gt;
I&apos;ve not used AD very much before now and I have to say that I&apos;m pretty 
impressed.  Sure, there&apos;s a lot of things that (IMHO) they&apos;ve done 
wrong, but it&apos;s a pretty good platform for what it does.  It&apos;s not like 
I&apos;m going to convert or anything, but I&apos;m man enough to admit when MS 
is the right tool for the job.
&lt;P&gt;
I&apos;ve spent a lot of meeting time considering how I&apos;d do similar things 
in a FOSS way, I&apos;m coming up pretty blank.  I know things like Hula are 
coming on in leaps and bounds, but the AD stuff I&apos;ve seen has impressed 
me.  I can cover individual AD components, but there&apos;s no integration 
across them in the FOSS world.
&lt;P&gt;
Am I missing something?  Is there some AD&apos;esque tool out there which 
I&apos;ve somehow overlooked?
&lt;P&gt;
</description>
		<pubDate>Tue, 01 Mar 2005 18:54 +1000</pubDate>
	</item>
	<item>
		<title>RIP Jef (Raskin, not Waugh)</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1109584607</guid>
		<description>&lt;P&gt;
Jef Raskin, a mathematician, orchestral soloist and composer, 
professor, bicycle racer, model airplane designer, and pioneer in the 
field of human-computer interactions, died peacefully on February 26th, 
2005 surrounded by his family and loved ones. He had recently been 
diagnosed with pancreatic cancer. (&lt;a 
href=&quot;http://www.raskincenter.org/pressrelease.html&quot;&gt;Source&lt;/a&gt;)
&lt;p&gt;
A number of tributes have &lt;a 
href=&quot;http://en.wikipedia.org/wiki/Jef_Raskin&quot;&gt;already sprung up&lt;/a&gt;, 
though I doubt there could ever be enough.
&lt;p&gt;
 From one life long Mac fan, thank you Jef, your legacy will live on.
&lt;p&gt;
&lt;img src=&quot;http://www.geekculture.com/joyoftech/joyimages/656.jpg&quot;&gt;
&lt;P&gt;
</description>
		<pubDate>Mon, 28 Feb 2005 20:56 +1000</pubDate>
	</item>
	<item>
		<title>Been a bit busy</title>
		<guid isPermaLink="true">http://bandcamp.tv/blog/1106556671</guid>
		<description>&lt;P&gt;
It&apos;s been a few weeks since I last updated my blog, it&apos;s time for a 
quick update.
&lt;P&gt;
As most of you know, we&apos;ve had a new addition to our family.  Edward 
was born on the 14th of Jan, ending a long 9 month wait for Dani and I.
&lt;P&gt;
Of course, he has a webpage already (did you expect anything 
different??) - &lt;a href=&quot;http://bandcamp.tv/edward&quot;&gt;http://bandcamp.tv/edward/&lt;/a&gt;
&lt;P&gt;
Dani and I would like to thank all of our family and friends for their 
messages.  The &lt;a href=&quot;http://slug.org.au&quot;&gt;SLUG&lt;/a&gt; flowers were a 
very nice touch, thank you.
&lt;P&gt;
Everyone is home and we&apos;re quickly adjusting to life as a threesome :)
&lt;P&gt;
Strangely enough, everything else seems to have been put on hold.
&lt;P&gt;
</description>
		<pubDate>Mon, 24 Jan 2005 19:52 +1000</pubDate>
	</item>
</channel>
</rss>

