<?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>Pivotal Labs &#187; Ryan Richard</title>
	<atom:link href="http://pivotallabs.com/author/rrichard/feed/" rel="self" type="application/rss+xml" />
	<link>http://pivotallabs.com</link>
	<description>Agility Developed</description>
	<lastBuildDate>Tue, 21 May 2013 02:39:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Standup 9/8/11</title>
		<link>http://pivotallabs.com/standup-9-8-11/</link>
		<comments>http://pivotallabs.com/standup-9-8-11/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 14:18:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-9-8-11/</guid>
		<description><![CDATA[<p><h2>Ask for Help</h2>

<blockquote>
    <p><em>"What's the best gem for Google Calendar integration? There are a few out there."</em></p>
</blockquote>

<p>It was suggested to look for a gem which is implemented using CalDAV, instead of the old Google APIs.  Anyone have any specific suggestions?</p>

<h2>Interesting Things</h2>

<ul>
<li><a href="http://iconfinder.com">Iconfinder.com</a>: search for icons filtered by license</li>
</ul> <a href="http://pivotallabs.com/standup-9-8-11/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-9-8-11/">Standup 9/8/11</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Ask for Help</h2>
<blockquote>
<p><em>&#8220;What&#8217;s the best gem for Google Calendar integration? There are a few out there.&#8221;</em></p>
</blockquote>
<p>It was suggested to look for a gem which is implemented using CalDAV, instead of the old Google APIs.  Anyone have any specific suggestions?</p>
<h2>Interesting Things</h2>
<ul>
<li><a href="http://iconfinder.com">Iconfinder.com</a>: search for icons filtered by license</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-9-8-11/">Standup 9/8/11</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-9-8-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding VideoViews in your UI: Caution!</title>
		<link>http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/</link>
		<comments>http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 16:29:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/</guid>
		<description><![CDATA[<p><p>Using a VideoView to play streaming videos is quite easy on Android, and the class provides handy callbacks to manage your UI too.  For example:</p>

<pre><code>    // set the Uri of the video
    videoView.setVideoURI&#40;Uri.parse&#40;videoUriString&#41;&#41;;
    // start streaming/playing the video
    videoView.start&#40;&#41;;

    videoView.setOnPreparedListener&#40;new MediaPlayer.OnPreparedListener&#40;&#41; {
        @Override
        public void onPrepared&#40;MediaPlayer mp&#41; {
            // about to start playing
        }
    }&#41;;

    videoView.setOnCompletionListener&#40;new MediaPlayer.OnCompletionListener&#40;&#41; {
        @Override
        public void onCompletion&#40;MediaPlayer mp&#41; {
            // reached the end of the video
        }
    }&#41;;
</code></pre>

<p>VideoViews can be embedded into your layouts and sized any way that you'd like.  However, there is one serious limitation.</p>

<p><a href="http://stackoverflow.com/questions/5134569/glsurfaceview-inside-a-scrollview-moving-but-not-clipping/5136012#5136012">According to Romain Guy</a>, SurfaceViews &#40;such as VideoView, etc.&#41; inside ScrollViews &#40;or ListView, etc.&#41; are <em>not</em> supported by Android.</p>

<p>For example, playing a video using a VideoView inside of a row of a ListView seems to work at first, until the user tries to scroll the list.  As soon as the list starts to scroll, the video turns black.  It keeps playing in the background but you can't see it anymore because it renders the rest of the video as a black box.  </p>

<p>As another example, when the VideoView is scrolled so that it is partially off-screen at the time that the video starts playing, the VideoView does not render the video in the correct location on screen, causing the video to appear mostly black.</p>

