<?xml version="1.0"?>
<!-- name="generator" content="blosxom/2.0" -->
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">
  <channel>
    <title>Tony's Diary   </title>
    <link>http://www.bakeyournoodle.com/~tony/diary</link>
    <description>Tony's Diary</description>
    <language>en</language>

  <item>
    <title>Experiments in Fedora 0x01</title>
    <pubDate>Tue, 27 May 2008 17:23:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2008/05/27#20080527</link>
    <description>&lt;p&gt;Running your own local yum repo isn't all that hard as it turns out.
&lt;ol&gt;
&lt;li&gt;  Allow building as a non-root user.
&lt;ol&gt;
&lt;li&gt;Make some important directories.  I only care about powerpc packages, so I
make the ppc and ppc64 directories, clearly if you use another architecture you
should change that &lt;tt&gt;;P&lt;/tt&gt;
&lt;blockquote&gt;
&lt;pre&gt;
mkdir -p /home/user/rpmbuild/fedora/{BUILD,SOURCES,SPECS,SRPMS,tmp,RPMS/{noarch,ppc,ppc64}}
&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;  Now create a &lt;tt&gt;~/.rpmmacros&lt;/tt&gt; file.  To use those directories you
just created.
&lt;blockquote&gt;
&lt;pre&gt;
%_topdir        /home/user/rpmbuild/fedora/
%_builddir      %{_topdir}/BUILD
%_rpmdir        %{_topdir}/RPMS
%_specdir       %{_topdir}/SPECS
%_srcrpmdir     %{_topdir}/SRPMS
%_sourcedir     %{_topdir}/SOURCES/%{name}-%{version}-%{release}
%_tmppath       %{_topdir}/tmp
%_buildroot     %{_topdir}/%{_tmppath}/%{name}-%{version}-root
%packager       user@example.com
&lt;/pre&gt;
&lt;/blockquote&gt;

With this there you can &lt;tt&gt;rpm -i src.rpm&lt;/tt&gt; files, and run
&lt;tt&gt;rpmbuild&lt;/tt&gt; commands to generate RPMS (binary and source).  I intend to
have a bunch of packages on the go at any time so I use the
&lt;tt&gt;%_sourcedir&lt;/tt&gt; macro, have one directory per
&lt;tt&gt;%{name}-%{version}-%{release}&lt;/tt&gt;.  You could just as easily do:
&lt;blockquote&gt;
&lt;pre&gt;
%_sourcedir     %{_topdir}/SOURCES
&lt;/pre&gt;
&lt;/blockquote&gt;
It's easiest to decide upfront as changing will be a little cumbersome.
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt; Make some RPMS.  True this can be a little challenging at times but
fortunately the packages I'm interested presented little challenge ...
&lt;tt&gt;woot!&lt;/tt&gt;&lt;/li&gt;
&lt;li&gt; Fedora has a util for rummaging through RPMs and makeing the repodata
files.  It's called &lt;tt&gt;createrepo&lt;/tt&gt;.  So install that: &lt;tt&gt;yum install -y createrepo&lt;/tt&gt;
&lt;li&gt; I then moved all my locally built RPMS into a separate directory structure.
I &lt;em&gt;tried&lt;/em&gt; to make this look at least a little like &lt;em&gt;real&lt;/em&gt; Fedora repos.
Again I only care about powerpc, hence setting &lt;tt&gt;$basearch&lt;/tt&gt;.  You don't
need to &lt;tt&gt;:)&lt;/tt&gt;.  In case it isn't obvious I ran this script from the root
directory of the repo (in my case &lt;tt&gt;/opt/yum&lt;/tt&gt;).
&lt;blockquote&gt;
&lt;pre&gt;
#!/bin/sh

basearch=ppc
releasever=9
rpmbuild_base=/home/user/rpmbuild/fedora

for i in local local-debuginfo local-source ; do
        d=&quot;$i/$releasever/$basearch&quot;
        [ ! -d $d ] &amp;&amp; mkdir -p $d
done

find $rpmbuild_base/RPMS/  -type f \
	-exec /bin/cp {} ./local/$releasever/$basearch/. \;
find $rpmbuild_base/SRPMS/ -type f \
	-exec /bin/cp {} ./local-source/$releasever/$basearch/. \;
