<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>The Life and Times of H. Griffin</title>
	<atom:link href="http://www.hermangriffin.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hermangriffin.com/blog</link>
	<description>Code is fun</description>
	<lastBuildDate>Wed, 17 Mar 2010 20:18:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.6.1" -->
	<copyright>Copyright &#xA9; The Life and Times of H. Griffin 2010 </copyright>
	<managingEditor>herman@hermangriffin.com (The Life and Times of H. Griffin)</managingEditor>
	<webMaster>herman@hermangriffin.com (The Life and Times of H. Griffin)</webMaster>
	<category>posts</category>
	<image>
		<url>http://www.hermangriffin.com/blog/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>The Life and Times of H. Griffin</title>
		<link>http://www.hermangriffin.com/blog</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Code is fun</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &amp; Culture" />
	<itunes:author>The Life and Times of H. Griffin</itunes:author>
	<itunes:owner>
		<itunes:name>The Life and Times of H. Griffin</itunes:name>
		<itunes:email>herman@hermangriffin.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.hermangriffin.com/blog/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Export Your Public SSH Key</title>
		<link>http://www.hermangriffin.com/blog/2010/02/export-your-public-ssh-key/</link>
		<comments>http://www.hermangriffin.com/blog/2010/02/export-your-public-ssh-key/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 02:55:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Passwordless Login]]></category>
		<category><![CDATA[RSA]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.hermangriffin.com/blog/?p=16</guid>
		<description><![CDATA[Adding a public SSH key to a Unix, Linux or other OpenSSH server is a bit of a tedious task; Copy the key, open a shell session, use your favorite text editor to paste the key in place. Unless you have a farm or a servers, it probably nothing more then a slight damper on [...]]]></description>
			<content:encoded><![CDATA[<p>Adding a public SSH key to a Unix, Linux or other OpenSSH server is a bit of a tedious task; Copy the key, open a shell session, use your favorite text editor to paste the key in place. Unless you have a farm or a servers, it probably nothing more then a slight damper on your otherwise awesome day.</p>
<p>I wrote a simple script to make adding public RSA keys just a tad bit easier.</p>
<pre class="brush: bash;">

#!/bin/sh
# written by: Herman Griffin
# herman@hermangriffin.com

if [ ! $1 ];
then
echo &quot;USAGE:&quot;
echo &quot; $0 USER@HOST&quot;;
echo &quot; USER = SSH username&quot;;
echo &quot; HOST = SSH server to export your public key to&quot;
else
key_file=$(echo ~/.ssh/id_rsa.pub);
auth_file=&quot;.ssh/authorized_keys&quot;;
key=$(cat $key_file);

ssh $1 &quot;touch $auth_file; chmod 644 $auth_file; echo $key &gt;&gt; $auth_file; tail -n1 $auth_file&quot;;
fi
</pre>
<p>Download it <a href="http://www.hermangriffin.com/files/code/sh/export_ssh_key.sh" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hermangriffin.com/blog/2010/02/export-your-public-ssh-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>one or two things about dad</title>
		<link>http://www.hermangriffin.com/blog/2010/02/one-or-two-things-about-dad/</link>
		<comments>http://www.hermangriffin.com/blog/2010/02/one-or-two-things-about-dad/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 23:20:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hermangriffin.com/blog/?p=13</guid>
		<description><![CDATA[Weird,silly,nice ,he is 28,HE PLAYS TOO MUCH. By: Daughter]]></description>
			<content:encoded><![CDATA[<p>Weird,silly,nice ,he is 28,HE PLAYS TOO MUCH.</p>
<p>By: Daughter</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hermangriffin.com/blog/2010/02/one-or-two-things-about-dad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.hermangriffin.com/blog/2009/10/hello-world/</link>
		<comments>http://www.hermangriffin.com/blog/2009/10/hello-world/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:31:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hermangriffin.com/blog/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hermangriffin.com/blog/2009/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->