<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>I Make Things - Work</title>
    <link>http://blog.latcarf.com/</link>
    <description>Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://blog.latcarf.com/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: I Make Things - Work - Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.</title>
        <link>http://blog.latcarf.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>mod_rewrite errors on Mac OS X Server</title>
    <link>http://blog.latcarf.com/archives/145-mod_rewrite-errors-on-Mac-OS-X-Server.html</link>
            <category>Work</category>
    
    <comments>http://blog.latcarf.com/archives/145-mod_rewrite-errors-on-Mac-OS-X-Server.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=145</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=145</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I was a little concerned with the web service on my new Intel Xserve running Mac OS X Server 10.5 (Leopard) when I started seeing the following log entry in my Apache error log:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;apache&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#91;&lt;/span&gt;crit&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#93;&lt;/span&gt; &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;No such file or &lt;span style=&quot;color: #00007f;&quot;&gt;directory&lt;/span&gt;: mod_rewrite: could not init rewrite log lock in child&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
I wasn&#039;t so much concerned that there was a critical error. I could see my Apache 2 based Subversion server (DAV svn) was performing just fine. My larger concern was that there was an error about &lt;tt&gt;mod_rewrite&lt;/tt&gt; when I wasn&#039;t the one that turned it on in the first place. You see, I could believe it was my human error that might have caused the problem but I&#039;d have a harder time believing it was a problem with the default install.&lt;br /&gt;
&lt;br /&gt;
So, I looked at my config file: &lt;tt&gt;/etc/apache2/sites/0000_any_80_.conf&lt;/tt&gt; and compared it to the default config file: &lt;tt&gt;/etc/apache2/sites/0000_any_80_.conf.default&lt;/tt&gt; and found the &lt;tt&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;/tt&gt; containers to be exactly the same. Annoying.&lt;br /&gt;
&lt;br /&gt;
Iquickly gave up trying to point the finger and lay blame and decided to take the initiative to fix the problem. I fixed it by giving mod_rewrite an actual log to write to (make it happy - if for only a moment) and then told it to not to log anything to the file (mwahahaha). The change was simple.&lt;br /&gt;
 &lt;br /&gt;
From this:&lt;br /&gt;
&lt;div class=&quot;xml&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;lt;IfModule&lt;/span&gt; mod_rewrite.c&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteEngine On&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteCond %{REQUEST_METHOD} ^TRACE&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteRule .* - [F]&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;lt;/IfModule&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
To this:&lt;br /&gt;
&lt;div class=&quot;xml&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;lt;IfModule&lt;/span&gt; mod_rewrite.c&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteEngine On&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteCond %{REQUEST_METHOD} ^TRACE&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteRule .* - [F]&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteLog /var/log/apache2/rewrite.log&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160;RewriteLogLevel 0&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;lt;/IfModule&lt;span style=&quot;font-weight: bold; color: black;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Problem solved it seems. Now why did &lt;i&gt;I&lt;/i&gt; have to do this!? 
    </content:encoded>

    <pubDate>Tue, 27 May 2008 20:14:05 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/145-guid.html</guid>
    
</item>
<item>
    <title>New Xserve Build Machines</title>
    <link>http://blog.latcarf.com/archives/138-New-Xserve-Build-Machines.html</link>
            <category>Work</category>
    
    <comments>http://blog.latcarf.com/archives/138-New-Xserve-Build-Machines.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=138</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=138</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I just got two brand new Xserve build machines and the first thing I did was wipe out the default Tiger OSX Server install and install Leopard OSX Server instead. That wasn&#039;t too bad except for the fact that I had to go through the setup assistant first in Tiger before being able to boot off the Leopard disk, wipe the drive and install.&lt;br /&gt;
&lt;br /&gt;
After I got Leopard OS X Server up and running on the Xserve, I tried to &lt;tt&gt;ssh&lt;/tt&gt; out from a user account to another machine (my source repository server) that&#039;s running 10.4. While establishing communication, &lt;tt&gt;ssh&lt;/tt&gt; had this huge delay (more than a minute - I think). I had to figure out what was going on so I ran &lt;tt&gt;ssh -v&lt;/tt&gt; to get the verbose output from &lt;tt&gt;ssh&lt;/tt&gt; while it was connecting.&lt;br /&gt;
&lt;br /&gt;
The verbose output showed this.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;
debug1: Unspecified GSS failure.  Minor code may provide more information
Server not found in Kerberos database

