Skip to content

Category Archives: Uncategorized

TextMate command for generating ActionScript getter/setters

Based on this: http://www.nesium.com/blog/2006/08/04/actionscript-gettersetter-command-for-textmate/
I just changed the format of the code to match the existing code at work.
Command configuration:
Save: nothing
Input: Entire Document
Output: Insert as Snippet
Activation: Choose whatever you want, personally I prefer using “get” as a Tab Trigger
Scope Selector: source.actionscript
Command:
Ick. The formatting of this is horrible. Will fix soon.
#!/usr/bin/ruby
txt = STDIN.read
vars [...]

growlbuildlistener version 0.4

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

Awesome e-book management, calibre (formerly known as libprs500)

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 [...]

Moved to Word Press…

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.

Ant build file completion for Fish.

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)"