<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>slimeslurp</title>
	<atom:link href="http://blog.slimeslurp.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.slimeslurp.net</link>
	<description>My only name is the Scroobious Pip</description>
	<lastBuildDate>Tue, 13 Oct 2009 18:04:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>TextMate command for generating ActionScript getter/setters</title>
		<link>http://blog.slimeslurp.net/2009/10/13/textmate-command-for-generating-actionscript-gettersetters/</link>
		<comments>http://blog.slimeslurp.net/2009/10/13/textmate-command-for-generating-actionscript-gettersetters/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 17:52:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.slimeslurp.net/?p=35</guid>
		<description><![CDATA[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 &#8220;get&#8221; 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 [...]]]></description>
			<content:encoded><![CDATA[<p>Based on this:  http://www.nesium.com/blog/2006/08/04/actionscript-gettersetter-command-for-textmate/</p>
<p>I just changed the format of the code to match the existing code at work.</p>
<p>Command configuration:</p>
<p>Save: nothing<br />
Input: Entire Document<br />
Output: Insert as Snippet<br />
Activation: Choose whatever you want, personally I prefer using &#8220;get&#8221; as a Tab Trigger<br />
Scope Selector: source.actionscript</p>
<p>Command:</p>
<p><strong> Ick.  The formatting of this is horrible.  Will fix soon.</strong></p>
<p><code>#!/usr/bin/ruby<br />
txt = STDIN.read<br />
vars = txt.scan(/^\W*(private|public){0,1}\W*var\W*\_(\w*)\W*\:\W*(\w*)/)</p>
<p>ascript = <<-EOF<br />
tell app "TextMate"<br />
	activate<br />
	choose from list { %s } with title "Variable auswaehlen" with prompt "Welche Variable als Basis benutzen?"<br />
end tell<br />
EOF</p>
<p>displayList = []<br />
varList = []<br />
vars.each_with_index do |x,i|<br />
	scope = x[0]<br />
	name = x[1]<br />
	type = x[2]<br />
	urStr = ""<br />
	if ( scope != nil )<br />
		urStr += "(" + scope.capitalize() + ") "<br />
	end<br />
	urStr += "_" + name<br />
	if ( type != nil )<br />
		urStr += " : " + type<br />
	end<br />
	displayList.push( urStr )<br />
	varList.push( { "name" => name, "type" => type } )<br />
end</p>
<p>list = '"' + displayList.join( '", "' ) + '"'<br />
ascript = ascript % list<br />
params = "<< 'AS'\n #{ascript}\nAS"</p>
<p>cmd = open("|osascript" + params)<br />
result = cmd.gets.chomp()<br />
cmd.close</p>
<p>if ( result == "false" )<br />
	exit<br />
end</p>
<p>index = displayList.index( result )<br />
item = varList[ index ]</p>
<p>getter = <<-EOF<br />
public function get %s():%s{<br />
	return this._%s;<br />
}<br />
EOF<br />
getter = getter % [ item[ "name" ], item[ "type" ], item[ "name" ] ]</p>
<p>setter = <<-EOF<br />
public function set %s(value:%s):void{<br />
	this._%s = value;<br />
}<br />
EOF<br />
setter = setter % [ item[ "name" ], item[ "type" ], item[ "name" ] ]</p>
<p>snippet = getter + "\n" + setter<br />
print snippet</code>as_getset_cmd</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2009/10/13/textmate-command-for-generating-actionscript-gettersetters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TeamCity notifications via Growl</title>
		<link>http://blog.slimeslurp.net/2008/04/12/teamcity-notifications-via-growl/</link>
		<comments>http://blog.slimeslurp.net/2008/04/12/teamcity-notifications-via-growl/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 02:52:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://blog.slimeslurp.net/?p=32</guid>
		<description><![CDATA[I&#8217;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/
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written a custom notification plugin for <a href="http://www.jetbrains.com/teamcity/index.html">TeamCity</a> that will send build notifications via <a href="http://growl.info">Growl</a> or JGrowl.</p>
<p>You can get a copy here:<br />
<a href="http://code.google.com/p/tcgrowl/">http://code.google.com/p/tcgrowl/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2008/04/12/teamcity-notifications-via-growl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>growlbuildlistener version 0.4</title>
		<link>http://blog.slimeslurp.net/2008/01/05/growlbuildlistener-version-04/</link>
		<comments>http://blog.slimeslurp.net/2008/01/05/growlbuildlistener-version-04/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 03:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.slimeslurp.net/2008/01/05/growlbuildlistener-version-04/</guid>
		<description><![CDATA[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
]]></description>
			<content:encoded><![CDATA[<p>Just uploaded a new build of growlbuildlistener which fixed a problem with the build listener that caused it not to work. </p>
<p>Check it out:</p>
<p><a href="http://growlbuildlistener.googlecode.com/files/growllistener-0.4.jar">http://growlbuildlistener.googlecode.com/files/growllistener-0.4.jar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2008/01/05/growlbuildlistener-version-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome e-book management, calibre (formerly known as libprs500)</title>
		<link>http://blog.slimeslurp.net/2007/12/06/awesome-e-book-management-libprs500/</link>
		<comments>http://blog.slimeslurp.net/2007/12/06/awesome-e-book-management-libprs500/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 03:46:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ebook sonyreader]]></category>

		<guid isPermaLink="false">http://blog.slimeslurp.net/2007/12/06/awesome-e-book-management-libprs500/</guid>
		<description><![CDATA[If you&#8217;ve got a Sony Reader, and don&#8217;t like Sony&#8217;s book management app (or you don&#8217;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 [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve got a Sony Reader, and don&#8217;t like Sony&#8217;s book management app (or you don&#8217;t run Windows) you should definitely check out <a href="https://calibre.kovidgoyal.net/wiki/WikiStart#Usage">calibre</a>.  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&#8217;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.</p>
<p>NOTE:  libprs500 was recently renamed calibre.  Different name, same awesome app.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2007/12/06/awesome-e-book-management-libprs500/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved to Word Press&#8230;</title>
		<link>http://blog.slimeslurp.net/2007/10/22/moved-to-word-press/</link>
		<comments>http://blog.slimeslurp.net/2007/10/22/moved-to-word-press/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 02:46:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.slimeslurp.net/2007/10/22/moved-to-word-press/</guid>
		<description><![CDATA[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.
]]></description>
			<content:encoded><![CDATA[<p>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.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2007/10/22/moved-to-word-press/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New version of growlbuildlistener released</title>
		<link>http://blog.slimeslurp.net/2007/04/10/new-version-of-growlbuildlistener-released/</link>
		<comments>http://blog.slimeslurp.net/2007/04/10/new-version-of-growlbuildlistener-released/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[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:

<a href="http://growlbuildlistener.googlecode.com/files/growllistener-0.3.jar">http://growlbuildlistener.googlecode.com/files/growllistener-0.3.jar</a> 
]]></description>
			<content:encoded><![CDATA[<p>Just released a minor update to growlbuildlistener.  GrowlEcho now supports an optional sticky attribute to create &#8220;sticky&#8221; notifications.  Also, GrowlListener looks for a build property called &#8220;gbl.endsticky&#8221; which, if set, will cause the Build Finished notification to be sticky.</p>
<p>Check it out:</p>
<p><a href="http://growlbuildlistener.googlecode.com/files/growllistener-0.3.jar">http://growlbuildlistener.googlecode.com/files/growllistener-0.3.jar</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2007/04/10/new-version-of-growlbuildlistener-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ant build notifications via Growl</title>
		<link>http://blog.slimeslurp.net/2007/03/18/ant-build-notifications-via-growl/</link>
		<comments>http://blog.slimeslurp.net/2007/03/18/ant-build-notifications-via-growl/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I've created a custom BuildListener for <a href="http://ant.apache.org">Ant</a> that provides Growl notifications when your builds start/stop.  It uses the <a href="http://homepage.mac.com/stevevm/JGrowl/JGrowl.tar.gz">JGrowl</a> library to send messages.  <a href="http://homepage.mac.com/stevevm/JGrowl/JGrowl.tar.gz">JGrowl</a> also provides a Growl like notification system for any Java platform.  I've also created an <a href="http://ant.apache.org">Ant</a> task similar to &#60;echo&#62; that lets you send messages to Growl during your builds.

You can get it here:

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a custom BuildListener for <a href="http://ant.apache.org">Ant</a> that provides Growl notifications when your builds start/stop.  It uses the <a href="http://homepage.mac.com/stevevm/JGrowl/JGrowl.tar.gz">JGrowl</a> library to send messages.  <a href="http://homepage.mac.com/stevevm/JGrowl/JGrowl.tar.gz">JGrowl</a> also provides a Growl like notification system for any Java platform.  I&#8217;ve also created an <a href="http://ant.apache.org">Ant</a> task similar to &lt;echo&gt; that lets you send messages to Growl during your builds.</p>
<p>You can get it here:</p>
<p><a href="http://code.google.com/p/growlbuildlistener/">http://code.google.com/p/growlbuildlistener/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2007/03/18/ant-build-notifications-via-growl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgraded to Drupal 5</title>
		<link>http://blog.slimeslurp.net/2007/01/24/upgraded-to-drupal-5/</link>
		<comments>http://blog.slimeslurp.net/2007/01/24/upgraded-to-drupal-5/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Just upgraded to Drupal 5.  Looking for a new theme.]]></description>
			<content:encoded><![CDATA[<p>Just upgraded to Drupal 5.  Looking for a new theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2007/01/24/upgraded-to-drupal-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ant build file completion for Fish.</title>
		<link>http://blog.slimeslurp.net/2006/11/30/ant-build-file-completion-for-fish/</link>
		<comments>http://blog.slimeslurp.net/2006/11/30/ant-build-file-completion-for-fish/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Here is a VERY basic completion for <a href="http://ant.apache.org">Ant</a> build files for <a href="http://www.fishshell.org">Fish</a>.  It was based on the Ant completion from Zsh.  Save it to ~/.config/fish/completions/ant.fish.

<code>
function __fish_complete_targets -d "Print list of targets from build.xml"        
    if test -f build.xml
        sed -n "s/ *&#60;target name=[\"']\([^\"']*\)[\"'].*/\1/p" &#60; build.xml        
    end
end

complete -x -c ant -a "(__fish_complete_targets)"
</code>

]]></description>
			<content:encoded><![CDATA[<p>Here is a VERY basic completion for <a href="http://ant.apache.org">Ant</a> build files for <a href="http://www.fishshell.org">Fish</a>.  It was based on the Ant completion from Zsh.  Save it to ~/.config/fish/completions/ant.fish.</p>
<p><code><br />
function __fish_complete_targets -d "Print list of targets from build.xml"<br />
if test -f build.xml<br />
sed -n "s/ *&lt;target name=[\"']\([^\"']*\)[\"'].*/\1/p" &lt; build.xml<br />
end<br />
end</code></p>
<p>complete -x -c ant -a &#8220;(__fish_complete_targets)&#8221;<br />
EDIT: This has been added to Fish version 1.22.2</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2006/11/30/ant-build-file-completion-for-fish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgraded to 4.7.4</title>
		<link>http://blog.slimeslurp.net/2006/11/20/upgraded-to-4-7-4/</link>
		<comments>http://blog.slimeslurp.net/2006/11/20/upgraded-to-4-7-4/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[I just updated this drupal installation to 4.7.4.  ]]></description>
			<content:encoded><![CDATA[<p>I just updated this drupal installation to 4.7.4.  </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slimeslurp.net/2006/11/20/upgraded-to-4-7-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.231 seconds -->
<!-- Cached page served by WP-Cache -->
