<?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>Wed, 27 Jan 2010 22:28:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>Concept: iPad Split Keyboard</title>
		<link>http://srobbin.com/blog/concept-ipad-split-keyboard/</link>
		<comments>http://srobbin.com/blog/concept-ipad-split-keyboard/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:11:10 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=568</guid>
		<description><![CDATA[
Aesthetics aside&#8230;
It seems like the iPad&#8217;s keyboard, in landscape mode, leaves you no choice but to hold the device in one hand and hunt-n-peck with the other. What if the keyboard was split into two, and placed in the lower-right and left corners? Then, you could hold it with both hands, and type a la [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4065/4309481995_5bc3276d61_o.png" alt="Concept: iPad Split Keyboard" /></p>
<p>Aesthetics aside&#8230;</p>
<p>It seems like the iPad&#8217;s keyboard, in landscape mode, leaves you no choice but to hold the device in one hand and hunt-n-peck with the other. What if the keyboard was split into two, and placed in the lower-right and left corners? Then, you could hold it with both hands, and type a la the iPhone.</p>
<p>It&#8217;d be a sacrifice to the key size, for sure, but it might be more comfortable and functional.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/QXtLQ6MIMx0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/concept-ipad-split-keyboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy Full Screen Background Images with jQuery</title>
		<link>http://srobbin.com/blog/easy-full-screen-background-images-with-jquery/</link>
		<comments>http://srobbin.com/blog/easy-full-screen-background-images-with-jquery/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:39:35 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=527</guid>
		<description><![CDATA[&#8220;There are many like it, but this one is mine.&#8221;
A recent Weightshift project, Central, brought about a few development challenges, one of which was background imagery. Naz had designed the page to include photography set behind the content. This raised questions:

How would we deal with the additional weight of the images (~150–250K) without dragging down [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;There are many like it, but this one is mine.&#8221;</p>
<p>A recent <a href="http://weightshift.com">Weightshift</a> project, Central, brought about a few development challenges, one of which was background imagery. Naz had designed the page to include <a href="http://www.centralstory.com">photography set behind the content</a>. This raised questions:</p>
<ul>
<li>How would we deal with the additional weight of the images (~150–250K) without dragging down the page’s load time?</li>
<li>Everyone’s browser window will be a different size. How do you determine what is the best/largest size to make the image, so that it fills the entire window?</li>
<li>How do you account for images that are proportioned differently?</li>
</ul>
<p>I did some research and found a few good solutions, though each had its limitations.</p>
<p><a href="http://css-tricks.com/perfect-full-page-background-image/">CSS-based solutions</a> were straightforward, but didn&#8217;t address the requirement of triggering the download only after the page was ready. <a href="http://www.ajaxblender.com/bgstretcher-jquery-stretch-background-plugin.html">Javascript</a> <a href="http://growmedia.ca/blog/2009/10/14/resizable-full-browser-background-image-with-jquery-preserving-aspect-ratio/">solutions</a> addressed the page load requirement, but were often more complex than we needed and required the user to have prior knowledge of the image size (something that we couldn&#8217;t necessarily predict). The final solution was not novel, it was an amalgam of both solutions, implemented in Javascript.</p>
<p>Backstretch is a simple plugin recreated from the code used on Central, derived from the ideas presented in existing CSS and JS solutions. It is meant to be used by those who want a lightweight, minimalist implementation of dynamically-resized background images that can be executed in one line of Javascript, with nothing more than a link to an image.</p>
<p><a href="http://srobbin.com/jquery-plugins/jquery-backstretch/"><br />
Download Backstretch</a></p>
<p><script type="text/javascript" src="/js/jquery.backstretch.min.js"></script><br />
<script type="text/javascript">
  if( $("#content.single").length == 1)
      $.backstretch("http://farm3.static.flickr.com/2725/4290239913_59c55d6896_o.jpg");
</script></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/x1vtLIQWxgU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/easy-full-screen-background-images-with-jquery/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>The Tenant Governor of the Little Scott, Legoland</title>
		<link>http://srobbin.com/blog/the-tenant-governor-of-the-little-scott-legoland/</link>
		<comments>http://srobbin.com/blog/the-tenant-governor-of-the-little-scott-legoland/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 02:53:56 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=509</guid>
		<description><![CDATA[Google&#8217;s voicemail-to-text transcription service rarely gets it right. But, what it lacks in accuracy is made up for in laughs.
For instance, a call from my parents which starts as &#8220;Hi, Scott, it&#8217;s Mom&#8221; is transcribed to &#8220;My god, it&#8217;s Mom!&#8221; Or, &#8220;Hi, Scotty, it&#8217;s your Dad,&#8221; becomes &#8220;Hi, scaredy.&#8221;
I shudder to mention the call I [...]]]></description>
			<content:encoded><![CDATA[<p>Google&#8217;s voicemail-to-text transcription service rarely gets it right. But, what it lacks in accuracy is made up for in laughs.</p>
<p>For instance, a call from my parents which starts as &#8220;Hi, Scott, it&#8217;s Mom&#8221; is transcribed to &#8220;My god, it&#8217;s Mom!&#8221; Or, &#8220;Hi, Scotty, it&#8217;s your Dad,&#8221; becomes &#8220;Hi, scaredy.&#8221;</p>
<p>I shudder to mention the call I got from &#8220;Dr. Balls office.&#8221;</p>
<p>For those who don&#8217;t have Google Voice, I thought I&#8217;d share. Here&#8217;s one I received tonight:</p>
<blockquote><p>Hey the election for the tenant Governor of the little Scott, Legoland, stands out from the crowd other candidates talk about the economy, but Democrats Godly code is doing something about it right now. Scott is holding job fair is to help Illinois. Please get back to work. Scott is not a career politician use of small businesses and the father of Rod must resign a citizens group just want to remove Robert boy from office. Both Democrats. Scott Lee Cohen for. Lieutenant governor. I&#8217;m Scott Lee calling tonight group it&#8217;s not. </p></blockquote>
<p><object type="application/x-shockwave-flash" data="https://clients4.google.com/voice/embed/embedPlayer" width="100%" height="64"><param name="movie" value="https://clients4.google.com/voice/embed/embedPlayer" /><param name="wmode" value="transparent" /><param name="FlashVars" value="u=13640750384784585489&#038;k=AHwOX_Aqu3OwuOSrfwx1hdfMoSN6QCsuEgDjHYGKi0hB71m56rIbojUSj3ua-8S0EYkjkrpHtbGr0B1sklf8i10UC-eaSQ6ov2KcL4Wdf8xbpwC8lfntf108gJne89qDp-OySL00MwP5ii6uBSUJ6zc428mSe6Jvb94Q__5BSF-8eKxnpAyqsR4&#038;baseurl=https://clients4.google.com/voice&#038;autoPlay=false" /></object></p>
<p>If this sort of thing tickles your fancy, you might want to <a href="http://www.higladys.com/">check out these blogs</a> devoted to <a href="http://gvtranscripts.tumblr.com/">GV transcription snafus</a>.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/IpR6Z7t9jGY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/the-tenant-governor-of-the-little-scott-legoland/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Netflix Watch Instantly for the Wii?</title>
		<link>http://srobbin.com/blog/netflix-watch-instantly-for-the-wii/</link>
		<comments>http://srobbin.com/blog/netflix-watch-instantly-for-the-wii/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 22:08:14 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=501</guid>
		<description><![CDATA[Just took part in a survey for Netflix where I was asked about my interest in Watch Instantly on a Wii. Interesting that a disc might be required&#8230;
Imagine that Netflix offers its subscribers the ability to instantly watch movies &#038; TV episodes on their TV via their Nintendo Wii. You can choose from a library [...]]]></description>
			<content:encoded><![CDATA[<p>Just took part in a survey for Netflix where I was asked about my interest in Watch Instantly on a Wii. Interesting that a disc might be required&#8230;</p>
<blockquote><p>Imagine that Netflix offers its subscribers the ability to instantly watch movies &#038; TV episodes on their TV via their Nintendo Wii. You can choose from a library of some new releases, lots of classics and TV episodes. There are no advertisements or trailers, and movies start in as little as 30 seconds. You can fast-forward, rewind, and pause or watch again. The movies &#038; TV episodes you instantly watch are included in your Netflix membership for no additional fee.</p>
<p>Some things to keep in mind:</p>
<ul>
<li>You will need a Netflix subscription</li>
<li>You will need a Netflix Instant Streaming Disc (available for free). This disc must be put into your Nintendo Wii whenever you want to instantly watch movies and TV episodes from Netflix over the Internet</li>
<li>Your Nintendo Wii must be connected to the Internet</li>
</ul>
<p>If this functionality were available, how likely would you or someone in your household be to get a Netflix Instant Streaming Disc for the Nintendo Wii (available for free) in order to instantly watch movies &#038; TV episodes on your TV?</p></blockquote>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/br8TVKzzW90" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/netflix-watch-instantly-for-the-wii/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Twitter Statpack: Who’s Following Who</title>
		<link>http://srobbin.com/blog/twitter-statpack-whos-following-who/</link>
		<comments>http://srobbin.com/blog/twitter-statpack-whos-following-who/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 20:08:03 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=485</guid>
		<description><![CDATA[
Sasparilla Muckinfuss is now following your tweets on Twitter. Huh? Who&#8217;s that?
It&#8217;s not an uncommon scenario: someone follows you on Twitter, and you&#8217;re not sure how that happened. Of course, there&#8217;s a good possibility that they&#8217;re spam, but not always. Often it&#8217;s hard to tell. You can see that they follow 101 people and are [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2523/4113139330_66cd39a0b6_o.jpg" width="555" height="400" alt="Twitter Statpack Venn" style="border: 1px solid #CCC" /></p>
<p>Sasparilla Muckinfuss is now following your tweets on Twitter. Huh? Who&#8217;s that?</p>
<p>It&#8217;s not an uncommon scenario: someone follows you on Twitter, and you&#8217;re not sure how that happened. Of course, there&#8217;s a good possibility that they&#8217;re spam, but not always. Often it&#8217;s hard to tell. You can see that they follow 101 people and are followed by 523, but who are these people, and how are they related to you?</p>
<p>Introducing <a href="/jetpack/twitter-statpack/" title="Twitter Statpack">Twitter Statpack</a>, a Jetpack extension for Firefox. Statpack adds a few more statistic to the Twitter profile page, helping you understand who someone is, and how they relate to you.</p>
<p><img src="http://farm3.static.flickr.com/2676/4113164550_f856de30d2_o.jpg" width="555" height="351" alt="Twitter Statpack Screenshot #3" style="border: 1px solid #CCC" /></p>
<p></p>
<p>
Ready to give it a try? <a href="/jetpack/twitter-statpack/" title="Twitter Statpack">Install Twitter Statpack today.</a></p>
<p><em>Note: You&#8217;ll need to have Firefox with <a href="http://jetpack.mozillalabs.com/" title="Mozilla Labs Jetpack">Mozilla Labs Jetpack</a> installed in order to use Statpack.</em></p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/l3RwkkEKRPw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/twitter-statpack-whos-following-who/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye AT&amp;T, I’m out</title>
		<link>http://srobbin.com/blog/goodbye-att-im-out/</link>
		<comments>http://srobbin.com/blog/goodbye-att-im-out/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:21:42 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Chicago]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=374</guid>
		<description><![CDATA[I am no longer an AT&#038;T customer. My iPhone is now useful.

I consider myself lucky: I was let out of my contract after a several-month long dispute over AT&#038;T&#8217;s quality of service (or lack thereof). Look above; that picture shows what I saw every day: zero to one bars of service within a 1-mile radius [...]]]></description>
			<content:encoded><![CDATA[<p>I am no longer an AT&#038;T customer. My iPhone is now useful.</p>
<p><img src="http://farm4.static.flickr.com/3538/3995823443_a1fa3297a0_o.jpg" alt="iPhone receiption on AT&#038;T vs. T-mobile" /></p>
<p>I consider myself lucky: I was let out of my contract after a several-month long dispute over AT&#038;T&#8217;s quality of service (or lack thereof). Look above; that picture shows what I saw every day: zero to one bars of service within a 1-mile radius of my office. Anyone who&#8217;s been on the phone with me me has earned the purple-heart-of-patience award for tolerating my dropped calls (sometimes as many as 2-3 times per chat). And this phone is my <em>only</em> phone, the one I depend on to run my business.</p>
<p>I expect I&#8217;m not the only one with this problem. I&#8217;ve spoken with you too; your reception sucks.</p>
<h2>How did I do it?</h2>
<p>I don&#8217;t mean for this to be a how-to for those who wish to sneak out of their contract. Mine was a legitimate problem of poor service. If yours is too, here&#8217;s what you can do:</p>
<ul>
<li>Call AT&#038;T (1-800-331-0500 or 611 from your wireless phone).</li>
<li>Ask them to <strong>open a support ticket</strong>. It&#8217;s important that you start documenting your problem.</li>
<li>Remind them that they have the data to confirm this issue: call start/end times and dropped call logs. (<a href="#comment-687">Updated: Thanks, Paul</a>)</li>
<li>Wait at least a month. Let them try and resolve the problem&mdash;it&#8217;s only fair.</li>
<li>If they can&#8217;t resolve your problem, demand compensation or to be released from your contract.</li>
</ul>
<p>Seems like common sense, eh? It is.</p>
<p>An open support ticket is the key; it&#8217;s your documentation that there&#8217;s a problem, and proof that it hasn&#8217;t been resolved in a sufficient period of time.</p>
<p>Remember: it&#8217;s reasonable to expect that your service works; reasonable to ask someone to repair it if broken; and reasonable to leave if it can&#8217;t be fixed. </p>
<p>Good luck.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/ZIk1ERr2xM8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/goodbye-att-im-out/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Responses to a Informal Survey on Scotch Whisky</title>
		<link>http://srobbin.com/blog/responses-to-a-informal-survey-on-scotch-whisky/</link>
		<comments>http://srobbin.com/blog/responses-to-a-informal-survey-on-scotch-whisky/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 17:13:14 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=285</guid>
		<description><![CDATA[I was looking to buy a new bottle of Scotch whisky and posed the question, &#8220;What&#8217;s your favorite?&#8221; Here are the answers that everyone submitted. Hope you find a new, enjoyable drink. And thanks for your help.







Distillery
Region
Type
Age (yr.)




* Honorable mention for 12-year, Redbreast Irish whiskey, which does not get to stand with its Scottish brethren, [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking to buy a new bottle of Scotch whisky and <a href="http://twitter.com/srobbin/status/4454249289">posed the question</a>, &#8220;What&#8217;s your favorite?&#8221; Here are the answers that everyone submitted. Hope you find a new, enjoyable drink. And thanks for your help.</p>
<table id="scotch">
<col id="scotch-distillery">
<col id="scotch-region">
<col id="scotch-type">
<col id="scotch-age">
<thead>
<tr>
<th>Distillery</th>
<th>Region</th>
<th>Type</th>
<th>Age (yr.)</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">* Honorable mention for 12-year, Redbreast Irish whiskey, which does not get to stand with its Scottish brethren, though is recommended as a good alternative.</td>
</tr>
</tfoot>
<tr>
<td><a href="http://www.laphroaig.com/" title="Laphroaig Scotch whisky website">Laphroaig</a></td>
<td>Islay</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://en.wikipedia.org/wiki/Oban_Distillery" title="Oban Scotch whisky on Wikipedia">Oban</a></td>
<td>Highland</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><a href="http://www.themacallan.com/" title="The Macallan Scotch whisky website">The Macallan</a></td>
<td>Speyside</td>
<td>Single malt</td>
<td>12/15</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://www.theglenrothes.com/uk/" title="The Glenrothes Scotch whisky website">The Glenrothes</a></td>
<td>Speyside</td>
<td>Single malt</td>
<td>12</td>
</tr>
<tr>
<td><a href="http://www.compassboxwhisky.com/" title="Compass Box Scotch whisky website">Compass Box</a></td>
<td>Highland</td>
<td>Blended malt/grain</td>
<td>&nbsp;</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://www.benromach.com/" title="Benromach Scotch whiskey website">Benromach</a></td>
<td>Speyside</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><a href="http://www.bruichladdich.com/" title="Bruichladdich Scotch whiskey website">Bruichladdich</a></td>
<td>Islay</td>
<td>Single malt</td>
<td>15</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://en.wikipedia.org/wiki/Rosebank_Distillery" title="Rosebank Scotch whiskey on Wikipedia">Rosebank</a></td>
<td>Lowland</td>
<td>Single malt</td>
<td>15</td>
</tr>
<tr>
<td><a href="http://www.bowmore.co.uk/" title="Bowmore Scotch whiskey website">Bowmore</a></td>
<td>Islay</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://en.wikipedia.org/wiki/Glenkinchie" title="Glenkinichie Scotch whiskey on Wikipedia">Glenkinichie</a></td>
<td>Lowland</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><a href="http://www.thebalvenie.com/" title="The Balvenie Scotch whiskey website">The Balvenie</a></td>
<td>Speyside</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://en.wikipedia.org/wiki/Lagavulin_Single_Malt" title="Lagavulin Scotch whiskey on Wikipedia">Lagavulin</a></td>
<td>Islay</td>
<td>Single malt</td>
<td>16</td>
</tr>
<tr>
<td><a href="http://www.glengoyne.com/" title="Glengoyne Scotch whiskey website">Glengoyne</a></td>
<td>Highland</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://www.theglenlivet.com/" title="The Glenlivet Scotch whiskey website">The Glenlivet</a></td>
<td>Speyside</td>
<td>Single malt</td>
<td>18</td>
</tr>
<tr>
<td><a href="http://www.thedalmore.com/" title="The Dalmore Scotch whiskey website">The Dalmore</a></td>
<td>Highland</td>
<td>Single malt</td>
<td>12</td>
</tr>
<tr class="scotch-odd">
<td><a href="http://www.isleofjura.com/" title="Isle of Jura Scotch whiskey website">Isle of Jura</a></td>
<td>Highland</td>
<td>Single malt</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><a href="http://www.scapamalt.com/" title="Scapa Scotch whiskey website">Scapa</a></td>
<td>Highland</td>
<td>Single malt</td>
<td>12/14</td>
</tr>
</table>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/cI7Q3k9exbc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/responses-to-a-informal-survey-on-scotch-whisky/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>jQuery PageSlide v1.1 Released</title>
		<link>http://srobbin.com/blog/jquery-pageslide-v11-released/</link>
		<comments>http://srobbin.com/blog/jquery-pageslide-v11-released/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 17:16:36 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=280</guid>
		<description><![CDATA[A huge thank you to Derek Perez, who has taken over development of the jQuery PageSlide plug-in. He&#8217;s done a major overhaul and brought it up to version 1.1 with the following new features:

Choose slide direction (left or right)
Custom width slides
Modal slides
unobtrusive
Mutiple slide definitions on the same page
Fully supported with IE7+, FireFox 2+, Safari 2+
Minified [...]]]></description>
			<content:encoded><![CDATA[<p>A huge thank you to <a title="Derek Perez" href="http://derekperez.com/blog/">Derek Perez</a>, who has taken over development of the jQuery PageSlide plug-in. He&#8217;s done a major overhaul and brought it up to <a title="jQuery PageSlide v1.1" href="http://github.com/srobbin/jquery-pageslide/tree/release-1.1">version 1.1</a> with the following new features:</p>
<ul>
<li>Choose slide direction (left or right)</li>
<li>Custom width slides</li>
<li>Modal slides</li>
<li>unobtrusive</li>
<li>Mutiple slide definitions on the same page</li>
<li>Fully supported with IE7+, FireFox 2+, Safari 2+</li>
<li>Minified version included!</li>
</ul>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/ZhPk8wPR1Sg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/jquery-pageslide-v11-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GitHub Firewall</title>
		<link>http://srobbin.com/blog/github-firewall/</link>
		<comments>http://srobbin.com/blog/github-firewall/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 21:14:27 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=278</guid>
		<description><![CDATA[Very cool. GitHub now offering private installs of their software within a company&#8217;s own network. If I had a business that was large enough to warrant this type of setup, I&#8217;d be all over it. But, alas, my new projects are weenie small, so I&#8217;ll stick to the regular ol&#8217; GitHub product in the foreseeable [...]]]></description>
			<content:encoded><![CDATA[<p>Very cool. <a title="GitHub" href="http://github.com">GitHub</a> now offering private installs of their software within a company&#8217;s own network. If I had a business that was large enough to warrant this type of setup, I&#8217;d be all over it. But, alas, my new projects are weenie small, so I&#8217;ll stick to the regular ol&#8217; GitHub product in the foreseeable future.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/VJS4swSSqNw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/github-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyFinder: A Jetpack Widget</title>
		<link>http://srobbin.com/blog/tinyfinder-a-jetpack-widget/</link>
		<comments>http://srobbin.com/blog/tinyfinder-a-jetpack-widget/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 18:20:47 +0000</pubDate>
		<dc:creator>Scott Robbin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://srobbin.com/blog/?p=274</guid>
		<description><![CDATA[This weekend, I started to play around with Jetpack from Mozilla Labs. If you haven&#8217;t already heard of Jetpack, it&#8217;s a Labs experiment that looks at making the creation of web browser extensions easier. As someone who&#8217;s previously tried to make a Firefox extension, I can say wholeheartedly that this was a much, much, much [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend, I started to play around with <a title="Mozilla Labs' Jetpack" href="https://jetpack.mozillalabs.com/">Jetpack from Mozilla Labs</a>. If you haven&#8217;t already heard of Jetpack, it&#8217;s a Labs experiment that looks at making the creation of web browser extensions easier. As someone who&#8217;s previously tried to make a Firefox extension, I can say wholeheartedly that this was a much, much, much more pleasant experience.</p>
<p>The widget that I created–<a title="TinyFinder for Mozilla Labs' Jetpack" href="http://srobbin.com/projects/tinyfinder/">TinyFinder</a>–looks for rev=canonical links in a webpage, and displays them in the statusbar of the browser window. Rev=canonical links are meta tags that are used when a website wants to suggest a preferred tiny url to use. For example, the Flickr page <a href="(http://www.flickr.com/photos/srobbin/3533142101/">(http://www.flickr.com/photos/srobbin/3533142101/</a>) can also be accessed by Flickr&#8217;s own tiny url (<a href="http://flic.kr/p/6odh48">http://flic.kr/p/6odh48</a>). Of course, you could always use one of many url shortening services, but Flickr&#8217;s custom URL suggests what you&#8217;ll see on the other side of the redirect: a photo/movie. Several services are starting to employ their own custom tiny urls:  Dopplr, Threadless, Songza, and many more.</p>
<p><img class="alignnone size-full wp-image-263" title="TinyFinder for Jetpack, Screenshot" src="http://srobbin.com/wp-content/uploads/2009/06/picture-1.png" alt="TinyFinder for Jetpack, Screenshot" width="412" height="105" /></p>
<p>If the web page you are looking at does not provide its own tiny, custom URL, you can always click on the statusbar widget; one will be created for you and automagically copied to your clipboard.</p>
<img src="http://feeds.feedburner.com/~r/srobbin/~4/M15TPJYj7NA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://srobbin.com/blog/tinyfinder-a-jetpack-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