find ./local/$releasever/$basearch/. -type f -name '*debug*' \
	-exec /bin/mv {} ./local-debuginfo/$releasever/$basearch/. \;

for i in local local-debuginfo local-source ; do
        cd &quot;$i/$releasever/$basearch&quot;
        /usr/bin/createrepo .
        cd -
done
&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;  Setup apache to serve up that directory.  This machine shouldn't need any other web services, so I just make &lt;tt&gt;/&lt;/tt&gt; point at my &lt;tt&gt;/opt/yum&lt;/tt&gt; directory
&lt;blockquote&gt;
&lt;pre&gt;
NameVirtualHost *
&amp;lt;VirtualHost *&amp;gt;
    ServerAdmin user@example.com
    DocumentRoot /opt/yum/
    ServerAlias host
    ServerName host.example.com
    ErrorLog /var/log/httpd/yum.repo-error_log
    CustomLog /var/log/httpd/yum.repo-access_log combined

    &amp;lt;Directory /opt/yum&amp;gt;
        Options Indexes
    &amp;lt;/Directory&amp;gt;
&amp;lt;/VirtualHost&amp;gt;
&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;  Now create a yum config you use this new goodness.
&lt;blockquote&gt;
&lt;pre&gt;
[local]
name=local $releasever - $basearch
baseurl=http://host.example.com/local/$releasever/$basearch/
enabled=1
gpgcheck=0

[local-debuginfo]
name=local $releasever - $basearch - Debug
baseurl=http://host.example.com/local-debuginfo/$releasever/$basearch/
enabled=1
gpgcheck=0

[local-source]
name=local $releasever - $basearch - Source
baseurl=http://host.example.com/local-source/$releasever/$basearch/
enabled=1
gpgcheck=0
&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt; If that all went well then:
&lt;blockquote&gt;
&lt;pre&gt;
[user@host ~]$ yum repolist
Loaded plugins: refresh-packagekit
repo id              repo name                                 status
fedora               Fedora 9 - ppc                            enabled
fedora-debuginfo     Fedora 9 - ppc - Debug                    enabled
fedora-source        Fedora 9 - Source                         enabled
local                local 9 - ppc                             enabled
local-debuginfo      local 9 - ppc - Debug                     enabled
local-source         local 9 - ppc - Source                    enabled
updates              Fedora 9 - ppc - Updates                  enabled
updates-debuginfo    Fedora 9 - ppc - Updates - Debug          enabled
updates-source       Fedora 9 - Updates Source                 enabled
&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;p&gt; and &lt;tt&gt;debuginfo-install&lt;/tt&gt; and &lt;tt&gt;yumdownloader&lt;/tt&gt; should do the
right things &lt;tt&gt;woot!&lt;/tt&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;There are probabluy all sorts of other cool things you can do here but this is enought to keep a few local machines in sync &lt;tt&gt;:)&lt;/tt&gt;&lt;/p&gt;
&lt;p&gt;Update: Type fixes, and add note about installign createrepo&lt;/p&gt;</description>
  </item>
  <item>
    <title>Experiments in Fedora 0x00</title>
    <pubDate>Tue, 20 May 2008 14:07:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2008/05/20#20080520</link>
    <description>&lt;p&gt;So it's been a long time since I used RPM based distro &amp;quot;in anger&amp;quot;,
so I'm trying Fedora 9.  First tips
&lt;ul&gt;
&lt;li&gt;&lt;tt&gt;yum check-update&lt;/tt&gt;  Check all enabled repositories for update and
display them.&lt;/li&gt;
&lt;li&gt;&lt;tt&gt;yumdownloader --source ${package}&lt;/tt&gt;  To grab the source RPM
(&lt;tt&gt;*.src.rpm&lt;/tt&gt;) for ${package}.  You must have the appropriate source
repositories configured and enabled.  It's a shame that this isn't available
(or did I missit) with the &lt;tt&gt;yum&lt;/tt&gt; command.&lt;/li&gt;
&lt;li&gt; Rename &lt;tt&gt;/etc/httpd/conf.d/welcome.conf&lt;/tt&gt; to something that doesn't
end in &lt;tt&gt;.conf&lt;/tt&gt; once you've setup your web content.  Otherwise you just
get the std. &amp;quot;Welcome to Fedora&amp;quot; page.
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: These may not be the &lt;em&gt;best&lt;/em&gt; ways to get the job done but they worked for me&lt;/p&gt;
&lt;p&gt;Update: fix typos&lt;/p&gt;</description>
  </item>
  <item>
    <title>Muscle Memory</title>
    <pubDate>Thu, 03 Apr 2008 14:28:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2008/04/03#20080403</link>
    <description>
