Saturday, January 5, 2008
Just uploaded a new build of growlbuildlistener which fixed a problem with the build listener that caused it not to work.
Check it out:
http://growlbuildlistener.googlecode.com/files/growllistener-0.4.jar
Thursday, December 6, 2007
If you’ve got a Sony Reader, and don’t like Sony’s book management app (or you don’t run Windows) you should definitely check out calibre. It lets you manage your ebook library, convert files to the Sony Reader format, tweak metadata about your books, manage the books on your Reader, preview the books. It [...]
I moved this blog from slimeslurp.net/drupal to blog.slimeslurp.net. It is now running on Word Press. Drupal was overkill for what I was using it for. File links for some things are currently broken.
Thursday, November 30, 2006
Here is a VERY basic completion for Ant build files for Fish. It was based on the Ant completion from Zsh. Save it to ~/.config/fish/completions/ant.fish.
function __fish_complete_targets -d "Print list of targets from build.xml"
if test -f build.xml
sed -n "s/ *<target name=[\"']\([^\"']*\)[\"'].*/\1/p” < build.xml
end
end
complete -x -c ant -a “(__fish_complete_targets)”