<p>So be careful where you decide to put your VideoViews. At first it seems that they can go anywhere, but they cannot.</p> <a href="http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/">Embedding VideoViews in your UI: Caution!</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Using a VideoView to play streaming videos is quite easy on Android, and the class provides handy callbacks to manage your UI too.  For example:</p>
<pre><code>    // set the Uri of the video
    videoView.setVideoURI&#40;Uri.parse&#40;videoUriString&#41;&#41;;
    // start streaming/playing the video
    videoView.start&#40;&#41;;

    videoView.setOnPreparedListener&#40;new MediaPlayer.OnPreparedListener&#40;&#41; {
        @Override
        public void onPrepared&#40;MediaPlayer mp&#41; {
            // about to start playing
        }
    }&#41;;

    videoView.setOnCompletionListener&#40;new MediaPlayer.OnCompletionListener&#40;&#41; {
        @Override
        public void onCompletion&#40;MediaPlayer mp&#41; {
            // reached the end of the video
        }
    }&#41;;
</code></pre>
<p>VideoViews can be embedded into your layouts and sized any way that you&#8217;d like.  However, there is one serious limitation.</p>
<p><a href="http://stackoverflow.com/questions/5134569/glsurfaceview-inside-a-scrollview-moving-but-not-clipping/5136012#5136012">According to Romain Guy</a>, SurfaceViews &#40;such as VideoView, etc.&#41; inside ScrollViews &#40;or ListView, etc.&#41; are <em>not</em> supported by Android.</p>
<p>For example, playing a video using a VideoView inside of a row of a ListView seems to work at first, until the user tries to scroll the list.  As soon as the list starts to scroll, the video turns black.  It keeps playing in the background but you can&#8217;t see it anymore because it renders the rest of the video as a black box.  </p>
<p>As another example, when the VideoView is scrolled so that it is partially off-screen at the time that the video starts playing, the VideoView does not render the video in the correct location on screen, causing the video to appear mostly black.</p>
<p>So be careful where you decide to put your VideoViews. At first it seems that they can go anywhere, but they cannot.</p>
<p>The post <a href="http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/">Embedding VideoViews in your UI: Caution!</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/embedding-videoviews-in-your-ui-caution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standup 5/11/2011</title>
		<link>http://pivotallabs.com/standup-5-11-2011/</link>
		<comments>http://pivotallabs.com/standup-5-11-2011/#comments</comments>
		<pubDate>Wed, 11 May 2011 14:21:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-5-11-2011/</guid>
		<description><![CDATA[<p><h2>Ask for Help</h2>

<blockquote>
    <p><em>"How can you resize the browser window from a Capybara test before visiting the page under test?"</em></p>
</blockquote>

<h2>Interesting Things</h2>

<p>Tommy had a suggestion for testing scopes in Rails controller tests.</p>

<p>Here is an example of the type of test that he does not enjoy writing:</p>

<pre>&#60;code&#62;
it &#34;scopes products to active and available&#34; do
    not_active = Factory&#40;:product, :active =&#62; false&#41;
    not_available = Factory&#40;:product, :available =&#62; false&#41;
    active_available = Factory&#40;:product, :active =&#62; true, :available =&#62; true&#41;
    get :index
    assigns&#40;:products&#41;.should_not include&#40;not_active&#41;
    assigns&#40;:products&#41;.should_not include&#40;not_available&#41;
    assigns&#40;:products&#41;.should include&#40;active_available&#41;
end
&#60;/code&#62;</pre>

<p>Here is a nice way that he found to write the same test:</p>

<pre>&#60;code&#62;
it &#34;scopes products to active and available&#34; do
    get :index
    assigns&#40;:products&#41;.should == assigns&#40;:products&#41;.active
    assigns&#40;:products&#41;.should == assigns&#40;:products&#41;.available
end
&#60;/code&#62;</pre>

<p>The only question is what to do with pagination?  A work-around is for the controller to do:</p>

<pre>&#60;code&#62;
def index
  @products_scope = Product.active.available
  @products = @products_scope.paginate&#40;:per_page =&#62; blah blah blah&#41;
end
&#60;/code&#62;</pre> <a href="http://pivotallabs.com/standup-5-11-2011/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-5-11-2011/">Standup 5/11/2011</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Ask for Help</h2>
<blockquote>
<p><em>&#8220;How can you resize the browser window from a Capybara test before visiting the page under test?&#8221;</em></p>
</blockquote>
<h2>Interesting Things</h2>
<p>Tommy had a suggestion for testing scopes in Rails controller tests.</p>
<p>Here is an example of the type of test that he does not enjoy writing:</p>
<pre>&lt;code&gt;
it &quot;scopes products to active and available&quot; do
    not_active = Factory&#40;:product, :active =&gt; false&#41;
    not_available = Factory&#40;:product, :available =&gt; false&#41;
    active_available = Factory&#40;:product, :active =&gt; true, :available =&gt; true&#41;
    get :index
    assigns&#40;:products&#41;.should_not include&#40;not_active&#41;
    assigns&#40;:products&#41;.should_not include&#40;not_available&#41;
    assigns&#40;:products&#41;.should include&#40;active_available&#41;
end
&lt;/code&gt;</pre>
<p>Here is a nice way that he found to write the same test:</p>
<pre>&lt;code&gt;
it &quot;scopes products to active and available&quot; do
    get :index
    assigns&#40;:products&#41;.should == assigns&#40;:products&#41;.active
    assigns&#40;:products&#41;.should == assigns&#40;:products&#41;.available
end
&lt;/code&gt;</pre>
<p>The only question is what to do with pagination?  A work-around is for the controller to do:</p>
<pre>&lt;code&gt;
def index
  @products_scope = Product.active.available
  @products = @products_scope.paginate&#40;:per_page =&gt; blah blah blah&#41;
end
&lt;/code&gt;</pre>
<p>The post <a href="http://pivotallabs.com/standup-5-11-2011/">Standup 5/11/2011</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-5-11-2011/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Standup 5/9/2011</title>
		<link>http://pivotallabs.com/standup-5-9-2011/</link>
		<comments>http://pivotallabs.com/standup-5-9-2011/#comments</comments>
		<pubDate>Mon, 09 May 2011 14:25:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-5-9-2011/</guid>
		<description><![CDATA[<p><h2>Ask for Help</h2>

<blockquote>
    <p><em>"Any general advice for writing Rails generators?"</em></p>
</blockquote>

<p>One person suggested this <a href="http://guides.rubyonrails.org/generators.html">Rails guide</a>. Another suggested looking in the Rails source code at the existing generators.  Any other ideas?</p>

<h2>Interesting Things</h2>

<ul>
<li>Hack night this Wednesday, 6:30pm, at the new office of <a href="http://www.sfruby.info/events/17376544/?eventId=17376544&#38;action=detail">TRUECar</a>.</li>
</ul> <a href="http://pivotallabs.com/standup-5-9-2011/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-5-9-2011/">Standup 5/9/2011</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Ask for Help</h2>
<blockquote>
<p><em>&#8220;Any general advice for writing Rails generators?&#8221;</em></p>
</blockquote>
<p>One person suggested this <a href="http://guides.rubyonrails.org/generators.html">Rails guide</a>. Another suggested looking in the Rails source code at the existing generators.  Any other ideas?</p>
<h2>Interesting Things</h2>
<ul>
<li>Hack night this Wednesday, 6:30pm, at the new office of <a href="http://www.sfruby.info/events/17376544/?eventId=17376544&amp;action=detail">TRUECar</a>.</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-5-9-2011/">Standup 5/9/2011</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-5-9-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Standup 9/10/10</title>
		<link>http://pivotallabs.com/standup-9-10-10/</link>
		<comments>http://pivotallabs.com/standup-9-10-10/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 14:05:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-9-10-10/</guid>
		<description><![CDATA[<p><h2>Interesting Things</h2>

<ul>
<li><p>Using <code>gem install</code> with the <a href="http://rubygems.org/gems/soap4r">soap4r gem</a> doesn't work.  Fear not! It can be installed by downloading the tar file and manually unpacking it.</p></li>
<li><p>There is a <a href="http://groups.google.com/group/nodejs/browse_thread/thread/56a3c3298aeaea3d/bcc73e0b6a7287a2?lnk=raot">node.js meetup at Dogpatch Labs</a> tonight at 6:30.</p></li>
</ul> <a href="http://pivotallabs.com/standup-9-10-10/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-9-10-10/">Standup 9/10/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Interesting Things</h2>
<ul>
<li>
<p>Using <code>gem install</code> with the <a href="http://rubygems.org/gems/soap4r">soap4r gem</a> doesn&#8217;t work.  Fear not! It can be installed by downloading the tar file and manually unpacking it.</p>
</li>
<li>
<p>There is a <a href="http://groups.google.com/group/nodejs/browse_thread/thread/56a3c3298aeaea3d/bcc73e0b6a7287a2?lnk=raot">node.js meetup at Dogpatch Labs</a> tonight at 6:30.</p>
</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-9-10-10/">Standup 9/10/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-9-10-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standup 9/9/10</title>
		<link>http://pivotallabs.com/standup-9-9-10/</link>
		<comments>http://pivotallabs.com/standup-9-9-10/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 14:05:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-9-9-10/</guid>
		<description><![CDATA[<p><h2>Helps</h2>

<blockquote>
    <p><em>"Has anyone experienced fuzzy PDF rendering at some zoom levels on iOS?"</em></p>
</blockquote>

<p>One project was having trouble with their iOS app which shows a PDF file. When you zoom the view, the text becomes fuzzy looking. The text in the PDF is only fuzzy at certain, seemingly nondeterministic, zoom levels. They are drawing the PDFs with CGContextDrawPDFPage and scaling with CGContextScaleCTM. Does anyone know what could cause this?</p>

<h2>Interesting Things</h2>

<ul>
<li><p>There doesn't seem to be any reliable way to know if an HTML checkbox got checked by simply looking in the DOM.  There's an attribute on the INPUT called "checked", but this is only read during page load to set the initial value of the checkbox.</p></li>
<li><p>Interesting <a href="http://aws.amazon.com/about-aws/whats-new/2010/09/09/announcing-micro-instances-for-amazon-ec2/?utm_source=twitterfeed&#38;utm_medium=twitter">Amazon EC2 announcement</a>:</p>

<blockquote>
    <p>"Micro instances provide 613 MB of memory and support 32-bit and 64-bit platforms on both Linux and Windows. Micro instance pricing for On-Demand instances starts at $0.02 per hour for Linux and $0.03 per hour for Windows."</p>
</blockquote></li>
</ul> <a href="http://pivotallabs.com/standup-9-9-10/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-9-9-10/">Standup 9/9/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Helps</h2>
<blockquote>
<p><em>&#8220;Has anyone experienced fuzzy PDF rendering at some zoom levels on iOS?&#8221;</em></p>
</blockquote>
<p>One project was having trouble with their iOS app which shows a PDF file. When you zoom the view, the text becomes fuzzy looking. The text in the PDF is only fuzzy at certain, seemingly nondeterministic, zoom levels. They are drawing the PDFs with CGContextDrawPDFPage and scaling with CGContextScaleCTM. Does anyone know what could cause this?</p>
<h2>Interesting Things</h2>
<ul>
<li>
<p>There doesn&#8217;t seem to be any reliable way to know if an HTML checkbox got checked by simply looking in the DOM.  There&#8217;s an attribute on the INPUT called &#8220;checked&#8221;, but this is only read during page load to set the initial value of the checkbox.</p>
</li>
<li>
<p>Interesting <a href="http://aws.amazon.com/about-aws/whats-new/2010/09/09/announcing-micro-instances-for-amazon-ec2/?utm_source=twitterfeed&amp;utm_medium=twitter">Amazon EC2 announcement</a>:</p>
<blockquote>
<p>&#8220;Micro instances provide 613 MB of memory and support 32-bit and 64-bit platforms on both Linux and Windows. Micro instance pricing for On-Demand instances starts at $0.02 per hour for Linux and $0.03 per hour for Windows.&#8221;</p>
</blockquote>
</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-9-9-10/">Standup 9/9/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-9-9-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Standup 9/8/10</title>
		<link>http://pivotallabs.com/standup-9-8-10/</link>
		<comments>http://pivotallabs.com/standup-9-8-10/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 14:05:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-9-8-10/</guid>
		<description><![CDATA[<p><h2>Helps</h2>

<blockquote>
    <p><em>"Is anyone using Devise &#40;authentication solution for Rails&#41; with SSL for an app's login page &#40;on Heroku&#41;?"</em></p>
</blockquote>

<p>One project was having trouble with the redirects caused by this and is looking for help. Has anyone experienced trouble with this?</p>

<h2>Interesting Things</h2>

<ul>
<li>There is a Ruby meetup tonight at 6:30 pm in San Francisco on the subject of unicode and internationalization in Ruby.</li>
</ul> <a href="http://pivotallabs.com/standup-9-8-10/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-9-8-10/">Standup 9/8/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Helps</h2>
<blockquote>
<p><em>&#8220;Is anyone using Devise &#40;authentication solution for Rails&#41; with SSL for an app&#8217;s login page &#40;on Heroku&#41;?&#8221;</em></p>
</blockquote>
<p>One project was having trouble with the redirects caused by this and is looking for help. Has anyone experienced trouble with this?</p>
<h2>Interesting Things</h2>
<ul>
<li>There is a Ruby meetup tonight at 6:30 pm in San Francisco on the subject of unicode and internationalization in Ruby.</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-9-8-10/">Standup 9/8/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-9-8-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standup 9/7/10</title>
		<link>http://pivotallabs.com/standup-9-7-10/</link>
		<comments>http://pivotallabs.com/standup-9-7-10/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 14:05:00 +0000</pubDate>
		<dc:creator>Ryan Richard</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-9-7-10/</guid>
		<description><![CDATA[<p><h2>Helps</h2>

<blockquote>
    <p><em>"Using bundler vs. gemsets?"</em></p>
</blockquote>

<p>These can be used separately or together depending on the needs of your project.  Bundler checks dependencies to make sure you have the gems that your application needs, while RVM gemsets keep your gems separate to prevent conflicts &#40;between Rails 2 and 3, or example&#41;.</p>

<blockquote>
    <p><em>"Anyone ever see IE fall over when parsing 500 KB of JSON?"</em></p>
</blockquote>

<p>Try explicitly using <a href="http://www.json.org/js.html">eval&#40;&#41;</a></p>

<h2>Interesting Things</h2>

<ul>
<li>If you have any strange, unexplained errors with RVM, try upgrading to see if it solves them.</li>
</ul> <a href="http://pivotallabs.com/standup-9-7-10/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-9-7-10/">Standup 9/7/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Helps</h2>
<blockquote>
<p><em>&#8220;Using bundler vs. gemsets?&#8221;</em></p>
</blockquote>
<p>These can be used separately or together depending on the needs of your project.  Bundler checks dependencies to make sure you have the gems that your application needs, while RVM gemsets keep your gems separate to prevent conflicts &#40;between Rails 2 and 3, or example&#41;.</p>
<blockquote>
<p><em>&#8220;Anyone ever see IE fall over when parsing 500 KB of JSON?&#8221;</em></p>
</blockquote>
<p>Try explicitly using <a href="http://www.json.org/js.html">eval&#40;&#41;</a></p>
<h2>Interesting Things</h2>
<ul>
<li>If you have any strange, unexplained errors with RVM, try upgrading to see if it solves them.</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-9-7-10/">Standup 9/7/10</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-9-7-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using apc
Database Caching using apc
Object Caching 964/1038 objects using apc

 Served from: pivotallabs.com @ 2013-05-20 23:27:43 by W3 Total Cache -->