&lt;p&gt;Like most of you that type passwords often I tend to let my finger's &quot;muscle memory&quot; do the hard work remembering my passwords.  This works rather well except on two occasions&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;When you come back from an extended vacation, and even your fingers have forgotten&lt;/li&gt;
&lt;li&gt;When you can't use those muscles, because you've &lt;a href=&quot;http://svana.org/sjh/diary/2008/04/02#2008-04-02_01&quot;&gt;fractured&lt;/a&gt; the middle digit on your left hand :(:(&lt;/li&gt;
&lt;/ol&gt;

Ho Hum, took me far too long to get into my laptop this morning.  I'm much better off than the other guys.</description>
  </item>
  <item>
    <title>Zurich eh?</title>
    <pubDate>Tue, 12 Feb 2008 09:59:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2008/02/12#20080212</link>
    <description>&lt;p&gt;
So &lt;a href=&quot;http://neuling.org/mikey/&quot;&gt;Mikey&lt;/a&gt; claims he can travel to &lt;a href=&quot;http://neuling.org/mikey/index.cgi/2008/02/09#Exchange2008&quot;&gt;Zurich&lt;/a&gt; and then $180m in artwork goes &lt;a href=&quot;http://www.abc.net.au/news/stories/2008/02/11/2159952.htm&quot;&gt;missing&lt;/a&gt;.
Coincidence? ...
&lt;/p&gt;</description>
  </item>
  <item>
    <title>More use?&lt;/p&gt;</title>
    <pubDate>Thu, 04 Jan 2007 20:27:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2007/01/04#20070104_1</link>
    <description>&lt;p&gt;
Do new years resolutions count if you make the 4 days in?.  If they do then;
this is a new years resolution; if they don't then I've just decide to ...
&lt;br&gt;&lt;br&gt;&lt;strong&gt;blog more&lt;/strong&gt;.
&lt;/p&gt;
&lt;p&gt;
Given I only blogged twice in 2006, I've already equalled that so one more
entry in the next 361 days and I'm set.   &amp;nbsp;&lt;tt&gt;...&lt;/tt&gt;&amp;nbsp; The pressure
is on.
&lt;/p&gt;
&lt;p&gt;PS: Thanks &lt;a href=&quot;http://kyliewillison.blogspot.com/&quot;&gt;Kylie&lt;/a&gt; for the
&lt;a
href=&quot;http://kyliewillison.blogspot.com/2007/01/memes-which-file-extension-are-you-to.html&quot;
&gt;prod&lt;/a&gt;
&lt;/p&gt;</description>
  </item>
  <item>
    <title>Damn rusty and his 5 things!&lt;/p&gt;</title>
    <pubDate>Thu, 04 Jan 2007 20:27:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2007/01/04#20070104</link>
    <description>
