<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>The Sojourner Saga</title>
    <link>http://blogs.syzdek.net/</link>
    <description>One Day at a Time</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2.1 - http://www.s9y.org/</generator>
    
    

<item>
    <title>A logical self reflection</title>
    <link>http://blogs.syzdek.net/archives/2008/06/26/12-A-logical-self-reflection.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/06/26/12-A-logical-self-reflection.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=12</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=12</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;pre&gt;
i = (( i &lt;&lt; 16 ) &amp;amp; 0xFFFF0000 ) | (( i &gt;&gt; 16 ) &amp;amp; 0x0000FFFF );
i = (( i &lt;&lt;  8 ) &amp;amp; 0xFF00FF00 ) | (( i &gt;&gt;  8 ) &amp;amp; 0x00FF00FF );
i = (( i &lt;&lt;  4 ) &amp;amp; 0xF0F0F0F0 ) | (( i &gt;&gt;  4 ) &amp;amp; 0x0F0F0F0F );
i = (( i &lt;&lt;  2 ) &amp;amp; 0xCCCCCCCC ) | (( i &gt;&gt;  2 ) &amp;amp; 0x33333333 );
i = (( i &lt;&lt;  1 ) &amp;amp; 0xAAAAAAAA ) | (( i &gt;&gt;  1 ) &amp;amp; 0x55555555 );
// What i sees in the mirror
&lt;/pre&gt;
 
    </content:encoded>

    <pubDate>Thu, 26 Jun 2008 00:35:18 -0600</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/06/26/12-guid.html</guid>
    
</item>
<item>
    <title>Xcode: External Target or External Build System</title>
    <link>http://blogs.syzdek.net/archives/2008/06/22/11-Xcode-External-Target-or-External-Build-System.html</link>
            <category>Projects</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/06/22/11-Xcode-External-Target-or-External-Build-System.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=11</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=11</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;
Recently I&#039;ve become more and more addicted to the Xcode environment.  Prior to using Xcode I was strictly a vi (specifically elvis a vi clone) power user.  Good old vi served well as a multi platform editing tool, however I am finding that I perform most of initial development on a Mac Desktop (when I first started programming I worked from a Linux desktop) and then copy the source to other platforms (Linux, FreeBSD, Solaris, and Windows) for testing and deployment.  This usually means that 90% of my time is spent working from a Mac desktop.
&lt;/p&gt;
&lt;p&gt;
Although vi is an invaluable tool, I prefer writing code in Xcode. This has led me to figure out how to write the code in Xcode and compile it using a GNU Autoconf/Automake/Libtool/Make environment. It turns out to be pretty simple. Xcode has the ability to configure an Xcode target to call an external script.  The arguments passed to the script can be configured, but Xcode will pass the requested action (clean, install, etc) by default.
&lt;/p&gt;
&lt;p&gt;
To configure Xcode 3.0 to create a target which calls make, follow these steps:
 &lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt; Right click (or Command-Click) &lt;u&gt;Targets&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; Select &lt;u&gt;Add&lt;/u&gt;-&gt;&lt;u&gt;New Target&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; In the new window that opens, select &lt;u&gt;Other&lt;/u&gt; from the table on the left and select &lt;u&gt;External Target&lt;/u&gt; from the items on the right.&lt;/li&gt;
  &lt;li&gt; Click &lt;u&gt;Next&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; Type  in &lt;b&gt;all apps&lt;/b&gt; for the target name and click &lt;u&gt;Finish&lt;/u&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
