<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" version="2.0">

<channel>
	<title>Scott Robbin</title>
	
	<link>http://srobbin.com/blog</link>
	<description>A variety of articles, projects and by web developer, Scott Robbin.</description>
	<lastBuildDate>Mon, 06 Sep 2010 16:37:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/srobbin" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="srobbin" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>41.971614</geo:lat><geo:long>-87.702561</geo:long><item>
		<title>Django 1.1 on the Google App Engine SDK</title>
		<link>http://srobbin.com/blog/django-1-1-on-the-google-app-engine-sdk/</link>
		<comments>http://srobbin.com/blog/django-1-1-on-the-google-app-engine-sdk/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 16:36:59 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[app engine]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=848</guid>
		<description><![CDATA[If you&#8217;ve used Django 1.1 App Engine, or are trying to, then you&#8217;ve probably read the instructions on how replace Django 0.96 with 1.1. That all fine an dandy in a production environment, but what about local development? Perhaps you&#8217;ve seen the following error message? UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve used Django 1.1 App Engine, or are trying to, then you&#8217;ve probably read the i<a title="Django 1.1 on Google App Engine" href="http://code.google.com/appengine/docs/python/tools/libraries.html#Django">nstructions on how replace Django 0.96 with 1.1</a>. That all fine an dandy in a production environment, but what about local development? Perhaps you&#8217;ve seen the following error message?</p>
<blockquote><p>
<code>UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in use<br />
</code>
</p></blockquote>
<p></p>
<p>Me too. After mucking around a bit, I&#8217;ve figured out an acceptable workaround:</p>
<p>First, <a href="http://www.djangoproject.com/download/1.1.1/tarball/">download Django 1.1.1</a> and place it somewhere on your hard drive (I put mine on <a href="http://www.dropbox.com/referrals/NTUxNTA0Njk">Dropbox</a>, so that I could use this fix across multiple computers).</p>
<p>Then, modify your <code>main.py</code> from this:</p>
<blockquote>
<pre>
import os, sys,logging
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'

from google.appengine.dist import use_library
use_library('django', '1.1')
</pre>
</blockquote>
<p></p>
<p>To look like this:</p>
<blockquote>
<pre>
import os, sys,logging
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'

if os.environ.get('SERVER_SOFTWARE','').startswith('Devel'):
    sys.path.insert(0, "/your/local/path/to/Django-1.1.1/")

from google.appengine.dist import use_library
use_library('django', '1.1')
</pre>
</blockquote>
<p></p>
<p>Essentially, you&#8217;re telling App Engine that, when it&#8217;s in the Development environment (running on your local computer), it should prepend Django 1.1.1 to the system path. Then, a few lines down, when the App Engine SDK looks for Django, it will see that version first.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/93jOKo_rzs8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/django-1-1-on-the-google-app-engine-sdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts from a First Generation Apple TV Owner</title>
		<link>http://srobbin.com/blog/thoughts-from-a-first-generation-apple-tv-owner/</link>
		<comments>http://srobbin.com/blog/thoughts-from-a-first-generation-apple-tv-owner/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 21:14:10 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=840</guid>
		<description><![CDATA[This post is a follow-up to a tweet I had sent this afternoon: Did you hear? If you hold the Apple TV wrong, Apple loses interest. #gen1owner #bitter I received enough replies, with varied interpretations of my poorly worded joke, that I wanted to respond on my blog. Sometimes 140 characters is not enough. What [...]]]></description>
			<content:encoded><![CDATA[<p>This post is a follow-up to <a href="http://twitter.com/srobbin/status/22733219764">a tweet</a> I had sent this afternoon:</p>
<blockquote><p><strong></strong>Did you hear? If you hold the Apple TV wrong, Apple loses interest. <a title="#gen1owner" rel="nofollow" href="http://twitter.com/search?q=%23gen1owner">#gen1owner</a> <a title="#bitter" rel="nofollow" href="http://twitter.com/search?q=%23bitter">#bitter</a></p></blockquote>
<p>I received enough replies, with varied interpretations of my poorly worded joke, that I wanted to respond on my blog. Sometimes 140 characters is not enough. What I really should have said was this:</p>
<blockquote><p>I&#8217;m a first generation Apple TV owner. I was very excited when I bought it, but after using it for a few months I realized that it was just a shiny rubber nipple that would let me feed off of Apple&#8217;s teat and nothing else. Now, it collects dust in my closet. In my opinion, Apple abandoned the product, and as a result I feel like it was the worst consumer purchase that I&#8217;ve made in recent history. Yes, I&#8217;m excited about the announcement of a smaller, cheaper Apple TV, but I&#8217;m too burned by my first experience to head down that road again. So, I write silly, bitter tweets instead&#8230;</p></blockquote>
<p>I do like that Netflix is now an option — as someone who has no cable hookup, it&#8217;s where I find most of my entertainment — though there are a lot of other things to consider when buying a media center. Will you want to watch Hulu, Vimeo, Ustream.tv, DivX, etc.? I do. I ended up shelving my Apple TV and hooked up a Mac Mini which runs <a title="Boxee" href="http://boxee.tv">Boxee</a>. It runs purty good.</p>
<p>All in all, if you don&#8217;t already own a device capable of running Netflix on your TV, then I think this is a great, inexpensive option. For everyone else, good luck. I&#8217;m skeptical of Apple&#8217;s rediscovered &#8220;hobby,&#8221; but I hope that your purchases are well-made and enjoyed. Just consider these the ramblings of a crotchety, old man&#8230;</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/HNiW_3-ojpU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/thoughts-from-a-first-generation-apple-tv-owner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSW 2011: Interaction Jones and the Template of Doom</title>
		<link>http://srobbin.com/blog/sxsw-2011-interaction-jones-and-the-template-of-doom/</link>
		<comments>http://srobbin.com/blog/sxsw-2011-interaction-jones-and-the-template-of-doom/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 15:57:12 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Presentation]]></category>
		<category><![CDATA[sxsw]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=830</guid>
		<description><![CDATA[Naz and have submitted a talk for SXSW 2011 Interactive called &#34;Interaction Jones and the Template of Doom.&#34; In summary, we&#8217;re going to discuss design and development ideas by looking at Spielberg and Lucas films, both old and new. If you&#8217;re planning to attend the conference, we&#8217;d very much appreciate if you&#8217;d cast your vote [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4082/4920467486_cac0ed0426.jpg" width="440"  alt="SXSW 2011: Interaction Jones and the Template of Doom"/></p>
<p><a href="http://weightshift.com" rel="nofollow">Naz</a> and have submitted a talk for SXSW 2011 Interactive called &quot;Interaction Jones and the Template of Doom.&quot; In summary, we&#8217;re going to discuss design and development ideas by looking at Spielberg and Lucas films, both old and new.</p>
<p>If you&#8217;re planning to attend the conference, we&#8217;d very much appreciate if you&#8217;d cast your vote for us:</p>
<p><a href="http://panelpicker.sxsw.com/ideas/view/5730" rel="nofollow">http://panelpicker.sxsw.com/ideas/view/5730</a></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/18nlzONiTxw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/sxsw-2011-interaction-jones-and-the-template-of-doom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing for the Mobile Web</title>
		<link>http://srobbin.com/blog/developing-for-the-mobile-web/</link>
		<comments>http://srobbin.com/blog/developing-for-the-mobile-web/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 18:59:54 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Chicago]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[sdcchi]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=821</guid>
		<description><![CDATA[The slides from my presentation at SocialDevCamp Chicago. Thanks, everyone, for the kind words and thoughtful questions. And, many thanks to the guy who bought into my Pee-wee Herman Secret Word bit, and yelled every time I said, &#8220;HTML5.&#8221; Feel free to get in touch if you have any follow-up questions.]]></description>
			<content:encoded><![CDATA[<p>The slides from my presentation at <a href="http://socialdevcampchicago.com/">SocialDevCamp Chicago</a>. Thanks, everyone, for the kind words and thoughtful questions. And, many thanks to the guy who bought into my Pee-wee Herman Secret Word bit, and yelled every time I said, &#8220;HTML5.&#8221;</p>
<div style="width:425px" id="__ss_4970528"><object id="__sse4970528" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mobileweb-100814133107-phpapp02&#038;stripped_title=developing-for-the-mobile-web" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse4970528" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mobileweb-100814133107-phpapp02&#038;stripped_title=developing-for-the-mobile-web" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>
<p></p>
<p>Feel free to <a href="http://twitter.com/srobbin">get in touch</a> if you have any follow-up questions.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/CSzbFo9HSWE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/developing-for-the-mobile-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Backstretch 1.1 Released</title>
		<link>http://srobbin.com/blog/jquery-backstretch-1-1-released/</link>
		<comments>http://srobbin.com/blog/jquery-backstretch-1-1-released/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 17:28:28 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[backstretch]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=813</guid>
		<description><![CDATA[A new version of jQuery Backstretch has been released. It contains a number of fixes and enhancements: Added ‘centeredX’ and &#8216;centeredY&#8217; options. Removed ‘hideUntilReady’ option. It looks pretty bad if you don’t hide the image until it’s fully loaded. Fixed IE img onload bug. Now supports iPhone/iPad orientation changes. Many thanks to Peter Baker for [...]]]></description>
			<content:encoded><![CDATA[<p>A new version of jQuery Backstretch has been released. It contains a number of fixes and enhancements:</p>
<ul>
<li>Added ‘centeredX’ and &#8216;centeredY&#8217; options.</li>
<li>Removed ‘hideUntilReady’ option. It looks pretty bad if you don’t hide the image until it’s fully loaded.</li>
<li>Fixed IE img onload bug.</li>
<li>Now supports iPhone/iPad orientation changes.</li>
</ul>
<p>Many thanks to <a href="http://ptrbkr.com/">Peter Baker</a> for providing the code to center the images.</p>
<p><a href="/jquery-plugins/jquery-backstretch/" class="install">Download Backstretch Now</a></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/o9OBq5gwjjA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/jquery-backstretch-1-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday, @timer!</title>
		<link>http://srobbin.com/blog/happy-birthday-timer/</link>
		<comments>http://srobbin.com/blog/happy-birthday-timer/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 18:17:07 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=767</guid>
		<description><![CDATA[Back in the spring of 2007, I was introduced to Twitter and soon thereafter their API. At the time, I had little programming experience with third-party APIs, but was immediately taken by the simplicity and robustness of what Alex was building, and tutored by the growing community of Twitter developers. For my first project, I [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the spring of 2007, I was introduced to Twitter and soon thereafter their <a href="http://dev.twitter.com/doc" title="Twitter API">API</a>. At the time, I had little programming experience with third-party APIs, but was immediately taken by the simplicity and robustness of what <a href="http://al3x.net" title="Alex Payne">Alex</a> was building, and tutored by the growing community of Twitter developers.</p>
<p>For my first project, I decided to play with Twitter&#8217;s direct message feature. The idea was simple: send me a direct message that included a time (number of minutes) and a message, and I would reply with a direct message when the specified time had expired. It was a sort of alarm clock&#8230;an egg timer&#8230;a timer. In May 2007, <a href="http://twitter.com/timer" title="Twitter Timer">@timer</a> was born.</p>
<p>Three years later, @timer is still actively used, with over 16,000 followers (you have to follow in order to direct message). Happy belated birthday, lil&#8217; buddy.</p>
<p>On a related note, I&#8217;ve updated @timer to use OAuth (as of August 16th, <a href="http://www.countdowntooauth.com/">Twitter will be shutting of basic authentication</a>). I suppose this is a the real reason for the post, but the birthday wishes seemed overdue and appropriate. So, enjoy the new and improved @timer&#8230;</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/BMrrE9TLsl8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/happy-birthday-timer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3 Total Cache</title>
		<link>http://srobbin.com/blog/w3-total-cache/</link>
		<comments>http://srobbin.com/blog/w3-total-cache/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 13:55:12 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[yslow]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=765</guid>
		<description><![CDATA[If you&#8217;re looking to enable WP caching, and website performance optimizations, in one fell swoop, check out W3 Total Cache. It&#8217;s a fantastic plugin that will help improve your WordPress site&#8217;s performance. On a related note, I wrote a memo on Weightshift that covers performance tips for client websites. It&#8217;s a primer into the type [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re looking to enable WP caching, and website performance optimizations, in one fell swoop, check out <a href="http://wordpress.org/extend/plugins/w3-total-cache/" title="W3 Total Cache">W3 Total Cache</a>. It&#8217;s a fantastic plugin that will help improve your WordPress site&#8217;s performance.</p>
<p>On a related note, I wrote a memo on Weightshift that covers <a href="http://weightshift.com/memo/making-client-sites-faster" title="Weightshift: Making Client Sites Faster">performance tips for client websites</a>. It&#8217;s a primer into the type of things we do for our projects, and presented in a way that&#8217;s CMS-agnostic.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/ieh76rphhvw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/w3-total-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responses to an Informal Survey on Tequila</title>
		<link>http://srobbin.com/blog/responses-to-a-informal-survey-on-tequila/</link>
		<comments>http://srobbin.com/blog/responses-to-a-informal-survey-on-tequila/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 12:55:28 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[survey]]></category>
		<category><![CDATA[tequila]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=748</guid>
		<description><![CDATA[Last year, I sent out a request for Scotch whisky recommendations, and the results were fantastic. I spent a large part of the Fall and Winter sampling your responses. Now that it&#8217;s getting warmer out, I wanted to switch to a Summer drink. So, I asked for your favorite tequilas. Here are the answers that [...]]]></description>
			<content:encoded><![CDATA[<p>Last year, I sent out a request for <a title="An Informal Survey on Scotch Whisky" href="http://srobbin.com/blog/responses-to-a-informal-survey-on-scotch-whisky/">Scotch whisky recommendations</a>, and the results were fantastic. I spent a large part of the Fall and Winter sampling your responses.</p>
<p>Now that it&#8217;s getting warmer out, I wanted to switch to a Summer drink. So, I asked for your favorite tequilas. Here are the answers that were submitted. Hope you enjoy them as much as I&#8217;m sure I will.</p>
<table id="scotch">
<col id="scotch-distillery"></col>
<col id="scotch-region"></col>
<thead>
<tr>
<th>Distillery</th>
<th>Type</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">* Many thanks to <a href="http://nickd.org/">Nick</a> for pointing out <a href="http://www.friday.com/bbum/2008/06/19/what-is-good-tequila/" title="What is good tequila?">an excellent tequila primer written by bbum</a>.</td>
</tr>
</tfoot>
<tbody>
<tr>
<td><a title="Oro Azul" href="http://www.oroazultequila.com/">Oro Azul</a></td>
<td>Reposado</td>
</tr>
<tr class="scotch-odd">
<td><a title="Herradura" href="http://www.herradura.com/">Herradura</a></td>
<td>Añejo</td>
</tr>
<tr>
<td><a title="Cazadores" href="http://www.cazadores.com/">Cazadores</a></td>
<td>-</td>
</tr>
<tr class="scotch-odd">
<td><a title="El Tesoro" href="http://www.eltesorotequila.com/">El Tesoro</a></td>
<td>Blanco</td>
</tr>
<tr>
<td><a title="Partida" href="http://www.partidatequila.com/">Partida</a></td>
<td>Reposado</td>
</tr>
<tr class="scotch-odd">
<td><a title="Los Abuelos" href="http://www.losabuelos.com/">Los Abuelos</a></td>
<td>Blanco</td>
</tr>
<tr>
<td><a title="Milagro" href="http://www.milagrotequila.com/">Milagro</a></td>
<td>Silver</td>
</tr>
<tr class="scotch-odd">
<td>Centenario</td>
<td>-</td>
</tr>
</tbody>
</table>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/je_uv7RCIfw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/responses-to-a-informal-survey-on-tequila/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making WordPress Faster: Front-end Performance Tips</title>
		<link>http://srobbin.com/blog/making-wordpress-faster-front-end-performance-tips/</link>
		<comments>http://srobbin.com/blog/making-wordpress-faster-front-end-performance-tips/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:31:01 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Chicago]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[wordcamp]]></category>
		<category><![CDATA[yslow]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=740</guid>
		<description><![CDATA[The slides from a presentation that I gave today, at WordCamp Chicago. Thank you to everyone who came, asked questions and laughed at my half-assed jokes. Also, many, many thanks to Naz for styling my presentation. I&#8217;m very lucky to stand on the shoulders of a design giant.]]></description>
			<content:encoded><![CDATA[<p>The slides from a presentation that I gave today, at <a title="WordCamp Chicago 2010" href="http://wordcampchicago.com/">WordCamp Chicago</a>. Thank you to everyone who came, asked questions and laughed at my half-assed jokes.</p>
<div id="__ss_4419335" style="width: 425px;"><object id="__sse4419335" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wpperformancev2slideshare-100605151708-phpapp02&amp;stripped_title=wp-performance-v2slideshare" /><param name="name" value="__sse4419335" /><param name="allowfullscreen" value="true" /><embed id="__sse4419335" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wpperformancev2slideshare-100605151708-phpapp02&amp;stripped_title=wp-performance-v2slideshare" name="__sse4419335" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div style="width: 425px;"></div>
<div style="width: 425px;">Also, many, many thanks to <a href="http://blog.absenter.org/">Naz</a> for styling my presentation. I&#8217;m very lucky to stand on the shoulders of a design giant.</div>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/8NZr4RtuOH0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/making-wordpress-faster-front-end-performance-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Motivates Us?</title>
		<link>http://srobbin.com/blog/what-motivates-us/</link>
		<comments>http://srobbin.com/blog/what-motivates-us/#comments</comments>
		<pubDate>Fri, 28 May 2010 14:09:25 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=733</guid>
		<description><![CDATA[A thought-provoking, entertaining presentation by author Dan Pink on what really motivates us in the workplace. In summary, it&#8217;s not money. I recommend setting 10 minutes aside to watch this video.]]></description>
			<content:encoded><![CDATA[<p>A thought-provoking, entertaining presentation by author <a title="Daniel Pink" href="http://www.danpink.com/">Dan Pink</a> on what really motivates us in the workplace. In summary, it&#8217;s not money.</p>
<p>I recommend setting 10 minutes aside to watch this video.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/u6XAPnuFjJc&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/u6XAPnuFjJc&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/u37gNd5ZccA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/what-motivates-us/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
Page Caching using disk (enhanced)
Database Caching 2/12 queries in 0.003 seconds using disk

Served from: srobbin.com @ 2010-09-06 17:46:46 -->
