<?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; Programming</title>
	<atom:link href="http://crobak.org/category/prog/feed/" rel="self" type="application/rss+xml" />
	<link>http://crobak.org</link>
	<description>a moose-dog production.</description>
	<lastBuildDate>Fri, 09 Oct 2009 00:58:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JAVA_HOME on Mac OS X</title>
		<link>http://crobak.org/2009/10/java_home-on-mac-os-x/</link>
		<comments>http://crobak.org/2009/10/java_home-on-mac-os-x/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 00:57:50 +0000</pubDate>
		<dc:creator>joecrow</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://crobak.org/?p=28</guid>
		<description><![CDATA[I was working on configuring HBase to run on my Mac OS X machine, and I ran into a hiccup setting up the JAVA_HOME environment variable.  Eventually, I determined that there&#8217;s a &#8220;Home&#8221; directory inside of each Java Framework. So, the full command is is:
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
]]></description>
			<content:encoded><![CDATA[<p>I was working on configuring HBase to run on my Mac OS X machine, and I ran into a hiccup setting up the <code>JAVA_HOME</code> environment variable.  Eventually, I determined that there&#8217;s a &#8220;Home&#8221; directory inside of each Java Framework. So, the full command is is:</p>
<blockquote><p><code>export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://crobak.org/2009/10/java_home-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aliases and colorful ls in Mac OS X</title>
		<link>http://crobak.org/2009/06/aliases-and-colorful-ls-in-mac-os-x/</link>
		<comments>http://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[Programming]]></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 the full path to the python script.  The solution was to add an alias to [...]]]></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://crobak.org/2009/06/aliases-and-colorful-ls-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