debug1: Unspecified GSS failure.  Minor code may provide more information
Server not found in Kerberos database

debug1: Unspecified GSS failure.  Minor code may provide more information
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
So, I went spelunking in and ended up comparing the &lt;tt&gt;/etc/sshd_config&lt;/tt&gt; files on both the local (Leopard Xserve) and remote (Tiger source repository) machines. I found on the remote machine (Tiger source repos) that Kerberos authentication was turned off by default but commented out.&lt;br /&gt;
&lt;br /&gt;
So, I changed this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;
# Kerberos options

# GSSAPI options
#GSSAPIAuthentication no
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
to this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;
# Kerberos options
KerberosAuthentication no

# GSSAPI options
GSSAPIAuthentication no
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
in the &lt;tt&gt;/etc/sshd_config&lt;/tt&gt; file on the remote (Tiger OS X server) and reconnected via &lt;tt&gt;ssh&lt;/tt&gt; without a problem. Then it was on to more work setting up my new xserve build systems. &lt;img src=&quot;http://blog.latcarf.com/templates/default/img/emoticons/cool.png&quot; alt=&quot;8-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 13 Dec 2007 18:47:30 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/138-guid.html</guid>
    
</item>
<item>
    <title>Manager/Employee One-to-Ones</title>
    <link>http://blog.latcarf.com/archives/121-ManagerEmployee-One-to-Ones.html</link>
            <category>Work</category>
    
    <comments>http://blog.latcarf.com/archives/121-ManagerEmployee-One-to-Ones.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=121</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=121</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    My manager today decided to cancel all of her current one-on-ones including mine (I prefer to call them one-to-ones - so they don&#039;t sound like a wrestling match). She noted that she&#039;d setup &lt;i&gt;&quot;quarterly goal review 1-1 focused exclusively on career development&quot;&lt;/i&gt; and that she would &lt;i&gt;&quot;work with each individual to determine whether a weekly 1-1 is appropriate.&quot;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
It&#039;s amazing that managers, whether new or seasoned, don&#039;t fully grasp the importance of one-to-one time. In here defense, she does have around 17 direct reports now - but that&#039;s a failing of her managers. I thought about sending her the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=569&amp;amp;entry_id=121&quot;  onmouseover=&quot;window.status=&#039;http://www.manager-tools.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot; title=&quot;Manager Tools&quot;&gt;Manager Tools&lt;/a&gt; link to their &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=567&amp;amp;entry_id=121&quot;  onmouseover=&quot;window.status=&#039;http://www.manager-tools.com/2005/07/the-single-most-effective-management-tool-part-1/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot; title=&quot;The Single Most Effective Management Tool&quot;&gt;podcast on &quot;the single most effective management tool - the one-on-one&quot;&lt;/a&gt; but I figured I&#039;d look like I was telling her how to do her job. Obviously, that wouldn&#039;t go over too well. Maybe I could leave an anonymous note with the link to &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=569&amp;amp;entry_id=121&quot;  onmouseover=&quot;window.status=&#039;http://www.manager-tools.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot; title=&quot;Manager Tools&quot;&gt;Manager Tools&lt;/a&gt; on it... &lt;img src=&quot;http://blog.latcarf.com/templates/default/img/emoticons/eek.png&quot; alt=&quot;:-O&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; &lt;br /&gt;
&lt;br /&gt;
Instead, I think I&#039;ll listen to the podcast again myself and the next time I talk to her, (probably at my quarterly one-to-one) I&#039;ll try to bring up some of the points Mark and Mike make. Also, I think I&#039;ll privately review (and possibly fill out) the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=569&amp;amp;entry_id=121&quot;  onmouseover=&quot;window.status=&#039;http://www.manager-tools.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot; title=&quot;Manager Tools&quot;&gt;Manager Tools&lt;/a&gt;: &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=570&amp;amp;entry_id=121&quot;  onmouseover=&quot;window.status=&#039;http://www.manager-tools.com/podcasts/Manager-Tools_One_on_One_Basics.pdf&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot; title=&quot;Manager Tools - One on One Basics&quot;&gt;1-on-1 Key Points and Prep Form (PDF)&lt;/a&gt;. After I&#039;ve done that, I&#039;ll start looking for a new position. I don&#039;t have time for inattentive and overburdened managers anymore. 
    </content:encoded>

    <pubDate>Mon, 29 Jan 2007 17:58:17 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/121-guid.html</guid>
    
