<?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, 30 Apr 2012 18:45:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</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>Introducing Shifticons: Custom Icon Web Fonts</title>
		<link>http://srobbin.com/blog/introducing-shifticons-custom-icon-web-fonts/</link>
		<comments>http://srobbin.com/blog/introducing-shifticons-custom-icon-web-fonts/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 18:45:34 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=955</guid>
		<description><![CDATA[Last week, Naz and I launched Shifticons, a service which helps people create custom icon web fonts. In a nutshell, Shifticons makes it easy for you to add icons to your website, and is a dead simple tool for website designers. First, you mix and match icons from a wide (and growing) range of libraries. Then, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://srobbin.com/wp-content/uploads/2012/04/shifticons.jpg"><img class="size-full wp-image-956 alignnone" title="Shifticons" src="http://srobbin.com/wp-content/uploads/2012/04/shifticons.jpg" alt="Shifticons screenshot" width="440" height="302" /></a></p>
<p>Last week, Naz and I launched <a title="Shifticons" href="https://www.shifticons.com">Shifticons</a>, a service which helps people create custom icon web fonts.</p>
<p>In a nutshell, Shifticons makes it easy for you to add icons to your website, and is a dead simple tool for website designers.</p>
<p>First, you mix and match icons from a wide (and growing) range of libraries. Then, you can use the icons on your website simply by adding class names to an HTML element, in a manner very similar to <a href="http://twitter.github.com/bootstrap/base-css.html#icons">Twitter Bootstrap</a>. Unlike Bootstrap, however, the icons are not images, rather they are a font, so changing the size, color, text-shadow, etc. is as easy as changing the CSS attribute. And, unlike typography services, such as <a href="http://typekit.com">Typekit</a>, there are no hosting plans. What you purchase is yours to keep.</p>
<p>Please give it a try. And, if you have any questions or feedback, please let us know on Twitter, <a href="http://twitter.com/shifticons">@shifticons</a>.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/MvgRntVnrEw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/introducing-shifticons-custom-icon-web-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing aliases and other bash configurations using Dropbox</title>
		<link>http://srobbin.com/blog/sharing-aliases-and-other-bash-configurations-using-dropbox/</link>
		<comments>http://srobbin.com/blog/sharing-aliases-and-other-bash-configurations-using-dropbox/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 19:59:06 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=915</guid>
		<description><![CDATA[I have two computers: one at work and one at home. Dropbox has been a fantastic way for me to effortlessly share files between the two. I often setup aliases, and other bash configurations, in my .bash_profile to make life easier. Though, sometimes I&#8217;m not so careful; I&#8217;ll set something up on one computer, but [...]]]></description>
			<content:encoded><![CDATA[<p>I have two computers: one at work and one at home. Dropbox has been a fantastic way for me to effortlessly share files between the two.</p>
<p>I often setup aliases, and other bash configurations, in my <code>.bash_profile</code> to make life easier. Though, sometimes I&#8217;m not so careful; I&#8217;ll set something up on one computer, but forget to do it on the other.</p>
<p>Sharing configurations across two computers is easy thanks to Dropbox. Here&#8217;s how:</p>
<ol>
<li>Create a file in your Dropbox. I called mine <code>.bash_profile_shared</code>, and stored it in the root Dropbox folder, for consistency&#8217;s sake, but you can call whatever you like, and store it anywhere on Dropbox.</li>
<li>Edit your local <code>.bash_profile</code> file, and add this as the first line of your script: <code>source ~/Dropbox/.bash_profile_shared</code>, or whatever you named your shared Dropbox file.</li>
<li>Reload your Terminal, or <code>source ~/.bash_profile</code></li>
</ol>
<p>And, that&#8217;s it. Anytime you&#8217;d like to share a config, just add it the <code>.bash_profile_shared</code> file in Dropbox (and wait for it to sync).</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/qCpVV7nXqSE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/sharing-aliases-and-other-bash-configurations-using-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sister Rosetta Tharpe</title>
		<link>http://srobbin.com/blog/sister-rosetta-tharpe/</link>
		<comments>http://srobbin.com/blog/sister-rosetta-tharpe/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 15:33:06 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=899</guid>
		<description><![CDATA[Last week, at a visit to the Stax Museum of American Soul Music, I was turned onto the music Sister Rosetta Tharpe, a gospel singer from the 1930-40s, and a damn fine guitar player. Blew my mind. Note: She really starts cookin&#8217; around 1:20. Enjoy.]]></description>
			<content:encoded><![CDATA[<p>Last week, at a visit to the <a href="http://www.soulsvilleusa.com/">Stax Museum of American Soul Music</a>, I was turned onto the music <a href="http://en.wikipedia.org/wiki/Sister_Rosetta_Tharpe">Sister Rosetta Tharpe</a>, a gospel singer from the 1930-40s, and a damn fine guitar player. Blew my mind.</p>
<p>Note: She really starts cookin&#8217; around 1:20.</p>
<p>Enjoy.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" 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/JeaBNAXfHfQ?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/JeaBNAXfHfQ?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/cgkxqNl4wKA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/sister-rosetta-tharpe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It Gets Better</title>
		<link>http://srobbin.com/blog/it-gets-better/</link>
		<comments>http://srobbin.com/blog/it-gets-better/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 16:42:26 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=892</guid>
		<description><![CDATA[Without a doubt, the most courageous speech I&#8217;ve ever heard.]]></description>
			<content:encoded><![CDATA[<p class="sr">Without a doubt, the most courageous speech I&#8217;ve ever heard.</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/ax96cghOnY4?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/ax96cghOnY4?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/SbbBEdtPPRk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/it-gets-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progressively Unenhanced</title>
		<link>http://srobbin.com/blog/progressively-unenhanced/</link>
		<comments>http://srobbin.com/blog/progressively-unenhanced/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 22:08:57 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[progressive enhancement]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=881</guid>
		<description><![CDATA[UPDATE: I jumped the gun. This is just a preview of the new Twitter; the non-JS bits will be added in soon. &#8230; I&#8217;m surprised that the new Twitter web client wasn&#8217;t developed with progressive enhancement in mind. Here&#8217;s what it looks like with JavaScript turned off: Compared to the old site: I wonder how [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE: I jumped the gun. This is just a </strong><a href="http://twitter.com/stop/status/25822733585"><strong>preview</strong></a><strong> of the new Twitter; the non-JS bits will be </strong><a href="http://twitter.com/k/status/25823052939"><strong>added in soon</strong></a><strong>.</strong></p>
<p><strong>&#8230;</strong></p>
<p>I&#8217;m surprised that the new Twitter web client wasn&#8217;t developed with <a href="http://www.alistapart.com/articles/understandingprogressiveenhancement/">progressive enhancement</a> in mind. Here&#8217;s what it looks like with JavaScript turned off:</p>
<p><img class="alignnone" title="Twitter with JavaScript turned off" src="/images/twitter_no_js.jpg" alt="" width="440" height="240" /></p>
<p>Compared to the old site:</p>
<p><img class="alignnone" title="Old Twitter with JavaScript turned off" src="/images/twitter_old_no_js.jpg" alt="" width="440" height="240" /></p>
<p>I wonder how assistive devices, such as screen readers, handle the new situation?</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/vr8vM3iIeCA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/progressively-unenhanced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
	</channel>
</rss>