This should create a target which defaults to calling &lt;i&gt;/usr/bin/make&lt;/i&gt;.  If you do not need to call configure, you are now done.
&lt;/p&gt;
&lt;p&gt;
If like me you use GNU Autoconf and GNU Automake to help port projects to different platforms, you need to create an additional target which will create the make file.  Follow these steps to create a target which will create the Makefile by running configure:
&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt; Right click (or Command-Click) &lt;u&gt;Targets&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; Select &lt;u&gt;Add&lt;/u&gt;-&gt;&lt;u&gt;New Target&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; In the new window that opens, select &lt;u&gt;Other&lt;/u&gt; from the table on the left and select &lt;u&gt;External Target&lt;/u&gt; from the items on the right.&lt;/li&gt;
  &lt;li&gt; Click &lt;u&gt;Next&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; Type  in &lt;b&gt;Makefile&lt;/b&gt; for the target name and click &lt;u&gt;Finish&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt; Double click on the target &lt;u&gt;Makefile&lt;/u&gt; to open the properties window&lt;/li&gt;
  &lt;li&gt; In the &lt;u&gt;Arguments&lt;/u&gt; box, add &lt;b&gt;-f Makefile-xcode&lt;/b&gt; before the &lt;u&gt;$(ACTIONS)&lt;/u&gt; variable.&lt;/li&gt;
  &lt;li&gt; Drag the target &lt;u&gt;Makefile&lt;/u&gt; to be under the target &lt;u&gt;all apps&lt;/u&gt;.  This should create a &quot;second&quot; Makefile object as a dependency for &lt;u&gt;all apps&lt;/u&gt;&lt;/li&gt;
  &lt;li&gt;
     Create a file called the file &lt;u&gt;Makefile-xcode&lt;/u&gt; in the root of your Xcode project directory and add the following contents: 
    &lt;i&gt;&lt;pre&gt;
# special make file used by Xcode to run configure 

all: Makefile

Makefile: Makefile-xcode configure Makefile.in config.h.in
	./configure

clean:
	test -f Makefile &amp;&amp;amp; make distclean

#end of Makefile
    &lt;/pre&gt;&lt;/I&gt;
   &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The second target essentially tells make to use an alternative Makefile (&lt;u&gt;Makefile-xcode&lt;/u&gt;) to generate the Makefile used by the rest of the project.  Automake, and autoconf can also be run to generate configure, Makefile.in, config.h.in, etc, by using a longer Makefile-xcode.  For example the following Makefile-xcode uses autoconf and automake:
&lt;/p&gt;
&lt;i&gt;&lt;pre&gt;
#
#   Makefile-xcode - automate Automake compiling from Xcode
#

# GNU build tools
ACLOCAL					?= /opt/local/bin/aclocal
AUTOCONF				?= /opt/local/bin/autoconf
AUTOHEADER				?= /opt/local/bin/autoheader
AUTOMAKE				?= /opt/local/bin/automake


# local targets for building environment
all: Makefile

aclocal.m4: Makefile-xcode acinclude.m4 configure.ac
	$(ACLOCAL)
	touch aclocal.m4

config.h.in: Makefile-xcode aclocal.m4
	$(AUTOHEADER)
	touch config.h.in

configure: Makefile-xcode aclocal.m4 configure.ac
	$(AUTOCONF)
	touch configure

Makefile.in: Makefile-xcode Makefile.am configure
	$(AUTOMAKE)
	touch Makefile.in

Makefile: Makefile-xcode configure Makefile.in config.h.in
	./configure --enable-dependency-tracking

clean:
	test -f Makefile &amp;&amp;amp; make distclean

install:

# end of Makefile file
&lt;/pre&gt;&lt;/i&gt;
&lt;p&gt;
Well that&#039;s it for now.  I hope this is helpful to the autoconf, automake, Xcode users out there.
&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sun, 22 Jun 2008 01:22:11 -0600</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/06/22/11-guid.html</guid>
    
</item>
<item>
    <title>The hacker sleeps tonight</title>
    <link>http://blogs.syzdek.net/archives/2008/02/20/10-The-hacker-sleeps-tonight.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/02/20/10-The-hacker-sleeps-tonight.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=10</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=10</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;
&lt;i&gt;Lyrics by David M. Syzdek. Sang to the tune of &quot;The Lion Sleeps Tonight.&quot;&lt;/i&gt;
&lt;/p&gt;

&lt;p&gt;
Refrain:&lt;br /&gt;
A cable cut&lt;br /&gt;
a cable cut&lt;br /&gt;
a cable cut&lt;br /&gt;
a cable cut&lt;br /&gt;
&lt;/p&gt;

