<?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>AntonOlsen &#187; HOWTO</title>
	<atom:link href="http://www.antonolsen.com/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.antonolsen.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Sep 2010 15:45:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>1200 fps Mentos and Diet Coke</title>
		<link>http://www.antonolsen.com/2008/05/08/1200-fps-mentos-and-diet-coke/</link>
		<comments>http://www.antonolsen.com/2008/05/08/1200-fps-mentos-and-diet-coke/#comments</comments>
		<pubDate>Thu, 08 May 2008 18:10:41 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[mentos]]></category>
		<category><![CDATA[slow-motion]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://antonolsen.com/?p=618</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.antonolsen.com/2008/05/08/1200-fps-mentos-and-diet-coke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Keys Howto Quicky</title>
		<link>http://www.antonolsen.com/2007/10/11/ssh-keys-howto-quicky/</link>
		<comments>http://www.antonolsen.com/2007/10/11/ssh-keys-howto-quicky/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 16:39:14 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://antonolsen.com/2007/10/11/ssh-keys-howto-quicky/</guid>
		<description><![CDATA[Toss this little shell script in your bin dir and you can quickly create and setup ssh keys between your client and server. I called it sshkeys.sh but you can name it what you want. #!/bin/bash KEY_PRIVATE="$HOME/.ssh/id_dsa" KEY_PUBLIC="${KEY_PRIVATE}.pub" if [ "$1" == "" ] ; then echo "Usage: $0 &#60;[user@]server&#62;" exit fi if [ ! [...]]]></description>
			<content:encoded><![CDATA[<p>Toss this little shell script in your bin dir and you can quickly create and setup ssh keys between your client and server.  I called it sshkeys.sh but you can name it what you want.</p>
<blockquote>
<pre>
#!/bin/bash

KEY_PRIVATE="$HOME/.ssh/id_dsa"
KEY_PUBLIC="${KEY_PRIVATE}.pub"

if [ "$1" == "" ] ; then
   echo "Usage: $0 &lt;[user@]server&gt;"
   exit
fi

if [ ! -f "${KEY_PRIVATE}" ] ; then
   echo Creating the private and public keys.
   ssh-keygen -t dsa -f "${KEY_PRIVATE}" -N ''
fi

if [ -f "${KEY_PUBLIC}" ] ; then
   cat "${KEY_PUBLIC}" |
   ssh "${1}" "mkdir -p ~/.ssh ; cat &gt;&gt; .ssh/authorized_keys2 ; chmod -R go-rwx ~/.ssh"
else
   echo Unable to find "${KEY_PUBLIC}"
fi</pre>
</blockquote>
<p>Run this, enter your pass once, and then you&#8217;re free to ssh without entering a password.</p>
<p>Watch for line wraps in your browser, especially the ssh line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antonolsen.com/2007/10/11/ssh-keys-howto-quicky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import Thunderbird Contacts Into GMail</title>
		<link>http://www.antonolsen.com/2007/05/01/export-thunderbird-contacts-and-import-into-gmail/</link>
		<comments>http://www.antonolsen.com/2007/05/01/export-thunderbird-contacts-and-import-into-gmail/#comments</comments>
		<pubDate>Tue, 01 May 2007 15:04:46 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://antonolsen.com/2007/05/01/export-thunderbird-contacts-and-import-into-gmail/</guid>
		<description><![CDATA[It&#8217;s easy to use the &#8220;cut&#8221; command to convert your Thunderbird contacts into a format that GMail is happy to import. Start out in Thunderbird, click Tools, Address Book. Once the Address Book pops up click Tools, Export. A save dialog should popup asking you to for a filename and folder. Look down by the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s easy to use the &#8220;cut&#8221; command to convert your Thunderbird contacts into a format that GMail is happy to import.</p>
<p>Start out in Thunderbird, click Tools, Address Book.  Once the Address Book pops up click Tools, Export.  A save dialog should popup asking you to for a filename and folder.  Look down by the save button, change the format dropdown from LDIF to CSV, name the file myExport.csv and click Save.  The default of the home dir should be fine.</p>
<p>All of your T-Bird contacts are now in the CSV file, but GMail won&#8217;t appreciate the extra columns and lack of headers.  We can fix that easily from the command line.  Open a shell and change to the directory where you saved your CSV.  Run the following command:</p>
<blockquote><p> echo First Name,Last Name,Email Address &gt; toImport.csv ; cat myExport.csv |cut -d&#8221;,&#8221; -f1,2,5 &gt;&gt;toImport.csv</p>
</blockquote>
<p>Now head over to your gmail account and import the csv.  The Import link is on the &#8220;Contacts&#8221; page near the top right.</p>
<p>GMail should report success once it&#8217;s done processing the file and tell you how many contacts it imported.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antonolsen.com/2007/05/01/export-thunderbird-contacts-and-import-into-gmail/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>photo cube &#8211; frameless, cheap and easy!</title>
		<link>http://www.antonolsen.com/2007/02/08/photo-cube-frameless-cheap-and-easy/</link>
		<comments>http://www.antonolsen.com/2007/02/08/photo-cube-frameless-cheap-and-easy/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 21:37:23 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://antonolsen.com/?p=211</guid>
		<description><![CDATA[Find a block then tape or glue a photo to each face. Or you can do it that hard way like this guy.]]></description>
			<content:encoded><![CDATA[<p>Find a block then tape or glue a photo to each face.</p>
<p>Or you can do it that hard way like <a href="http://www.instructables.com/id/EX9YRGQPCHEQHO8W4K?ALLSTEPS">this guy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antonolsen.com/2007/02/08/photo-cube-frameless-cheap-and-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bicycle Hoist or &#8220;How to get the wife&#8217;s bike out of my way&#8221;</title>
		<link>http://www.antonolsen.com/2007/02/08/bicycle-hoist-or-how-to-get-the-wifes-bike-out-of-my-way/</link>
		<comments>http://www.antonolsen.com/2007/02/08/bicycle-hoist-or-how-to-get-the-wifes-bike-out-of-my-way/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 16:19:11 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://antonolsen.com/?p=210</guid>
		<description><![CDATA[Nail two pulleys to the ceiling, run some rope through the pulleys and tie it to the bike, pull. Or, waste a bunch of time reading how this guy did.]]></description>
			<content:encoded><![CDATA[<p>Nail two pulleys to the ceiling, run some rope through the pulleys and tie it to the bike, pull.</p>
<p>Or, waste a bunch of time reading how this <a href="http://www.instructables.com/id/EZLP9OG6NAEXCFJZ5G">guy did</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antonolsen.com/2007/02/08/bicycle-hoist-or-how-to-get-the-wifes-bike-out-of-my-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