</item>
<item>
    <title>Robust Shell Scripting</title>
    <link>http://blog.latcarf.com/archives/117-Robust-Shell-Scripting.html</link>
            <category>SCM</category>
    
    <comments>http://blog.latcarf.com/archives/117-Robust-Shell-Scripting.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=117</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=117</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I started working for a new group around mid-September and inherited an old (5 years or so) shell-script build system. Most of it is in KSH (I really prefer BASH) but alot of it is so poorly written and thought out that I have a hell of a time trying to fix/enhance it. Every time I need to do something to the scripts I oscillate for an hour on whether I should try to work my change into the existing script or just take the time to re-write the whole thing!&lt;br /&gt;
&lt;br /&gt;
I was Googling today for some thoughts about writing shell scripts and found a great article about &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=559&amp;amp;entry_id=117&quot;  onmouseover=&quot;window.status=&#039;http://www.davidpashley.com/articles/writing-robust-shell-scripts.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot; title=&quot;Writing Robust Bash Shell Scripts&quot;&gt;writing robust bash shell scripts&lt;/a&gt;. While I don&#039;t use everything mentioned in the article, I was happily surprised to find that I do use more than a couple of them.&lt;br /&gt;
&lt;br /&gt;
Of course, one reason for my irritation with the system I&#039;ve inherited is that it doesn&#039;t use any. Before working in this group, all SCM infrastructure I&#039;d done was built ground up by myself. I feel for those poor developers that get stuck trying to enhance old code now that I&#039;ve really gotten a taste of how hard it can be. I imagine there is alot more nasty build system scripts out there than there are good ones but I&#039;ll certainly try to even the odds a bit by making my scripts as robust, readable and commented as possible.&lt;br /&gt;
&lt;br /&gt;
Hopefully someone who comes three or four years after I&#039;m one will be pleasantly surprised when they have to add something to my scripts! 
    </content:encoded>

    <pubDate>Tue, 23 Jan 2007 20:46:22 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/117-guid.html</guid>
    
</item>
<item>
    <title>Marketing, Schmarketing</title>
    <link>http://blog.latcarf.com/archives/108-Marketing,-Schmarketing.html</link>
            <category>Work</category>
    
    <comments>http://blog.latcarf.com/archives/108-Marketing,-Schmarketing.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=108</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=108</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;font color=&quot;red&quot;&gt;&amp;lt;rant&amp;gt;&lt;/font&gt;&lt;br /&gt;
I&#039;ve always held a general disdain for marketing people. Not all marketing people mind you, just most of them. I used to think it was because they are so often self-important, arrogant and close-minded. Many of them hold themselves in such high regards that they think the software industry (or other industries) just can&#039;t go on without them. When I think of marketing, I think of slimy snake oil salesman, so enamored with the fake little world they&#039;ve created that they rarely ever pitch the actual thing we are all making.&lt;br /&gt;
&lt;br /&gt;
Anyway, I realized this morning the real reason I&#039;m so annoyed by them. It&#039;s just that for all they think they&#039;re worth, they generally never make anything lasting. There are exceptions to this rule of course. Some marketing campaigns we remember for a few years and actually leave a lasting impression on us, but those are the exceptions. In general, we forget marketing campaigns shortly after we&#039;ve been subjected to them. The have absolutely no longevity. Now I know that everything in life is impermanent but it&#039;s a noble goal to create things which benefit society and last long enough for people to actually remember the impact those things had on their lives. Marketing is in the business of making trash, and trash has limited use, limited life-span, and limited (if any) benefit to society.&lt;br /&gt;
&lt;br /&gt;
This is why I don&#039;t really have any respect for marketing people.&lt;br /&gt;
&lt;font color=&quot;red&quot;&gt;&amp;lt;/rant&amp;gt;&lt;/font&gt; 
    </content:encoded>

    <pubDate>Mon, 31 Jul 2006 13:03:48 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/108-guid.html</guid>
    
