<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Beer vs Man</title>
	
	<link>http://www.beervsman.com</link>
	<description>As nerdy as you want it</description>
	<lastBuildDate>Thu, 08 Mar 2012 19:02:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BeerVsMan" /><feedburner:info uri="beervsman" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Fabric setup for multiple environments</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/tQS9_I-heEU/</link>
		<comments>http://www.beervsman.com/2012/03/08/fabric-setup-for-multiple-environments/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 19:02:11 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=174</guid>
		<description><![CDATA[I recently started using Fabric, an automation tool written in Python that simplifies the process of running various commands and scripts on local and remote servers. If you&#8217;re managing remote Linux/*nix servers and haven&#8217;t tried this tool (or something similar &#8230;<p class="read-more"><a href="http://www.beervsman.com/2012/03/08/fabric-setup-for-multiple-environments/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I recently started using <a href="http://fabfile.org/" title="Fabric">Fabric</a>, an automation tool written in Python that simplifies the process of running various commands and scripts on local and remote servers.  If you&#8217;re managing remote Linux/*nix servers and haven&#8217;t tried this tool (or something similar like <a href="https://github.com/capistrano/capistrano" title="Capistrano">Capistrano</a>), definitely check it out.  The Fabric documentation is great and will guide you through the process of creating simple and complex scripts that can easily be automated to your various servers.</p>
<p>The only part of the documentation that I found lacking was how best to configure Fabric to run on various groups of servers, and how to define those groups of servers for your project.  Below is the basic structure I&#8217;ve used to do this, thanks to some <a href="https://gist.github.com/35a3f04306f2f1be7f4f">guidance</a> from the #fabric IRC channel on Freenode (thanks cnf and bitprophet!)</p>
<p>Because I&#8217;m storing fabfile.py in the root of my project directory, and including it with my version control system, I&#8217;ve pulled the list of environments and servers out to &#8220;fabfile_local.py&#8221;.  Once these are in place, doing an rsync of my local codebase to my staging environment is as simple as:</p>
<p><code>fab e:staging rsync</code></p>
<p>fabfile.py:<br />
<script src="https://gist.github.com/2002643.js?file=fabfile.py"></script></p>
<p>fabfile_local.py:<br />
<script src="https://gist.github.com/2002643.js?file=fabfile_local.py"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2012/03/08/fabric-setup-for-multiple-environments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2012/03/08/fabric-setup-for-multiple-environments/</feedburner:origLink></item>
		<item>
		<title>Delete Playlists AppleScript</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/NiubYPAOKIU/</link>
		<comments>http://www.beervsman.com/2012/02/20/delete-playlists-applescript/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 19:07:59 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=162</guid>
		<description><![CDATA[I put together an AppleScript snippet to delete playlist files anywhere under the current directory. Some CD ripping software and music sharing sites include playlist files (*.m3u, *.pls) alongside audio files; if you drag a folder with audio files and &#8230;<p class="read-more"><a href="http://www.beervsman.com/2012/02/20/delete-playlists-applescript/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I put together an AppleScript snippet to delete playlist files anywhere under the current directory.  Some CD ripping software and music sharing sites include playlist files (*.m3u, *.pls) alongside audio files; if you drag a folder with audio files and playlist files, iTunes adds duplicate copies of the tracks. Solution: save this script as an application and drag it into your Finder toolbar; then run the app on the parent directory before you drag your new music into iTunes.</p>
<p>Basically it&#8217;s just running this command on your top-level Finder folder:</p>
<p><code>find $TARGET_DIR \( -name \*.pls -or -name \*.m3u \) -exec rm -f {} \;</code></p>
<p>Here&#8217;s the code; paste this into AppleScript Editor and save as an application, then you can drag it to your Finder toolbar (or wherever is a convenient place for you to launch it):</p>
<p><script src="https://gist.github.com/1865701.js?file=Delete%20Playlists.scpt"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2012/02/20/delete-playlists-applescript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2012/02/20/delete-playlists-applescript/</feedburner:origLink></item>
		<item>
		<title>Apple HDTV Thoughts</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/F1R-Fld0Ha0/</link>
		<comments>http://www.beervsman.com/2011/04/19/apple-hdtv-thoughts/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 23:07:14 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=148</guid>
		<description><![CDATA[I don&#8217;t know if Apple will ever get into the business of making HDTV&#8217;s. There are apparently some rumors flying around that the Apple HDTV is coming this year. Marco Arment gives a compelling argument that the profit margins on &#8230;<p class="read-more"><a href="http://www.beervsman.com/2011/04/19/apple-hdtv-thoughts/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if Apple will ever get into the business of making HDTV&#8217;s.  There are apparently some <a href="http://www.appleinsider.com/articles/11/04/13/evidence_points_toward_apple_releasing_hdtv_this_year_report.html">rumors flying around</a> that the Apple HDTV is coming this year.  Marco Arment <a href="http://www.marco.org/2011/04/16/rumored-apple-hdtv">gives a compelling argument</a> that the profit margins on HDTV&#8217;s are not high enough, nor is the product lifetime short enough, for this move to make business sense for Apple.  And Apple already has their Apple TV unit, priced affordably at $99, that is a perfect compliment to your existing HDTV.  Why even bother with the actual TV display market at all?</p>
<p>I think Apple has plenty of reason to enter this market.  While the Apple TV is a great product, I don&#8217;t think it&#8217;s reached as wide an audience as Apple has hoped.  If Apple can design an HDTV that&#8217;s as innovative and beautiful as the original iPod was, they&#8217;ll sell like hotcakes.  The bigger picture here is that Apple wants to start competing with cable TV services with their iTunes streaming products.  Once Apple has their software running on a significant portion of TV&#8217;s, they can really throw off the gloves and start competing directly with cable and satellite TV providers.  The Apple HDTV device itself could almost be a sort of loss leader, or low-margin product that&#8217;s simply a vehicle for pushing iTunes out into as many homes as possible.  </p>
<p>I&#8217;m excited to get rid of current cable/satellite paradigm where I pay $100/mo just to watch 10 hours of sporting events and a few TV shows that I could easily get through iTunes, Amazon or Netflix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2011/04/19/apple-hdtv-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2011/04/19/apple-hdtv-thoughts/</feedburner:origLink></item>
		<item>
		<title>Getting Things Done on Multiple Computers</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/T9CnqZI4GnY/</link>
		<comments>http://www.beervsman.com/2010/10/20/getting-things-done-on-multiple-computers/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 13:57:10 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=114</guid>
		<description><![CDATA[Things is a great task management app. If you use a Mac and are a fan of GTD, it&#8217;s worth a look. The problem I had initially with Things is that currently, it does not have any sort of support &#8230;<p class="read-more"><a href="http://www.beervsman.com/2010/10/20/getting-things-done-on-multiple-computers/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://culturedcode.com/things/">Things</a> is a great task management app.  If you use a Mac and are a fan of <a href="http://www.davidco.com/">GTD</a>, it&#8217;s worth a look.</p>
<p>The problem I had initially with Things is that currently, it does not have any sort of support for sharing its library and configuration across multiple computers.  This can be overcome using a <a href="http://getdropbox.com">Dropbox</a> folder as an alternate library location as documented in this <a href="http://culturedcode.com/things/wiki/index.php/DropboxSync">DropboxSync</a> wiki.  This is great but still leaves one large problem in my mind &#8211; Things only seems to write its data to disk when it quits.  If you make some changes but forget to quit Things, then open it up on a different computer, you&#8217;re probably going to lose some data.  I just found a potential solution to this problem: automatically quit Things any time your computer goes idle.  Hopefully you haven&#8217;t already logged into another machine and launched Things before this happens, and all your data will be safe.  I found a nice little open-source project that seems to handle this perfectly: <a href="http://swannman.wordpress.com/projects/scriptsaver/">ScriptSaver</a>.  <div class="wp-caption alignnone" style="width: 439px"><a href="http://swannman.wordpress.com/projects/scriptsaver/"><img alt="" src="http://homepage.mac.com/swannman/ssaverconfig.png" title="ScriptSaver Config" width="429" height="489" /></a><p class="wp-caption-text">ScriptSaver configuration</p></div> ScriptSaver installs as a screensaver and lets you select an AppleScript file to automatically run any time the screensaver is activated.  It also gives you an option to then launch a different screensaver after the AppleScript has been launched.  A simple AppleScript to quit Things:</p>
<pre class="brush: plain; title: ; notranslate">
tell application Things
    quit
end tell
</pre>
<p>Paste that into AppleScript Editor and save it somewhere; then point ScriptSaver to that file and you should be set.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2010/10/20/getting-things-done-on-multiple-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2010/10/20/getting-things-done-on-multiple-computers/</feedburner:origLink></item>
		<item>
		<title>Vim, MiniBufExpl, NERDTree and the QuickFix window</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/La07LC9affI/</link>
		<comments>http://www.beervsman.com/2010/10/19/vim-minibufexpl-nerdtree-and-the-quickfix-window/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 14:53:55 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=123</guid>
		<description><![CDATA[Vim has been my editor of choice for many years now, but only recently have I really started tweaking and fine-tuning my configuration and plugins. I was inspired by this HackerNews thread and I now keep my vim configuration in &#8230;<p class="read-more"><a href="http://www.beervsman.com/2010/10/19/vim-minibufexpl-nerdtree-and-the-quickfix-window/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Vim has been my editor of choice for many years now, but only recently have I really started tweaking and fine-tuning my configuration and plugins.  I was inspired by <a href="http://news.ycombinator.com/item?id=1710702">this HackerNews thread</a> and I now keep my <a href="http://github.com/pix0r/dotvim">vim configuration</a> in GitHub and synchronized between all my machines.  You can even check out a <a href="http://github.com/pix0r/dotvim/blob/master/.gitmodules">list of my Vim plugins</a>.  Some of my favorites, and the ones I&#8217;m writing this post about in particular, are:</p>
<ul>
<li><a href="http://www.vim.org/scripts/script.php?script_id=1658">NERDTree</a>, a filesystem explorer</li>
<li><a href="http://www.vim.org/scripts/script.php?script_id=159">MiniBufExpl</a>, an omnipresent buffer list enabling you to easily see what buffers are open and easily switch to and close them</li>
<li><a href="http://www.vim.org/scripts/script.php?script_id=2572">Vim Ack</a>, a plugin that provides a simple interface to the excellent <a href="http://betterthangrep.com/">Ack</a> utility.</li>
</ul>
<p>Life is great. Or it was, at least, until I started having strange problems with window layouts when I was waist deep in code.  The first lesson I learned is that using Vim&#8217;s <code>:bd</code> command to close a buffer causes problems, namely that if you close the buffer in the current window, it will close the window as well.  There are two fixes for this.  First, after some Googling, I learned about <a href="http://vim.wikia.com/wiki/Deleting_a_buffer_without_closing_the_window">bclose.vim</a>. I mapped &lt;leader&gt;bd to run :Bclose and all was good.  I later learned that MiniBufExpl included this functionality all along &#8211; simply place your cursor over a buffer in the buffer list and press &#8220;d&#8221;.</p>
<p>The second problem I ran into was that after using Ack to search through my project, MiniBufExpl would start opening buffers in unpredictable locations such as the NERDTree left vertical window.  This was very frustrating and I was only able to get back to a sane editing environment after restarting the Vim session all together.  It turns out that the problem was being caused by the way I closed the QuickFix window after browsing through the Ack search results.  I was simply using <code>:q</code>, which is my reflex method of closing a window I don&#8217;t want around any longer.  Some debugging and research shows that the QuickFix window has its rich set of commands, including an open (<code>:copen</code>) and close (<code>:ccl</code> or <code>:cclose</code>).  Using <code>:ccl</code> to close my Ack results has solved this problem entirely.</p>
<p>Life with Vim is better than ever.  If you&#8217;re a Vim user or have even considered it, I&#8217;d really recommend checking out some sample vimrc files, finding and installing some plugins you love, and most importantly keeping your configuration synchronized between all of your development machines.</p>
<p><strong>UPDATE:</strong> It turns out that <code>:ccl</code> was not the simple fix I was hoping it would be.  After using Ack, MiniBufExpl still sends buffers to the NERDTree window. HALP!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2010/10/19/vim-minibufexpl-nerdtree-and-the-quickfix-window/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2010/10/19/vim-minibufexpl-nerdtree-and-the-quickfix-window/</feedburner:origLink></item>
		<item>
		<title>Tidy JSON for PHP</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/5aJv4_HWSoQ/</link>
		<comments>http://www.beervsman.com/2010/10/18/tidy-json-for-php/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 02:54:41 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=113</guid>
		<description><![CDATA[I wrote a simple PHP utility that will convert ugly, convoluted JSON into a nicer, standard format. It doesn&#8217;t perform any validation and is not optimized whatsoever &#8211; but maybe it&#8217;s just what you&#8217;re looking for. You can find it &#8230;<p class="read-more"><a href="http://www.beervsman.com/2010/10/18/tidy-json-for-php/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I wrote a simple PHP utility that will convert ugly, convoluted JSON into a nicer, standard format.  It doesn&#8217;t perform any validation and is not optimized whatsoever &#8211; but maybe it&#8217;s just what you&#8217;re looking for.  You can find it over on <a href="http://github.com/">github</a>: <a href="http://github.com/pix0r/tidyjson">Tidy JSON</a>.</p>
<p>Usage:</p>
<pre class="brush: php; title: ; notranslate">&lt;?php

require 'tidyjson.php';

$json = '{&quot;foo&quot;:&quot;bar&quot;,&quot;baz&quot;:[1,2,5]}';
$tidy = TidyJSON::tidy($json);

?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2010/10/18/tidy-json-for-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2010/10/18/tidy-json-for-php/</feedburner:origLink></item>
		<item>
		<title>Growl Notification for Subversion</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/Xx2ws9vVBFA/</link>
		<comments>http://www.beervsman.com/2010/05/04/growl-notification-for-subversion/#comments</comments>
		<pubDate>Tue, 04 May 2010 19:15:07 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=86</guid>
		<description><![CDATA[I&#8217;ve written a little shell script that can be used to poll a Subversion repository and notify you via Growl when new revisions are added. To start using it, download svn-growlnotify from github, copy svn-growlnotify.sh somewhere so you don&#8217;t lose &#8230;<p class="read-more"><a href="http://www.beervsman.com/2010/05/04/growl-notification-for-subversion/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written a little shell script that can be used to poll a Subversion repository and notify you via Growl when new revisions are added.</p>
<p>To start using it, download <a href="http://gist.github.com/gists/389816/download">svn-growlnotify</a> from github, copy svn-growlnotify.sh somewhere so you don&#8217;t lose it, make sure it is executable (chmod +x svn-growlnotify.sh), and set up a crontab entry to run it with your repository URL:</p>
<p><code>* * * * * /path/to/svn-growlnotify.sh -s http://your.repository.url/ 1>/dev/null 2>&#038;1</code></p>
<p>Here&#8217;s the source code:</p>
<p><script src="http://gist.github.com/389816.js?file=svn-growlnotify.sh"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2010/05/04/growl-notification-for-subversion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2010/05/04/growl-notification-for-subversion/</feedburner:origLink></item>
		<item>
		<title>Croppy, a simple Windows screenshot utility</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/UWbcazDNEA0/</link>
		<comments>http://www.beervsman.com/2010/01/06/croppy-a-simple-windows-screenshot-utility/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 23:16:08 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=80</guid>
		<description><![CDATA[I&#8217;ve recently started using Croppy, a simple Windows screenshot utility. It works perfectly for quickly sharing images with friends and colleagues &#8211; launch the app, resize the transparent crop window, and click &#8220;upload to web&#8221;. An image of whatever you &#8230;<p class="read-more"><a href="http://www.beervsman.com/2010/01/06/croppy-a-simple-windows-screenshot-utility/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started using <a href="http://croppy.lukehunter.net/">Croppy</a>, a simple Windows screenshot utility.  It works perfectly for quickly sharing images with friends and colleagues &#8211; launch the app, resize the transparent crop window, and click &#8220;upload to web&#8221;. An image of whatever you were looking at is uploaded and a URL copied to your clipboard.  Very similar in function to the Mac-based <a href="http://skitch.com/">Skitch</a> software &#8211; but much more lightweight.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Ap4S9oKPXgU&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ap4S9oKPXgU&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2010/01/06/croppy-a-simple-windows-screenshot-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2010/01/06/croppy-a-simple-windows-screenshot-utility/</feedburner:origLink></item>
		<item>
		<title>Subversion with LDAP on Windows Vista</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/3ijwcomNsh4/</link>
		<comments>http://www.beervsman.com/2009/02/16/subversion-with-ldap-on-windows-vista/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 19:55:53 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/?p=68</guid>
		<description><![CDATA[At 2Advanced we are using Subversion to manage project files, using LDAP for authentication on our Windows domain and Exchange server. This system works very well, but when we switched to Windows Vista we started having intermittent issues on various &#8230;<p class="read-more"><a href="http://www.beervsman.com/2009/02/16/subversion-with-ldap-on-windows-vista/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://www.2advanced.com/">2Advanced</a> we are using <a href="http://subversion.tigris.org/">Subversion</a> to manage project files, using LDAP for authentication on our Windows domain and Exchange server.</p>
<p>This system works very well, but when we switched to Windows Vista we started having intermittent issues on various workstations.  <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a>, our svn client of choice, will occasionally fail with an &#8220;Unauthorized&#8221; error or other similar error message when doing a commit.  We noticed that this normally happens during a longer commit, and TortoiseSVN will usually re-prompt for a username/password partway through the commit before failing.  I&#8217;m not sure why, but sometimes Tortoise will use the Windows user&#8217;s credentials to access the repository, but sometimes it will prompt you to enter a username/password.  In order to avoid getting the error message, you need to ensure that, if you are prompted to re-enter your username/password, you use the exact same string (matching case) that was used initially.  If the strings dont&#8217; match exactly, the commit will fail because it thinks two separate authors are sending the same commit.</p>
<p>I&#8217;m mostly posting this for my own reference because I keep forgetting exactly what&#8217;s causing this strange problem.</p>
<p>Another key when setting up SVN with LDAP on a Windows domain is to create a group for each user &#8211; including all possible permutations of that user&#8217;s username</p>
<p><code>username = DOMAIN\Username, DOMAIN\\Username, Username, DOMAIN\username, DOMAIN\\username, username</code></p>
<p><code>MyGroup = @username, @otherusername</code></p>
<p><code>[/MyClient/MyProject]<br />
@MyGroup = rw<br />
* =</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2009/02/16/subversion-with-ldap-on-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2009/02/16/subversion-with-ldap-on-windows-vista/</feedburner:origLink></item>
		<item>
		<title>FavTwits, a Twitter tool</title>
		<link>http://feedproxy.google.com/~r/BeerVsMan/~3/22Fyd5n_3uI/</link>
		<comments>http://www.beervsman.com/2009/02/12/favtwits-a-twitter-tool/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 23:40:45 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.beervsman.com/2009/02/12/favtwits-a-twitter-tool/</guid>
		<description><![CDATA[FavTwits is a tool I just wrote that explores your relationships with other Twitter users through your and their use of @username tweets. Find out who you are tweeting with the most, and plot the results on a weekly activity &#8230;<p class="read-more"><a href="http://www.beervsman.com/2009/02/12/favtwits-a-twitter-tool/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://favtwits.com/">FavTwits</a> is a tool I just wrote that explores your relationships with other Twitter users through your and their use of @username tweets.  Find out who you are tweeting with the most, and plot the results on a weekly activity chart.</p>
<p>Comments, suggestions?  Let me know.  Want to help me out w/ a decent design?  Go for it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beervsman.com/2009/02/12/favtwits-a-twitter-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beervsman.com/2009/02/12/favtwits-a-twitter-tool/</feedburner:origLink></item>
	</channel>
</rss>

