<?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; Evan Goodberry</title>
	<atom:link href="http://pivotallabs.com/author/egoodberry/feed/" rel="self" type="application/rss+xml" />
	<link>http://pivotallabs.com</link>
	<description>Agility Developed</description>
	<lastBuildDate>Wed, 22 May 2013 22:49:44 +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>Hardware Hacking Meeting</title>
		<link>http://pivotallabs.com/hardware-hacking-meeting/</link>
		<comments>http://pivotallabs.com/hardware-hacking-meeting/#comments</comments>
		<pubDate>Thu, 30 Aug 2012 13:11:00 +0000</pubDate>
		<dc:creator>Evan Goodberry</dc:creator>
				<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/hardware-hacking-meeting/</guid>
		<description><![CDATA[<p><h2>Events</h2>

<ul>
<li>Thursday: Hardware Hacking Meeting today in this room @ 12:30</li>
</ul> <a href="http://pivotallabs.com/hardware-hacking-meeting/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/hardware-hacking-meeting/">Hardware Hacking Meeting</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Events</h2>
<ul>
<li>Thursday: Hardware Hacking Meeting today in this room @ 12:30</li>
</ul>
<p>The post <a href="http://pivotallabs.com/hardware-hacking-meeting/">Hardware Hacking Meeting</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/hardware-hacking-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning to Count with PostgreSQL</title>
		<link>http://pivotallabs.com/learning-to-count-with-postgresql/</link>
		<comments>http://pivotallabs.com/learning-to-count-with-postgresql/#comments</comments>
		<pubDate>Wed, 29 Aug 2012 13:24:00 +0000</pubDate>
		<dc:creator>Evan Goodberry</dc:creator>
				<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/learning-to-count-with-postgresql/</guid>
		<description><![CDATA[<p><h2>Interestings</h2>

<ul>
<li>PostgreSQL COUNT&#40;*&#41; OVER&#40;&#41;</li>
</ul>

<p>Sometimes when you're paginating you have to run 2 queries, one for the first n records, and another for the total count.</p>

<p>It's possible to get both in one query using OVER&#40;&#41;.</p>

<p>SELECT <em>, COUNT&#40;</em>&#41; OVER&#40;&#41; as total_count FROM blog_posts ORDER BY created_at DESC LIMIT 25;</p>

<p>Each record will come back with a total_count attribute, so you will have to look at one of the records to figure out the count.</p>

<p>http://www.postgresql.org/docs/9.1/static/tutorial-window.html</p>

<ul>
<li>Good article on quick Twitter Bootstrap style customizations</li>
</ul>

<p>Some good links and resources in <a href="http://antjanus.com/blog/web-design-tips/user-interface-usability/customize-twitter-bootstrap-into-themes/">this article</a>, including a <a href="http://colorschemedesigner.com/">sweet color scheme generator</a>, <a href="http://fortawesome.github.com/Font-Awesome/">FontAwesome</a>, <a href="http://ajkochanowicz.github.com/Kickstrap/">Kickstrap</a>, and more.</p>

<h2>Events</h2>

<ul>
<li>Wednesday: Enyo Bootcamp</li>
</ul>

<p>Come to the Enyo Bootcamp workshop to learn everything you need to know to begin creating cross-platform cross-browser Web applications with this exciting framework. There will be a brief presentation followed by Q&#38;A with some of the Developer Relations Engineers. Attendees should be somewhat familiar with HTML, JavaScript, and CSS to get the biggest benefit.  Visit http://enyojs.com/ to get a leg up or come prepared to have your mind blown.</p>

<p>To get into the spirit of working with the framework, read about Xtuple's recent experience at  http://www.xtuple.org/node/5000  and be inspired by the ease of Enyo!</p>

<p>Eventbrite Invite: http://enyobootcampnewyorkcity.eventbrite.com/</p> <a href="http://pivotallabs.com/learning-to-count-with-postgresql/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/learning-to-count-with-postgresql/">Learning to Count with PostgreSQL</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Interestings</h2>
<ul>
<li>PostgreSQL COUNT&#40;*&#41; OVER&#40;&#41;</li>
</ul>
<p>Sometimes when you&#8217;re paginating you have to run 2 queries, one for the first n records, and another for the total count.</p>
<p>It&#8217;s possible to get both in one query using OVER&#40;&#41;.</p>
<p>SELECT <em>, COUNT&#40;</em>&#41; OVER&#40;&#41; as total_count FROM blog_posts ORDER BY created_at DESC LIMIT 25;</p>
<p>Each record will come back with a total_count attribute, so you will have to look at one of the records to figure out the count.</p>
<p>http://www.postgresql.org/docs/9.1/static/tutorial-window.html</p>
<ul>
<li>Good article on quick Twitter Bootstrap style customizations</li>
</ul>
<p>Some good links and resources in <a href="http://antjanus.com/blog/web-design-tips/user-interface-usability/customize-twitter-bootstrap-into-themes/">this article</a>, including a <a href="http://colorschemedesigner.com/">sweet color scheme generator</a>, <a href="http://fortawesome.github.com/Font-Awesome/">FontAwesome</a>, <a href="http://ajkochanowicz.github.com/Kickstrap/">Kickstrap</a>, and more.</p>
<h2>Events</h2>
<ul>
<li>Wednesday: Enyo Bootcamp</li>
</ul>
<p>Come to the Enyo Bootcamp workshop to learn everything you need to know to begin creating cross-platform cross-browser Web applications with this exciting framework. There will be a brief presentation followed by Q&amp;A with some of the Developer Relations Engineers. Attendees should be somewhat familiar with HTML, JavaScript, and CSS to get the biggest benefit.  Visit http://enyojs.com/ to get a leg up or come prepared to have your mind blown.</p>
<p>To get into the spirit of working with the framework, read about Xtuple&#8217;s recent experience at  http://www.xtuple.org/node/5000  and be inspired by the ease of Enyo!</p>
<p>Eventbrite Invite: http://enyobootcampnewyorkcity.eventbrite.com/</p>
<p>The post <a href="http://pivotallabs.com/learning-to-count-with-postgresql/">Learning to Count with PostgreSQL</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/learning-to-count-with-postgresql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Standup][NY] 08/27/12: Sweet Monday</title>
		<link>http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/</link>
		<comments>http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 14:34:00 +0000</pubDate>
		<dc:creator>Evan Goodberry</dc:creator>
				<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/</guid>
		<description><![CDATA[<p><h2>Interestings</h2>

<ul>
<li>Sugar.js</li>
</ul>

<p>A new&#40;ish&#41; Javascript library similar to Underscore but that extends objects instead of just providing a function namespace.</p>

<h2>Events</h2>

<ul>
<li>Tuesday: NYC.rb Hackfest</li>
</ul> <a href="http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/">[Standup][NY] 08/27/12: Sweet Monday</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Interestings</h2>
<ul>
<li>Sugar.js</li>
</ul>
<p>A new&#40;ish&#41; Javascript library similar to Underscore but that extends objects instead of just providing a function namespace.</p>
<h2>Events</h2>
<ul>
<li>Tuesday: NYC.rb Hackfest</li>
</ul>
<p>The post <a href="http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/">[Standup][NY] 08/27/12: Sweet Monday</a> appeared first on <a href="http://pivotallabs.com">Pivotal Labs</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://pivotallabs.com/standup-ny-08-27-12-sweet-monday/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 548/582 objects using apc

 Served from: pivotallabs.com @ 2013-05-23 11:48:09 by W3 Total Cache -->