&lt;p&gt;
I was &lt;blink&gt;not&lt;/blink&gt; &lt;a href=&quot;http://ozlabs.org/~rusty/index.cgi/self/2007-01-02.html&quot;
&gt;tagged&lt;/a&gt; by &lt;a href=&quot;http://ozlabs.org/~rusty/&quot;&gt;Rusty&lt;/a&gt; in the five things
meme.  Below are 5 things about me that I've not blogged about.
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I'm addicted to &lt;a href=&quot;http://www.cbs.com/primetime/survivor13/&quot;
&gt;Survivor&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;I think Abstract art is a waste of wall space, time, materials and
money.&lt;/li&gt;
&lt;li&gt;I&amp;#39;ve eaten horse, and liked it. (sorry Alli)&lt;/li&gt;
&lt;li&gt;The first time I used the Internet, I didn't know that was what I was
doing.  I just thought it was a &lt;em&gt;really&lt;/em&gt; popular BBS.  Turns out it was
Usenet &lt;tt&gt;;P&lt;/tt&gt;.  I'm waaay to embarrassed by my first post to link to it
but it &lt;em&gt;is&lt;/em&gt; in &lt;a href=&quot;http://groups.google.com/&quot;&gt;Google
Groups&lt;/a&gt;.  I looked.&lt;/li&gt;
&lt;li&gt;I fear heights &lt;tt&gt;...&lt;/tt&gt; well falling.  To combat this I go rock
climbing whenever I can.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
I hereby tag
&lt;a href=&quot;http://svana.org/sjh/diary&quot;&gt;Steve&lt;/a&gt;, 
&lt;a href=&quot;http://www.somewoman.com/diary.cgi&quot;&gt;Somewomen&lt;/a&gt;, 
&lt;a href=&quot;http://azure.humbug.org.au/~aj/blog&quot;&gt;AJ&lt;/a&gt;, 
&lt;a href=&quot;http://james.k-sit.com/&quot;&gt;James&lt;/a&gt; and
&lt;a href=&quot;http://leonbrooks.blogspot.com/index.html&quot;&gt;Leon&lt;/a&gt;

&lt;p&gt;
Also Rusty wonders if someone with more time than sense&lt;tt&gt;^W^W^W&lt;/tt&gt;bandwidth
than him would trace it back.  I did.  This whole things seems to have begun
with &lt;a
href=&quot;http://sharon-jacobsen.co.uk/thewaterbutt/2006/5-things-people-collection-tag/&quot;&gt;this
post&lt;/a&gt;.  The path between rusty and the origin (including a few detours
&lt;tt&gt;:(&lt;/tt&gt;) can be found &lt;a href=&quot;/~tony/five_things.html&quot;&gt;here&lt;/a&gt;.  I find it
interesting that it stayed in the &amp;quot;literary world&amp;quot; for quite some
time but the root cause &amp;quot;people collecting&amp;quot; was lost rather
quickly.
&lt;/p&gt;</description>
  </item>
  <item>
    <title>Back from the abyss</title>
    <pubDate>Fri, 03 Nov 2006 15:04:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2006/11/03#20061103</link>
    <description>&lt;p&gt;
At last week's &lt;a href=&quot;http://clug.org.au/&quot;&gt;CLUG&lt;/a&gt; meeting &lt;a
href=&quot;http://svana.org/sjh/diary/&quot;&gt;Steve&lt;/a&gt; pointed at this blog, and the lack of activity, and berrated me for being so slack.
&lt;/p&gt;
&lt;p&gt;So I'm inventing stuff to blog about.&lt;/p&gt;
&lt;p&gt;
Occaisonally I need to know what time it is in another timezone.  This is
pretty easy with &lt;tt&gt;date&lt;/tt&gt;, eg
&lt;blockquote&gt;
&lt;pre&gt;
$ TZ=Europe/Rome date -R
Fri, 03 Nov 2006 02:24:39 +0100
&lt;/pre&gt;
&lt;/blockquote&gt;
I discovered the other day that &lt;tt&gt;date&lt;/tt&gt; can do some cool stuff.  Say you
know the time in Rome, and you'd like to know the time in Tokyo, all without
leaving the east cost of Australia.
&lt;blockquote&gt;
&lt;pre&gt;
$ TZ=Asia/Tokyo date --date='TZ=&quot;Europe/Rome&quot; 11:31pm' -R
Sat, 04 Nov 2006 07:31:00 +0900
&lt;/blockquote&gt;
&lt;/pre&gt;
&lt;p&gt;

Yet to determine if I'll use this in day to day life but I think it's pretty
cute &lt;tt&gt;:)&lt;/tt&gt;, and not too hard to remember either.
&lt;/p&gt;</description>
  </item>
  <item>
    <title>Happy Graduation to Me!</title>
    <pubDate>Sun, 02 Jul 2006 14:13:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2006/07/02#20060702</link>
    <description>&lt;/p&gt;
