<?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>Mandarin Soda &#187; miscellaneous</title>
	<atom:link href="http://mandarinsoda.com/category/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://mandarinsoda.com</link>
	<description>Random Musings, Sometimes Programming.</description>
	<lastBuildDate>Fri, 12 Jun 2009 02:28:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Accessing FedEx Web Services From Ruby/Rails</title>
		<link>http://mandarinsoda.com/2009/02/09/accessing-fedex-web-services-from-rubyrails/</link>
		<comments>http://mandarinsoda.com/2009/02/09/accessing-fedex-web-services-from-rubyrails/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 21:45:17 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Shipping]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/?p=224</guid>
		<description><![CDATA[I recently played around with adding FedEx shipping services to the active_shipping plugin and found a bit of confusion online in regards to how to hit FedEx depending upon the style of service being exposed. Somewhat confusingly, FedEx has non-SOAP services as well as SOAP services that you can hit restfully in an HTTPS Post. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently played around with adding FedEx shipping services to the <a href="http://github.com/Shopify/active_shipping/tree/master">active_shipping</a> plugin and found a bit of confusion online in regards to how to hit FedEx depending upon the style of service being exposed.  Somewhat confusingly, FedEx has non-SOAP services as well as SOAP services that you can hit restfully in an HTTPS Post.  For the SOAP service, FedEx has very specific requirements about how to formulate the payload and HTTP headers that took a bit of tinkering to get working.  Non-SOAP FedEx support was recently added to active_shipping prior to the completion of my work, but I figured I would post if for those who want to use what I think are newer SOAP services.</p>
<p>Without much further ado, here are the basics for creating a tracking request:</p>
<pre>
<code>
TEST_DOMAIN = 'gatewaybeta.fedex.com'

def find_tracking_info(tracking_number, options={})
        options = @options.update(options)
        tracking_request = build_tracking_request(tracking_number, options)
        response = commit(:track, save_request(tracking_request),
                          (options[:test] || false))
        parse_tracking_response(response, options)
  end

protected
   def build_access_request
        xml_request = XmlNode.new('ns:WebAuthenticationDetail') do |access|
          access << XmlNode.new('ns:UserCredential') do |user|
             user << XmlNode.new('ns:Key', @options[:key])
             user << XmlNode.new('ns:Password', @options[:password])
          end
        end
        xml_request
      end

      def build_client_detail
        xml_request = XmlNode.new('ns:ClientDetail') do |client_detail|
          client_detail << XmlNode.new('ns:AccountNumber', @options[:account])
          client_detail << XmlNode.new('ns:MeterNumber', @options[:meter])
        end
        xml_request
      end

     def build_tracking_request(tracking_number, options={})
        xml_request = XmlNode.new('ns:TrackRequest',
                         :'xmlns:ns'=>"http://fedex.com/ws/track/v2",
                         :'xmlns:xsi'=>"http://www.w3.org/2001/XMLSchema-instance",
                         :'xsi:schemaLocation'=>"http://fedex.com/ws/track/v2") do |root_node|
          root_node << build_access_request
          root_node << build_client_detail
          root_node << XmlNode.new('ns:TransactionDetail') do |detail|
            detail << XmlNode.new('ns:CustomerTransactionId', 'Ground Track')
          end
          root_node <<  XmlNode.new('ns:Version') do |version|
            version << XmlNode.new('ns:ServiceId', 'trck')
            version << XmlNode.new('ns:Major', '2')
            version << XmlNode.new('ns:Intermediate', '0')
            version << XmlNode.new('ns:Minor', '0')
          end
           root_node <<  XmlNode.new('ns:PackageIdentifier') do |package|
              package << XmlNode.new('ns:Value', tracking_number.to_s)
              package << XmlNode.new('ns:Type', "TRACKING_NUMBER_OR_DOORTAG")
          end
        end
        xml_request.to_xml
      end

     def commit(action, request, test = false)
        http = Net::HTTP.new((test ? TEST_DOMAIN : LIVE_DOMAIN),
                                (USE_SSL[action] ? 443 : 80 ))
        http.use_ssl = USE_SSL[action]

        headers = {
          'Referer' => 'me',
          'Port' => '443',
          'Accept' => "image/gif, image/jpeg, image/pjpeg, text/plain, text/html, */*",
          'Content-Type' => 'image/gif'
        }

        http.verify_mode = OpenSSL::SSL::VERIFY_NONE if USE_SSL[action]
        response = http.start do |http|
          http.request_post ('/xml', request, headers)
        end
        response.body
      end
</pre>
<p></code></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2009%2F02%2F09%2Faccessing-fedex-web-services-from-rubyrails%2F&amp;title=Accessing+FedEx+Web+Services+From+Ruby%2FRails" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2009/02/09/accessing-fedex-web-services-from-rubyrails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightweight Ruby Web Services</title>
		<link>http://mandarinsoda.com/2008/12/09/lightweight-ruby-web-services/</link>
		<comments>http://mandarinsoda.com/2008/12/09/lightweight-ruby-web-services/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 02:04:43 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Book Reviews]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[merb]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/?p=220</guid>
		<description><![CDATA[The recent Oreilly book Enterprise Rails has a few chapters on SOA and the entire time I was reading those chapters I kept thinking to myself that Rails is sorta overkill for most services implementations, unless you plan on bundling APIs and applications together. I was going to write something about translating the services discussed [...]]]></description>
			<content:encoded><![CDATA[<p>The recent Oreilly book <a href="http://oreilly.com/catalog/9780596515201/">Enterprise Rails</a> has a few chapters on SOA and the entire time I was reading those chapters I kept thinking to myself that Rails is sorta overkill for most services implementations, unless you plan on bundling APIs and applications together.  I was going to write something about translating the services discussed in that book to <a href="http://merbivore.com/">Merb</a> micro apps or something similar, but a few recent posts beat me to the punch.  Enjoy:</p>
<p><a href="http://www.slideshare.net/adamwiggins/lightweight-webservices-with-sinatra-and-restclient-presentation?type=powerpoint ">Web Services With Sinatra</a>.</p>
<p><a href="http://advent2008.hackruby.com/past/2008/12/6/soa_with_merb/">SOA with Merb?</a>.</p>
<p>Throw in a little <a href="http://railstips.org/2008/11/17/happymapper-making-xml-fun-again">Happy Mapper</a> and you sort of have the equivalent of Restlet/Jersey and Castor/Jibx in the Java world.  Enterprise indeed.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F12%2F09%2Flightweight-ruby-web-services%2F&amp;title=Lightweight+Ruby+Web+Services" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/12/09/lightweight-ruby-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring Radiant CMS and Phusion Passenger on Slicehost</title>
		<link>http://mandarinsoda.com/2008/09/09/monitoring-radiant-cms-and-phusion-passenger-on-slicehost/</link>
		<comments>http://mandarinsoda.com/2008/09/09/monitoring-radiant-cms-and-phusion-passenger-on-slicehost/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 21:21:10 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Slicehost]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[Radiant]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/?p=160</guid>
		<description><![CDATA[In my previous post, I wrote about quickly setting an Ubuntu Hardy slice up with Radiant and the latest Phusion tools (mod_rails and Ruby Enterprise) and alluded to some setting up logging and monitoring as next steps. As monitoring and logging are fascinating subjects, I figured I&#8217;d follow up with a few sentences about what [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous post, I wrote about quickly setting an Ubuntu Hardy slice up with Radiant and the latest Phusion tools (mod_rails and Ruby Enterprise) and alluded to some setting up logging and monitoring as next steps.  As monitoring and logging are fascinating subjects, I figured I&#8217;d follow up with a few sentences about what I configured.</p>
<p>Apache will log to its own log files, as well as <a href="http://httpd.apache.org/docs/1.3/logs.html#rotation">handle log rotation</a>, so nothing much to write about there.  However, as a good practice, you&#8217;ll likely want to rotate your Radiant logs.  And for that, you&#8217;ll want logrotate.  </p>
<p>Logrotate gets its configuration information from /etc/logrotate.conf, so one just needs to open it up and tell it to look at the Radiant logs and rotate them like so:</p>
<pre><code>
# Rotate Rails application logs
/path/to/radiant/shared/log/*.log {
daily
missingok
rotate 7
compress
delaycompress
notifempty
copytruncate
}
</pre>
<p></code></p>
<p>This will rotate 7 days worth of logs, compress older logs and start a new log file.   And it will do it daily. Simple.  </p>
<p>Monitoring is a bit more involved, but God makes it fairly easy, and its all in Ruby.  According to <a href="https://boxpanel.blueboxgrp.com/public/the_vault/index.php/Mod_Rails_Tips">this helpful site</a> mod_rails monitors its own processes, which leaves us to Monitor Apache, MySQL and any other processes running around.  The <a href="http://god.rubyforge.org/">God site</a> has very good documentation, so I suggest you head over there if you want detailed descriptions of everything it can do.  For the sake of this post, I'll just lead folks to simple Apache and MySQL configurations.</p>
<p>After installing God <code>sudo gem install god --no-ri --no-rdoc</code>, setup a conf.god somewhere sensible and take a look at the posts below, as it probably doesn't make sense for me to reiterate what others have already admirably accomplished:<br />
<a href="http://rubypond.com/articles/2007/12/28/touched-by-god-process-monitoring/">Monitoring MySQL and setting up notifications</a>.<br />
<a href="http://blog.blenderbox.com/2008/03/11/monitoring-apache-with-god/">Monitoring Apache</a>.</p>
<p>Now I just need to figure out what will monitor God.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F09%2Fmonitoring-radiant-cms-and-phusion-passenger-on-slicehost%2F&amp;title=Monitoring+Radiant+CMS+and+Phusion+Passenger+on+Slicehost" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/09/09/monitoring-radiant-cms-and-phusion-passenger-on-slicehost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Baaba Maal Live Acoustic Album</title>
		<link>http://mandarinsoda.com/2008/08/26/new-baaba-maal-live-acoustic-album/</link>
		<comments>http://mandarinsoda.com/2008/08/26/new-baaba-maal-live-acoustic-album/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 21:48:46 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/?p=121</guid>
		<description><![CDATA[Definitely a posting for the random category, but having waited 7 years for a new album since his excellent album Missing You, I figured the release of Baaba Maal&#8217;s new album was worth blogging about. He&#8217;s an absolutely amazing live performer. Do yourself a favor and check him out. Especially if you have a dreary [...]]]></description>
			<content:encoded><![CDATA[<p>Definitely a posting for the random category, but having waited 7 years for a new album since his excellent album <a href="http://baabamaal.calabashmusic.com/">Missing You</a>, I figured the release  of <a href=" http://www.baabamaal.tv/home.html">Baaba Maal&#8217;s</a> new album was worth blogging about.  He&#8217;s an absolutely amazing live performer.  Do yourself a favor and check him out.  Especially if you have a dreary job and/or are occasionally forced to code CSS, which can be spirit crushing (caveat: particularly if you don&#8217;t exactly know what you&#8217;re doing).  </p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F08%2F26%2Fnew-baaba-maal-live-acoustic-album%2F&amp;title=New+Baaba+Maal+Live+Acoustic+Album" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/08/26/new-baaba-maal-live-acoustic-album/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Site Optimization News</title>
		<link>http://mandarinsoda.com/2008/07/26/web-site-optimization-news/</link>
		<comments>http://mandarinsoda.com/2008/07/26/web-site-optimization-news/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 20:44:58 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/?p=106</guid>
		<description><![CDATA[Some interesting resources and news in the world of web site optimization recently. Good stuff for those who care about this sort of thing. I look forward to clogging up my works print queue with Velocity presentations on Monday even though printing is a bit evil.]]></description>
			<content:encoded><![CDATA[<p>Some interesting <a href="http://en.oreilly.com/velocity2008/public/schedule/proceedings">resources</a> and <a href="http://">news</a> in the world of web site optimization recently.  Good stuff for those who care about this sort of thing. I look forward to clogging up my works print queue with Velocity presentations on Monday even though printing is a bit evil.    </p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F07%2F26%2Fweb-site-optimization-news%2F&amp;title=Web+Site+Optimization+News" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/07/26/web-site-optimization-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Helpful Are Microloans?</title>
		<link>http://mandarinsoda.com/2008/03/20/how-helpful-are-microloans/</link>
		<comments>http://mandarinsoda.com/2008/03/20/how-helpful-are-microloans/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 17:59:53 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/20/how-helpful-are-microloans/</guid>
		<description><![CDATA[Interesting New Yorker article on the current microfinance vogue. Sites like Kiva are unquestionably great, but I wonder if they&#8217;re maybe missing an ingredient? &#8220;What poor countries need most, then, is not more microbusinesses. They need more small-to-medium-sized enterprises, the kind that are bigger than a fruit stand but smaller than a Fortune 1000 corporation.&#8221;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.newyorker.com/talk/financial/2008/03/17/080317ta_talk_surowiecki">Interesting New Yorker article</a> on the current microfinance vogue.  Sites like <a href="http://www.kiva.org/">Kiva</a> are unquestionably great, but I wonder if they&#8217;re maybe missing an ingredient?</p>
<blockquote><p>&#8220;What poor countries need most, then, is not more microbusinesses. They need more small-to-medium-sized enterprises, the kind that are bigger than a fruit stand but smaller than a Fortune 1000 corporation.&#8221;</p></blockquote>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F20%2Fhow-helpful-are-microloans%2F&amp;title=How+Helpful+Are+Microloans%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/03/20/how-helpful-are-microloans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fire Eagle</title>
		<link>http://mandarinsoda.com/2008/03/09/fire-eagle/</link>
		<comments>http://mandarinsoda.com/2008/03/09/fire-eagle/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 04:03:14 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/09/fire-eagle/</guid>
		<description><![CDATA[Location, location, location. Now this is interesting&#8230;. In some industries they say location can be everything&#8230;]]></description>
			<content:encoded><![CDATA[<p>Location, location, location.</p>
<p><a href="http://developer.yahoo.net/blogs/theater/archives/2008/03/fire_eagle_launches.html">Now this is interesting&#8230;</a>.  In some industries they say location can be everything&#8230;</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Ffire-eagle%2F&amp;title=Fire+Eagle" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/03/09/fire-eagle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Your Site Green?</title>
		<link>http://mandarinsoda.com/2008/03/09/is-your-site-green/</link>
		<comments>http://mandarinsoda.com/2008/03/09/is-your-site-green/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 21:53:47 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/09/is-your-site-green/</guid>
		<description><![CDATA[Interesting post from the High Performace Web Sites Blogs. Perhaps not surprisingly, efficient page serving is good for your users and our environment.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stevesouders.com/blog/2008/03/06/how-green-is-your-web-page/">Interesting post</a> from the High Performace Web Sites Blogs.  Perhaps not surprisingly, efficient page serving is good for your users and our environment.  </p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fis-your-site-green%2F&amp;title=Is+Your+Site+Green%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/03/09/is-your-site-green/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superb Remote File Access on Leopard</title>
		<link>http://mandarinsoda.com/2008/03/09/superb-remote-file-access-on-leopard/</link>
		<comments>http://mandarinsoda.com/2008/03/09/superb-remote-file-access-on-leopard/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 21:23:05 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/09/superb-remote-file-access-on-leopard/</guid>
		<description><![CDATA[If you haven&#8217;t yet checked out ExpanDrive and you do a lot of remote file editing, you&#8217;re missing out.]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t yet checked out ExpanDrive and you do a lot of remote file editing, you&#8217;re missing out.</p>
<p><a href="http://www.magnetk.com/expandrive"><img src="http://www.magnetk.com/images/magnetk/expandrive.gif" alt="ExpanDrive" /></a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F09%2Fsuperb-remote-file-access-on-leopard%2F&amp;title=Superb+Remote+File+Access+on+Leopard" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/03/09/superb-remote-file-access-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun not feeling Groovy?</title>
		<link>http://mandarinsoda.com/2008/03/05/sun-not-feeling-groovy/</link>
		<comments>http://mandarinsoda.com/2008/03/05/sun-not-feeling-groovy/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 15:26:38 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/05/sun-not-feeling-groovy/</guid>
		<description><![CDATA[What language will feel the love next?]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tbray.org/ongoing/When/200x/2008/03/03/Python-at-Sun">What language will feel the love next?</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F05%2Fsun-not-feeling-groovy%2F&amp;title=Sun+not+feeling+Groovy%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://mandarinsoda.com/2008/03/05/sun-not-feeling-groovy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
