Archive for March, 2008

Problems Installing Subversion From Source On CentOS

Wednesday, March 26th, 2008

I was setting up a new server for someone, and encountered this error while I was trying to build svn /usr/bin/ld: cannot find -lexpat Now, while I can do some things on that a sys admin can, I am by no means a sys admin. I have only installed svn a ...

Report space remaining on disk on unix login

Sunday, March 23rd, 2008

I get a kick out of stuff like this. Add this to your .bash_profile to be greeted with the remaining space on your disk. df -h | awk 'NR==2 {print "Space available " $4}' This will actually change depending on which version of df you're using (i think). I get ...

BBEdit, I love you, but please can we have a few more things?

Saturday, March 15th, 2008

BBEdit is made by Bare Bones Software. For text editing, I've never used anything better. I swear by it. It's got absolutely amazing search / replace, regex support, shell worksheets, and the fact that I can write a plugin in pretty much any language ever made is ...

How to Install the Lucene Search Engine using Solr

Saturday, March 15th, 2008

I'm going to go through the steps necessary to install and start using Solr. I've always been interested in trying out Lucene, but I never felt like dealing with writing my own wrapper around the classes. Solr simplifies this by creating a fully working search engine as a ...