&lt;p&gt;
Sung to the tune of &amp;quot;Happy Birthday&amp;quot;:&lt;br&gt;
Happy graduation to me&lt;br&gt;
Happy graduation to me&lt;br&gt;
I got my degree-ee&lt;br&gt;
Happy graduation to me&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;
As &lt;a href=&quot;http://svana.org/sjh/diary/2006/06/26#2006-06-26_01&quot;&gt;Steve&lt;/a&gt;
mentions I went out and got me one of &lt;a href=&quot;http://www.giant-bicycles.com/au/030.000.000/030.000.000.asp?year=2006&amp;model=10015&quot;&gt;these&lt;/a&gt;.&lt;br&gt;

&lt;a href=&quot;/~tony/images/DSC01548.JPG&quot;&gt;&lt;img border=&quot;1&quot; src=&quot;/~tony/images/th_DSC01548.JPG&quot;&gt;&lt;/a&gt;&lt;br&gt;
Click for a larger image (1.4M)
&lt;/p&gt;</description>
  </item>
  <item>
    <title>Who can resit?</title>
    <pubDate>Fri, 18 Nov 2005 13:22:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/11/18#20051118_race</link>
    <description>
A meme and a Middle Earth meme at that!&lt;/p&gt;&lt;p&gt;
&lt;img src=&quot;http://images.quizilla.com/D/dphenreckson/1049378275_Hmiddleearthentish.jpg&quot; border=&quot;0&quot; alt=&quot;Entish&quot;&gt;&lt;br&gt;Entish
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://quizilla.com/users/dphenreckson/quizzes/To%20which%20race%20of%20Middle%20Earth%20do%20you%20belong%3F/&quot;&gt; To which race of Middle Earth do you belong?&lt;/a&gt;&lt;BR&gt; &lt;font size=&quot;-2&quot;&gt;brought to you by &lt;a href=&quot;http://quizilla.com&quot;&gt;Quizilla&lt;/a&gt;&lt;/font&gt;
</description>
  </item>
  <item>
    <title>Bon Voyage</title>
    <pubDate>Fri, 18 Nov 2005 12:30:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/11/18#20051118</link>
    <description>
Wishing &lt;a href=&quot;http://blog.andrew.net.au/&quot;&gt;Andrew&lt;/a&gt; and &lt;a
href=&quot;http://www.stillhq.com/&quot;&gt;Mikal&lt;/a&gt; a safe trip and lots of great times
at the other end.</description>
  </item>
  <item>
    <title>Why I use Linux</title>
    <pubDate>Thu, 27 Oct 2005 15:12:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/10/27#20051027</link>
    <description>
