<?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>Rubinium.org &#187; Uncategorized</title>
	<atom:link href="http://rubinium.org/blog/archives/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubinium.org/blog</link>
	<description>The Element of Aron and Heather</description>
	<lastBuildDate>Fri, 25 Mar 2011 14:04:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Shell Script Version Compare (vercmp)</title>
		<link>http://rubinium.org/blog/archives/2010/04/05/shell-script-version-compare-vercmp/</link>
		<comments>http://rubinium.org/blog/archives/2010/04/05/shell-script-version-compare-vercmp/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 02:18:27 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/archives/2010/04/05/shell-script-version-compare-vercmp/</guid>
		<description><![CDATA[Here is something useful. A very short shell script to compare standard version numbers of the form ##.##.## with up to four segments. It returns the difference of the first differing segment just like strcmp. #!/bin/sh &#160; expr '(' &#34;$1&#34; : '\([^.]*\)' ')' '-' '(' &#34;$2&#34; : '\([^.]*\)' ')' '&#124;' \ '(' &#34;$1.0&#34; : '[^.]*[.]\([^.]*\)' [...]]]></description>
			<content:encoded><![CDATA[<p>Here is something useful. A very short shell script to compare standard version numbers of the form ##.##.## with up to four segments. It returns the difference of the first differing segment just like strcmp.</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">#!/bin/sh
&nbsp;
expr '(' &quot;$1&quot; : '\([^.]*\)' ')' '-' '(' &quot;$2&quot; : '\([^.]*\)' ')' '|' \
    '(' &quot;$1.0&quot; : '[^.]*[.]\([^.]*\)' ')' '-' '(' &quot;$2.0&quot; : '[^.]*[.]\([^.]*\)' ')' '|' \
    '(' &quot;$1.0.0&quot; : '[^.]*[.][^.]*[.]\([^.]*\)' ')' '-' '(' &quot;$2.0.0&quot; : '[^.]*[.][^.]*[.]\([^.]*\)' ')' '|' \
    '(' &quot;$1.0.0.0&quot; : '[^.]*[.][^.]*[.][^.]*[.]\([^.]*\)' ')' '-' '(' &quot;$2.0.0.0&quot; : '[^.]*[.][^.]*[.][^.]*[.]\([^.]*\)' ')'</pre></div></div>

<p>Update: Added zeros to deal with unbalanced version compares </p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2010/04/05/shell-script-version-compare-vercmp/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Pharoah&#8217;s Revenge</title>
		<link>http://rubinium.org/blog/archives/2008/04/22/pharoahs-revenge/</link>
		<comments>http://rubinium.org/blog/archives/2008/04/22/pharoahs-revenge/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 13:02:15 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[constipation]]></category>
		<category><![CDATA[matzah]]></category>
		<category><![CDATA[matzoh]]></category>
		<category><![CDATA[pharoah's revenge]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/?p=175</guid>
		<description><![CDATA[For those who are not familiar, there is a tradition every year when millions of Jews wake up following holiday festivities and groan in pain. Passover is a kind of fast from low density (aka leavened) food. Our systems are not designed to deal with high-density food alone. There should be a section of the [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="JibJabPlayer" width="440" height="370" align="middle"><param name="allowScriptAccess" value="always" /><param name="movie" value="http://www.jibjab.com/v/30977" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="http://www.jibjab.com/v/30977" loop="false" menu="false" quality="high" bgcolor="#C4C2AA" width="440" height="370" swliveconnect="true" id="JibJabPlayer" name="JibJabPlayer" align="middle" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></p>
<p>For those who are not familiar, there is a tradition every year when millions of Jews wake up following holiday festivities and groan in pain. Passover is a kind of fast from low density (aka leavened) food. Our systems are not designed to deal with high-density food alone. There should be a section of the haggadah dedicated to bathroom reading afterwards because you are going to be in there for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2008/04/22/pharoahs-revenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rubinium Candidate Round-up</title>
		<link>http://rubinium.org/blog/archives/2008/01/18/rubinium-candidate-round-up/</link>
		<comments>http://rubinium.org/blog/archives/2008/01/18/rubinium-candidate-round-up/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 02:27:33 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all things considered]]></category>
		<category><![CDATA[america]]></category>
		<category><![CDATA[battlestar]]></category>
		<category><![CDATA[economic stimulus]]></category>
		<category><![CDATA[npr]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[romney]]></category>
		<category><![CDATA[thompson]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/archives/2008/01/18/rubinium-candidate-round-up/</guid>
		<description><![CDATA[After hearing Obama and Thompson on NPR All Things Considered last night I felt the need to post some of my observations. You can really tell why Doug and I gravitate toward Thompson and Obama respectively. Both men project a distinct air of honesty about them. The responses to assertions that their lack of spin [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rubinium.org/blog/wp-content/uploads/2008/01/bsg_candidates.jpg' title='BSG Candidates, Democrats'><img src='http://rubinium.org/blog/wp-content/uploads/2008/01/bsg_candidates_crop.jpg' alt='BSG Candidates, Democrats' /></a></p>
<p>After hearing Obama and Thompson on <a href="http://www.npr.org/templates/rundowns/rundown.php?prgId=2&#038;prgDate=17-Jan-08">NPR All Things Considered</a> last night I felt the need to post some of my observations. You can really tell why <a href="literalbarrage.org/blog">Doug</a> and I gravitate toward Thompson and Obama respectively. Both men project a distinct air of honesty about them. The responses to assertions that their lack of spin may be used against them were classic. Referring to the last debate, Obama said jokingly &#8220;yeah, maybe I should have answered that my greatest weakness is I help old ladies across the street.&#8221; In his interview Thompson jabbed &#8220;some people are more interested in style than substance [...] there is plenty of people for them to vote for too.</p>
<p><a href='http://rubinium.org/blog/wp-content/uploads/2008/01/rep_candidates.jpg' title='BSG Candidates, Republicans'><img src='http://rubinium.org/blog/wp-content/uploads/2008/01/rep_candidates_scrop.jpg' alt='BSG Candidates, Republicans' /></a></p>
<p>Obama and Thompson were both asked about a now inevitable economic stimulus package. Oddly enough both of them had a rather similar response which contrasts with their competitors. They said we should consider a one-time infusion of money into the economy by tacking it on to an existing vehicle. Tacking it on to an existing vehicle allows us to avoid potential pork and minimize bureaucratic skimming. Thompson was also prompted to mention not doing anything, which is where I personally lean right now.</p>
<p>I am actually pulling for Romney on the Republican side. It is time for them to know how we Dems felt with Kerry as our nominee. Actually comically enough he is pretty much like Kerry with an R. I did not make this video, but it sums:</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/PiCqxKLIVDY&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/PiCqxKLIVDY&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2008/01/18/rubinium-candidate-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Post Jam &#8211; Lid Open</title>
		<link>http://rubinium.org/blog/archives/2007/08/06/post-jam-lid-open/</link>
		<comments>http://rubinium.org/blog/archives/2007/08/06/post-jam-lid-open/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 15:19:26 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jam]]></category>
		<category><![CDATA[post-flush]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/archives/2007/08/06/post-jam-lid-open/</guid>
		<description><![CDATA[Every once in a while a post does not get picked up by feed readers. I don&#8217;t understand why but I am hoping this will flush the last post through.]]></description>
			<content:encoded><![CDATA[<p>Every once in a while a post does not get picked up by feed readers. I don&#8217;t understand why but I am hoping this will flush the last post through.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2007/08/06/post-jam-lid-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google maps directions: swim</title>
		<link>http://rubinium.org/blog/archives/2007/04/23/google-maps-directions-swim/</link>
		<comments>http://rubinium.org/blog/archives/2007/04/23/google-maps-directions-swim/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 12:24:26 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/archives/2007/04/23/google-maps-directions-swim/</guid>
		<description><![CDATA[Google maps directions: swim Originally uploaded by courgettelawn. You&#8217;ll need to be more than a world class swimmer to cross to New Jersey.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/courgettelawn/439104264/" title="photo sharing"><img src="http://farm1.static.flickr.com/158/439104264_ba5bb317d2_m.jpg" alt="" /></a><br />
<br />
<a href="http://www.flickr.com/photos/courgettelawn/439104264/">Google maps directions: swim</a><br />
<br />
Originally uploaded by <a href="http://www.flickr.com/people/courgettelawn/">courgettelawn</a>.</p>
<p></p>
<p>You&#8217;ll need to be more than a world class swimmer to cross to New Jersey.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2007/04/23/google-maps-directions-swim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Usual Suspects Visit</title>
		<link>http://rubinium.org/blog/archives/2007/03/23/the-usual-suspects-visit/</link>
		<comments>http://rubinium.org/blog/archives/2007/03/23/the-usual-suspects-visit/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 04:18:40 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fenster]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[flims]]></category>
		<category><![CDATA[hockney]]></category>
		<category><![CDATA[keaton]]></category>
		<category><![CDATA[keyser-soze]]></category>
		<category><![CDATA[line-up]]></category>
		<category><![CDATA[man]]></category>
		<category><![CDATA[mcmanus]]></category>
		<category><![CDATA[men]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[person]]></category>
		<category><![CDATA[the-usual-suspects]]></category>
		<category><![CDATA[usual-suspects]]></category>
		<category><![CDATA[verbal]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/archives/2007/03/23/the-usual-suspects-visit/</guid>
		<description><![CDATA[One of the nice features of Google Sketchup is the use of abstract human billboards as a size gauge. Someone added a set of figures that has earned quite a few style points in my estimation. Here they are in front of my house:]]></description>
			<content:encoded><![CDATA[<p>One of the nice features of <a href="http://sketchup.google.com">Google Sketchup</a> is the use of abstract human billboards as a size gauge. Someone added <a href="http://sketchup.google.com/3dwarehouse/details?mid=50e640f272c16dd48cd6d7b856d5a862">a set of figures</a> that has earned quite a few style points in my estimation. Here they are in front of my house:</p>
<p><img id="image112" src="http://rubinium.org/blog/wp-content/uploads/2007/03/unusual_suspects.png" alt="Usual Suspect Figures" height="414" width="441" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2007/03/23/the-usual-suspects-visit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Delay Read This Wikibook</title>
		<link>http://rubinium.org/blog/archives/2006/04/25/dont-delay-read-this-wikibook/</link>
		<comments>http://rubinium.org/blog/archives/2006/04/25/dont-delay-read-this-wikibook/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 16:49:32 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Datapoint]]></category>
		<category><![CDATA[Life is Complex + sqrt(-1)]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[wikibook]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/archives/2006/04/25/dont-delay-read-this-wikibook/</guid>
		<description><![CDATA[Or why I have not been posting Overcoming Procrastination Except: Procrastination or &#8220;task aversion&#8221; is the irrational delay of an intended course of action, even while expecting to be worse off for the delay (compare temporisation). The procrastinator deviates from the task, usually in favor of another more enjoyable (or less unenjoyable) activity. This behavior [...]]]></description>
			<content:encoded><![CDATA[<h3>Or why I have not been posting</h3>
<p><a href="http://en.wikibooks.org/wiki/Overcoming_Procrastination">Overcoming Procrastination</a></p>
<p>Except:</p>
<blockquote><p>Procrastination or &#8220;task aversion&#8221; is the irrational delay of an intended course of action, even while expecting to be worse off for the delay (compare temporisation). The procrastinator deviates from the task, usually in favor of another more enjoyable (or less unenjoyable) activity. This behavior is pervasive throughout society &#8211; everyone procrastinates to some degree &#8211; but some people are so chronically affected as to be severely debilitated.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2006/04/25/dont-delay-read-this-wikibook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technorati Integration Attempts</title>
		<link>http://rubinium.org/blog/archives/2005/12/31/technorati-integration-attempts/</link>
		<comments>http://rubinium.org/blog/archives/2005/12/31/technorati-integration-attempts/#comments</comments>
		<pubDate>Sat, 31 Dec 2005 19:46:18 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Datapoint]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/index.php/2005/12/31/technorati-integration-attempts/</guid>
		<description><![CDATA[I have now added some automated Technorati integration to this WordPress blog which will hopefully make it more integrated with a tag based internet. I addded the WordPress TechnoTag which allows you to add &#60;ttag&#62;&#8217;s around a term that relates to the subject of the post or comment. The TechnoTag plugin has a little bit [...]]]></description>
			<content:encoded><![CDATA[<p>I have now added some automated <a href="http://www.technorati.com/tag/Technorati" rel="tag" title="See posts from other blogs talking about &quot;Technorati&quot; on Technorati.com">Technorati<img src="http://rubinium.org/blog/wp-content/plugins/icn-talkbubble.gif" class="ttag" style="vertical-align:middle;padding-left:2px;padding-right:2px;border-width:0px;" alt="" /></a> integration to this <a href="http://www.technorati.com/tag/Wordpress" rel="tag" title="See posts from other blogs talking about &quot;Wordpress&quot; on Technorati.com">WordPress<img src="http://rubinium.org/blog/wp-content/plugins/icn-talkbubble.gif" class="ttag" style="vertical-align:middle;padding-left:2px;padding-right:2px;border-width:0px;" alt="" /></a> blog which will hopefully make it more integrated with a tag based internet. I addded the WordPress <a href="http://dev.wp-plugins.org/wiki/TechnoTag">TechnoTag</a> which allows you to add &lt;ttag&gt;&#8217;s around a term that relates to the subject of the post or comment. The TechnoTag plugin has a little bit of breakage though. It will make subsequent tags link to the first tag name in a post. There is a fix listed <a href="http://www.lewismoten.com/?p=1262">here</a> which you can use to patch it up. Do take care to convert the fancy quotes to real ones so PHP doesn&#8217;t s|it the bed on you.</p>
<p>I have also made further attempts to <a href="http://technorati.com/account/">register</a> this blog and I am presently trying to contect their support to figure out why it no worky. To answer <a href="http://literalbarrage.org">Doug&#8217;s</a> question, Technorati allows a user to create a RSS feed for arbitrary searches. Therefor you could have notification of someone linking to your site or to a peticular tag. If Doug had known this he could have been notified of this post in his <a href="http://liferea.sourceforge.net">liferea</a> <small>cha cha cha</small></p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2005/12/31/technorati-integration-attempts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nothing to see here. Move along.</title>
		<link>http://rubinium.org/blog/archives/2005/12/31/nothing-to-see-here-move-along/</link>
		<comments>http://rubinium.org/blog/archives/2005/12/31/nothing-to-see-here-move-along/#comments</comments>
		<pubDate>Sat, 31 Dec 2005 05:55:02 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/index.php/2005/12/31/nothing-to-see-here-move-along/</guid>
		<description><![CDATA[Trying to get Technorati to properly recognize this site. Just ignore. Technorati Profile]]></description>
			<content:encoded><![CDATA[<p>Trying to get Technorati to properly recognize this site. Just ignore.<br />
<a href="http://technorati.com/claim/recpq2smbj">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2005/12/31/nothing-to-see-here-move-along/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Is Back Online</title>
		<link>http://rubinium.org/blog/archives/2005/09/06/site-is-back-online/</link>
		<comments>http://rubinium.org/blog/archives/2005/09/06/site-is-back-online/#comments</comments>
		<pubDate>Tue, 06 Sep 2005 15:11:51 +0000</pubDate>
		<dc:creator>A R Baboon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubinium.org/blog/?p=34</guid>
		<description><![CDATA[And there was much rejoicing &#8230;yay&#8230; Hopefully this is now new and improved version of Rubinium.org with category icons links to the galleries and regular posts even]]></description>
			<content:encoded><![CDATA[<p>And there was much rejoicing &#8230;yay&#8230; Hopefully this is now new and improved version of Rubinium.org with category icons links to the galleries and regular posts even <img src='http://rubinium.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://rubinium.org/blog/archives/2005/09/06/site-is-back-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

