<?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>flat &#187; Uncategorized</title>
	<atom:link href="http://www.beforeitwasround.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beforeitwasround.com</link>
	<description>before it was round</description>
	<lastBuildDate>Wed, 30 Jun 2010 19:18:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Libmemcached Store and Passenger</title>
		<link>http://www.beforeitwasround.com/2010/06/30/libmemcached-store-and-passenger/</link>
		<comments>http://www.beforeitwasround.com/2010/06/30/libmemcached-store-and-passenger/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 19:09:45 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=148</guid>
		<description><![CDATA[Stemming from the caching issues, I described previously, I decided it was a good opportunity to update our caching implementation. What we had was a hybrid of MemCacheStore for use with fragments and a wrapper around Evan Weaver&#8217;s memcached gem for a few other processes. This was a bit quirky, not to mention fragile. Multiple [...]]]></description>
			<content:encoded><![CDATA[<p>Stemming from the <a href="http://www.beforeitwasround.com/2010/06/29/adventures-in-rails-caching/">caching issues</a>, I described previously, I decided it was a good opportunity to update our caching implementation.  What we had was a hybrid of MemCacheStore for use with fragments and a wrapper around Evan Weaver&#8217;s memcached gem for a few other processes.  This was a bit quirky, not to mention fragile.  Multiple implementations, multiple configurations.  Smelly code, for sure.</p>
<p>I&#8217;ve worked with other caching frameworks before and while i was loathe to introduce any new complexity, it seemed that the best approach was to unify the two implementations as much as possible.  That meant staying away from cache_fu, cache-money, interlock, etc.  There&#8217;s been a dearth of caching libraries popping up over the past year or so.  I suspect that&#8217;s because many people are using Rails internal caching.  That led me to look at cache_stores, and <a href="http://github.com/37signals/libmemcached_store/">libmemcached_store</a> from 37 Signals.  It was a breeze to implement as a drop-in replacement for MemCacheStore.  </p>
<p>The only catch was, we&#8217;re using passenger.  I wanted to make sure that LibmemcachedStore played nice with passenger&#8217;s spawning process.  Here&#8217;s how to do it:</p>
<p><script src="http://gist.github.com/459083.js?file=environment.rb"></script></p>
<p>It&#8217;d be nice if all cache stores implemented a reset or disconnect method, in the meantime, we have hacks like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2010/06/30/libmemcached-store-and-passenger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in Rails Caching</title>
		<link>http://www.beforeitwasround.com/2010/06/29/adventures-in-rails-caching/</link>
		<comments>http://www.beforeitwasround.com/2010/06/29/adventures-in-rails-caching/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 16:38:33 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=142</guid>
		<description><![CDATA[For the past week or so, I&#8217;ve been racking my brain trying to resolve an issue with memcached. Basically, several times a day our data was disappearing. We had plenty of memory to use so that definitely wasn&#8217;t a factor. Yet daily, we experienced data loss. This led me on a meandering path of troubleshooting, [...]]]></description>
			<content:encoded><![CDATA[<p>For the past week or so, I&#8217;ve been racking my brain trying to resolve an issue with memcached.  Basically, several times a day our data was disappearing.  We had plenty of memory to use so that definitely wasn&#8217;t a factor.  Yet daily, we experienced data loss.  This led me on a meandering path of troubleshooting, was it the ruby driver?  was it the older version of memcached we were running?  Could it have been the controller action that called Rails.cache.clear? (BTW, <strong>don&#8217;t do this</strong>) </p>
<p>I noticed a pattern, this always happened in the morning, typically beginning around 9:15.  With that, I scanned crontab to see what jobs might&#8217;ve been running around that time.  I came to find a call to a rake task in our codebase: cache:fragment:delete:</p>
<p><script src="http://gist.github.com/457437.js?file=cache.rake"></script></p>
<p>So, whenever this rake task is run, it deletes the fragments. Right?  Wrong.  </p>
<p>In this case, we didn&#8217;t define a cache store for ActionController, but we did define a cache_store for ActiveSupport.  So where were the fragments?  In memcached.  And that innocuous call to delete the fragments was flushing memcached!  It turns out that when you don&#8217;t define a separate cache store for ActionController, it uses whatever cache store is configured for ActiveSupport.  A quick look at the rails initializer code confirms this:</p>
<p><script src="http://gist.github.com/457437.js?file=initializer.rb"></script></p>
<p>This is how it should work.   Why assume a separate cache store when you&#8217;ve configured one elsewhere in your app?  This makes total sense, but it was quite the gotcha when I realized what was happening.  Why was the cache being cleared, you ask?  Well, the key generation scheme changed within rails somewhere along the way so the specific call to delete the fragment was no longer working.  All I had to do was figure out what the proper key should be, expire that fragment specifically, and all was right in the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2010/06/29/adventures-in-rails-caching/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing jsonwhois</title>
		<link>http://www.beforeitwasround.com/2010/06/10/introducing-jsonwhois/</link>
		<comments>http://www.beforeitwasround.com/2010/06/10/introducing-jsonwhois/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 17:47:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=131</guid>
		<description><![CDATA[I&#8217;ve been at Railconf 2010 all week and it&#8217;s been awesome. I&#8217;m heading home with a laundry list a mile long of different technologies to experiment with and learn about. I wanted a small side project to hack on while in between sessions and came up with jsonwhois. The idea behind it is really simple, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been at <a href="http://railsconf.com/">Railconf 2010</a> all week and it&#8217;s been awesome.  I&#8217;m heading home with a laundry list a mile long of different technologies to experiment with and learn about.  I wanted a small side project to hack on while in between sessions and came up with <a href="http://jsonwhois.heroku.com">jsonwhois</a>.  The idea behind it is really simple, serve up whois via JSON.  The implementation was equally simple, using <a href="http://www.simonecarletti.com">Simone Carletti&#8217;s</a> <a href="http://github.com/weppos/whois">whois gem</a> which handled all the hard stuff, I merely had to wrap it in a sinatra framework.</p>
<p>There was one tricky aspect that I had to overcome, the whois gem utilizes the ruby Struct object for some of it&#8217;s underlying data.  Structs are simple and lightweight, but for some reason, the json gem wasn&#8217;t handling them properly.  What&#8217;s more, I didn&#8217;t really like how the json gem serialized them anyway.  The workaround: <a href="http://ruby-doc.org/core/classes/Struct.html#M000892">Struct#hash</a>.  Struct#hash returns a struct&#8217;s contents as a hash.  It&#8217;s exactly what I wanted as I felt it was a cleaner representation for JSON anyway.  All that was required then was to extend Struct and implement to_json using the hash:</p>
<p><script src="http://gist.github.com/433335.js?file=struct.rb"></script></p>
<p>One other interesting tidbit was that I wanted to actually read the JSON through the browser.  I decided it was best to look at the incoming headers and use that to determine the appropriate response type to send back.  If you accept application/json, that&#8217;s what i give you, otherwise it comes back as test/plain.  If there&#8217;s a better way to do this, please let me know, this seemed logical though:</p>
<p><script src="http://gist.github.com/433335.js?file=sinatra_response.rb"></script></p>
<p>The code is up on <a href="http://github.com/spagalloco/jsonwhois">github</a> if anyone want to look under the covers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2010/06/10/introducing-jsonwhois/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introduction to WebSockets</title>
		<link>http://www.beforeitwasround.com/2010/05/21/introduction-to-websockets/</link>
		<comments>http://www.beforeitwasround.com/2010/05/21/introduction-to-websockets/#comments</comments>
		<pubDate>Fri, 21 May 2010 15:19:05 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=125</guid>
		<description><![CDATA[Last night I gave a presentation at the CharlotteJS meetup on WebSockets. There was a good crowd and afterwards, a few of us hung around and talked about CouchDB, VP8, and (of all things) Cold Fusion. Here are the slides from my talk and the accompanying code is up on github. Introduction to WebSockets View [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I gave a presentation at the <a href="http://www.meetup.com/CharlotteJS/">CharlotteJS meetup</a> on WebSockets.  There was a good crowd and afterwards, a few of us hung around and talked about <a href="http://couchdb.apache.org/">CouchDB</a>, <a href="http://www.on2.com/index.php?599">VP8</a>, and (of all things) <a href="http://www.adobe.com/products/coldfusion/">Cold Fusion</a>.  Here are the slides from my talk and the accompanying code is up on <a href="http://github.com/spagalloco/websockets-example">github</a>.</p>
<div style="width:425px" id="__ss_4180166"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/spagalloco/introduction-to-websockets" title="Introduction to WebSockets">Introduction to WebSockets</a></strong><object id="__sse4180166" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=introductiontowebsockets-100520143922-phpapp02&#038;rel=0&#038;stripped_title=introduction-to-websockets" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse4180166" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=introductiontowebsockets-100520143922-phpapp02&#038;rel=0&#038;stripped_title=introduction-to-websockets" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="padding:5px 0 12px">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/spagalloco">Steve Agalloco</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2010/05/21/introduction-to-websockets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kseniya Simonova</title>
		<link>http://www.beforeitwasround.com/2010/02/16/kseniya-simonova/</link>
		<comments>http://www.beforeitwasround.com/2010/02/16/kseniya-simonova/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 01:41:08 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=123</guid>
		<description><![CDATA[Been a little while since I&#8217;ve posted here, a friend sent this on today and it&#8217;s absolutely mesmerizing. Enjoy it.]]></description>
			<content:encoded><![CDATA[<p>Been a little while since I&#8217;ve posted here, a friend sent this on today and it&#8217;s absolutely mesmerizing.  Enjoy it.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/vOhf3OvRXKg&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/vOhf3OvRXKg&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2010/02/16/kseniya-simonova/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tell people about it</title>
		<link>http://www.beforeitwasround.com/2009/10/17/tell-people-about-it/</link>
		<comments>http://www.beforeitwasround.com/2009/10/17/tell-people-about-it/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 07:00:12 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=119</guid>
		<description><![CDATA[Derek Powazek recently posted a scathing blog post on SEO that got linked up just about everywhere. He argues that dedicated SEO roles are useless and actually harmful. I partially agree with him. The google bombing tactics of piss poor sites doesn&#8217;t do us any good. Derek sums it up by saying, &#8220;Make something great. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://powazek.com">Derek Powazek</a> recently posted a <a href="http://powazek.com/posts/2090">scathing blog post on SEO</a> that got linked up just about everywhere.  He argues that dedicated SEO roles are useless and actually harmful.  I partially agree with him.  The google bombing tactics of piss poor sites doesn&#8217;t do us any good.  Derek sums it up by saying, &#8220;Make something great. Tell people about it. Do it again.&#8221;</p>
<p>That I completely agree with.  To me, it&#8217;s all about the second sentence: Tell people about it.  And the tools are getting easier, but there are still some big challenges here.  And opportunities too.  Facebook, Twitter, YouTube, etc. are all amazingly powerful tools.  These are huge vehicles for casting the net far and wide.  But integrating your content with them can still be a challenge, especially for the layman.</p>
<p>And notifying search engines of the pages on your site is whole other ball of wax.  One of the more challenging projects I undertook at Fanzter was generating our sitemap files.  As our sites grew, the number of pages in our index just got absolutely insane.  A nightly job just couldn&#8217;t hack it anymore and needed to be completely rewritten.  There are quite a <a href="http://github.com/adamsalter/sitemap_generator-plugin">few</a> <a href="http://github.com/alexrabarts/big_sitemap">plugins</a> <a href="http://github.com/ktlacaelel/sitemaps">written</a> to tackle this problem.   I haven&#8217;t done a side by side comparison or tried any of these out yet, but I&#8217;m eager to.  Ultimately custom code is often needed for this sort of thing, code that exactly matches your content and your application.  And that is far from easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2009/10/17/tell-people-about-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Large Textboxes</title>
		<link>http://www.beforeitwasround.com/2009/10/13/large-textboxes/</link>
		<comments>http://www.beforeitwasround.com/2009/10/13/large-textboxes/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 01:41:17 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=106</guid>
		<description><![CDATA[Something I&#8217;ve seen on a few sites lately is really large textboxes on signup/sign in forms. I&#8217;m not sure how I feel about them. In most cases, sites have used this fairly effectively with only a few fields requiring entry. But when I&#8217;m on my 13&#8243; Macbook Pro, I have to scroll to see the [...]]]></description>
			<content:encoded><![CDATA[<p>Something I&#8217;ve seen on a <a href="http://gemcutter.org">few</a> <a href="http://animoto.com">sites</a> lately is really large textboxes on signup/sign in forms.  I&#8217;m not sure how I feel about them.  In most cases, sites have used this fairly effectively with only a few fields requiring entry.  But when I&#8217;m on my 13&#8243; Macbook Pro, I have to scroll to see the submit button at the bottom.</p>
<p><img src="http://www.beforeitwasround.com/wp-content/uploads/2009/10/sign-up-gemcutter-awesome-gem-hosting.jpg" alt="Gemcutter SIgnup Screen" title="Gemcutter SIgnup Screen" width="529" height="352" class="size-full wp-image-114" /></p>
<p>The other thing that large textboxes does is eliminate other possibilities for these pages, like <a href="http://bokardo.com/archives/using-your-sign-up-form-as-a-qualifier/">using the sign up form as a qualifier</a>.  <a href="http://bokardo.com">Joshua Porter</a>, the author of that article also recently gave a <a href="http://www.slideshare.net/bokardo/designing-for-social-traction">presentation</a> that has really inspired me lately.  Highly recommended.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2009/10/13/large-textboxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Trends on Brizzly</title>
		<link>http://www.beforeitwasround.com/2009/10/11/twitter-trends-on-brizzly/</link>
		<comments>http://www.beforeitwasround.com/2009/10/11/twitter-trends-on-brizzly/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 03:19:36 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=108</guid>
		<description><![CDATA[I&#8217;ve been using Brizzly almost exclusively as my twitter client lately on the desktop. It&#8217;s not perfect, but compared to twitter.com, I really enjoy the additional features and attention to detail that was put into it. One of the things I really like is the way they annotate the twitter trends. Twitter does this too [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://brizzly.com">Brizzly</a> almost exclusively as my twitter client lately on the desktop.  It&#8217;s not perfect, but compared to twitter.com, I really enjoy the additional features and attention to detail that was put into it.  One of the things I really like is the way they annotate the twitter trends.  Twitter does this too &#8211; using <a href="http://whatthetrend.com/">What the Trend?</a> to provide their descriptions.  What&#8217;s cool about Brizzly is that it invites it&#8217;s users to help out:</p>
<p><img src="http://www.beforeitwasround.com/wp-content/uploads/2009/10/20091012-x8h4xg9rnix7dekm2m2dx3uk81.jpg" alt="Brizzly - Twitter Trends" title="Brizzly - Twitter Trends" width="236" height="159" class="alignnone size-full wp-image-112" /></p>
<p>I&#8217;ve found that I pay a lot more attention to Twitter trends this way.  Twitter has become my go-to for what&#8217;s happening with the things I&#8217;m interested in.  It&#8217;s most fun to check out during Yankees games these days &#8211; I hope that doesn&#8217;t change for a few more weeks!  Go Yankees!</p>
<p>Also, for Twitter on the go, check out <a href="http://www.atebits.com/tweetie-iphone/">Tweetie 2</a>, it&#8217;s awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2009/10/11/twitter-trends-on-brizzly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design with Whimzy</title>
		<link>http://www.beforeitwasround.com/2009/10/09/design-with-whimzy/</link>
		<comments>http://www.beforeitwasround.com/2009/10/09/design-with-whimzy/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 02:51:49 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/?p=101</guid>
		<description><![CDATA[I&#8217;m a wine drinker so I was naturally curious to check out one of Gary Vaynerchuk&#8217;s new ventures: Cinderella Wine. The concept is simple, one wine is sold a day starting at midnight and the sale continues (often heavily discounted) until it&#8217;s sold out. One thing I really like about the site&#8217;s design is what [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a wine drinker so I was naturally curious to check out one of <a href="http://garyvaynerchuk.com/">Gary Vaynerchuk&#8217;s</a> new ventures: <a href="http://cinderellawine.com/">Cinderella Wine</a>.  The concept is simple, one wine is sold a day starting at midnight and the sale continues (often heavily discounted) until it&#8217;s sold out.  One thing I really like about the site&#8217;s design is what happens when the wine sells out, the photo of the wine bottle is replaced by a pumpkin.</p>
<p><img src="http://www.beforeitwasround.com/wp-content/uploads/2009/10/Cinderella-Wine-Ridiculously-low-prices-for-24-hours-only..jpg" alt="Cinderella Wine" title="Cinderella Wine" width="546" height="253" class="alignnone size-full wp-image-102" /></p>
<p>It fits the site&#8217;s namesake perfectly and adds an air of whimzy that I&#8217;d love to see a bit more of.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2009/10/09/design-with-whimzy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>And a few months pass&#8230;</title>
		<link>http://www.beforeitwasround.com/2009/07/30/and-a-few-months-pass/</link>
		<comments>http://www.beforeitwasround.com/2009/07/30/and-a-few-months-pass/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 14:29:26 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beforeitwasround.com/2009/07/30/and-a-few-months-pass/</guid>
		<description><![CDATA[Well, this blog had a good run for a while. I was posting links to new music I was digging and then all of a sudden it ground to a screeching halt again. What gives? Well, things got a little hectic around here for a bit. We undertook a home renovation project, I started working [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this blog had a good run for a while.  I was posting links to new music I was digging and then all of a sudden it ground to a screeching halt again.  What gives?  Well, things got a little hectic around here for a bit.  We undertook a home renovation project, I started working on a new project at work among a few other things I won&#8217;t get into here.  Most of this summer has been spent scurrying here and there in between the chaos.</p>
<p>But now that August rolls around, it&#8217;s time to slow things down a bit.  Entourage is finally back on and it won&#8217;t be long before football kicks off and playoff baseball (Go Yankees!).</p>
<p>It&#8217;s a good time to reflect a bit.  It&#8217;s also a good time to laugh at these awesome Dos Equis ads!</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/p2SSZA0CjdQ&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/p2SSZA0CjdQ&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beforeitwasround.com/2009/07/30/and-a-few-months-pass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