I was asked on the bus today[1] &amp;quot;So like Linux huh?  Why?&amp;quot;, well
words to that effect anyway.  I was about to enter into a brain dump on
Opensource but decided to relate a story instead.
&lt;/p&gt;
&lt;p&gt;
While a number of years elapsed between the first and second events I think
it's still interesting.
&lt;/p&gt;
&lt;p&gt;
Event 1:&lt;br /&gt;
When 100Mb networking was new, I had an occasion to
buy a brand spanking new server, I did my research and purchased a machine
(and more importantly PCI NIC) that was supported by the kernel(I think it was
a 1.3 kernel, but it may have in fact been 2.0).
It was with much
sadness that I discovered that under Linux there was no networking to be had,
The hardware detected a link etc but I got strange error messages which are
lost in time now.
It seems that the NIC I had has a different chip revision than the ones
currently supported.  After a little to'ing and fro'ing with Donald Becker,
the card chipset was now supported.  I think it took 2 days to get the card
going.  I was happy.  The server was in production for close to 7 years before
it finally became too old to perform it's task as was replaced.
&lt;/p&gt;
&lt;p&gt;
Event 2:&lt;br /&gt;
My Wife needed a new machine.  We settled on a name brand desktop system.  It
wasn't the biggest baddest machine but it was more than adequate.  Got the
box home set it up and all was good.  Soon I decided to un-retire some old
games, all was good until one game would lock up and eventually BSOD[2].  
I did
the windows driver shuffle to no avail.  Contacted the game vendor, never got
a response.  Contacted the hardware vendor, was told to run the recovery DVD
and that would fix things.  I knew this was bogus, rang back in about 35mins
said I still had the same problem.  I was told it had to be a problem with
the software and that they couldn't help.  Not really the response I wanted.
I took the unprecedented (for me) step of filing a bug report with Microsoft.
Which was literally as easy as clicking a button.
This resulted in a nice web page in which Microsoft claimed that this was a
known bug with the soundcard and I should contact the vendor for help.
Actually this seemed like a good diagnosis.  If I completely turned off
sound in the game (fortunately I could edit a .ini file to do this) the game
worked albeit silently.  I recontacted the vendor with this new information
and was told to run the recovery DVD.  Oh dear.  I admit at this point I gave
up, it'd been more than a month
since I started this.  It was something like 8 months later I once again got
bored enough to try things.  I checked the vendors support site and saw that
there were updated drivers available for the box, and they'd only been released
3 days ago.  I got brave and tried them.  Lo and behold I could now
play the game, it's a shame it only took 9 months to get there.
&lt;/p&gt;
&lt;p&gt;
So to my way of thinking, this illustrates the good things with Linux.  If it
doesn't work someone will be able to help, even if they're on the other side
of the world working for NASA, with the other OS, not so much[3].  Now
It's possible that I may have biased the outcome of the events with
pre-conceived notions about the outcomes but I don't think so.  I don't know
if this help the person on the bus, or if it was just a way for them to pass
a boring bus ride in Canberra.
&lt;/p&gt;
&lt;p&gt;
I'll let you all get back to work now.
&lt;/p&gt;
&lt;p&gt;
[1] insert witty comment about my dress sense, I didn't think the Tux was even
visible&lt;br /&gt;
[2] Yes I have windows on computers at home.&lt;br /&gt;
[3] I should note that I did try manufacturer (as opposed to vendor) drivers,
contacted other players of the game involved and used both manufacturer and
vendor forums/newsgroups to try and find a solution.&lt;br /&gt;</description>
  </item>
  <item>
    <title>Blog Meme: File extension.</title>
    <pubDate>Wed, 28 Sep 2005 14:06:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/09/28#20050928</link>
    <description>
In trying to avoid Uni I decided to fill in the survey.  I don't think the
result is accurate &lt;kbd&gt;;P&lt;/kbd&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/pdf.jpg&quot;
width=&quot;300&quot; height=&quot;90&quot; border=&quot;0&quot; 
alt=&quot;You are .pdf  No matter where you go you look the same.  You are an acrobat.  Nothing is more important to you than the printed word.&quot;&gt;
&lt;br /&gt;Which File Extension are You?&lt;/a&gt;</description>
  </item>
  <item>
    <title>Appealing?</title>
    <pubDate>Thu, 01 Sep 2005 09:29:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/09/01#2005-09-01</link>
    <description>
