<?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; Cameron Cundiff</title>
	<atom:link href="http://pivotallabs.com/author/ccundiff/feed/" rel="self" type="application/rss+xml" />
	<link>http://pivotallabs.com</link>
	<description>Agility Developed</description>
	<lastBuildDate>Fri, 24 May 2013 21:58:59 +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>Lunchtime Drawtime!</title>
		<link>http://pivotallabs.com/lunchtime-drawtime/</link>
		<comments>http://pivotallabs.com/lunchtime-drawtime/#comments</comments>
		<pubDate>Fri, 17 May 2013 18:03:02 +0000</pubDate>
		<dc:creator>Cameron Cundiff</dc:creator>
				<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/?p=19302</guid>
		<description><![CDATA[<p>Lunchtime Drawtime happens Fridays at lunch in the NYC office, where a handful of folks get together and perform some acts of creation. Sometime we have prompts; today&#8217;s was bodies of water. Here&#8217;s what we came up with. Enjoy!</p><p>The post <a href="http://pivotallabs.com/lunchtime-drawtime/">Lunchtime Drawtime!</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Lunchtime Drawtime happens Fridays at lunch in the NYC office, where a handful of folks get together and perform some acts of creation. Sometime we have prompts; today&#8217;s was <strong>bodies of water.</strong></p>
<p>Here&#8217;s what we came up with. Enjoy!</p>
<p><a href="http://pivotallabs.com/wordpress/wp-content/uploads/2013/05/IMG_0063.jpg?48a6bc"><img class="alignnone size-large wp-image-19303" alt="" src="http://pivotallabs.com/wordpress/wp-content/uploads/2013/05/IMG_0063-630x472.jpg?48a6bc" width="630" height="472" /></a></p>
<p>The post <a href="http://pivotallabs.com/lunchtime-drawtime/">Lunchtime Drawtime!</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/lunchtime-drawtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Use Skip Navigation Links for Better Keyboard Accessibility</title>
		<link>http://pivotallabs.com/skip-navigation-accessibility/</link>
		<comments>http://pivotallabs.com/skip-navigation-accessibility/#comments</comments>
		<pubDate>Fri, 17 May 2013 16:43:34 +0000</pubDate>
		<dc:creator>Cameron Cundiff</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[accessibility]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/?p=19269</guid>
		<description><![CDATA[<p>For improved keyboard accessibility, use skip navigation links along with a coherent heading outline, ARIA landmarks, and a javascript polyfill for Webkit based browsers. Why Use Skip Navigation Links? It can be frustrating and fatiguing for folks with limited mobility to have to have to repeatedly tab through navigation links to get to the main content of a page. People who use screen readers face similar frustration when the page outline is not well defined. In order to address this issue, version 2.0 of the Web Content Accessibility Guidelines (WCAG 2.0) has specified a guideline for bypassing repetitive blocks of content. One technique recommended by the W3C is to include a skip navigation link at the beginning of the page, that changes focus to the first element after the repeated content. How do I use Skip Navigation Links? Add a link at the top of your body content whose href value&#8230;</p><p>The post <a href="http://pivotallabs.com/skip-navigation-accessibility/">How To: Use Skip Navigation Links for Better Keyboard Accessibility</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>For improved keyboard accessibility, <strong>use skip navigation links</strong> along with a coherent heading outline, ARIA landmarks, and a javascript polyfill for Webkit based browsers.</strong></p>
<h2>Why Use Skip Navigation Links?</h2>
<p>It can be frustrating and fatiguing for folks with limited mobility to have to have to repeatedly tab through navigation links to get to the main content of a page. People who use screen readers face similar frustration when the page outline is not well defined. In order to address this issue, version 2.0 of the Web Content Accessibility Guidelines (WCAG 2.0) has specified a <a href="http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-skip.html">guideline for bypassing repetitive blocks of content</a>. One technique <a href="http://www.w3.org/TR/2012/NOTE-WCAG20-TECHS-20120103/G1">recommended by the W3C</a> is to include a skip navigation link at the beginning of the page, that changes focus to the first element after the repeated content.</p>
<h2>How do I use Skip Navigation Links?</h2>
<p>Add a link at the top of your body content whose href value points to the id of the element that wraps your primary content. Like so:</p>
<script src="https://gist.github.com/5599774.js"></script><noscript><pre><code class="language-html html">&lt;body&gt;
  &lt;a href=&quot;#main&quot;&gt;Skip to main content&lt;/a&gt;
  &lt;nav role='navigation'&gt;
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;/about&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;/blog&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/nav&gt;
  &lt;div id=&quot;main&quot; role=&quot;main&quot;&gt;
    &lt;!-- page specific content --&gt;
  &lt;/div&gt;
&lt;/body&gt;</code></pre></noscript>
<p><strong>Disclaimer</strong>: The mechanism by which skip navigation links work had been broken  in Webkit based browsers for some time and has only <a href="https://code.google.com/p/chromium/issues/detail?id=37721">recently been fixed</a>. Until these browsers release the fixes, you may need to use a <a href="http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/">javascript polyfill</a> to make skip nav links work.</p>
<h2>What about ARIA?</h2>
<p>Skip nav links are useful for users who use keyboard navigation only, but screen readers now support more sophisticated ways of navigating regions. Specifically, they support <a href="http://www.w3.org/TR/2012/NOTE-WCAG20-TECHS-20120103/H69">heading navigation</a> and <a href="http://www.w3.org/WAI/intro/aria">ARIA landmarks</a>. You should take advantage of these features by using a clear heading outline and defining page regions.</p>
<p><em>Note: The last post I authored, <a href="http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/">Use ARIA Landmarks Instead of Skip Nav Links</a>, presented a strategy that was predicated in part on the fact that skip navigation links have been broken in Webkit for the past three years. This bug has recently been fixed, so I was inspired to revisit the topic.</em></p>
<p>The post <a href="http://pivotallabs.com/skip-navigation-accessibility/">How To: Use Skip Navigation Links for Better Keyboard Accessibility</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/skip-navigation-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use ARIA Landmarks Instead of Skip Nav Links</title>
		<link>http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/</link>
		<comments>http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/#comments</comments>
		<pubDate>Sun, 07 Apr 2013 22:39:51 +0000</pubDate>
		<dc:creator>Cameron Cundiff</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[aria]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/?p=18259</guid>
		<description><![CDATA[<p>This is a followup post to Testing accessibility with RSpec and Capybara, in which I explored strategies for automated testing of skip navigation links. We needed to provide a way to skip repetitive navigation, in line with part (o) of the Section 508 accessibility standards, and we went with skip navigation links. We&#8217;ve since taken an alternative approach to the skip navigation technique, since this technique does not change keyboard focus to the targeted content. Instead, we ended up creating an aria landmark using the role attribute with a value of &#8216;main&#8217;. It looks something like this: The role attribute can be set to a variety of values to help screen readers evaluate the structure of a page. Then the user can use a combination of hotkeys to navigate to these landmarks. In Safari with VoiceOver for example, one would press the VoiceOver keys + U to activate the Rotor, and be&#8230;</p><p>The post <a href="http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/">Use ARIA Landmarks Instead of Skip Nav Links</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This is a followup post to <a href="http://pivotallabs.com/?p=8560">Testing accessibility with RSpec and Capybara</a>, in which I explored strategies for automated testing of <a href="http://jimthatcher.com/skipnav.htm">skip navigation links</a>. We needed to provide a way to skip repetitive navigation, in line with<a href="http://www.section508.gov/index.cfm?fuseAction=stdsdoc#Web"> part (o) of the Section 508 accessibility standards</a>, and we went with skip navigation links.</p>
<p>We&#8217;ve since taken an alternative approach to the skip navigation technique, since this technique does not change keyboard focus to the targeted content. Instead, we ended up creating an aria landmark using the role attribute with a value of &#8216;main&#8217;. It looks something like this:</p>
<script src="https://gist.github.com/5b6c1b613115f218cb33.js"></script><noscript><pre><code class="language-html html">...
&lt;body&gt;
  &lt;nav role=&quot;navigation&quot;&gt;
    &lt;ul&gt;
      &lt;li&gt;Home&lt;/li&gt;
      &lt;li&gt;About&lt;/li&gt;
      &lt;li&gt;Blog&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/nav&gt;
  &lt;div role=&quot;main&quot;&gt;...
    &lt;p&gt;The good stuff!&lt;/p&gt;
  &lt;/div&gt;
...</code></pre></noscript>
<p>The role attribute can be set to <a href="http://www.w3.org/WAI/GL/wiki/Using_ARIA_landmarks_to_identify_regions_of_a_page#Description">a variety of values</a> to help screen readers evaluate the structure of a page. Then the user can use a combination of hotkeys to navigate to these landmarks. In Safari with VoiceOver for example, one would press the VoiceOver keys + U to activate the Rotor, and be presented with a list of page landmarks (including &#8216;main&#8217;) that when navigated to, will immediately get focus and be at the beginning of the read order. JAWS, ChromeVox, and NVDA have similar behavior.</p>
<p>Using an ARIA landmark with a role of &#8216;main&#8217; is a more robust and elegant solution than using skip navigation links. This technique is also <a href="http://www.w3.org/WAI/GL/wiki/Using_ARIA_landmarks_to_identify_regions_of_a_page#User_Agent_Notes">well supported across user agents</a>, and yields disproportionate gains in accessibility compared to development time, making it an easy win for more accessible content. </p>
<p>The post <a href="http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/">Use ARIA Landmarks Instead of Skip Nav Links</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing accessibility with RSpec and Capybara</title>
		<link>http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/</link>
		<comments>http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 15:15:00 +0000</pubDate>
		<dc:creator>Cameron Cundiff</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/</guid>
		<description><![CDATA[<p><h2>An exploration in automated accessibility testing</h2>

<p>Today Grant Hutchins and I took on several stories to enhance the accessibility of a site. One of them was to <em>add a skip-navigation link to the application.</em></p>

<p>To understand why skip-nav links are important, visit <a href="http://jimthatcher.com/skipnav.htm">Jim Thatcher's explanation</a>.</p>

<p>Our immediate inclination was to write a request spec with Capybara to drive out the solution. We came up with the following.</p>

<h2>The Test</h2>

<pre><code>require "spec_helper"

feature "Keyboard Navigation" do
  scenario "hidden skip navigation link shows when focused and jumps to content", js: true do
    login_as&#40;users&#40;:user&#41;&#41;
    visit root_path

    skip_link = page.find&#40;"#skip-navigation a"&#41;
    skip_link.should have_content "Skip navigation"
    skip_link.native.location.y.should be &#60; 0

    body_element = page.find&#40;"body"&#41;
    body_element.native.send_keys&#40;:tab&#41;
    skip_link.native.location.y.should == 0

    skip_link.native.send_keys&#40;:return&#41;
    skip_link.native.location.y.should be &#60; 0

    current_url.should match&#40;/#content$/&#41;
  end
end
</code></pre>

<h2>The Markup</h2>

<pre><code>%body
  #skip-navigation
    %p= link_to "Skip navigation", "#content", tabindex: 0
    ...
  #content
    ...
</code></pre>

<h2>The Styles</h2>

<pre><code>body {
  #skip-navigation {
    a, a:hover, a:visited {
      position:absolute;
      left:0px;
      top:-500px;
      overflow:hidden;
    }

    a:active, a:focus {
      position:absolute;
      left:0;
      top:0;
    }
  }
}
</code></pre>

<h2>What's happening here?</h2>

<p>We are asserting that the "hidden skip navigation link shows when focused and jumps to content" when clicked.  </p>

<p><em>The most important aspect of what we did was emulating keyboard navigation. We're using <code>js: true</code> so we have access to Selenium's native methods and thus the <code>send_keys</code> method. This allows us to send keypress messages to the browser.</em></p>

<p>Since we've used positioning to hide the element, we also have an assertion around that property.</p>

<h2>Problems in CI!</h2>

<p>The application behaved as expected and the tests passed locally. </p>

<p><em>When we ran the tests in CI however, the tests failed</em>. The reason is that _the browser must retain foremost focus in the OS in order for the <code>:focus</code> css pseudo-selector to fire on the skip-nav element. Without the <code>:focus</code> style rules applied, the skip-nav element remained invisible, and the tests failed.</p>

<p>We tried a workaround using <code>within_window</code> and forcing browser focus, but couldn't get it to work. We've got a few more tricks up our sleeve that we're going to try, and will report back here.</p>

<p><em>Edit</em>:
We added <code>within_window</code> to the test to force focus on the browser. This makes the test less brittle locally &#40;because it won't fail if you click out of the window&#41;.</p>

<pre><code>window = page.driver.browser.window_handles.last
page.within_window&#40;window&#41; do
  skip_link.native.location.y.should == 0
end
</code></pre> <a href="http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/">Testing accessibility with RSpec and Capybara</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Edit 04/07/13: See the <a href="http://pivotallabs.com/aria-landmarks-instead-of-skip-nav/">followup article</a> for an alternative to using skip navigation links.</p>
<h2>An exploration in automated accessibility testing</h2>
<p>Today Grant Hutchins and I took on several stories to enhance the accessibility of a site. One of them was to <em>add a skip-navigation link to the application.</em></p>
<p>To understand why skip-nav links are important, visit <a href="http://jimthatcher.com/skipnav.htm">Jim Thatcher&#8217;s explanation</a>.</p>
<p>Our immediate inclination was to write a request spec with Capybara to drive out the solution. We came up with the following.</p>
<h2>The Test</h2>
<pre><code>require "spec_helper"

feature "Keyboard Navigation" do
  scenario "hidden skip navigation link shows when focused and jumps to content", js: true do
    login_as(users(:user))
    visit root_path

    skip_link = page.find("#skip-navigation a")
    skip_link.should have_content "Skip navigation"
    skip_link.native.location.y.should be &lt; 0

    body_element = page.find("body")
    body_element.native.send_keys(:tab)
    skip_link.native.location.y.should == 0

    skip_link.native.send_keys(:return)
    skip_link.native.location.y.should be &lt; 0

    current_url.should match(/#content$/)
  end
end
</code></pre>
<h2>The Markup</h2>
<pre><code>%body
  #skip-navigation
    %p= link_to "Skip navigation", "#content", tabindex: 0
    ...
  #content
    ...
</code></pre>
<h2>The Styles</h2>
<pre><code>body {
  #skip-navigation {
    a, a:hover, a:visited {
      position:absolute;
      left:0px;
      top:-500px;
      overflow:hidden;
    }

    a:active, a:focus {
      position:absolute;
      left:0;
      top:0;
    }
  }
}
</code></pre>
<h2>What&#8217;s happening here?</h2>
<p>We are asserting that the &#8220;hidden skip navigation link shows when focused and jumps to content&#8221; when clicked.</p>
<p><em>The most important aspect of what we did was emulating keyboard navigation. We&#8217;re using <code>js: true</code> so we have access to Selenium&#8217;s native methods and thus the <code>send_keys</code> method. This allows us to send keypress messages to the browser.</em></p>
<p>Since we&#8217;ve used positioning to hide the element, we also have an assertion around that property.</p>
<h2>Problems in CI!</h2>
<p>The application behaved as expected and the tests passed locally.</p>
<p><em>When we ran the tests in CI however, the tests failed</em>. The reason is that _the browser must retain foremost focus in the OS in order for the <code>:focus</code> css pseudo-selector to fire on the skip-nav element. Without the <code>:focus</code> style rules applied, the skip-nav element remained invisible, and the tests failed.</p>
<p>We tried a workaround using <code>within_window</code> and forcing browser focus, but couldn&#8217;t get it to work. We&#8217;ve got a few more tricks up our sleeve that we&#8217;re going to try, and will report back here.</p>
<p><em>Edit</em>:<br />
We added <code>within_window</code> to the test to force focus on the browser. This makes the test less brittle locally (because it won&#8217;t fail if you click out of the window).</p>
<pre><code>window = page.driver.browser.window_handles.last
page.within_window(window) do
  skip_link.native.location.y.should == 0
end
</code></pre>
<p>The post <a href="http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/">Testing accessibility with RSpec and Capybara</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/accessible-tab-navigation-using-sass-mixins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SNL tickets!</title>
		<link>http://pivotallabs.com/snl-tickets/</link>
		<comments>http://pivotallabs.com/snl-tickets/#comments</comments>
		<pubDate>Fri, 03 Aug 2012 13:12:00 +0000</pubDate>
		<dc:creator>Cameron Cundiff</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/snl-tickets/</guid>
		<description><![CDATA[<p><h2>Interestings</h2>

<ul>
<li><p>SNL Ticket Lottery Open</p>

<p>Lottery for SNL tickets is open. Email snltickets@nbcuni.com once during the month of August with full contact details to enter.</p></li>
</ul>

<p>Full details at <a href="http://www.nbc.com/tickets/">nbc.com</a></p> <a href="http://pivotallabs.com/snl-tickets/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/snl-tickets/">SNL tickets!</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Interestings</h2>
<ul>
<li>
<p>SNL Ticket Lottery Open</p>
<p>Lottery for SNL tickets is open. Email snltickets@nbcuni.com once during the month of August with full contact details to enter.</p>
</li>
</ul>
<p>Full details at <a href="http://www.nbc.com/tickets/">nbc.com</a></p>
<p>The post <a href="http://pivotallabs.com/snl-tickets/">SNL tickets!</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/snl-tickets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Standup][NY] 07/30/12 and 07/31/12</title>
		<link>http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/</link>
		<comments>http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/#comments</comments>
		<pubDate>Tue, 31 Jul 2012 15:19:00 +0000</pubDate>
		<dc:creator>Cameron Cundiff</dc:creator>
				<category><![CDATA[Standup]]></category>
		<category><![CDATA[frank]]></category>
		<category><![CDATA[rspec]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/</guid>
		<description><![CDATA[<p><h2>Interestings</h2>

<ul>
<li><a href="https://github.com/moredip/Frank/">Frank</a> - Cucumber like framework for iOS - <a href="http://hackerne.ws/item?id=4308701">trending on HackerNews</a>.</li>
<li><p>rspec shared_example names do not get scoped within describe blocks</p>

<p>As of rspec 2.6, shared examples are global. You can declare them in a describe block, but they are not scoped to that description. This ultimately means that shared_example names should be unique across your test suite!</p></li>
</ul> <a href="http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/">[Standup][NY] 07/30/12 and 07/31/12</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Interestings</h2>
<ul>
<li><a href="https://github.com/moredip/Frank/">Frank</a> &#8211; Cucumber like framework for iOS &#8211; <a href="http://hackerne.ws/item?id=4308701">trending on HackerNews</a>.</li>
<li>
<p>rspec shared_example names do not get scoped within describe blocks</p>
<p>As of rspec 2.6, shared examples are global. You can declare them in a describe block, but they are not scoped to that description. This ultimately means that shared_example names should be unique across your test suite!</p>
</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/">[Standup][NY] 07/30/12 and 07/31/12</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-ny-07-30-12-and-07-31-12/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 817/877 objects using apc

 Served from: pivotallabs.com @ 2013-05-25 11:30:00 by W3 Total Cache -->