<?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>joe crobak&#039;s website &#187; Uncategorized</title>
	<atom:link href="http://www.crobak.org/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crobak.org</link>
	<description>sharing what I find</description>
	<lastBuildDate>Sun, 04 Dec 2011 23:18:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>What to Take to an Ultimate Frisbee Tournament</title>
		<link>http://www.crobak.org/2009/10/what-to-take-to-an-ultimate-frisbee-tournament/</link>
		<comments>http://www.crobak.org/2009/10/what-to-take-to-an-ultimate-frisbee-tournament/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 16:40:00 +0000</pubDate>
		<dc:creator>joecrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://crobak.org/?p=24</guid>
		<description><![CDATA[I&#8217;ve had this list scribbled on the back of a receipt for months, and thought I should commit it somewhere more permanent.  Hopefully it&#8217;s of use to someone out there! The basics Underwear (x3-4) Towel Socks (x4, two-pair each day) &#8230; <a href="http://www.crobak.org/2009/10/what-to-take-to-an-ultimate-frisbee-tournament/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had this list scribbled on the back of a receipt for months, and thought I should commit it somewhere more permanent.  Hopefully it&#8217;s of use to someone out there!</p>
<p>The basics</p>
<ul>
<li>Underwear (x3-4)</li>
<li>Towel</li>
<li>Socks (x4, two-pair each day)</li>
<li>Shorts</li>
<li>Shirts
<ul>
<li>Dark (x2)</li>
<li>Light (x2)</li>
<li>Sleeping</li>
<li>Driving</li>
</ul>
</li>
<li>Cleats</li>
<li>Sandals</li>
<li>Grooming
<ul>
<li>Shampoo</li>
<li>Q-Tips</li>
<li>Soap</li>
<li>Toothbrush</li>
<li>Toothpaste</li>
</ul>
</li>
<li>Sunscreen</li>
<li>Bugspray</li>
<li>Disc(s)</li>
<li>Hat or Bandana</li>
<li>Rain gear</li>
<li>Cold gear (sweatshirt, pants)</li>
<li>Chair</li>
<li>Cooler</li>
</ul>
<p>Sustenance</p>
<ul>
<li>Water bottles</li>
<li>Gatorade</li>
<li>Food (granola, pb&amp;j, etc)</li>
<li>Ibuprofen</li>
</ul>
<p>If Camping</p>
<ul>
<li>Tent</li>
<li>Sleeping Bag</li>
<li>Bed Roll</li>
<li>Pillow</li>
<li>Flashlight</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.crobak.org/2009/10/what-to-take-to-an-ultimate-frisbee-tournament/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aliases and colorful ls in Mac OS X</title>
		<link>http://www.crobak.org/2009/06/aliases-and-colorful-ls-in-mac-os-x/</link>
		<comments>http://www.crobak.org/2009/06/aliases-and-colorful-ls-in-mac-os-x/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 22:24:45 +0000</pubDate>
		<dc:creator>joecrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://crobak.org/?p=13</guid>
		<description><![CDATA[At work, we use svn as a code repository and svnmerge for branch management.  A coworker who recently switched to Mac asked me how he could assign a global variable so that he could run the svnmerge command without specifying &#8230; <a href="http://www.crobak.org/2009/06/aliases-and-colorful-ls-in-mac-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At work, we use <a href="http://subversion.tigris.org/">svn</a> as a code repository and <a href="http://www.orcaware.com/svn/wiki/Svnmerge.py">svnmerge</a> for branch management.  A coworker who recently switched to Mac asked me how he could assign a global variable so that he could run the <em>svnmerge</em> command without specifying the full path to the python script.  The solution was to add an <code>alias</code> to <em>svnmerge</em> that is loaded on shell startup.  Since Mac OS X uses the bash shell, he needed to add the following to his <code>.profile</code> file (the <code>.profile</code> file sits in the home directory and can be created if it doesn&#8217;t yet exist):</p>
<pre>alias svnmerge='/path/to/svnmerge.py'</pre>
<p>The <code>svnmerge.py</code> file also needs to be executable (<code>chmod a+x svnmerge.py</code>).  The changes will take effect the next time you open a new shell.</p>
<p>While I&#8217;m at it, it&#8217;s worth mentioning another useful option that I have in my .profile file.  By adding <code>export CLICOLOR=1,</code> the ls command will output in color to distinguish between directories, files, and executables.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crobak.org/2009/06/aliases-and-colorful-ls-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

