I’ve written a custom notification plugin for TeamCity that will send build notifications via Growl or JGrowl.
You can get a copy here:
http://code.google.com/p/tcgrowl/
I’ve written a custom notification plugin for TeamCity that will send build notifications via Growl or JGrowl.
You can get a copy here:
http://code.google.com/p/tcgrowl/
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
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 will even download some newsfeeds and put them on your reader. It’s open source, written in Python and runs on Windows, Linux and Mac OS. It also contains command line apps to do format conversions and to transfer books to the Reader. It just plain kicks ass.
NOTE: libprs500 was recently renamed calibre. Different name, same awesome app.
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.
Just released a minor update to growlbuildlistener. GrowlEcho now supports an optional sticky attribute to create “sticky” notifications. Also, GrowlListener looks for a build property called “gbl.endsticky” which, if set, will cause the Build Finished notification to be sticky.
Check it out:
http://growlbuildlistener.googlecode.com/files/growllistener-0.3.jar
I’ve created a custom BuildListener for Ant that provides Growl notifications when your builds start/stop. It uses the JGrowl library to send messages. JGrowl also provides a Growl like notification system for any Java platform. I’ve also created an Ant task similar to <echo> that lets you send messages to Growl during your builds.
You can get it here:
Just upgraded to Drupal 5. Looking for a new theme.
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)”
EDIT: This has been added to Fish version 1.22.2
Here is how I went about building a version of Emacs that has XFT support on Ubuntu 6.06.
Install the latest GTK Emacs snapshot:
sudo apt-get install emacs-snapshot-gtk
Check out the
cd /opt
sudo cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/cvsroot/emacs co -remacs-unicode-2 emacs
Configure and build:
./configure --prefix=/usr --enable-font-backend --with-xft --with-freetype --with-gtk --x-includes=/usr/include/X11 --x-libraries=/usr/lib/X11
sudo make bootstrap
sudo make
Update /etc/alternatives to point to the new binary:
sudo rm /etc/alternatives/emacs
sudo ln -s /opt/emacs/src/emacs /etc/alternatives/emacs
References:
http://www.emacswiki.org/cgi-bin/wiki/XftGnuEmacs
http://ubuntuforums.org/showpost.php?p=1051268&postcount=53
http://www.emacswiki.org/cgi-bin/wiki?action=browse;oldid=EmacsCvs;id=EmacsFromCVS