&lt;p&gt;
In the Rack Room, the offline Rack Room,&lt;br /&gt;
The hacker sleeps tonight,&lt;br /&gt;
In the Rack Room the quiet Rack Room,&lt;br /&gt;
The hacker sleeps tonight,&lt;br /&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;i&gt; Refrain&lt;/i&gt;
&lt;/p&gt;

&lt;p&gt;
Near the network, the server network,&lt;br /&gt;
The hacker sleeps tonight,&lt;br /&gt;
Near the network, the secure network,&lt;br /&gt;
The hacker sleeps tonight,
&lt;/p&gt;

&lt;p&gt;
&lt;i&gt; Refrain&lt;/i&gt;
&lt;/p&gt;

&lt;p&gt;
Hush my user, don&#039;t fear my user,&lt;br /&gt;
The hacker sleeps tonight,&lt;br /&gt;
Hush my user, don&#039;t fear my user,&lt;br /&gt;
The hacker sleeps tonight.&lt;br /&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;i&gt; Refrain&lt;/i&gt;
&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Wed, 20 Feb 2008 19:09:47 -0700</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/02/20/10-guid.html</guid>
    
</item>
<item>
    <title>Albino Moose or Moose Ghosts</title>
    <link>http://blogs.syzdek.net/archives/2008/02/18/9-Albino-Moose-or-Moose-Ghosts.html</link>
            <category>Wacky Wednesday</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/02/18/9-Albino-Moose-or-Moose-Ghosts.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=9</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=9</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;
My Grandma sent me the following e-mail message today:
&lt;/p&gt;
&lt;p&gt;
&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 110px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;!-- s9ymdb:10 --&gt;&lt;img width=&quot;110&quot; height=&quot;83&quot; src=&quot;http://blogs.syzdek.net/uploads/albino-moose01.serendipityThumb.jpg&quot; alt=&quot;&quot;  /&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Albino Moose somewhere near the border of Wisconsin and Michigan.&lt;/div&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;
Not one, but two !  Truly amazing !  These animals were photographed just north of the Wisconsin border on a highway near Marenisco , MI .         The odds of seeing an albino moose are astronomical and to see this in the upper peninsula of Michigan, near Wisconsin, is even greater than astronomical. To see two of them together is nearly impossible.   We wanted to share these photos with as many people as possible because you will probably  never have a chance to see this rare sight again. This is a really special treat, so enjoy the shot of a life time. &lt;/i&gt;
&lt;/p&gt;


&lt;p&gt;Like the e-mail stated, the chances of this occurring is nearly impossible.  It is so impossible that I have an alternative theory.&lt;/p&gt;

&lt;p&gt;
Those are not albino, they are ghosts of moose that were creamed by a trucker.  They came back to haunt the roads and jump in front of their arch enemy, the Big Rig.  Once they have caused the last tractor truck to swerve off the road thus making these asphalt crossings safe for their four hoofed brethren, they will transcend to their heavenly rest.
&lt;/p&gt;&lt;p&gt;
Not only do truckers have have to watch out, but there are rumors of Freddy Cougar, Big Hoof, Frankenswan, Drakeula, The Wicked Wren of the West, Dr. Jackal and Mr. Hyena, Cowsper the Ghost,  and Hannibal Leopard.  So be careful when looking at your local wild life, that cute little bunny rabbit may actually be a blood thirsty mummy rabbit.
&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 18 Feb 2008 15:51:02 -0700</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/02/18/9-guid.html</guid>
    
</item>
<item>
    <title>shoes</title>
    <link>http://blogs.syzdek.net/archives/2008/02/18/8-shoes.html</link>
            <category>Wacky Wednesday</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/02/18/8-shoes.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=8</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=8</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;