</item>
<item>
    <title>Change Subversion Commit Messages Post Commit</title>
    <link>http://blog.latcarf.com/archives/102-Change-Subversion-Commit-Messages-Post-Commit.html</link>
            <category>SCM</category>
    
    <comments>http://blog.latcarf.com/archives/102-Change-Subversion-Commit-Messages-Post-Commit.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=102</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=102</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    Today I had a developer who wanted to change his commit message after he&#039;d already made the commit to the Subversion repository. Initially, I told him it wasn&#039;t possible, but then I decided I should check if my assertion was correct. It wasn&#039;t...&lt;br /&gt;
&lt;br /&gt;
To change/edit a Subversion commit message after the commit, do the following on the Subversion server:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;locution_cli&quot;&gt;&lt;font color=&quot;#69C&quot;&gt;$&lt;/font&gt; svnadmin setlog /path/to/repository \&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#69C&quot;&gt;&gt;&lt;/font&gt; -r 10662 --bypass-hooks message_file.txt&lt;/font&gt; &lt;font color=&quot;green&quot;&gt;&amp;#172;&lt;/font&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
The &lt;tt&gt;--bypass-hooks&lt;/tt&gt; argument is necessary because you are editing a non-versioned property of the revision. As such, you lose the history of the original commit message so Subversion requires the &lt;tt&gt;pre-revprop-change&lt;/tt&gt; hook to be enabled. Passing &lt;tt&gt;--bypass-hooks&lt;/tt&gt; bypasses this requirement and allows the change.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 12 May 2006 14:56:02 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/102-guid.html</guid>
    
</item>
<item>
    <title>Collective Mental Acuity</title>
    <link>http://blog.latcarf.com/archives/81-Collective-Mental-Acuity.html</link>
            <category>Work</category>
    
    <comments>http://blog.latcarf.com/archives/81-Collective-Mental-Acuity.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=81</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=81</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    It&#039;s an interesting phenomenon in the software industry that no matter how well you&#039;ve done your job, you inevitably find more and more issues the closer you come to a release date. My group is near a beta release and it is peculiar how everyone gets &quot;hypersensitive&quot; as we near the date.&lt;br /&gt;
&lt;br /&gt;
By hypersensitive, I don&#039;t mean everyone is at each other&#039;s throats (although I have seen that happen in other groups). I mean people become very sensitive to all aspects of what is being delivered. The most minute details that have been overlooked until now, are seen with surprisingly clarity as we inch toward the day of release.&lt;br /&gt;
&lt;br /&gt;
Somehow, I believe our collective team consciousness plays off of one another&#039;s anticipation, and causes each of us to scrutinize things even more than we did prior to the impending deadline. In this way, our &quot;hive-brain&quot; becomes far more acute and sensitive and allows us to individually &quot;see&quot; much better.&lt;br /&gt;
&lt;br /&gt;
It would be nice to learn the manner of how this happens and exercise control over the faculties in charge. The power to engage this super sensitivity whenever needed would be a beneficial one indeed. I don&#039;t think it could ever be an always-on characteristic though, as I think our bodies and minds cannot sustain it for too long. The group is always exhausted after a release - no matter how minor it may be.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 06 May 2005 17:58:54 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/81-guid.html</guid>
    
</item>
<item>
    <title>Configuration Management Resources</title>
    <link>http://blog.latcarf.com/archives/55-Configuration-Management-Resources.html</link>
            <category>SCM</category>
    
    <comments>http://blog.latcarf.com/archives/55-Configuration-Management-Resources.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=55</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=55</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    Lately I&#039;ve been working very hard to increase my knowledge and understanding of my new role at work (Software Configuration Management Engineer - SCM). I am the only SCM for two products and a total of ten developers (though I support around 20 people between the two teams in total).&lt;br /&gt;
&lt;br /&gt;
Both development teams loosely base their process in the Agile style of Extreme Programming. I have found a few resources that seem to be quite good for information on my position and role.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=250&amp;amp;entry_id=55&quot; title=&quot;http://www.cmcrossroads.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.cmcrossroads.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;locution&quot;&gt;CM Crossroads&lt;/a&gt; is an online community and resource center for configuration management. The have a wealth of information at their site and they do a good job of recommending books, best practices, and software to make my job easier and the development teams more productive.&lt;br /&gt;
&lt;br /&gt;
I&#039;ll be detailing things I learn here in a new category: &quot;SCM&quot; under the category &quot;Work&quot;. 
    </content:encoded>

    <pubDate>Fri, 04 Mar 2005 22:21:16 -0400</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/55-guid.html</guid>
    
</item>

</channel>
</rss>