<?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; Software Design</title>
	<atom:link href="http://mandarinsoda.com/category/software-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://mandarinsoda.com</link>
	<description>Random Musings, Sometimes Programming.</description>
	<lastBuildDate>Tue, 13 Sep 2011 05:00:59 +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>Writing a Simple MailChimp Web Service Using Merb</title>
		<link>http://mandarinsoda.com/2008/09/08/writing-a-simple-mailchimp-web-service-using-merb/</link>
		<comments>http://mandarinsoda.com/2008/09/08/writing-a-simple-mailchimp-web-service-using-merb/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 23:17:55 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[MailChimp]]></category>
		<category><![CDATA[merb]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/?p=129</guid>
		<description><![CDATA[A while back, I was asked to build some code to help keep a businesses mailing list synchronized between SalesForce.com and their campaign management tool, which I suggested should be MailChimp and not the tool they were currently using, but I digress. The project never materialized, but I figured I would build it anyway and [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, I was asked to build some code to help keep a businesses mailing list synchronized between SalesForce.com and their campaign management tool, which I suggested should be <a href="http://www.mailchimp.com/index.phtml">MailChimp</a> and not the tool they were currently using, but I digress.  The project never materialized, but I figured I would build it anyway and use it as a chance to explore <a href="http://merbivore.com/">Merb</a> a bit.</p>
<p>My thinking at the time was that a standalone &#8220;wrapper&#8221; web service made sense.  While it would have complicated application administration a bit, encapsulating the mailing list functionality in a simple service that could be called synchronously or asynchronously, as well as modified and deployed independent of core site logic, sounded reasonable.</p>
<p>So, let&#8217;s start with building a minimal Merb application to serve as a foundation:<br />
<code>merb-gen app mail_chimp_service --flat</code></p>
<p>This generates one controller, a few templates (if we want to build in some templated monitoring and for xml responses) and just enough configuration to get the Merb service started.</p>
<p>To test it out, just fire up Merb with the following command: <code>merb</code> and head to <code>http://localhost:4000</code>.</p>
<p>With a foundation in place, I started looking into my MailChimp plugin to see if I should turn it into a gem or do something simpler.  I turned to <a href="http://seattlerb.rubyforge.org/hoe/">hoe</a>, thinking that making a gem would be interesting, but then decided otherwise, as I basically didn&#8217;t feel like writing that much.    So instead, I wrote a simple chimp class to do the MailChimp API work:</p>
<pre><code>require 'xmlrpc/client'
class Chimp
  cattr_accessor :client, :auth
  def add(subscriber)
    chimp_subscribe(auth, Merb::Config[:chimp_settings]['mail_chimp']['mailing_list_id'],
                            subscriber.email, subscriber.mail_merge)
  end
  private
  def chimp_subscribe(auth, mailing_list_id, email, merge_vars,
                                email_content_type="html", double_optin=true)
    begin
      client.call("listSubscribe", auth, mailing_list_id, email,
                     merge_vars, email_content_type, double_optin)
    rescue XMLRPC::FaultException =&gt; e
      Merb.logger e.faultCode
      Merb.logger e.faultString
    end
  end
end</code></pre>
<p>This class adds users to a specific MailChimp mailing list using the MailChimp APIs.  The client and auth attributes are set in the Merb init.rb class, as they really only need to be loaded once and not initialized per each request:</p>
<pre><code>
Merb::BootLoader.after_app_loads do
    Chimp.client = XMLRPC::Client.new2('http://api.mailchimp.com/1.0/')
    Chimp.auth = XMLRPC::Client.new2('http://api.mailchimp.com/1.0/').call("login",
                         Merb::Config[:chimp_settings]['mail_chimp']['username'],
                         Merb::Config[:chimp_settings]['mail_chimp']['password'])
end
</code></pre>
<p>I&#8217;m loading the MailChimp configuration parameters in the init.rb file in the config block. I&#8217;m just loading in a yaml file with the relevant information one would presumably want externalized from the application code:</p>
<pre><code>
Merb::Config.use { |c|
 .....
 c[:chimp_settings]      = YAML.load_file(Merb.root/'mailing.yml')
}
</code></pre>
<p>I then created a simple subscriber.rb class to encapsulate user elements and wired the relevant classes together in my single controller like so:</p>
<pre><code>
require 'chimp'
require 'subscriber'
class Foo &lt; Merb::Controller
  provides <img src='http://mandarinsoda.com/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> ml

  def _template_location(action, type = nil, controller = controller_name)
    controller == "layout" ? "layout.#{action}.#{type}" : "#{action}.#{type}"
  end

  def index
    subscriber = Subscriber.new(params)
    chimp = Chimp.new
    chimp.add(subscriber)
    render false
  end
end
</code></pre>
<p>I subsquently added an index.xml.erb class to my views directory in order to render successful responses, fired up my app with the merb command and then ran a test in a separate console to ensure everything was working:</p>
<pre><code>
curl -H "Accept: text/xml" -L -d
"email=matt@mandarinsoda.com&amp;first_name=swanky&amp;last_name=mango" http://localhost:4000</code></pre>
<p>It worked &#8211; the very first time!  (joking, but it did work after a bit of tinkering).  I saw the content of my index.xml.erb and received a MailChimp opt-in email. Not too shabby for a few hours of tinkering.  I&#8217;m sure there are interesting Merb features missing as well that could make this all the more compact.  More to explore later.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F09%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb" 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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb" 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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb" 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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb" 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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb', '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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb" 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%2F08%2Fwriting-a-simple-mailchimp-web-service-using-merb%2F&amp;title=Writing+a+Simple+MailChimp+Web+Service+Using+Merb" 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/08/writing-a-simple-mailchimp-web-service-using-merb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Try on some Ruby Shoes</title>
		<link>http://mandarinsoda.com/2008/03/04/try-on-some-new-ruby-shoes/</link>
		<comments>http://mandarinsoda.com/2008/03/04/try-on-some-new-ruby-shoes/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 04:06:45 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/04/try-on-some-new-ruby-shoes/</guid>
		<description><![CDATA[New Shoes]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.whytheluckystiff.net/shoes/">New Shoes</a></p>
<p><img src="http://hackety.org/images/nks-small.png" alt="Ruby Shoes" /></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes" 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%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes" 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%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes" 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%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes" 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%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes', '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%2F04%2Ftry-on-some-new-ruby-shoes%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%2F04%2Ftry-on-some-new-ruby-shoes%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%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes" 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%2F04%2Ftry-on-some-new-ruby-shoes%2F&amp;title=Try+on+some+Ruby+Shoes" 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/04/try-on-some-new-ruby-shoes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do It Wrong Quickly</title>
		<link>http://mandarinsoda.com/2008/03/04/do-it-wrong-quickly/</link>
		<comments>http://mandarinsoda.com/2008/03/04/do-it-wrong-quickly/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 02:28:55 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[miscellaneous]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/03/04/do-it-wrong-quickly/</guid>
		<description><![CDATA[Paul Graham on Building Stuff. 37 Signals on doing the same]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.paulgraham.com/newthings.html">Paul Graham on Building Stuff.</a></p>
<p><a href="http://www.37signals.com/svn/posts/896-optimize-for-now">37 Signals on doing the same</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F03%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly" 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%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly" 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%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly" 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%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly" 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%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly', '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%2F04%2Fdo-it-wrong-quickly%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%2F04%2Fdo-it-wrong-quickly%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%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly" 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%2F04%2Fdo-it-wrong-quickly%2F&amp;title=Do+It+Wrong+Quickly" 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/04/do-it-wrong-quickly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Methodologies</title>
		<link>http://mandarinsoda.com/2008/01/20/software-methodologies/</link>
		<comments>http://mandarinsoda.com/2008/01/20/software-methodologies/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 19:26:43 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2008/01/20/software-methodologies/</guid>
		<description><![CDATA[Try them all!]]></description>
			<content:encoded><![CDATA[<p><a href="http://mandarinsoda.com/wp-content/uploads/2008/01/process3.gif" title="Hack - Ship"><img src="http://mandarinsoda.com/wp-content/uploads/2008/01/process3.thumbnail.gif" alt="Hack - Ship" /></a></p>
<p><a href="http://weblogs.java.net/blog/chet/archive/2008/01/crystal_methodo.html">Try them all!</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2008%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies" 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%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies" 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%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies" 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%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies" 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%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies', '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%2F01%2F20%2Fsoftware-methodologies%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%2F01%2F20%2Fsoftware-methodologies%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%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies" 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%2F01%2F20%2Fsoftware-methodologies%2F&amp;title=Software+Methodologies" 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/01/20/software-methodologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Threads Matter (an obvious post)</title>
		<link>http://mandarinsoda.com/2007/12/16/threads-matter/</link>
		<comments>http://mandarinsoda.com/2007/12/16/threads-matter/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 05:30:34 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2007/12/16/threads-matter/</guid>
		<description><![CDATA[The future is parallel. No pretending otherwise when NYTimes is writing about it. Erlang, here I come&#8230;that is, if I ever get around to finishing this. I suppose I could also just listen to Paul Graham and relax&#8230; Except in special kinds of applications, parallelism won&#8217;t pervade the programs that are written in a hundred [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nytimes.com/2007/12/17/technology/17chip.html">The future is parallel</a>.  No pretending otherwise when NYTimes is writing about it. Erlang, here I come&#8230;that is, if I ever get around to finishing <a href="http://www.pragprog.com/titles/jaerlang">this</a>.</p>
<p>I suppose I could also just listen to Paul Graham and relax&#8230;</p>
<blockquote><p>Except in special kinds of applications, parallelism won&#8217;t pervade the programs that are written in a hundred years. It would be premature optimization if it did.</p></blockquote>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29" 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%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29" 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%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29" 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%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29" 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%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29', '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%2F2007%2F12%2F16%2Fthreads-matter%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%2F2007%2F12%2F16%2Fthreads-matter%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%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29" 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%2F2007%2F12%2F16%2Fthreads-matter%2F&amp;title=Threads+Matter+%28an+obvious+post%29" 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/2007/12/16/threads-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rspec at 2007 Ruby Conference</title>
		<link>http://mandarinsoda.com/2007/12/03/rspec-at-2007-ruby-conference/</link>
		<comments>http://mandarinsoda.com/2007/12/03/rspec-at-2007-ruby-conference/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 03:49:09 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2007/12/03/rspec-at-2007-ruby-conference/</guid>
		<description><![CDATA[BDD is quite fun (ok, I&#8217;m a dork). Nice presentation from the Rspec gang at the most recent Ruby conference.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.davidchelimsky.net/articles/2007/11/05/rubyconf-slides">BDD</a> is quite fun (ok, I&#8217;m a dork). Nice presentation from the <a href="http://rspec.rubyforge.org/">Rspec</a> gang at the most recent Ruby conference.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference" 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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference" 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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference" 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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference" 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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference', '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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference" 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%2F2007%2F12%2F03%2Frspec-at-2007-ruby-conference%2F&amp;title=Rspec+at+2007+Ruby+Conference" 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/2007/12/03/rspec-at-2007-ruby-conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merb Framework</title>
		<link>http://mandarinsoda.com/2007/12/02/merb-framework/</link>
		<comments>http://mandarinsoda.com/2007/12/02/merb-framework/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 18:04:06 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2007/12/02/merb-framework/</guid>
		<description><![CDATA[Ezra posted an excellent explanation of his Merb framework late yesterday.]]></description>
			<content:encoded><![CDATA[<p>Ezra <a href="http://www.brainspl.at/articles/2007/12/02/a-quick-jaunt-through-merbs-framework-code">posted an excellent</a> explanation of his <a href="http://merb.rubyforge.org/files/README.html">Merb</a> framework late yesterday.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework" 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%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework" 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%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework" 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%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework" 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%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework', '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%2F2007%2F12%2F02%2Fmerb-framework%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%2F2007%2F12%2F02%2Fmerb-framework%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%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework" 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%2F2007%2F12%2F02%2Fmerb-framework%2F&amp;title=Merb+Framework" 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/2007/12/02/merb-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Links Thanksgiving Edition</title>
		<link>http://mandarinsoda.com/2007/11/24/interesting-links-thanksgiving-edition/</link>
		<comments>http://mandarinsoda.com/2007/11/24/interesting-links-thanksgiving-edition/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 01:21:29 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2007/11/24/interesting-links-thanksgiving-edition/</guid>
		<description><![CDATA[Bamboo blog has some good tips on database optimization for Rails apps. Adam Keys on creating micro-apps using existing infrastructure and APIs like Foamee does with Twitter. Good presentation on application interface design.. New Rails restful help with the plugin resource_this. 40 design books from Smashing Magazine. Oracle has built a JRuby application Oracle Mix.]]></description>
			<content:encoded><![CDATA[<p>Bamboo blog has some good tips on <a href="http://blog.new-bamboo.co.uk/2007/11/20/database-optimization-for-rails-apps">database optimization</a> for Rails apps.</p>
<p>Adam Keys on creating <a href="http://therealadam.com/archive/2007/11/23/the-rise-of-the-micro-app/">micro-apps</a> using existing infrastructure and APIs like <a href="http://foamee.com/">Foamee</a> does with Twitter.</p>
<p>Good presentation on <a href="http://garrettdimon.com/archives/2007/9/23/webmaster_jam_session_2007_again/">application interface design.</a>.</p>
<p>New Rails restful help with the plugin <a href="http://soylentfoo.jnewland.com/articles/2007/09/17/resource_this-dry-rails-resource-controllers">resource_this</a>.</p>
<p>40 design books from <a href="http://www.smashingmagazine.com/2007/09/04/40-books-for-professional-design-development/">Smashing Magazine</a>.</p>
<p>Oracle has built a JRuby application <a href="http://www.infoq.com/news/2007/11/oracle-mix-jruby-experiences">Oracle Mix</a>.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition" 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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition" 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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition" 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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition" 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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition', '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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition" 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%2F2007%2F11%2F24%2Finteresting-links-thanksgiving-edition%2F&amp;title=Interesting+Links+Thanksgiving+Edition" 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/2007/11/24/interesting-links-thanksgiving-edition/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Social Networks Building Blocks</title>
		<link>http://mandarinsoda.com/2007/11/22/social-networks-building-blocks/</link>
		<comments>http://mandarinsoda.com/2007/11/22/social-networks-building-blocks/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 20:18:48 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2007/11/22/social-networks-building-blocks/</guid>
		<description><![CDATA[Great article on tools for making social networking sites more portable. Corkd&#8217;s use of microformats is also covered in greater depths in a recent microformats book]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.brianoberkirch.com/2007/08/08/building-blocks-for-portable-social-networks/">Great article</a> on tools for making social networking sites more portable.</p>
<p><a href="http://corkd.com/">Corkd&#8217;s</a> use of microformats is also covered in greater depths in a recent <a href="http://www.friendsofed.com/book.html?isbn=1590598148">microformats book</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks" 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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks" 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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks" 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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks" 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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks', '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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks" 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%2F2007%2F11%2F22%2Fsocial-networks-building-blocks%2F&amp;title=Social+Networks+Building+Blocks" 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/2007/11/22/social-networks-building-blocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing Social Networks</title>
		<link>http://mandarinsoda.com/2007/11/18/managing-social-networks/</link>
		<comments>http://mandarinsoda.com/2007/11/18/managing-social-networks/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 03:25:47 +0000</pubDate>
		<dc:creator>Matt Carlson</dc:creator>
				<category><![CDATA[Software Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://mandarinsoda.com/2007/11/18/managing-social-networks/</guid>
		<description><![CDATA[Interesting take on some issues with managing multiple social networking sites.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.boboroshi.com/2007/10/16/the-issue-with-social-networks">Interesting take</a> on some issues with managing multiple social networking sites.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fmandarinsoda.com%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks" 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%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks" 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%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks" 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%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks" 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%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks', '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%2F2007%2F11%2F18%2Fmanaging-social-networks%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%2F2007%2F11%2F18%2Fmanaging-social-networks%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%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks" 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%2F2007%2F11%2F18%2Fmanaging-social-networks%2F&amp;title=Managing+Social+Networks" 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/2007/11/18/managing-social-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

