<?xml version="1.0" encoding="utf-8"?>
<!-- generator="wordpress/1.5.1-alpha" -->
<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/"
>

<channel>
	<title>Mark W. Shead</title>
	<link>http://blog.markwshead.com</link>
	<description>Mark's Weblog</description>
	<pubDate>Mon, 09 Oct 2006 17:29:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>en</language>

		<item>
		<title>Another Reason DMOZ is dying</title>
		<link>http://blog.markwshead.com/archives/2006/10/09/another-reason-dmoz-is-dying.html</link>
		<comments>http://blog.markwshead.com/archives/2006/10/09/another-reason-dmoz-is-dying.html#comments</comments>
		<pubDate>Mon, 09 Oct 2006 17:29:05 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>General</category>
		<guid>http://blog.markwshead.com/archives/2006/10/09/another-reason-dmoz-is-dying.html</guid>
		<description><![CDATA[	After reading a some comments in a blog post about how DMOZ really needs more good editors, I thought I&#8217;d give it a try.  I noticed that the Personal Organization category didn&#8217;t have an editor so I pushed the button to apply to be an editor.  I filled out the form carefully and [...]]]></description>
			<content:encoded><![CDATA[	<p>After reading a some comments in a <a href="http://www.shoemoney.com/2006/10/08/dmoz-directory-how-much-money-is-it-worth-to-you/#comments">blog post</a> about how DMOZ really needs more good editors, I thought I&#8217;d give it a try.  I noticed that the Personal Organization category didn&#8217;t have an editor so I pushed the button to apply to be an editor.  I filled out the form carefully and spent a good amount of time trying to find the sample sites that I would add to that category.</p>
	<p>After spending a good amount of time filling everything out, I submitted the application.  Later on in the day I received this response:</p>
	<blockquote><p>Dear Mark Shead,</p>
	<p>Thank you for your interest in becoming an Open Directory Project editor!<br />
Although we would like you to join us as a volunteer editor, you have<br />
chosen a category that is already well represented, or is broader than<br />
we typically assign to a new editor.  We would encourage you to re-apply<br />
for a category that has fewer editors or is smaller in scope, in order<br />
to increase your chances of being accepted.</p>
	<p>Feel free to reapply by submitting an application in another area.<br />
If you wish to re-apply, you must fill out another application.<br />
Please do not reply to this email. </p>
	<p>Regards,<br />
The Open Directory Project </p>
	<p>Additional reviewer comments: </p></blockquote>
	<p>Now I understand if they only want you to be an editor of a small category at first.  When I signed up, I tried to use a sub category, but the only subcategory was for consultants, and I wasn&#8217;t really interested in doing that.</p>
	<p>If they really don&#8217;t want people to apply for these categories, they shouldn&#8217;t put links to sign up as an editor at the bottom.  If they had of had a suggestion of a different category to try that would at least show that there was some level of thought on their side of things.  Just saying &#8220;keep applying and maybe we&#8217;ll eventually let you in&#8221; seems like it has a good chance of just wasting my time.</p>
	<p>If you want good editors, you need to make sure you aren&#8217;t wasting their time.  Good editors are more likely to be busy individuals who want to contribute to the community. Bad editors are more likely to be people who will just keep applying over and over again until someone eventually lets them in as an editor.</p>
	<p>Maybe I&#8217;ll try signing up as an editor again someday if I find a category that I&#8217;m interested in, but at this point I think DMOZ may be shooting themselves in the foot by asking for people to sign up as editors for a category and then telling them &#8220;no you can&#8217;t edit this category&#8221;.</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2006/10/09/another-reason-dmoz-is-dying.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Changing User Agent in Rome</title>
		<link>http://blog.markwshead.com/archives/2005/10/19/changing-user-agent-in-rome.html</link>
		<comments>http://blog.markwshead.com/archives/2005/10/19/changing-user-agent-in-rome.html#comments</comments>
		<pubDate>Wed, 19 Oct 2005 16:06:28 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>Programming</category>
	<category>Java</category>
		<guid>http://blog.markwshead.com/archives/2005/10/19/changing-user-agent-in-rome.html</guid>
		<description><![CDATA[	If you are trying to use Rome and Rome Feed Fetcher, the following will not change the default user agent:
	
FeedFetcher feedFetcher = new HttpURLFeedFetcher();
feedFetcher.setUserAgent(\"User Agent 007\");
SyndFeed feed = null;
feedURL = new URL(rssUrl);
feed = feedFetcher.retrieveFeed(feedURL);
List entries = feed.getEntries();

	To change the user agent you must use the InfoCache as shown:
	
FeedFetcherCache feedInfoCache = HashMapFeedInfoCache.getInstance();
FeedFetcher feedFetcher = new HttpURLFeedFetcher(feedInfoCache);
feedFetcher.setUserAgent(\"User [...]]]></description>
			<content:encoded><![CDATA[	<p>If you are trying to use Rome and Rome Feed Fetcher, the following will not change the default user agent:</p>
	<pre><code>
FeedFetcher feedFetcher = new HttpURLFeedFetcher();
feedFetcher.setUserAgent(\"User Agent 007\");
SyndFeed feed = null;
feedURL = new URL(rssUrl);
feed = feedFetcher.retrieveFeed(feedURL);
List entries = feed.getEntries();
</code></pre>
	<p>To change the user agent you must use the InfoCache as shown:</p>
	<pre><code>
FeedFetcherCache feedInfoCache = HashMapFeedInfoCache.getInstance();
FeedFetcher feedFetcher = new HttpURLFeedFetcher(feedInfoCache);
feedFetcher.setUserAgent(\"User Agent 007\");
SyndFeed feed = null;
feedURL = new URL(rssUrl);
feed = feedFetcher.retrieveFeed(feedURL);
List entries = feed.getEntries();
</code></pre>
	<p>Otherwise the User agent is set to &#8220;Java/1.5.0_04&#8243;.  This is odd because the default client for Rome is &#8220;Rome Client (http://tinyurl.com/64t5n) Ver: 0.7&#8243;.  It seems like an attempt to change the user agent without having a HashMapFeedInfoCache will result in changing the user agent, but somehow it reverts to &#8220;Java/1.5.0_04&#8243; instead of whatever you set it to.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/10/19/changing-user-agent-in-rome.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Inventing in software</title>
		<link>http://blog.markwshead.com/archives/2005/10/09/inventing-in-software.html</link>
		<comments>http://blog.markwshead.com/archives/2005/10/09/inventing-in-software.html#comments</comments>
		<pubDate>Sun, 09 Oct 2005 17:23:15 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
		
	<category>General</category>
	<category>Programming</category>
		<guid>http://blog.markwshead.com/archives/2005/10/09/inventing-in-software.html</guid>
		<description><![CDATA[	To invent, you need a good imagination and a pile of junk.
			&#8212; Thomas Edison

	This is what is so facinating about programming.  Your &#8220;pile of junk&#8221; consists of digital assest instead of physical matterial, so the raw materials are not limited by the normal laws of supply and demand.  In software, you are limited [...]]]></description>
			<content:encoded><![CDATA[	<blockquote><p>To invent, you need a good imagination and a pile of junk.</p>
	<p>		&#8212; Thomas Edison
</p></blockquote>
	<p>This is what is so facinating about programming.  Your &#8220;pile of junk&#8221; consists of digital assest instead of physical matterial, so the raw materials are not limited by the normal laws of supply and demand.  In software, you are limited only by your imagination.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/10/09/inventing-in-software.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Does Size Matter to Search Engines</title>
		<link>http://blog.markwshead.com/archives/2005/09/27/does-size-matter-to-search-engines.html</link>
		<comments>http://blog.markwshead.com/archives/2005/09/27/does-size-matter-to-search-engines.html#comments</comments>
		<pubDate>Tue, 27 Sep 2005 22:26:13 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>General</category>
	<category>Technology</category>
		<guid>http://blog.markwshead.com/archives/2005/09/27/does-size-matter-to-search-engines.html</guid>
		<description><![CDATA[	Yahoo and Google are trying to one up each other on whose database contains more pages. Does it really matter?  Isn&#8217;t relevancy more important?  It depends on who your user is.
	If most of your queries on search engines return hundreds or thousands of results, then it probably doesn&#8217;t matter who has the biggest [...]]]></description>
			<content:encoded><![CDATA[	<p>Yahoo and Google are trying to one up each other on whose database contains more pages. Does it really matter?  Isn&#8217;t relevancy more important?  It depends on who your user is.</p>
	<p>If most of your queries on search engines return hundreds or thousands of results, then it probably doesn&#8217;t matter who has the biggest index.  As long as Google and Yahoo get the popular pages, you&#8217;ll most likely find what you are looking for.  If you get a bunch of results from your search you are probably aren&#8217;t looking for a specific document on the web, so it doesn&#8217;t matter which page you get as long as it has the information you are after.</p>
	<p>Most internet users fall in the above category.  I tend to find that many of my searches return less than 20 results and sometimes only 2 or 3 or even 0.  For people like me the number of pages searched is much more important.  In fact for those types of searches the method used to order the results (determine the relevancy) isn&#8217;t really important.  With a small number of pages, it is easy to scan through the list and find the most relevant entry.</p>
	<p>Today I was working on a piece of equipment and it started giving me a less than helpful error message.  I typed the manufacturer (in quotes) and the error message (also in quotes) into Google hoping to find out how to fix my problem.  There were zero results.  I tried it on Yahoo and got the same thing.  After poking around in some forums I was able to find a post that described the problem on a page that was missing from both Yahoo and Google&#8217;s databases.  The post contained all the phrases that I had searched for it just wasn&#8217;t in either of the search engine&#8217;s indexes.</p>
	<p>Five years ago I taught a community college class about the internet.  I used Geocities to put up the tests, class outline, etc.  Today I tried search for:<br />
<code>site:geocities "juco internet class"</code><br />
In Google I get zero results.  With Yahoo I get a single result that links to the page I was searching for.</p>
	<p>I&#8217;m sure that there are other items that I could find with Google that won&#8217;t show up in Yahoo.  I&#8217;m not trying to say one engine is better than the other.  The point is that the index size does matter if you are looking for a specific document.  If Yahoo decides that they are going to maintain a larger index than Google, then there are going to be pages that can be found in the Yahoo index, but not in Google&#8217;s.  If you are looking for one of these pages then size is very important.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/09/27/does-size-matter-to-search-engines.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Backing Up Subversion Automatically</title>
		<link>http://blog.markwshead.com/archives/2005/09/21/backing-up-subversion-automatically.html</link>
		<comments>http://blog.markwshead.com/archives/2005/09/21/backing-up-subversion-automatically.html#comments</comments>
		<pubDate>Wed, 21 Sep 2005 23:15:36 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>General</category>
		<guid>http://blog.markwshead.com/archives/2005/09/21/backing-up-subversion-automatically.html</guid>
		<description><![CDATA[	Subversion is great, but like any data repository, it must be backed up regularly.  Many people have tried to implement version control without really understanding how it works, only to later discover that their backup strategy wasn&#8217;t working.
	The backup script I use is run every night as part of a cron job.  Each [...]]]></description>
			<content:encoded><![CDATA[	<p>Subversion is great, but like any data repository, it must be backed up regularly.  Many people have tried to implement version control without really understanding how it works, only to later discover that their backup strategy wasn&#8217;t working.</p>
	<p>The backup script I use is run every night as part of a cron job.  Each morning I get an email telling me if everything went ok or not.  Here is a list of what I want to happen with each backup:</p>
	<ol>
<li>Dump all the data out of the repository</li>
	<li>Name the file with a timedate stamp in the filename.  Something like YYYYMMDD-HHMM will work.</li>
	<li>gzip the file to save space</li>
	<li>Move a copy of the file to another server using scp</li>
</ol>
Seems pretty basic, but when I&#8217;m doing a backup by hand, I like to go a step further and verify the backup by creating a new repository, filling it with the backed up data and then checking it out.  This lets me verify that my backup works and that I can get  my code back if necessary.  So for this verification stage I want to do the following:</p>
	<ol>
<li>Pull the zipped file back down from the remote server</li>
	<li>Unzip it.</li>
	<li>Create a new repository</li>
	<li>Load all of my content into the new repository</li>
	<li>Checkout a copy of trunk into a directory</li>
	<li>Cleanup</li>
</ol>
The following perl script accomplishes everything I need.  When it is run with cron, I get a short email everyday telling me that it completed.  The output is intentionally terse.  If I get a long email I know something went wrong, but I don&#8217;t have to wade through a bunch of logging information if everything went as planned.  If you want more output, take the -q off of the Subversion commands.  The emails that cron sends me look like this if nothing went wrong:</p>
	<pre>
Dumping Subversion repo /var/svn to my_backup-20050921-0100...
Backing up through revision 340...
	
Compressing dump file...
	
Created /home/admin/backups/my_backup-20050921-0100.gz
	
my_backup-20050921-0100.gz transfered to my.server.com
	
---------------------------------------
Testing Backup
---------------------------------------
Downloading my_backup-20050921-0100.gz from my.server.com
Unzipping my_backup-20050921-0100.gz
Creating test repository
Loading repository
Checking out repository
Cleaning up</pre>
	<p>If you want to use this on Windows, you&#8217;ll need to make a few changes.  First the way we generate the time and datestamp for the file name will need changed.  You&#8217;ll probably want to use something other than scp and gzip as well.</p>
	<p>Here is the script.  I hope some people find it useful.</p>
	<p><code><br />
my $svn_repo = &#8220;/var/svn&#8221;;<br />
my $bkup_dir = &#8220;/home/backup_user/backups&#8221;;<br />
my $bkup_file = &#8220;my_backup-&#8221;;<br />
my $tmp_dir = &#8220;/home/backup_user/tmp&#8221;;<br />
my $bkup_svr = &#8220;my.backup.com&#8221;;<br />
my $bkup_svr_login = &#8220;backup&#8221;;</p>
	<p>$bkup_file = $bkup_file . `date +%Y%m%d-%H%M`;<br />
chomp $bkup_file;<br />
my $youngest = `svnlook youngest $svn_repo`;<br />
chomp $youngest;</p>
	<p>my $dump_command = &#8220;svnadmin  -q dump $svn_repo &gt; $bkup_dir/$bkup_file &#8220;;<br />
print &#8220;\nDumping Subversion repo $svn_repo to $bkup_file&#8230;\n&#8221;;<br />
print `$dump_command`;<br />
print &#8220;Backing up through revision $youngest&#8230; \n&#8221;;<br />
print &#8220;\nCompressing dump file&#8230;\n&#8221;;<br />
print `gzip -9 $bkup_dir/$bkup_file\n`;<br />
chomp $bkup_file;<br />
my $zipped_file = $bkup_dir . &#8220;/&#8221; . $bkup_file . &#8220;.gz&#8221;;<br />
print &#8220;\nCreated $zipped_file\n&#8221;;<br />
print `scp $zipped_file $bkup_svr_login\@$bkup_svr:/home/backup/`;<br />
print &#8220;\n$bkup_file.gz transfered to $bkup_svr\n&#8221;;</p>
	<p>#Test Backup<br />
print &#8220;\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\n&#8221;;<br />
print &#8220;Testing Backup&#8221;;<br />
print &#8220;\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\n&#8221;;<br />
print &#8220;Downloading $bkup_file.gz from $bkup_svr\n&#8221;;<br />
print `scp $bkup_svr_login\@$bkup_svr:/home/backup/$bkup_file.gz $tmp_dir/`;<br />
print &#8220;Unzipping $bkup_file.gz\n&#8221;;<br />
print `gunzip $tmp_dir/$bkup_file.gz`;<br />
print &#8220;Creating test repository\n&#8221;;<br />
print `svnadmin create $tmp_dir/test_repo`;<br />
print &#8220;Loading repository\n&#8221;;<br />
print `svnadmin -q load $tmp_dir/test_repo &lt; $tmp_dir/$bkup_file`;<br />
print &#8220;Checking out repository\n&#8221;;<br />
print `svn -q co file://$tmp_dir/test_repo $tmp_dir/test_checkout`;<br />
print &#8220;Cleaning up\n&#8221;;<br />
print `rm -f $tmp_dir/$bkup_file`;<br />
print `rm -rf $tmp_dir/test_checkout`;<br />
print `rm -rf $tmp_dir/test_repo`;<br />
</code>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/09/21/backing-up-subversion-automatically.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Storing your Maven Repository in CVS/Subversion</title>
		<link>http://blog.markwshead.com/archives/2005/09/19/storing-your-maven-repository-in-cvssubversion.html</link>
		<comments>http://blog.markwshead.com/archives/2005/09/19/storing-your-maven-repository-in-cvssubversion.html#comments</comments>
		<pubDate>Tue, 20 Sep 2005 01:24:11 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>Programming</category>
		<guid>http://blog.markwshead.com/archives/2005/09/19/storing-your-maven-repository-in-cvssubversion.html</guid>
		<description><![CDATA[	Brett Porter has hacked together a tool that will let you use a CVS or Subversion repository as your maven repository.  
	Brett Porter - Storing your Maven Repository in CVS/Subversion
It&#8217;s pretty rough, but is a working prototype that makes Maven 1.1/2.0 downloads a checkout/update, and deploy is an add/commit. I see this would be [...]]]></description>
			<content:encoded><![CDATA[	<p>Brett Porter has hacked together a tool that will let you use a CVS or Subversion repository as your maven repository.  </p>
	<blockquote><p><a href="http://blogs.codehaus.org/people/brett/archives/001066_storing_your_maven_repository_in_cvssubversion.html">Brett Porter - Storing your Maven Repository in CVS/Subversion</a><br />
It&#8217;s pretty rough, but is a working prototype that makes Maven 1.1/2.0 downloads a checkout/update, and deploy is an add/commit. I see this would be useful for snapshot repositories, where you could use one filename instead of transforming the version, so getting the latest would literally be an svn update.</p></blockquote>
	<p>If you are using Subversion with Apache, it is pretty easy to achieve most of this.  The problem that I&#8217;m faced with is the fact that Maven can&#8217;t handle repositories that use SSL and a login.</p>
	<p>Currently, I&#8217;m using a separate server to host our Maven repository because the Subversion server is using SSL.  I hope that Maven will eventually come up with a way to work around this, but right now it looks like most of their efforts are being spent on Maven 2.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/09/19/storing-your-maven-repository-in-cvssubversion.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Ignoring Build Problems</title>
		<link>http://blog.markwshead.com/archives/2005/09/15/ignoring-build-problems.html</link>
		<comments>http://blog.markwshead.com/archives/2005/09/15/ignoring-build-problems.html#comments</comments>
		<pubDate>Thu, 15 Sep 2005 21:56:59 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
		
	<category>Programming</category>
		<guid>http://blog.markwshead.com/archives/2005/09/15/ignoring-build-problems.html</guid>
		<description><![CDATA[	I ran across this blog post that is probably typical of many people who are managing software projects.
	Musings of a Software Development Manager » Blog Archive » CruiseControl Warnings
I get about 48 email messages from Cruisecontrol each day for one of our projects. This is not something I’m proud of since this situation has existed [...]]]></description>
			<content:encoded><![CDATA[	<p>I ran across this blog post that is probably typical of many people who are managing software projects.</p>
	<blockquote><p><a href="http://edgibbs.com/2005/08/17/cruisecontrol-warnings/">Musings of a Software Development Manager » Blog Archive » CruiseControl Warnings</a><br />
I get about 48 email messages from Cruisecontrol each day for one of our projects. This is not something I’m proud of since this situation has existed for at least 4 weeks now, we’ve had a broken build. The problem stems from some nasty functional tests that no one wants to investigate and we’ve sort of let our process slip.</p></blockquote>
	<p>There is a simple solution to this.  Turn off the tests that are failing.  People&#8217;s first reaction to this is &#8220;Oh no, we can&#8217;t turn off the tests!   They indicate that something is wrong.  Eventually we&#8217;ll have time to fix it.&#8221;  </p>
	<p>If you are actually going to fix it go ahead, but if something has been broken for more than a week, chances are no one is going to fix it any time soon.  You should turn it off so it starts building without errors again.</p>
	<p>Why is this better?  If your team gets 10 emails each day saying that something is broken, they are going to ignore it.  No one is really responsible for all of the problems, so no individual really works on fixing it.  However, if the build is working correctly and someone checks in code that breaks a unit test and everyone gets and email, that person is probably going to try to fix it because it shows that he is responsible for the problem.</p>
	<p>Think of it another way.  Lets say I have 3 smoke alarms, 1 gas alarm, 1 CO2 alarm, and a flooded basement alarm in my house and they all sound pretty much the same.  Now lets say that the flooded basement alarm goes off and I decide that it isn&#8217;t important enough to fix the cause&#8230;. So I just let the alarm go off.  How likely do you think I am to notice if another alarm goes off once I get used to ignoring the first alarm.</p>
	<p>If I&#8217;m not going to fix the problem, the best thing I can do is disable the flooded basement alarm until I have a chance to fix it.  After a week of ignoring the alarm and nothing bad happening, I&#8217;m not suddenly notice it and decide I should do something about it.  </p>
	<p>One of the first things I did when I started at my current job, is go through and renamed every test that failed our automatic build process as &#8220;pending&#8221;.  By the time the test would run, I had disabled about 2/3 of the tests.  Since they were failing we ignored them anyway, so marking them as pending didn&#8217;t change anything.  Before they were turned off, it would have been impossible to notice if one of the tests that were previously working broke because of a change.</p>
	<p>Over time we&#8217;ve turned most of the pending tests back on one at a time as we&#8217;ve had more time to fix the code or fix the test.</p>
	<p>When your tests fail, it should be unusual.  I setup our builds to break if any test fails.  I&#8217;ve got a lava lamp above my cubicle and everyone in the company know what it means.  If something breaks people start asking the developers about it until it gets fixed.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/09/15/ignoring-build-problems.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title></title>
		<link>http://blog.markwshead.com/archives/2005/07/30/98.html</link>
		<comments>http://blog.markwshead.com/archives/2005/07/30/98.html#comments</comments>
		<pubDate>Sun, 31 Jul 2005 04:36:34 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>General</category>
		<guid>http://blog.markwshead.com/archives/2005/07/30/98.html</guid>
		<description><![CDATA[Does College Really Matter]]></description>
			<content:encoded><![CDATA[	<p>Kathy Sierra has an interesting <a href="http://headrush.typepad.com/creating_passionate_users/2005/07/does_college_ma.html">post</a> on her blog about college.  Toward the end she talks about how her teenager has decided not to go to college.  Kathy reasons that since her personal career has very little to do with her original degree, her daughter is just as well off to spend her time at a vegetarian cooking school instead of pursuing a 4 year degree.</p>
	<p>While Kathy makes some excellent points, I don&#8217;t think that the cooking school is going to prepare her daughter as well as attending a university.  It doesn&#8217;t matter what she studies.  That is the whole point of a liberal arts education&#8211;you don&#8217;t just study your field of interest.  Places like that are known as vocational schools.</p>
	<p>Go to college and pick something you enjoy studying.  You are going to spend 4 years developing yourself as a person.  If you think the facts you learn in an accounting class to make you attractive to an employer in 10 to 15 years, you&#8217;re going to be very disappointed.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/07/30/98.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Enabling Color Terminal on OS X 10.4</title>
		<link>http://blog.markwshead.com/archives/2005/07/30/enabling-color-terminal-on-os-x-104.html</link>
		<comments>http://blog.markwshead.com/archives/2005/07/30/enabling-color-terminal-on-os-x-104.html#comments</comments>
		<pubDate>Sat, 30 Jul 2005 16:30:50 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>Technology</category>
		<guid>http://blog.markwshead.com/archives/2005/07/30/enabling-color-terminal-on-os-x-104.html</guid>
		<description><![CDATA[	OS X has an environmental variable called CLICOLOR.  If it is set, it turns on color for command line commands.  So&#8230;
	export CLICOLOR=true
	will turn on color.  If you want to enable this for everyone, you could do that by putting it in /etc/profile.

]]></description>
			<content:encoded><![CDATA[	<p>OS X has an environmental variable called CLICOLOR.  If it is set, it turns on color for command line commands.  So&#8230;</p>
	<p><code>export CLICOLOR=true</code></p>
	<p>will turn on color.  If you want to enable this for everyone, you could do that by putting it in /etc/profile.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/07/30/enabling-color-terminal-on-os-x-104.html/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Why Subversion Rocks</title>
		<link>http://blog.markwshead.com/archives/2005/07/24/why-subversion-rocks.html</link>
		<comments>http://blog.markwshead.com/archives/2005/07/24/why-subversion-rocks.html#comments</comments>
		<pubDate>Mon, 25 Jul 2005 02:53:02 +0000</pubDate>
		<dc:creator>mwshead</dc:creator>
		
	<category>Programming</category>
		<guid>http://blog.markwshead.com/archives/2005/07/24/why-subversion-rocks.html</guid>
		<description><![CDATA[	This guy says that using Subversion and Cruisecontrol cut their costs by 92%.  It would be interesting to see how he calculated this.  Regardless, it is amazing how many quality tools are available for free now.
	Why Subversion Rocks
In a recent study I performed on my development groups process improvement over the past 5 [...]]]></description>
			<content:encoded><![CDATA[	<p>This guy says that using Subversion and Cruisecontrol cut their costs by 92%.  It would be interesting to see how he calculated this.  Regardless, it is amazing how many quality tools are available for free now.</p>
	<blockquote><p><a href="http://www.bieberlabs.com/wordpress/archives/2005/07/24/zdot-podcast-why-subversion-rocks">Why Subversion Rocks</a><br />
In a recent study I performed on my development groups process improvement over the past 5 years, we found that we had cut the cost of managing our build and release process by approximately 92% by incorporating Subversion and related tools like CruiseControl, ViewCVS, and other custom software (and major process changes that accompany them) to integrate and automate our release management processes. </p></blockquote>
]]></content:encoded>
			<wfw:commentRSS>http://blog.markwshead.com/archives/2005/07/24/why-subversion-rocks.html/feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>
