AOE and iSCSI on Software RAID

January 2nd, 2014

HP HDX Dragon

January 2nd, 2014

Perl Web Server

January 2nd, 2014

Setting up a Subversion (SVN) server on Ubuntu

January 2nd, 2014

I recently set up a SVN server to manage the eGiveIt codebase. Here are some details and links that helped.

Using find to delete files more than x days old

July 8th, 2013

find . -name "server.log*" -mtime +30 -exec rm -f {} \;