<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Scott Blomquist</title>
	
	<link>http://scott.blomqui.st</link>
	<description>My online identity sandbox</description>
	<lastBuildDate>Wed, 06 Jul 2011 05:13:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ScottBlomquist" /><feedburner:info uri="scottblomquist" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Awesome referer hack</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/26Uu_U4khec/</link>
		<comments>http://scott.blomqui.st/2011/07/awesome-referer-hack/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 05:13:44 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/?p=321</guid>
		<description><![CDATA[I was talking to Roy Leban the other day about how a particular domain registrar of his makes it check-box trivial to redirect from a naked domain (say example.com) to www.example.com, but doesn&#8217;t do anything whatsoever to redirect from example.com/someurl to www.example.com/someurl. I was teasing him about needing to get a real domain registrar, but [...]]]></description>
			<content:encoded><![CDATA[<p>I was talking to <a href="http://thisdev.com">Roy Leban</a> the other day about how a particular domain registrar of his makes it check-box trivial to redirect from a naked domain (say example.com) to www.example.com, but doesn&#8217;t do anything whatsoever to redirect from example.com/someurl to www.example.com/someurl. I was teasing him about needing to get a real domain registrar, but it turns out he has a really slick hack to manage the redirect on the www.example.com side (which happens to be hosted on Google App Engine) since <a href="http://code.google.com/appengine/kb/general.html#naked_domain">App Engine isn&#8217;t cool with naked domains</a>.</p>
<p>What he does is this:</p>
<ol>
<li>checks the box on his domain registrar to forward from example.com/* to www.example.com/</li>
<li>once the user&#8217;s web browser arrive at www.example.com, he checks the HTTP Referer<sup><a href="http://scott.blomqui.st/2011/07/awesome-referer-hack/#footnote_0_321" id="identifier_0_321" class="footnote-link footnote-identifier-link" title="Merriam-Webster says that should be spelled &amp;#8220;Referrer&amp;#8221;, but RFC 2068 codified the misspelling &amp;#8220;Referer&amp;#8221; as the actual header name way too long ago to fix.">1</a></sup> header to see if the user came from example.com/something, and, if so,</li>
<li>redirects the user one more time to www.example.com/something based on the Referer (in this case example.com/something).</li>
</ol>
<p>I&#8217;m not sure that solution would have ever occurred to me, but I love it for the hack value.</p>
<ol class="footnotes"><li id="footnote_0_321" class="footnote">Merriam-Webster says that should be spelled &#8220;Referrer&#8221;, but <a href="http://tools.ietf.org/html/rfc2068">RFC 2068</a> codified the misspelling &#8220;Referer&#8221; as the actual header name way too long ago to fix.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2011/07/awesome-referer-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2011/07/awesome-referer-hack/</feedburner:origLink></item>
		<item>
		<title>A new kind of Browser compatibility pain?</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/lM0dU5Zp9z8/</link>
		<comments>http://scott.blomqui.st/2011/07/a-new-kind-of-browser-compatibility-pain/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 18:00:25 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/?p=317</guid>
		<description><![CDATA[It&#8217;s a pain in the butt to ship a web app that works in all of the relevant web browsers today. It seems that crafting stylesheets that works in all of them at once requires as much specialized knowledge today as writing a compiler did a decade ago. As the rate that browser vendors are [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a pain in the butt to ship a web app that works in all of the relevant web browsers today. It seems that crafting stylesheets that works in all of them at once requires as much specialized knowledge today as writing a compiler did a decade ago.</p>
<p>As the rate that browser vendors are shipping updates keeps getting <a href="http://blog.chromium.org/2010/07/release-early-release-often.html">faster</a> and <a href="http://www.pcworld.com/businesscenter/article/224787/new_firefox_schedule_will_bring_the_good_stuff_faster.html">faster</a>, it&#8217;s becoming almost impossible for web developers to keep up. Despite that most of the browsers with fast release schedules are well-behaved and make every effort to be as standards compliant as is practical, each micro-release provides a moving target that requires attention and ongoing effort for each developer to keep in his sights.</p>
<p>As a developer, I&#8217;ve certainly been in a situation where someone&#8217;s  platform changed out from under me, and it didn&#8217;t jump to the top of my  priority list to fix whichever of my features they broke. Not that my  customers care whether it was my fault or a platform vendor&#8217;s&#8211;I&#8217;m sure  they were frustrated at me, not at Facebook or Microsoft or Google or  Netflix or whoever just made the breaking change in question.</p>
<p>Even Google, who with their Chrome browser, set the bar for frequent, high-quality browser releases, is having trouble keeping up with Firefox&#8217;s Chrome-inspired rapid release process. I have two recent examples: 1) the <a href="http://www.google.com/toolbar/ff/index.html">Google Toolbar</a> is not yet compatible with Firefox 5, and 2) <a href="http://www.google.com/support/forum/p/Google+Docs/thread?tid=3541467998dd732f&amp;hl=en&amp;fid=3541467998dd732f0004a72bfddf4869">Google Docs lost drag and drop support post Firefox 3.6</a>, and they <em>still</em> haven&#8217;t fixed whatever broke.</p>
<p>I&#8217;m willing to assume good things about Google&#8217;s intentions here, and figure that it just isn&#8217;t a high priority for them to keep up with the Firefox release treadmill. <em>Surely</em> they&#8217;re not being proprietary buttheads and being intentionally incompatible in subtle ways with their competitors&#8217; platforms. After all, that would be <em>evil</em>, right?</p>
<p>As browsers begin to ship faster than ever before in an effort to keep pace with the capabilities provided by iOS and other native platforms, we should, at least in the short run, expect to see much more churn and many more breaking changes (some accidental, some intentional). It&#8217;s unfortunate that the churn will be worst in exactly the features that are most interesting and innovative&#8211;the features most needed to bring web experiences up to par with their tightly integrated, and much more mature desktop application competitors. (The aforementioned drag and drop into Google Docs is a fantastic example of this.)</p>
<p>I don&#8217;t think there&#8217;s any perfect short term solution here&#8211;I think that we&#8217;ll have to continue to trade off which side of the &#8220;seamlessly integrated&#8221; vs. &#8220;web-style application delivery&#8221; chasm our projects will be built on. Meanwhile, we know that the browser vendors are (mostly) fighting to make web applications feel as native and integrated as possible, while the native platform vendors continue to snicker to themselves at our browser compatibility pains. Maybe someday we can have the best of both worlds.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2011/07/a-new-kind-of-browser-compatibility-pain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2011/07/a-new-kind-of-browser-compatibility-pain/</feedburner:origLink></item>
		<item>
		<title>Stale blog is stale</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/9nyB5Go_iug/</link>
		<comments>http://scott.blomqui.st/2011/06/stale-blog-is-stale/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 17:10:10 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/?p=314</guid>
		<description><![CDATA[Hey, everybody. Been too busy between new kid, move to California, lots of fun work with Cooliris, move back to Seattle, and getting our house cleaned up to make time to get any blogging done. Well, I&#8217;m motivated to change that. I&#8217;ll have something interesting up by July 1. If not, please hassle me.]]></description>
			<content:encoded><![CDATA[<p>Hey, everybody. Been too busy between new kid, move to California, lots of fun work with Cooliris, move back to Seattle, and getting our house cleaned up to make time to get any blogging done. Well, I&#8217;m motivated to change that. I&#8217;ll have something interesting up by July 1. If not, please hassle me.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2011/06/stale-blog-is-stale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2011/06/stale-blog-is-stale/</feedburner:origLink></item>
		<item>
		<title>A week and a half later</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/zGNWkBID_7o/</link>
		<comments>http://scott.blomqui.st/2010/01/a-week-and-a-half-later/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 00:26:00 +0000</pubDate>
		<dc:creator>Jennifer Blomquist</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[Niko]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/2010/01/a-week-and-a-half-later/</guid>
		<description><![CDATA[They say adjusting to life with a new baby is hard and mainly due to lack of sleep.&#160; Well, the lack of sleep bit is definitely right, but thanks to many helping hands the transition is going a little bit smoother.&#160; We actually have clean dishes, clean clothes, home cooked food, and can keep our [...]]]></description>
			<content:encoded><![CDATA[<p>They say adjusting to life with a new baby is hard and mainly due to lack of sleep.&#160; Well, the lack of sleep bit is definitely right, but thanks to many helping hands the transition is going a little bit smoother.&#160; We actually have clean dishes, clean clothes, home cooked food, and can keep our eyes open for most of the day. </p>
<p>Nicholas has been doing great if getting up a bit more frequently than Mommy or Daddy are used to in the middle of the night.&#160; Before he was born, we expected him to be a big baby since we were both over 9 lbs at birth, so we were surprised with his long and lean frame.&#160; In fact, his Grandma T even got him a preemie outfit that he has worn a couple times.&#160; But over the course of the week, he got his first bath, lost his umbilical cord, and is starting to round out a bit.&#160; He has also christened Jennifer into the ranks of motherhood by managing to leak all kinds of bodily fluids onto her and her clothes during diaper changes and feedings. <img src='http://scott.blomqui.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#160; He is a pretty awesome kid and it will be fun for more of the family to meet him.</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:103054a1-98bf-4fdf-9b23-294b8ecc5090" class="wlWriterEditableSmartContent"><a style="border:0px" href="http://cid-b8a5d885937bfb88.skydrive.live.com/redir.aspx?page=browse&amp;resid=B8A5D885937BFB88!463&amp;ct=photos"><img style="border:0px" alt="View Niko - one week" src="http://scott.blomqui.st/wp-content/uploads/2010/01/InlineRepresentation9653143d37564e92aed02288190894681.jpg" /></a>
<div style="width:582px;text-align:right;" ><a href="http://cid-b8a5d885937bfb88.skydrive.live.com/redir.aspx?page=browse&amp;resid=B8A5D885937BFB88!463&amp;ct=photos">View Full Album</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2010/01/a-week-and-a-half-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2010/01/a-week-and-a-half-later/</feedburner:origLink></item>
		<item>
		<title>We’re headed home</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/XySmigMQaro/</link>
		<comments>http://scott.blomqui.st/2009/12/were-headed-home/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 22:24:06 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[hospital]]></category>
		<category><![CDATA[Niko]]></category>
		<category><![CDATA[outfit]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/2009/12/were-headed-home/</guid>
		<description><![CDATA[Everything’s looking good for both Jennifer and Nicholas, and we’re convinced we’ll get twice as much sleep at home as at the hospital (where doctors, nurses, foodservice folks, and even birth certificate clerks are waking us up even if Niko is not). So we’re headed out. Here are the two who are doing all the [...]]]></description>
			<content:encoded><![CDATA[<p>Everything’s looking good for both Jennifer and Nicholas, and we’re convinced we’ll get twice as much sleep at home as at the hospital (where doctors, nurses, foodservice folks, and even birth certificate clerks are waking us up even if Niko is not).</p>
<p>So we’re headed out. Here are the two who are doing all the work dressed and ready to go:</p>
<p><a href="http://scott.blomqui.st/wp-content/uploads/2009/12/IMGP6033.jpg"><img style="display: inline; border: 0px;" title="IMGP6033" src="http://scott.blomqui.st/wp-content/uploads/2009/12/IMGP6033_thumb.jpg" border="0" alt="IMGP6033" width="244" height="184" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2009/12/were-headed-home/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2009/12/were-headed-home/</feedburner:origLink></item>
		<item>
		<title>Happy zeroth birthday!</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/OsJP70gLUxI/</link>
		<comments>http://scott.blomqui.st/2009/12/happy-zeroth-birthday/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 21:01:52 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[birth]]></category>
		<category><![CDATA[life events]]></category>
		<category><![CDATA[Niko]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/2009/12/happy-zeroth-birthday/</guid>
		<description><![CDATA[View Full Album Around 6:30 last night, Jennifer was experiencing what seemed to be increasingly serious contractions and suggested that we begin to make our way to the hospital. We wrapped up dinner (turned out she didn’t have much of an appetite by the time food was ready), and then headed up the hill to [...]]]></description>
			<content:encoded><![CDATA[<div id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:86a83afb-191b-4aa0-86b4-19ea51a31d1a" class="wlWriterEditableSmartContent" style="margin: 0px; display: inline; float: none; padding: 0px;"><a style="border: 0px;" href="http://cid-5a357da76dc11d2d.skydrive.live.com/redir.aspx?page=browse&amp;resid=5A357DA76DC11D2D!705&amp;ct=photos"><img style="border: 0px;" src="http://scott.blomqui.st/wp-content/uploads/2009/12/InlineRepresentationd2e48b0638d14daab17a0cba4ed27e5d.jpg" alt="View Nicholas Steven Blomquist" /></a></p>
<div style="width: 400px; text-align: right;"><a href="http://cid-5a357da76dc11d2d.skydrive.live.com/redir.aspx?page=browse&amp;resid=5A357DA76DC11D2D!705&amp;ct=photos">View Full Album</a></div>
</div>
<p>Around 6:30 last night, Jennifer was experiencing what seemed to be increasingly serious contractions and suggested that we begin to make our way to the hospital. We wrapped up dinner (turned out she didn’t have much of an appetite by the time food was ready), and then headed up the hill to <a href="http://www.ohsu.edu">OHSU</a> around 8:30pm. By 10:30pm, in between contraction-induced grimaces, a resident physician under the supervision of Jennifer’s regular doctor was convinced that Jennifer was definitely in active labor and admitted her to the hospital.</p>
<p>We transferred to a delivery room, moved quickly through full dilation with a well-timed epidural right around where Jennifer started to get belligerent from the pain, and by 2:30am were in the final stages of delivery. At 5:17am, Nicholas Steven Blomquist was born, weighing exactly 7lbs and measuring 21 inches in length.</p>
<p>Having pulled the first non-puzzle-related all-nighter in recent memory, Jennifer and I are absolutely exhausted, but everyone is in good spirits and doing well.</p>
<p>We have been very impressed with the entire OHSU staff, and would like to thank all the nurses, residents, and doctors that have made this experience good so far.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2009/12/happy-zeroth-birthday/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2009/12/happy-zeroth-birthday/</feedburner:origLink></item>
		<item>
		<title>Favorite t-shirt series: Windows Genuine Advantage</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/MVxPrmm1soU/</link>
		<comments>http://scott.blomqui.st/2009/08/favorite-t-shirt-series-windows-genuine-advantage/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 15:00:00 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Favorite t-shirts]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[t-shirt]]></category>
		<category><![CDATA[Windows Genuine]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/2009/08/favorite-t-shirt-series-windows-genuine-advantage/</guid>
		<description><![CDATA[As it often goes, I managed to get really busy with things other than my blog, and I began to neglect my favorite t-shirt series. The good news is that I had my wife help me take a bunch of t-shirt photos this morning, so I’ll be able to queue up enough to hold us [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://scott.blomqui.st/wp-content/uploads/2009/08/200908031.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="20090803-1" src="http://scott.blomqui.st/wp-content/uploads/2009/08/200908031_thumb.jpg" border="0" alt="20090803-1" width="188" height="240" align="right" /></a>As it often goes, I managed to get really busy with things other than my blog, and I began to neglect my favorite t-shirt series. The good news is that I had my wife help me take a bunch of t-shirt photos this morning, so I’ll be able to queue up enough to hold us over for a few months.</p>
<p>Today’s shirt is another Microsoft shirt. It’s actually one of my most-worn t-shirts of all time. For some reason I just like wearing it. I think it’s because it goes over well both with my colleagues from my days at Microsoft (“more free swag—wonder where he got it”) as well as with the crowds that don’t tend to like Microsoft so much (“his intent <em>must</em> be irony, right?”). For example, it went over quite well as a humor piece the day I wore it to Open Source Bridge a couple months ago.</p>
<p>The story of how I got it is even a little entertaining. When the <a href="http://www.microsoft.com/genuine/">Windows Genuine Advantage</a> campaign launched back in the Windows XP days, their marketing team asked for stories on how Windows Genuine Advantage helped me in exchange for a t-shirt. I knew I wanted the t-shirt, but I couldn’t think of any times it actually <em>helped</em> with anything, but despite that I dusted off my creative writing pencil and scribbled up a few sentences. It arrived in inter-office mail a week or two later, and I&#8217;ve worn it proudly ever since.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2009/08/favorite-t-shirt-series-windows-genuine-advantage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2009/08/favorite-t-shirt-series-windows-genuine-advantage/</feedburner:origLink></item>
		<item>
		<title>Favorite t-shirt series: “the blibbet”</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/yt7iVbh6Ipo/</link>
		<comments>http://scott.blomqui.st/2009/04/favorite-t-shirt-series-the-blibbet/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:06:20 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scott.blomqui.st/2009/04/favorite-t-shirt-series-the-blibbet/</guid>
		<description><![CDATA[Microsoft is a really old company as tech companies go, and they’re on the third revision of their logo. Much earlier, the logo had a crazy capital-O that was, for some reason, called “the blibbet”. I scored a $7 clearance t-shirt that has the old Microsoft logo on it, complete with blibbet. The 1s and [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft is a really old company as tech companies go, and they’re on the <a href="http://www.logoblog.org/microsoft-logo.php">third revision of their logo</a>. Much earlier, the logo had a crazy capital-O that was, for some reason, called “<a href="http://blogs.msdn.com/larryosterman/archive/2005/07/14/438777.aspx">the blibbet</a>”. I scored a $7 clearance t-shirt that has the old Microsoft logo on it, complete with blibbet. The 1s and 0s that comprise the majority of the shirt are both confusing and boring, but at least I now own a wearable blibbet.</p>
<p><a href="http://scott.blomqui.st/wp-content/uploads/2009/04/imgp5328.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMGP5328" border="0" alt="IMGP5328" src="http://scott.blomqui.st/wp-content/uploads/2009/04/imgp5328-thumb.jpg" width="175" height="244" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2009/04/favorite-t-shirt-series-the-blibbet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2009/04/favorite-t-shirt-series-the-blibbet/</feedburner:origLink></item>
		<item>
		<title>Killer robot star-collecting puzzle-game!</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/DK_eWOuGbVE/</link>
		<comments>http://scott.blomqui.st/2009/03/killer-robot-star-collecting-puzzle-game/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 21:43:01 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Puzzles]]></category>

		<guid isPermaLink="false">http://www.puzzlehunters.com/2009/03/killer-robot-star-collecting-puzzle-game/</guid>
		<description><![CDATA[If you’re a fan of “transport puzzles” like Sokoban or Atomix, or possibly even some of the robot puzzles in Sierra’s classic Dr. Brain series, you might love one of my recent online discoveries: RoboZZle. (You may be prompted to install Silverlight in order to play, but it’s safe, easy, and well worth the download.) [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re a fan of “<a href="http://www.freebase.com/view/en/transport_puzzle">transport puzzles</a>” like <a href="http://www.joriswit.nl/sokoban/flash/">Sokoban</a> or <a href="http://www.youtube.com/watch?v=sH5T--ALuB0">Atomix</a>, or possibly even some of the robot puzzles in <a href="http://www.freebase.com/view/en/dr_brain">Sierra’s classic Dr. Brain series</a>, you might love one of my recent online discoveries: <a href="http://robozzle.com">RoboZZle</a>. (You may be prompted to install Silverlight in order to play, but it’s safe, easy, and well worth the download.)</p>
<p>Solving the puzzles is <em>sorta</em> like programming a computer, so those of you with a mathematical or computer science bent will be <em>more </em>likely to enjoy it, but the programming environment is so simple (only “go forward”, “turn right 90 degrees”, “turn left 90 degrees”, and “only do this if the robot’s on a ____ colored square”).</p>
<p>So check it out, and let me know if you find any particular favorite puzzles. I had fun with one called “<a href="http://robozzle.com/index.aspx?puzzle=75">Tetris</a>”, and I haven’t solved it yet, but I like the idea behind “<a href="http://robozzle.com/index.aspx?puzzle=66">Reflection</a>”. (Both of those two are by the <a href="http://www.genericerror.com/blog/CommentView,guid,931e1c9f-c236-43b3-a6c2-25792b41eebf.aspx">same author</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2009/03/killer-robot-star-collecting-puzzle-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2009/03/killer-robot-star-collecting-puzzle-game/</feedburner:origLink></item>
		<item>
		<title>An antidote to lock-in in the cloud?</title>
		<link>http://feedproxy.google.com/~r/ScottBlomquist/~3/ukxpB9-Y8vU/</link>
		<comments>http://scott.blomqui.st/2009/03/an-antidote-to-lock-in-in-the-cloud/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 20:30:09 +0000</pubDate>
		<dc:creator>Scott Blomquist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://apiguy.com/2009/03/18/an-antidote-to-lock-in-in-the-cloud/</guid>
		<description><![CDATA[I’ve mentioned before that one thing that moderates my natural inclination to go gaga over cloud-based hosting for web applications is that there is, so far, no clean way exists to switch providers. Both Google and Amazon[1] argue that there are theoretical ways to abandon them for a competitor today, but for most business decision [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve <a href="http://apiguy.com/2009/02/26/appengine-good-for-some-real-worktm-now/">mentioned before</a> that one thing that moderates my natural inclination to go gaga over cloud-based hosting for web applications is that there is, so far, no clean way exists to switch providers. Both Google and Amazon<a href="#footnote1">[1]</a> argue that there are <a href="http://www.tbray.org/ongoing/When/200x/2008/10/15/Zero-Cloud-Lockin">theoretical ways to abandon them</a> for a competitor today, but for most business decision makers theoretical doesn’t count when the alternative is tight vendor lock-in. </p>
<p><a href="http://scott.blomqui.st/wp-content/uploads/2009/03/c1-east-200x200.gif"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="C1_EAST_200x200" border="0" alt="C1_EAST_200x200" align="left" src="http://scott.blomqui.st/wp-content/uploads/2009/03/c1-east-200x200-thumb.gif" width="98" height="98" /></a> The cloud lock-in problem cannot be considered solved until there are multiple viable alternative cloud hosting providers that have essentially <a href="http://www.tbray.org/ongoing/When/200x/2009/03/16/Sun-Cloud#p-5">zero barrier to switching</a> amongst the set.</p>
<p>To that end, <a href="http://www.sun.com/aboutsun/pr/2009-03/sunflash.20090318.2.xml">Sun Microsystems announced their Open Cloud Platform</a> today at their <a href="http://developers.sun.com/events/communityone/2009/east/index.jsp">CommunityOne East developer event in New York</a>. (<strong>Best technical overview:</strong> <a href="http://kenai.com/projects/suncloudapis/pages/HelloCloud">the walk-through on their wiki</a>)</p>
<p>While this launch still only solves the problem in theory and not in practice, I give them reasonable odds that <a href="http://kenai.com/projects/suncloudapis">theirs will be the standard API</a> that gets broadly adopted first by making a <strong>credible</strong> (if for no other reason than <a href="http://www.straight.com/article-117322/tim-bray-father-of-xml-uncle-of-search-engines">Tim Bray</a>’s active <a href="http://kenai.com/people/139-Tim-Bray">involvement</a>) <strong>and public</strong> effort to create open standards around managing machines, networks, images, deployment, storage, clustering, backups, and all other common aspects of managing a cloud hosting environment.</p>
<p>Come on Amazon, Google, and Microsoft, you should get involved in some kind of cloud standardization effort, even if not this one!</p>
<p><strong>Footnotes</strong></p>
<p><a name="footnote1">[1]</a> The only comment I can find from Microsoft regarding Azure lock-in is that they appear to have, in the time since </a><a href="http://cc.msnscache.com/cache.aspx?q=azure+&quot;lock+in&quot;&amp;d=75671630460214&amp;mkt=en-US&amp;setlang=en-US&amp;w=bad10ee8,91e26777">yesterday’s Live Search cache snapshot</a>, removed “or lock-in” from the “Low Risk… without worrying about operational constraints or lock-in” on the official <a href="http://www.microsoft.com/azure/windowsazure.mspx">Azure Services Platform page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://scott.blomqui.st/2009/03/an-antidote-to-lock-in-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://scott.blomqui.st/2009/03/an-antidote-to-lock-in-in-the-cloud/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.426 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-06 14:58:54 -->