It bugs me.  You spend one lazy day barefoot working from a laptop at the University in the common area and every day afterwards the girls that walk by check out my feet to verify that I am wearing shoes.
&lt;/p&gt;&lt;p&gt;
Like it is all that uncommon to see a grown man in public working on a laptop without any shoes or socks.
&lt;/p&gt;&lt;p&gt;
I am thinking about starting a new activist group, the Barefoot Union of Men (BUM).
&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 18 Feb 2008 11:17:28 -0700</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/02/18/8-guid.html</guid>
    
</item>
<item>
    <title>A more palatable insult for intelligence</title>
    <link>http://blogs.syzdek.net/archives/2008/02/11/7-A-more-palatable-insult-for-intelligence.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/02/11/7-A-more-palatable-insult-for-intelligence.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=7</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=7</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;
Do not call people thick skulled or airheaded.  if they truly are one egg short of a full basket you can simply call them &quot;&lt;i&gt;A splendid autonomous being that enjoys a resiliency from data ingress into or data contamination of their granite cavernously bereft cranium&lt;/i&gt;.&quot;
&lt;/p&gt;&lt;p&gt;
To a casual listener or some one with a limited vocabulary this phrase sounds like a praise or compliment, however upon closer examination it is clear that it is not.
&lt;/P&gt;

&lt;p&gt;
You are in reality saying, in a more elegant fashion, that they are stone headed, empty minded, and incapable of learning.
&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Feb 2008 09:51:00 -0700</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/02/11/7-guid.html</guid>
    
</item>
<item>
    <title>Java vs Java</title>
    <link>http://blogs.syzdek.net/archives/2008/02/11/6-Java-vs-Java.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/02/11/6-Java-vs-Java.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    Isn&#039;t it ironic that Java the beverage speeds you up, but Java the language slows your computer down? 
    </content:encoded>

    <pubDate>Mon, 11 Feb 2008 09:49:19 -0700</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/02/11/6-guid.html</guid>
    
</item>
<item>
    <title>I suffer from Wikiploria</title>
    <link>http://blogs.syzdek.net/archives/2008/02/07/2-I-suffer-from-Wikiploria.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2008/02/07/2-I-suffer-from-Wikiploria.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=2</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=2</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;I suffer from Wikiploria (Wikipedia Exploration Disease).  It is terrible.  This syndrome has cost me my family, my friends, and my health.  I only have my job because the corporate proxy server blocks the site.  I am embarrassed, but I spend all of my time reading from this captivating site and I cannot stop. Wikipedia has information on every conceivable topic, except the remedy for Wikiploria.&lt;/P&gt;

&lt;p&gt;My problem manifested itself three or four years ago when I started using this snow ball of information.  Initially I would only look up things occasionally and would not follow cross references.  As this tar pit of facts grew and cross references became more numerous, I started spending greater amounts of time reading topics of interest and following links.   I eventually reached the point where I would lose myself in this labyrinth of data for hours on end completely forgetting the original topic I was researching.  I only manage to break out of this suction cup of knowledge I follow an external link link into a uninteresting subject.&lt;/p&gt;

&lt;p&gt;As an example, yesterday I tried to find the caloric content of an Avocado. After hours of perusing I learned that an avocado has 60% more potassium than bananas, has the highest fiber content of any fruit, and is toxic to many animals.  I never did find out the caloric content of an avocado, but I did learn that Wendigo is a mythical North American cannibal, Donner Pass is where the Central Pacific Railroad crosses the Sierra Nevada Mountains, and that tallow was used to lubricate the engines of steam locomotives.&lt;/p&gt;