Well today I was asked when daylight savings comes into effect.  After playing with the &lt;tt&gt;date&lt;/tt&gt; command I discovered the following: &lt;br /&gt;
&lt;tt&gt;
tony@balder:~$ date -R -d 'Sun, 30 Oct 2005 01:59:59'&lt;br /&gt;
Sun, 30 Oct 2005 01:59:59 +1000&lt;br /&gt;
tony@balder:~$ date -R -d 'Sun, 30 Oct 2005 01:59:59 + 1 second'&lt;br /&gt;
Sun, 30 Oct 2005 03:00:00 +1100&lt;br /&gt;
&lt;/tt&gt;&lt;br /&gt;
Which is far more humorous to me than it should be &lt;tt&gt;;P&lt;/tt&gt;( See I
&lt;em&gt;told&lt;/em&gt; you all I could &lt;a href=&quot;http://www.bakeyournoodle.com/~tony/diary/2005/05/30#2005-05-30&quot;&gt;space&lt;/a&gt;, Now I can warp time). Perhaps that's
because unlike &lt;a href=&quot;http://blemings.org/hugh/blog/blosxom.cgi&quot;&gt;Hugh&lt;/a&gt; my
brain ran &lt;a href=&quot;http://cs.anu.edu.au/student/comp3600/&quot;&gt;out my ears&lt;/a&gt; rather than &lt;a
href=&quot;http://blemings.org/hugh/blog/blosxom.cgi/2005/08/30#20050830a&quot;&gt;exploding&lt;/a&gt;.</description>
  </item>
  <item>
    <title>Oh dear :-(</title>
    <pubDate>Wed, 17 Aug 2005 07:57:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/08/17#2005-08-17</link>
    <description>
&lt;a href=&quot;http://www.nerdtests.com/ft_cg.php?im&quot;&gt;
&lt;img src=&quot;http://www.nerdtests.com/images/ft/cg.php?val=8828&quot; alt=&quot;My computer geek score is greater than 95% of all people in the world! How do you compare? Click here to find out!&quot;&gt; &lt;/a&gt;</description>
  </item>
  <item>
    <title>Fixed</title>
    <pubDate>Fri, 03 Jun 2005 10:36:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/06/03#2005-06-03</link>
    <description>
Due to the way I installed blosxom my permanent links &lt;a href=&quot;http://svana.org/sjh/diary/2005/06/02#2005-06-02_01&quot;&gt;didn't work&lt;/a&gt; unless (like &lt;a href=&quot;http://michaelneuling.blogspot.com/2005/06/rode-to-work-with-tony-today.html&quot;&gt;Mikey&lt;/a&gt;) you included the &lt;kbd&gt;index.cgi&lt;/kbd&gt; in the URL.  Well that's fixed now.

For those that may or may not care this is the apache magic
&lt;/p&gt;&lt;pre&gt;        
ScriptAlias /~tony/diary /home/bakeyournoodle.com/tony/public_html/diary/blosxom.cgi

# Keep Sage working
RewriteCond    %{QUERY_STRING}  ^flav=rss$
RewriteRule    ^(/~tony/diary).*$  $1/index.rss?  [L,R]

RewriteRule    ^(/~tony/diary/)index.cgi(.+[^/])$  $1$2  [R]
&lt;/pre&gt;&lt;p&gt;

I think this means that aside from the switch over period, no one should see anything break.</description>
  </item>
  <item>
    <title>swsusp2 works!</title>
    <pubDate>Tue, 31 May 2005 13:11:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/05/31#2005-05-31</link>
    <description>
Finally after trying every now and again it's working.
&lt;/p&gt;&lt;ul&gt;
&lt;li&gt; install &lt;a href=&quot;http://www.kernel.org/&quot;&gt;kernel&lt;/a&gt; &lt;a href=&quot;http://www.au.kernel.org/pub/linux/kernel/v2.6/linux-2.6.11.tar.bz2&quot;&gt;2.6.11.11&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; install &lt;a href=&quot;http://suspend2.net/&quot;&gt;swsusp2&lt;/a&gt; &lt;a href=&quot;http://suspend2.net/downloads/all/software-suspend-2.1.8-for-2.6.11.tar.bz2&quot;&gt;2.1.8&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; &lt;kbd&gt;apt-get install vbetool hibernate acpid &lt;/kbd&gt;  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I think the key is vbetool, which Bernard told me about at &lt;a href=&quot;http://lca2005.linux.org.au&quot;&gt;LCA2005&lt;/a&gt;</description>
  </item>
  <item>
    <title>I discovered today I can warp space</title>
    <pubDate>Mon, 30 May 2005 18:36:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/05/30#2005-05-30</link>
    <description>
When I started riding to ANU with a trip computer on-board the distance was 17.1kms.  Today my ride was 16.8kms.  Wheee that's 300 meters I've saved.  I haven't altered my route, so the only logical conclusion is that, by willing the pain to be over, I have shortened the ride.
&lt;/p&gt;&lt;p&gt;
If only I had shortened the time as well.</description>
  </item>
  <item>
    <title>Back From NZ</title>
    <pubDate>Sat, 28 May 2005 12:34:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/05/28#2005-05-28</link>
    <description>
Went to NZ for the ghosts meeting with the &lt;a href=&quot;http://lca2006.linux.org.au&quot;&gt;LCA2006&lt;/a&gt; crew.  Was lots of fun.
Recommend the &lt;a href=&quot;http://www.holidayguide.co.nz/Dunedin/AllanCourtMotel.aspx&quot;&gt;Allan Court Motel&lt;/a&gt; for people needing self-catering accommodation,
and the &lt;a
href=&quot;http://www.seenindunedin.co.nz/nightlife/restaurants/eureka/eureka.html&quot;&gt;Eureka
cafe/bar&lt;/a&gt; for those in need of good food and great beer (not the
radler though[1]).
&lt;/p&gt;&lt;p&gt;
After Ghosts travelled back to Wellington to catch up with my Mum (whom I haven't seen in a while) and my sister Leeanne (whom I've never met).  Went to 
&lt;a href=&quot;http://www.wellingtonnz.com/RestaurantsAndShopping/Restaurants/Midnight+Espresso/Midnight+Espresso.htm&quot;&gt;Midnight Espresso&lt;/a&gt; for a few coffee's  The place hasn't changed much since high school.  After that we went up the
&lt;a href=&quot;http://www.kapiti.org.nz/&quot;&gt;coast&lt;/a&gt; for a few days.  It was great to see Mum, catch up with a few old friends.  2 days was too short though.
&lt;/p&gt;&lt;p&gt;
[1]: take a perfectly good pilsner and add a dose of lemon/lime cordial, yck[2]
&lt;br /&gt;
[2]: Okay cartman I'll lay off now &lt;kbd&gt;;P&lt;/kbd&gt;
&lt;br /&gt;</description>
  </item>
  <item>
    <title>Shell Hacks</title>
    <pubDate>Wed, 18 May 2005 16:07:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/05/18#2005-05-18_01</link>
    <description>
&lt;a href=&quot;http://azure.humbug.org.au/~aj/&quot;&gt;AJ&lt;/a&gt; is hereby awarded a &lt;a href=&quot;http://catb.org/~esr/jargon/html/U/UUOC.html&quot;&gt;UUOC&lt;/a&gt; for &lt;a href=&quot;http://azure.humbug.org.au/~aj/blog/2005/05/18#2005-05-18-shell-hacks&quot;&gt;this&lt;/a&gt;</description>
  </item>
  <item>
    <title>Bah!</title>
    <pubDate>Sat, 07 May 2005 10:38:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/05/07#2005-05-06_01</link>
    <description>
Do &lt;strong&gt;&amp;quot;they&amp;quot;&lt;/strong&gt; [whoever &amp;quot;they&amp;quot; are ] think we wont notice?
&lt;/p&gt;&lt;pre&gt;
# egrep  'Failed password for root from.*ssh2' /var/tmp/munged.log  | cut -d' ' -f12 | sort | uniq -c | sort -n
      6 210.206.30.139
     16 84.244.0.157
     44 67.19.139.112
    400 80.83.128.248
    561 193.6.40.134
    561 207.194.134.180
    561 211.115.89.81
&lt;/pre&gt;

&lt;p&gt;Thats in the last 4 hours.</description>
  </item>
  <item>
    <title>Blogging leads to ....</title>
    <pubDate>Wed, 04 May 2005 02:00:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/05/04#2005-05-04_01</link>
    <description>
... Needing an RSS feed and apparently an aggregator (sp?) tool locally.
&lt;/p&gt;
&lt;p&gt;
I chose &lt;a href=&quot;http://sage.mozdev.org/&quot;&gt;sage&lt;/a&gt; mostly because I always have
firefox open, and partially because it was recommended to me.
&lt;/p&gt;
&lt;p&gt;
This entirely superfluous blog is to see if sage works correctly.  It seems not as I can't jump straight into a post.  I wonder if it's me blosxom or sage ??</description>
  </item>
  <item>
    <title>LCA is over,&amp;nbsp;&amp;nbsp;My brain hurts.</title>
    <pubDate>Tue, 26 Apr 2005 16:44:00 </pubDate>
    <link>http://www.bakeyournoodle.com/~tony/diary/2005/04/26#2005-04-26_01</link>
    <description>
I've been assured that in order to blog you don't actually need to have anything
useful to say.  I thought I start with the obligatory linux.conf.au is over
post.  All things considered it was a blast and I'd happily do it all again.
In fact I am &lt;tt&gt;;P&lt;/tt&gt;.  I'll be helping the nuts in Dunedin, out with some of
the planning.  
&lt;/p&gt;
&lt;p&gt;
Also I was lucky enough to get an extension on one of my Java assignments.  It's
due at 17:00 on Thursday.  consequently I've leapt in to get it finished.  I'm
horribly embarrassed with the code, but that wont stop me from submitting it.</description>
  </item>
  </channel>
</rss>
