Archives / Search ›

I'm now subscribed to Doug Baron's Radio Weblog. Not to be confused with Doug Baron's Radio Weblog, naturally.

Michael McCracken: BibDesk: A BibTeX bibliography manager for Mac OS X. He's in a similar research area to mine: I recognize and have read about 99% of the papers I see as examples in his screenshots.

Why you should take a Mac user to lunch: Some errors, but overall clear thinking. I had no idea Windows server licensing costs were so high.

Secret is a password database for the Palm. No sync support with the Mac (yet), but the Palm interface looks loads better than PasswordWallet (what I currently use).

More fun with Subversion, after recovering carefully from the repository corruption. In addition to the standard HTML output mode there's also an XML+XSLT+CSS one. Here's the relevant portion of my httpd.conf:

<Location /repos/dev>
		DAV svn
		SVNPath /var/svn/repos/dev
		SVNReposName "sabi.net development"
		<LimitExcept GET PROPFIND OPTIONS REPORT>
				Require valid-user
		</LimitExcept>
		AuthType Basic
		AuthName "sabi.net Subversion repository"
		AuthUserFile /var/svn/users
</Location>
<Location /repos/dev-xml>
		DAV svn
		SVNPath /var/svn/repos/dev
		SVNReposName "sabi.net development (XML)"
		SVNIndexXSLT /svnindex.xsl
		<LimitExcept GET PROPFIND OPTIONS REPORT>
				Deny from all
		</LimitExcept>
</Location>
‹ Newer Posts  •  Older Posts ›