&lt;p&gt;I have talked to a therapist about my condition and she recommended that I retrace my steps and analyze my weaknesses in order to help me over come this disability.  Following my quack&#039;s advice I retrieved and summarized the following session from my browser history:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Avocado&quot; title=&quot;Wikipedia article on avocados.&quot;&gt;Avocado&lt;/a&gt;: &lt;i&gt;Possibly co-evolved as a food for the now extinct giant sloth&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Ground_sloth&quot; title=&quot;Wikipedia article on the Giant Ground Sloth.&quot;&gt;Ground sloth&lt;/a&gt;: &lt;i&gt;Proposed to be the basis for the South American mythical forest creature mapinguari&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Mapinguari&quot; title=&quot;The Wikipedia article on Mapinguari.&quot;&gt;Mapinguari&lt;/a&gt;: &lt;i&gt;Many have dismissed this creature as a folkloric creature much like the North American Wendigo&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Wendigo&quot; title=&quot;The Wikipedia article on Wendigo.&quot;&gt;Wendigo&lt;/a&gt;: &lt;i&gt;a malevolent cannibalistic spirit&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Cannibalism&quot; title=&quot;Wikipedia article on Cannibalism.&quot;&gt;Cannibalism&lt;/a&gt;: &lt;i&gt;a famous instance of Cannibalism is the Donner Party&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Donner_Party&quot; title=&quot;Wikipedia article on the Donner Party.&quot;&gt;Donner Party&lt;/a&gt;: &lt;i&gt;settlers that were trapped at Donner Pass&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Donner_Pass&quot; title=&quot;Wikipedia article on Donner Pass.&quot;&gt;Donner Pass&lt;/a&gt;: &lt;i&gt;The location where the Central Pacific Railroad passed the Sierra Nevada Mountains&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Central_Pacific_Railroad&quot; title=&quot;Wikipedia article on the Central Pacific Railroad.&quot;&gt;Central Pacific Railroad&lt;/a&gt;: &lt;i&gt;Was leased until 1959 when it formally merged with Southern Pacific Railroad&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Southern_Pacific_Railroad&quot; title=&quot;Wikipedia article on the Southern Pacific Railroad.&quot;&gt;Southern Pacific Railroad&lt;/a&gt;: &lt;i&gt;The Souther Pacific Railroad painted the majority its steam locomotive fleet black&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Steam_locomotive&quot; title=&quot;Wikipedia article on the steam locomotive.&quot;&gt;steam locomotive&lt;/a&gt;: &lt;i&gt;Enginemen used tallow as a lubricant for the pistons and valves.&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Tallow&quot; title=&quot;Wikipedia article on tallow.&quot;&gt;Tallow&lt;/a&gt;: &lt;i&gt;is rendered form of beef or mutton fat.&lt;/i&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Mutton&quot; title=&quot;Wikipedia article on mutton.&quot;&gt;Mutton&lt;/a&gt;: &lt;i&gt;I realized that I have a Wikipedia problem.&lt;/i&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In retrospect my therapist is correct.  I can clearly see the error of my way.  I should have followed the links to either &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Traction_engine&quot; title=&quot;Wikipedia article on the traction engine.&quot;&gt;traction engine&lt;/a&gt;&quot; or &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Steamroller&quot; title=&quot;Wikipedia article on the steamroller.&quot;&gt;Steamroller&lt;/a&gt;&quot; from the steam locomotive page.  Tallow was clearly a bad path to follow since it ended in a mundane topic like mutton.  In actuality this analysis does not help me to resist my vice, rather I now want to look up traction engine.&lt;/p&gt;

&lt;p&gt;Until a cure is found, I will have to resolve myself to a life as an e-bookworm.&lt;/p&gt;

&lt;p&gt;My name is David Syzdek and I am a Wikipedia addict.&lt;/p&gt;

&lt;p&gt;P.S. The traction engine article is very interesting.&lt;/p&gt;

 
    </content:encoded>

    <pubDate>Thu, 07 Feb 2008 00:00:00 -0700</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2008/02/07/2-guid.html</guid>
    
</item>
<item>
    <title>A true computer Geek's transportation</title>
    <link>http://blogs.syzdek.net/archives/2007/05/14/5-A-true-computer-Geeks-transportation.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2007/05/14/5-A-true-computer-Geeks-transportation.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;No computer Geek can honestly claim that a vehicle is theirs until said computer geek has transported computer equipment with it. Here are a few pics of the christening of my newest vehicle:&lt;/p&gt;

