<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Bearded Magnum</title>
	
	<link>http://beardedmagnum.com</link>
	<description />
	<lastBuildDate>Mon, 16 Feb 2009 06:23:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BeardedMagnum" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="beardedmagnum" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Converting git-svn tag branches to real tags</title>
		<link>http://beardedmagnum.com/2009/02/15/converting-git-svn-tag-branches-to-real-tags/</link>
		<comments>http://beardedmagnum.com/2009/02/15/converting-git-svn-tag-branches-to-real-tags/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 06:23:53 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=144</guid>
		<description><![CDATA[Lately I&#8217;ve been converting a Subversion repository to Git using git-svn. The conversion is a breeze, you just need time.

$ mkdir killerapp
$ cd killerapp
$ git svn init -t tags -b branches -T trunk https://mysvn.com/killerapp
Initialized empty Git repository in .git/
$ git svn fetch

So now you have a working Git repo, fine.  The only concern is [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been converting a Subversion repository to Git <a href="http://utsl.gen.nz/talks/git-svn/intro.html#howto-fetch-slow">using git-svn</a>. The conversion is a breeze, you just need time.<br />
<code><br />
$ mkdir killerapp<br />
$ cd killerapp<br />
$ git svn init -t tags -b branches -T trunk https://mysvn.com/killerapp<br />
Initialized empty Git repository in .git/<br />
$ git svn fetch<br />
</code></p>
<p>So now you have a working Git repo, fine.  The only concern is how git-svn handles tags. Each SVN tag is converted into a branch, not a tag. For instance, tag 1.2 becomes git branch tag/1.2. git-svn might have a good reason for doing it but this is a bit disturbing to me, especially when you have dozens of tags polluting your &#8216;git branch&#8217; output.<br />
So I intended to convert all these branches into real tags, and delete them. Here is the command I came up with:<br />
<code><br />
$ git-for-each-ref refs/remotes/origin/tags | cut -d / -f 5- |<br />
 while read ref<br />
 do<br />
git tag -a "$ref" -m"say farewell to SVN" "refs/remotes/origin/tags/$ref"<br />
  git push origin ":refs/heads/tags/$ref"<br />
  git push origin tag "$ref"<br />
 done<br />
</code></p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/aBzN-ZvGXcQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2009/02/15/converting-git-svn-tag-branches-to-real-tags/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>git-svn on redhat 5.3</title>
		<link>http://beardedmagnum.com/2009/02/13/git-svn-on-redhat-53/</link>
		<comments>http://beardedmagnum.com/2009/02/13/git-svn-on-redhat-53/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 23:31:32 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=140</guid>
		<description><![CDATA[If you happen to get an error like Can't locate SVN/Core.pm when running git-svn on a redhat, simply install the package subversion-perl.
]]></description>
			<content:encoded><![CDATA[<p>If you happen to get an error like <code>Can't locate SVN/Core.pm</code> when running git-svn on a redhat, simply install the package subversion-perl.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/J92j1BvccFM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2009/02/13/git-svn-on-redhat-53/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>yet another git command: git-filter-branch</title>
		<link>http://beardedmagnum.com/2009/02/09/yet-another-git-command-git-filter-branch/</link>
		<comments>http://beardedmagnum.com/2009/02/09/yet-another-git-command-git-filter-branch/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 23:13:44 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=81</guid>
		<description><![CDATA[While browsing the Git Community Book, I came across another great Git command: git-filter-branch. This command is a good way to edit commits en masse. The command gives you access to commit information and let you do whatever you want with them.
Here is my use case: every new feature I code for ODE has a [...]]]></description>
			<content:encoded><![CDATA[<p>While browsing the <a title="The Git Community Book" href="http://book.git-scm.com">Git Community Book</a>, I came across another great Git command: <a href="http://www.kernel.org/pub/software/scm/git/docs/git-filter-branch.html">git-filter-branch</a>. This command is a good way to edit commits en masse. The command gives you access to commit information and let you do whatever you want with them.</p>
<p>Here is my use case: every new feature I code for <a href="http://ode.apache.org" target="_blank">ODE</a> has a JIRA id. It&#8217;s a good practice to mention this identifier in your <a href="http://jukka.zitting.name/git/?p=ode.git;a=shortlog;h=refs/heads/APACHE_ODE_1.X" target="_blank">commit messages</a>, so that people can quickly know which issue this commit refers to, and eventually consult the JIRA page to get all the information related to it.  Some tooling might even be built around this simple practice: for instance JIRA will index all <a href="https://issues.apache.org/jira/browse/ODE-415?page=com.atlassian.jira.plugin.ext.subversion:subversion-commits-tabpanel" target="_blank">the commits refering to a given issue</a>.</p>
<p>Back to our case, so as I develop this new feature on my local Git branch, it happens that this JIRA id is rarely in my commit messages. Either because I forget, either because at the time of the commit I&#8217;m thinking to squash it later, etc. So when it comes to push these commits, I need to <a href="http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html">rebase</a> my branch in interactive mode and manually edit each commit to prepend the JIRA id. Quite painful actually when you have a dozen of commits.</p>
<p>git-filter-branch makes that job in one single command:</p>
<pre>
$git-filter-branch --msg-filter "sed -e 's/.*/ODE-415: &amp;/'" HEAD~8..
</pre>
<p>The argument is evaluated in the shell with the original commit message on standard input; its standard output is used as the new commit message. Nice..</p>
<p>No need to say that git-filter-branch should be use with care. The original refs, if different from the rewritten ones, will be stored in the namespace refs/original/.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/IwW645nKMqA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2009/02/09/yet-another-git-command-git-filter-branch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>American Civil Liberties Union</title>
		<link>http://beardedmagnum.com/2008/11/17/american-civil-liberties-union/</link>
		<comments>http://beardedmagnum.com/2008/11/17/american-civil-liberties-union/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 05:57:59 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=126</guid>
		<description><![CDATA[The &#8220;Downloads/Multimedia&#8221; page of the ACLU has a section named &#8220;Know Your Rights&#8221;.  As a non-citizen being living in the US for only 10 months, I&#8217;m not really aware of US-specific rights. You can even download and print a pocket card memo.
This was highly informative to me mainly because it validates everything I learnt [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://action.aclu.org/site/PageServer?pagename=AS_downloads">&#8220;Downloads/Multimedia&#8221; page</a> of the ACLU has a section named &#8220;Know Your Rights&#8221;.  As a non-citizen being living in the US for only 10 months, I&#8217;m not really aware of US-specific rights. You can even <a href="http://action.aclu.org/site/DocServer/know_your_rights.pdf?docID=161">download</a> and print a pocket card memo.<br />
This was highly informative to me mainly because it validates everything I learnt in american police tv shows. To sum up: find a lawyer asap, keep his phone number with you at all time, call him before telling the police anything. </p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/FNk7vp30jOA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/11/17/american-civil-liberties-union/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Finance, more ads, more intrusive</title>
		<link>http://beardedmagnum.com/2008/11/17/google-finance-more-ads-more-intrusive/</link>
		<comments>http://beardedmagnum.com/2008/11/17/google-finance-more-ads-more-intrusive/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 22:56:57 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=112</guid>
		<description><![CDATA[
Six weeks ago Google added text ads at the bottom of Google Maps, now it&#8217;s Google Finance turn. Today during my lunch break some text ads appeared at the right top of Google Finance. It&#8217;s really intrusive: one quarter of the page width, exactly where the graph used to be. Your eyes can&#8217;t missed it [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://beardedmagnum.com/wp-content/uploads/2008/11/gfinance.png"><img src="http://beardedmagnum.com/wp-content/uploads/2008/11/gfinance.png" alt="" title="gfinance"class="aligncenter size-full wp-image-116" /></a><br />
Six weeks ago Google added <a href="http://www.techcrunch.com/2008/10/09/google-turns-on-text-ads-in-google-maps/">text ads at the bottom of Google Maps</a>, now it&#8217;s <a href="http://finance.google.com/finance">Google Finance</a> turn. Today during my lunch break some text ads appeared at the right top of Google Finance. It&#8217;s really intrusive: one quarter of the page width, exactly where the graph used to be. Your eyes can&#8217;t missed it because this is where you taught them to look in the first place! :( Don&#8217;t be evil&#8230;<br />
I haven&#8217;t tried to figure out how they generate the content of these ads, is it based on your stock portfolio? on your searches? is it uncorrelated with your profile? I doubt it.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/1wr8PK_nRZQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/11/17/google-finance-more-ads-more-intrusive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beware of unqualified elements</title>
		<link>http://beardedmagnum.com/2008/11/13/beware-of-unqualified-elements/</link>
		<comments>http://beardedmagnum.com/2008/11/13/beware-of-unqualified-elements/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 23:58:21 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=87</guid>
		<description><![CDATA[Usually I do my best to stay away from XML/XSD/Namespace puzzles. But today, I couldn&#8217;t escape it, my minimalist-but-yet-effective xml knowledge got challenged. And that&#8217;s really not the kind of challenge I like.
Here is the problem. I couldn&#8217;t understand why the following XML document does not validate against the given schema.


     [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/28432909@N05/2907513982/"><img src="http://beardedmagnum.com/wp-content/uploads/2008/11/unqualified-element-240x300.jpg" alt="" title="unqualified-element" width="240" height="300" class="alignleft size-medium wp-image-104" /></a>Usually I do my best to stay away from XML/XSD/Namespace puzzles. But today, I couldn&#8217;t escape it, my minimalist-but-yet-effective xml knowledge got challenged. And that&#8217;s really not the kind of challenge I like.</p>
<p>Here is the problem. I couldn&#8217;t understand why the following XML document does not validate against the given schema.</p>
<pre name="code" class="xml:nocontrols:nogutter">
<xs:schema xmlns:ns="http://axis2.ode.apache.org"
                  targetNamespace="http://axis2.ode.apache.org"
                  attributeFormDefault="qualified"
                  elementFormDefault="unqualified">
         <xs:element name="DummyException">
            <xs:complexType>
               <xs:sequence>
                   <xs:element minOccurs="0" name="reason" type="xs:string"/>
               </xs:sequence>
            </xs:complexType>
         </xs:element>
</xs:schema>
</pre>
<pre name="code" class="xml:nocontrols:nogutter">
<?xml version="1.0" encoding="UTF-8"?>
<ode:DummyException xmlns:ode="http://axis2.ode.apache.org">
	<ode:reason>Something went wrong.</ode:reason>
</ode:DummyException>
</pre>
<p>After some investigations and with some friends&#8217; eyes, we figured out that the elementFormDefault attribute was the cause of our troubles. In the XML document the <reason> element is in the &#8220;ode&#8221; namespace but the XML schema sets the elementFormDefault attribute to <em>unqualified</em>. As <a href="http://en.wikipedia.org/wiki/Michael_Kay_(software_engineer)">Michael Kay</a> <a href="http://osdir.com/ml/text.xml.devel/2006-12/msg00158.html">put it</a>, it &#8220;means that you want locally-declared elements like [reason] to be in no namespace.&#8221;</p>
<p>Even if &#8220;unqualified&#8221; is the <a href="http://www.w3.org/TR/xmlschema-0/#ref50">default value</a>, in most schemas, elements are qualified and I didn&#8217;t pay attention to that detail :/</p>
<p>So how does a valid document look like? One could be:</p>
<pre name="code" class="xml:nocontrols:nogutter">
<?xml version="1.0" encoding="UTF-8"?>
<ode:DummyException xmlns:ode="http://axis2.ode.apache.org">
	<reason>Something went wrong.</reason>
</ode:DummyException>
</pre>
<p>There is no default namespace, so unqualified elements default to no namespace.</p>
<p>Another valid instance document of that schema may look like:</p>
<pre name="code" class="xml:nocontrols:nogutter">
<?xml version="1.0" encoding="UTF-8"?>
<DummyException xmlns="http://axis2.ode.apache.org">
	<reason xmlns="">Something went wrong.</reason>
</DummyException>
</pre>
<p>The xmlns=&#8221;" declaration overrides the previous default namespace.</p>
<p><a href="http://www.xfront.com/HideVersusExpose.html">This article</a> discusses in more details the raison d&#8217;être of qualified/unqualified elements.</p>
<p>I am still to be convinced that unqualified elements could be useful, but now I know that Axis2 generates schemas with unqualified elements and for now on I will make no assumptions on the value of that attribute!</p>
<p>ps: if you know why the XML names get down-cased by the <a href="http://wordpress.org/extend/plugins/google-syntax-highlighter">Google syntax highlighter for Wordpress</a>, drop me a line please.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/uEPjbttsR-U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/11/13/beware-of-unqualified-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InfoQ: How to GET a Cup of Coffee</title>
		<link>http://beardedmagnum.com/2008/11/13/infoq-how-to-get-a-cup-of-coffee/</link>
		<comments>http://beardedmagnum.com/2008/11/13/infoq-how-to-get-a-cup-of-coffee/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 08:18:24 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/2008/11/13/infoq-how-to-get-a-cup-of-coffee/</guid>
		<description><![CDATA[In case you&#8217;re still thinking REST is only about HTTP, the following article InfoQ: How to GET a Cup of Coffee. is a must-read. Through a real life workflow example, the authors illustrate what “Hypermedia as the engine of application state&#8221; really means.
It&#8217;s dated October 2nd, so forgive me if you have already read it, [...]]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;re still thinking REST is only about HTTP, the following article <a href="http://www.infoq.com/articles/webber-rest-workflow">InfoQ: How to GET a Cup of Coffee</a>. is a must-read. Through a real life workflow example, the authors illustrate what “Hypermedia as the engine of application state&#8221; really means.</p>
<p>It&#8217;s dated October 2nd, so forgive me if you have already read it, I&#8217;m catching up on my <a href="https://readitlaterlist.com/">to-read</a> backlog.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/GYj7n4CiQGk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/11/13/infoq-how-to-get-a-cup-of-coffee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>They’re back for Obama!</title>
		<link>http://beardedmagnum.com/2008/10/26/theyre-back-for-obama/</link>
		<comments>http://beardedmagnum.com/2008/10/26/theyre-back-for-obama/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 00:47:16 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=78</guid>
		<description><![CDATA[
YouTube &#8211; Wassup 2008.
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/Qq8Uc5BFogE&amp;eurl=http://almaer.com/blog/how-trickle-down-economics-is-bogus-and-why-it-matters-in-this-election" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/Qq8Uc5BFogE&amp;eurl=http://almaer.com/blog/how-trickle-down-economics-is-bogus-and-why-it-matters-in-this-election" wmode="transparent"></embed></object></p>
<p><a href="http://www.youtube.com/watch?v=Qq8Uc5BFogE&amp;eurl=http://almaer.com/blog/how-trickle-down-economics-is-bogus-and-why-it-matters-in-this-election">YouTube &#8211; Wassup 2008</a>.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/ZkEpxpgjjZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/10/26/theyre-back-for-obama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InfoQ: Tom Preston-Werner on Powerset, GitHub, Ruby and Erlang</title>
		<link>http://beardedmagnum.com/2008/10/20/infoq-tom-preston-werner-on-powerset-github-ruby-and-erlang/</link>
		<comments>http://beardedmagnum.com/2008/10/20/infoq-tom-preston-werner-on-powerset-github-ruby-and-erlang/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 06:32:41 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=75</guid>
		<description><![CDATA[I&#8217;m in the middle of the Programming Erlang book (or more exactly end of first third;) and it happens that Tom Preston-Werner gave an interview to InfoQ a couple of weeks ago. Tom Preston-Werner is a founder of Github among other things and seems to be a big fan of Ruby and Erlang. Being completely [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the middle of the <a href="http://www.pragprog.com/titles/jaerlang/programming-erlang">Programming Erlang book</a> (or more exactly end of first third;) and it happens that Tom Preston-Werner gave an <a href="http://www.infoq.com/interviews/preston-werner-powerset-github-ruby">interview to InfoQ</a> a couple of weeks ago. Tom Preston-Werner is a founder of <a href="http://github.com">Github</a> among other things and seems to be a big fan of Ruby and Erlang. Being completely new to the Erlang world, his interview comes just in time with a couple of pointers to Erlang projects to look at:</p>
<ul>
<li> <a href="http://github.com/KirinDave/fuzed">Fuzed</a>, a clustering system managing heterogeneous resources.</li>
<li><a href="http://github.com/mojombo/erlectricity/tree/master">Erlectricity</a>, a Ruby program to receive and respond to Erlang messages<br />
sent over the Erlang binary protocol.</li>
</ul>
<p>I was also amazed to hear that the Github completely bypasses the git executable to access git objects. Actually the Github guys have written a Ruby client to do that in a more efficient manner performance wise.</p>
<blockquote><p>we have replaced a lot of the shell out calls in Ruby you do the shell out, we replaced most of those, possibly all of them by now with just pure Ruby, we go directly to the file system. We read the object data from the Git repository, we read that directly. And by doing that we have been able to get a multiplier of two speed up on the web pages throughout the site. Double the speed of the page load and that&#8217;s been awesome. So we are using that when you install Git.</p></blockquote>
<p><a href="http://www.infoq.com/interviews/preston-werner-powerset-github-ruby">InfoQ: Tom Preston-Werner on Powerset, GitHub, Ruby and Erlang</a>.</p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/DWuP9uohQdk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/10/20/infoq-tom-preston-werner-on-powerset-github-ruby-and-erlang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>in case you were still hesitating: Obama is RESTful</title>
		<link>http://beardedmagnum.com/2008/10/16/in-case-you-were-still-hesitating-obama-is-restful/</link>
		<comments>http://beardedmagnum.com/2008/10/16/in-case-you-were-still-hesitating-obama-is-restful/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 22:49:49 +0000</pubDate>
		<dc:creator>Alexis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beardedmagnum.com/?p=69</guid>
		<description><![CDATA[This statement is more than a stretch, but well it&#8217;s less harmful than saying Saddam had weapons of mass destruction.

Obama is RESTful » Idol Hands: Days in the Life of an Alpha Geek
]]></description>
			<content:encoded><![CDATA[<p>This statement is more than a stretch, but well it&#8217;s less harmful than saying Saddam had weapons of mass destruction.</p>
<p><a href="http://www.idolhands.com/personal/obama-is-restful/"><img class="aligncenter" src="http://www.idolhands.com/grafx/candidate_tech/obama_navigation.png" alt="" /></a></p>
<p><a href="http://www.idolhands.com/personal/obama-is-restful/">Obama is RESTful » Idol Hands: Days in the Life of an Alpha Geek</a></p>
<img src="http://feeds.feedburner.com/~r/BeardedMagnum/~4/XC3_jO40ad4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://beardedmagnum.com/2008/10/16/in-case-you-were-still-hesitating-obama-is-restful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
