<?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>James Badger's Personal Site</title>
	<atom:link href="http://jamesbadger.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://jamesbadger.ca</link>
	<description></description>
	<lastBuildDate>Sat, 13 Jun 2009 23:59:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Lighttpd + Mongrel + Rails + Windows</title>
		<link>http://jamesbadger.ca/2009/04/25/lighttpd-mongrel-rails-windows/</link>
		<comments>http://jamesbadger.ca/2009/04/25/lighttpd-mongrel-rails-windows/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 04:31:26 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Local Talk]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[LightTPD]]></category>
		<category><![CDATA[Mongrel]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jamesbadger.ca/?p=77</guid>
		<description><![CDATA[I recently worked on a project that required me to host a rails application on Windows XP Home, something I had no experience with but took on as our options were limited. We wanted a load-balanced server running a Rails app with a MySQL database. An XAMPP install was also being used by another group [...]]]></description>
			<content:encoded><![CDATA[<p>I recently worked on a project that required me to host a rails application on Windows XP Home, something I had no experience with but took on as our options were limited. We wanted a load-balanced server running a Rails app with a MySQL database. An XAMPP install was also being used by another group on the server, through which we had MySQL access.</p>

<p>I learned quite a bit trying to get it working, and I hope I can help someone else with how I did it. I started this last fall, so some of the software may have been updated. Also, I would like to thank Joseph Jaramillo for his post on <a href="http://www.mightyinteractive.com/ruby-on-rails/deploying-to-iis-on-windows/">Deploying to IIS with lighttpd and Mongrel</a> which was a huge help setting this up.</p>

<span id="more-77"></span>
<h2 class="heading">1. Install Ruby</h2>
<p>For Ruby, I used the 1.8.6 <a href="http://www.ruby-lang.org/en/downloads/">one-click installer</a>. Download, and install.</p>

<h2 class="heading">2. Install Ruby Gems</h2>
<p>Hop on over to RubyForge and grab the <a href="http://rubyforge.org/frs/?group_id=126">latest zip file</a> (rubygems-1.3.2.zip as of this article). Download, and install.</p>

<h2 class="heading">3. Install Rails and Mongrel</h2>
<p>Open a command prompt and run <strong>gem install rails</strong> to get rails installed. Next, run <strong>gem install mongrel mongrel_service</strong> which will install the <a href="http://mongrel.rubyforge.org/">Mongrel</a> server.

<h2 class="heading">4. Setup a Rails Application</h2>
<p>I will assume you have setup a Rails application before, and know how to create one from scratch or that you have one ready to drop in to be served. If you are not that experienced with Rails yet, I would recommend starting with Mongrel only for development.</p>
<p>Try out your Rails install by opening a command prompt to your Rails directory and running <strong>script\server</strong> (note the backslash), and then see if rails loads at <a href="http://localhost:3000/">http://localhost:3000/</a>. You may get a Windows Security Alert that you need to unblock to allow outgoing connections. At this point, you have enough to run a Rails server for development, but the aim of this article is to be more robust.</p>

<h2 class="heading">5. Install lighttpd</h2>
<p>Lighttpd is a great lightweight server that will be an excellent load-balancing proxy for this setup. We could have hooked into the Apache install from XAMPP, but I did not want to cause any problems for the group running that server.<br />
To install lighttpd, download the most recent lighttpd installer from the <a href="http://code.google.com/p/wlmp-project/">WLMP project</a> (I used LightTPD-1.4.22-1-Win32-SSL.exe). I had major problems with a Cygwin1.dll from an openSSH install conflicting with the ones for lighttpd, and had to remove the openSSH Cygwin1.dll before lighttpd would work properly; you can check for this error by running lighttpd from a command prompt and seeing if you get an error.</p>

<h2 class="heading">6. Install Windows Server 2003 Resource Kit</h2>
<p>To get lighttpd running as the kind of service we need, download and install the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&#038;displaylang=en">Windows Server 2003 Resource Kit</a>.</p>

<h2 class="heading">7. Install Mongrel Rails Service</h2>
<p>We are going to have two Mongrel servers serving our Rails application, although you can run more (See <a href="http://mongrel.rubyforge.org/wiki/Tuning">How Many Mongrel Instances Should I Run?</a>). To do this, open a command prompt and goto your Rails app directory. For each Mongrel server you want to run, enter the following command:<br />
<strong>mongrel_rails service::install -N rails_app_4001 -p 4001</strong><br />
Increase the number by one for each service (4002, 4003, etc) as you run the command. This command will install Windows services that will run our Mongrel servers in the background. To start these servers, run the following command for each server, incrementing the number for each server (4001, 4002, etc.):<br />
<strong>net start rails_app_4001</strong><br />
To make it easy to start and stop these servers, create a mserver.bat file in your Rails directory with the following contents:<br />
<blockquote>
@echo off<br />
net %1 rails_app_4001<br />
net %1 rails_app_4002
</blockquote>
Add additional lines for each extra Mongrel server, again incrementing the number. This script will allow you to start/stop all the servers by opening a command prompt, going to the Rails directory, and typing <strong>mserver.bat start</strong> or <strong>mserver.bat stop</strong> , which will come in handy when restarting your Rails app. To test if these servers are running, open a web browser and navigate to ports <a href="http://localhost:4001/">4001</a>, <a href="http://localhost:4002/">4002</a>, etc on your server and see if your Rails app shows up.
</p>

<h2 class="heading">8. Setup lighttpd Proxy</h2>
<p>Download and install <a href="http://www.mightyinteractive.com/ruby-on-rails/deploying-to-iis-on-windows/lighttpd.conf">Joseph Jaramillo&#8217;s lighttpd conf file</a> to your Rails directory, and put it in your config directory.
<br />Edit the file with an app that supports UNIX-style line endings (not notepad), changing the following values:</p>
<p><strong>var.basedir = &#8220;C:/Rails/myrailsapp&#8221;</strong> (point to your Rails app directory, use forward slashes)<br />
<strong>server.bind = &#8220;&#8221;</strong> (do not bind to a specific address)<br />
<strong>server.port = 3000</strong> (the port you want your users to use. 80 is a good default, or if already used as in my case, 3000)<br />
and under <strong>proxy.server</strong>, add extra entries for any additional Mongrel servers you are running.</p>
<p>Next, setup lighttpd to run as a Windows service. <a href="http://www.mightyinteractive.com/ruby-on-rails/deploying-to-iis-on-windows/index3.shtml">Follow Joseph&#8217;s instructions on step 3,</a> of course changing the AppParameters to use the path to your lighttpd config file in your rails directory. Test your setup by pointing your browser at your server&#8217;s main address (or other port if you chose one other than 80), and you should see your Rails application!</p>
<br />
<p>If you have any comments, suggestions, or problems let me know in the comments.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesbadger.ca/2009/04/25/lighttpd-mongrel-rails-windows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cut Wifi Login Times (University of Calgary)</title>
		<link>http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/</link>
		<comments>http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 15:39:38 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[University]]></category>
		<category><![CDATA[devicescape]]></category>
		<category><![CDATA[UofC]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://jamesbadger.ca/?p=75</guid>
		<description><![CDATA[Those at the University of Calgary with laptops know that there is a public wireless network available for students. It&#8217;s unencrypted, but requires a login through a portal before internet services are provided. I found that whenever I moved between classes or left my laptop off for more than half an hour, I had to [...]]]></description>
			<content:encoded><![CDATA[<p>Those at the <a href="http://ucalgary.ca/">University of Calgary</a> with laptops know that there is a <a href="http://www.ucalgary.ca/it/networks/airuc-wireless">public wireless network available for students</a>. It&#8217;s unencrypted, but requires a login through a portal before internet services are provided. I found that whenever I moved between classes or left my laptop off for more than half an hour, I had to login again, which is not very efficient if you have to do it five times a day. What if you only had to do it once? What if you had a program to do it automatically for you?</p>

<p>Someone undoubtedly thought of this, and created <a href="http://www.devicescape.com/">Devicescape</a>. A multi-platform application that will automatically log you into (certain) wireless networks, one of which is the UofC network. It&#8217;s simple to use, just hop over to their site and <a href="https://my.devicescape.com/">download the Devicescape client</a>. Sign up for an account, load up your airUC credentials, and the program will do the rest. As soon as your device connects to airUC, Devicescape will login within seconds, allowing you to skip loading the login page in your browser.</p>

<p>One of the best parts is how well it integrates with your OS. On OS X, it sits in the menubar and notifies you when it is logged in or out. No dialogs, no preference pane, no clunky application. It also runs on most mobile devices, <a href="https://my.devicescape.com/learn/faqs#type">take a look at the list</a> to see if yours is supported. Be sure to also check that the networks you want to connect to are supported as well.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesbadger.ca/2009/03/05/cut-wifi-login-times-university-of-calgary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quicksilver + iTunes + Growl</title>
		<link>http://jamesbadger.ca/2008/11/28/quicksilver-itunes-growl/</link>
		<comments>http://jamesbadger.ca/2008/11/28/quicksilver-itunes-growl/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 05:25:23 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Local Talk]]></category>

		<guid isPermaLink="false">http://jamesbadger.ca/?p=67</guid>
		<description><![CDATA[One of the most handy tools for Mac has to be Quicksilver. It does 90% of my application launching, and has a plethora of plugins and other features too, like triggers. Triggers work like global hotkeys. For example, I can press control-F8 in (almost) any application and have iTunes skip to the next song.
What I [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most handy tools for Mac has to be <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">Quicksilver</a>. It does 90% of my application launching, and has a plethora of plugins and other features too, like triggers. Triggers work like global hotkeys. For example, I can press control-F8 in (almost) any application and have iTunes skip to the next song.</p>
<p>What I like to do is be able to rate my iTunes music without having to switch to iTunes or fumble around with the dock contextual menu. With a Quicksilver trigger this is easy, just install the iTunes module and a handful of iTunes-specific triggers are added. However, I prefer to have visual notification that the trigger worked, so I made a few Applescripts to automatically set the rating and tell <a href="http://growl.info/">Growl</a> to display a notification that the change was made.</p>

<p>Script below:</p>
<span id="more-67"></span>


<div class="applescript">
<p class="p1">
			<font face="Verdana" size="1" class="f1">&ndash;&ndash;</font> <font face="Verdana" size="1" color="#4C4E4E" class="f2">check for apps needed</font>
		</p>
		<p class="p1">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>tell</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">application</font> <font face="Verdana" size="1" class="f1">&quot;System Events&quot;</font>
		</p>
		<p class="p2">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#408000" class="f6">iTunesRunning</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">¬</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#0000FF" class="f5">count</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>every</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">process</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>whose</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">name</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>is</b></font> <font face="Verdana" size="1" class="f1">&quot;iTunes&quot;))</font> <font face="Verdana" size="1" class="f1">&gt;</font> <font face="Verdana" size="1" class="f1">0</font>
		</p>
		<p class="p2">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#408000" class="f6">growlRunning</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">¬</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#0000FF" class="f5">count</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>every</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">process</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>whose</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">name</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>is</b></font> <font face="Verdana" size="1" class="f1">&quot;GrowlHelperApp&quot;))</font> <font face="Verdana" size="1" class="f1">&gt;</font> <font face="Verdana" size="1" class="f1">0</font>
		</p>
		<p class="p4"></p>
		<p class="p5">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>end</b></font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>tell</b></font>
		</p>
		<p class="p6">
			<br />
		</p>
		<p class="p5">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>if</b></font> <font face="Verdana" size="1" color="#408000" class="f6">iTunesRunning</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>is</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">true</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>and</b></font> <font face="Verdana" size="1" color="#408000" class="f6">growlRunning</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>is</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">true</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>then</b></font>
		</p>
		<p class="p2">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>tell</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">application</font> <font face="Verdana" size="1" class="f1">&quot;iTunes&quot;</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#408000" class="f6">thistrack</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">current track</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#408000" class="f6">therating</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">20</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">rating</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" color="#408000" class="f6">thistrack</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#408000" class="f6">therating</font><font face="Verdana" size="1" class="f1">)</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#408000" class="f6">songdesc</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#0000FF" class="f5">name</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" color="#408000" class="f6">thistrack</font><font face="Verdana" size="1" class="f1">)</font> <font face="Verdana" size="1" class="f1">&amp;</font> <font face="Verdana" size="1" color="#0000FF" class="f5">return</font> <font face="Verdana" size="1" class="f1">&amp;</font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#0000FF" class="f5">artist</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" color="#408000" class="f6">thistrack</font><font face="Verdana" size="1" class="f1">)</font> <font face="Verdana" size="1" class="f1">&amp;</font> <font face="Verdana" size="1" color="#0000FF" class="f5">return</font> <font face="Verdana" size="1" class="f1">&amp;</font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#0000FF" class="f5">album</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" color="#408000" class="f6">thistrack</font><font face="Verdana" size="1" class="f1">)</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#408000" class="f6">trackArt</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">(</font><font face="Verdana" size="1" color="#0000FF" class="f5">data</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">artwork</font> <font face="Verdana" size="1" class="f1">1</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>of</b></font> <font face="Verdana" size="1" color="#408000" class="f6">thistrack</font><font face="Verdana" size="1" class="f1">)</font>
		</p>
		<p class="p2">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>end</b></font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>tell</b></font>
		</p>
		<p class="p4"></p>
		<p class="p2">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>tell</b></font> <font face="Verdana" size="1" color="#0000FF" class="f5">application</font> <font face="Verdana" size="1" class="f1">&quot;GrowlHelperApp&quot;</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>the</b></font> <font face="Verdana" size="1" color="#408000" class="f6">allNotificationsList</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">{&quot;Star Rating&quot;}</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#2900FF" class="f3"><b>set</b></font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>the</b></font> <font face="Verdana" size="1" color="#408000" class="f6">enabledNotificationsList</font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>to</b></font> <font face="Verdana" size="1" class="f1">{&quot;Star Rating&quot;}</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#0000FF" class="f5">register</font> <font face="Verdana" size="1" color="#0000FF" class="f5">as application</font> <font face="Verdana" size="1" class="f1">&quot;Rating Scripts&quot;</font> <font face="Verdana" size="1" color="#0000FF" class="f5">all notifications</font> <font face="Verdana" size="1" color="#408000" class="f6">allNotificationsList</font> <font face="Verdana" size="1" color="#0000FF" class="f5">default notifications</font> <font face="Verdana" size="1" color="#408000" class="f6">enabledNotificationsList</font>
		</p>
		<p class="p3">
			<font face="Helvetica" size="1" class="f4"></font><font face="Verdana" size="1" color="#0000FF" class="f5">notify</font> <font face="Verdana" size="1" color="#0000FF" class="f5">with name</font> <font face="Verdana" size="1" class="f1">&quot;Star Rating&quot;</font> <font face="Verdana" size="1" color="#0000FF" class="f5">title</font> <font face="Verdana" size="1" class="f1">&quot;</font><font face="Hiragino Kaku Gothic ProN" size="1" class="f7">&#x2605;&#x2606;&#x2606;&#x2606;&#x2606;</font><font face="Verdana" size="1" class="f1">&quot;</font> <font face="Verdana" size="1" color="#0000FF" class="f5">description</font> <font face="Verdana" size="1" color="#408000" class="f6">songdesc</font> <font face="Verdana" size="1" color="#0000FF" class="f5">application name</font> <font face="Verdana" size="1" class="f1">&quot;Rating Scripts&quot;</font> <font face="Verdana" size="1" color="#0000FF" class="f5">pictImage</font> <font face="Verdana" size="1" color="#408000" class="f6">trackArt</font>
		</p>
		<p class="p2">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>end</b></font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>tell</b></font>
		</p>
		<p class="p5">
			<font face="Verdana" size="1" color="#2900FF" class="f3"><b>end</b></font> <font face="Verdana" size="1" color="#2900FF" class="f3"><b>if</b></font>
		</p>
</div>

<p>I saved five version of the script, for ratings 1 to 5, changing the values for each one. &#8220;set therating to 20&#8243; is one star, 40 is two stars, etc. I also changed the &#x2605;s for each script. Then in Quicksilver, I added new triggers that activated these scripts, and now control-F1 through F5 rate the current song, and display a Growl notification with track art and information.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesbadger.ca/2008/11/28/quicksilver-itunes-growl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