&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 110px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://blogs.syzdek.net/uploads/Harley-Computer/DSC01318.JPG&#039;&gt;&lt;!-- s9ymdb:7 --&gt;&lt;img width=&quot;110&quot; height=&quot;83&quot; src=&quot;http://blogs.syzdek.net/uploads/Harley-Computer/DSC01318.serendipityThumb.JPG&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Here is a front view picture of my Harley loaded with computer gear that I was carrying to the post office.&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 110px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://blogs.syzdek.net/uploads/Harley-Computer/DSC01319.JPG&#039;&gt;&lt;!-- s9ymdb:8 --&gt;&lt;img width=&quot;110&quot; height=&quot;83&quot; src=&quot;http://blogs.syzdek.net/uploads/Harley-Computer/DSC01319.serendipityThumb.JPG&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Here is a side view picture of my Harley loaded with computer gear that I was carrying to the post office.&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;serendipity_imageComment_left&quot; style=&quot;width: 83px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://blogs.syzdek.net/uploads/Harley-Computer/DSC01321.JPG&#039;&gt;&lt;!-- s9ymdb:9 --&gt;&lt;img width=&quot;83&quot; height=&quot;110&quot; src=&quot;http://blogs.syzdek.net/uploads/Harley-Computer/DSC01321.serendipityThumb.JPG&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Here is a rear view picture of my Harley loaded with computer gear that I was carrying to the post office.&lt;/div&gt;&lt;/div&gt;

 
    </content:encoded>

    <pubDate>Mon, 14 May 2007 03:39:00 -0600</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2007/05/14/5-guid.html</guid>
    
</item>
<item>
    <title>The Last Frontier's Guide to Marriage</title>
    <link>http://blogs.syzdek.net/archives/2005/07/26/4-The-Last-Frontiers-Guide-to-Marriage.html</link>
            <category>Mental Marbles</category>
    
    <comments>http://blogs.syzdek.net/archives/2005/07/26/4-The-Last-Frontiers-Guide-to-Marriage.html#comments</comments>
    <wfw:comment>http://blogs.syzdek.net/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.syzdek.net/rss.php?version=2.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    

    <author>blogs@syzdek.net (David M. Syzdek)</author>
    <content:encoded>
    &lt;p&gt;&lt;i&gt;The Last Frontier&#039;s Guide to Marriage&lt;/i&gt; is written by a bachelor living in the harsh winter isolation of Alaska.  Most Alaskan males are experts on maintaining lasting relationships due to the incredibly low odds of getting a second chance (or a first for that matter) at a relationship with a women in the predominately male population. Unlike the equally popular Alaskan methods of either enslaving a bride in chains or living in remote isolation so the loving bride can not escape, the author details methods that help the groom weave golden threads of love into his bride&#039;s heart.  His philosophy is that a wife can always learn to pick a lock or charter a plane, however no woman is capable of breaking the binding embroidery in the cloth of love.&lt;/P&gt;

&lt;p&gt;You will enjoy the author&#039;s entertaining tales of miscommunication such as the time he chased his date around the kitchen with a broom after she declared her longing to be swept off her feet. Another time he took Mary Jane to the local national guard&#039;s armory so they could stargaze from the torrent of a battle tank after hearing she was hoping for a night in shining armor. After reading this book you will be awed at the authors comical dating snafos and his amazing lack of experience.&lt;/p&gt;

&lt;p&gt;Other works by the author include the theoretical thesis &lt;i&gt;Catching a Girl with a Fly Fishing Rod&lt;/i&gt;, the documentary &lt;i&gt;Why Clam Digging is a Bad First Date&lt;/i&gt;, and the revolutionary and incredibly limited catalogue &lt;i&gt;Mail Order Brides for the Modern Alaskan Male&lt;/i&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Editor&#039;s Note&lt;/strong&gt;: This book has been printed on extra large pages and is safe to be consumed, making it an excellent liner for your hamster&#039;s cage.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 26 Jul 2005 20:37:00 -0600</pubDate>
    <guid isPermaLink="false">http://blogs.syzdek.net/archives/2005/07/26/4-guid.html</guid>
    
</item>

</channel>
</rss>