<?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>Design for Innovation</title>
	
	<link>http://design-for-innovation.com</link>
	<description>A discussion about Design, design and user experience from Microsoft's User Experience Evangelists</description>
	<lastBuildDate>Tue, 24 Apr 2012 03:11:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DesignForInnovation" /><feedburner:info uri="designforinnovation" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Making a Great Snapped View for your Web Site on IE10 on Windows 8</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/gG7L52remfw/making-a-great-snapped-view-for-your-web-site-on-ie10-on-windows-8.aspx</link>
		<comments>http://feedproxy.google.com/~r/Synergist/~3/Jkrod9acmi0/making-a-great-snapped-view-for-your-web-site-on-ie10-on-windows-8.aspx#comments</comments>
		<pubDate>Tue, 24 Apr 2012 03:11:15 +0000</pubDate>
		<dc:creator>Synergist</dc:creator>
				<category><![CDATA[IE10]]></category>
		<category><![CDATA[Metro]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false" />
		<description><![CDATA[One of the great features of Windows 8 Metro Applications is the Snapped View where app developers create a 320px wide view of their app.&#160; When the user snaps their app to the left or the right of the screen they can continue using their primary a...]]></description>
			<content:encoded><![CDATA[<p>One of the great features of Windows 8 Metro Applications is the <a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465371.aspx">Snapped View</a> where app developers create a 320px wide view of their app.&#160; When the user snaps their app to the left or the right of the screen they can continue using their primary app while still having the secondary app visible in a thinner view.&#160; The project templates in Visual Studio come with this capability built-in to make it easier to address this important part of the application experience.&#160; If you build your Metro application with HTML, you see that this is done with <a href="http://www.w3.org/TR/css3-mediaqueries/">CSS Media Queries</a>, a feature supported in all HTML5 modern browsers.&#160; This is also the way that you support snapped view for your website, with the <a href="http://msdn.microsoft.com/library/ie/hh708740.aspx">@-ms-viewport</a> rule (since it’s Microsoft-specific today, it has the –ms- prefix and can be safely ignored by other browsers.</p>  <pre class="csharpcode">@media screen and (max-width: 400px) {
  @-ms-viewport { width: 320px; }
  <span class="rem">/* CSS for 320px width snapped view goes here */</span>
} </pre>

<p>Since Mobile browsers like Windows Phone’s IE and the iPhone both report their width as 320 px, you may be able to reuse the media queries that you created for mobile for the snapped view by adding one line of css to your style sheet.&#160; If you are intrigued by CSS Media Queries, and want to see more examples of responsive design that use them, take a look at the <a href="http://mediaqueri.es/">Media Queries</a> site which hosts a great collection of them.&#160; </p>

<p>You can also take a look at a site that I’ve been working on that uses media queries and implements the snapped mode media query at <a href="http://timelapseapp.com/">TimeLapseApp.com.</a></p>

<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-83-05-metablogapi/2818.Screenshot_2D00_5_5F00_4B2BEE88.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Screenshot (5)" border="0" alt="Screenshot (5)" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-83-05-metablogapi/6710.Screenshot_2D00_5_5F00_thumb_5F00_0A1D6F24.png" width="138" height="312" /></a>&#160;<a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-83-05-metablogapi/5141.Screenshot_2D00_4_5F00_69962F71.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Screenshot (4)" border="0" alt="Screenshot (4)" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-83-05-metablogapi/4478.Screenshot_2D00_4_5F00_thumb_5F00_754B76A3.png" width="552" height="312" /></a></p>

<h3>More details</h3>

<ul>
  <li><a href="http://msdn.microsoft.com/library/ie/hh708740.aspx">IE10 Device Adaptation on MSDN</a> </li>

  <li><a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465371.aspx">Guidelines for Snapped and Filled Views on MSDN</a> </li>
</ul><div style="clear:both;"></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10296966" width="1" height="1"><img src="http://feeds.feedburner.com/~r/Synergist/~4/Jkrod9acmi0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=gG7L52remfw:Ro2eosQjYao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=gG7L52remfw:Ro2eosQjYao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=gG7L52remfw:Ro2eosQjYao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=gG7L52remfw:Ro2eosQjYao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=gG7L52remfw:Ro2eosQjYao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=gG7L52remfw:Ro2eosQjYao:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/gG7L52remfw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/synergist/rsscomments.aspx?WeblogPostID=10296966</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://feedproxy.google.com/~r/Synergist/~3/Jkrod9acmi0/making-a-great-snapped-view-for-your-web-site-on-ie10-on-windows-8.aspx</feedburner:origLink></item>
		<item>
		<title>Pixel-Perfect.</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/dYOry-l6Duc/pixel-perfect.html</link>
		<comments>http://scarynoises.com/blog/archives/2012/03/pixel-perfect.html#comments</comments>
		<pubDate>Thu, 29 Mar 2012 00:58:27 +0000</pubDate>
		<dc:creator>ScaryNoises</dc:creator>
				<category><![CDATA[Tricks of the Trade]]></category>

		<guid isPermaLink="false">http://scarynoises.com/blog/archives/2012/03/pixel-perfect.html</guid>
		<description><![CDATA[ustwo, an agency in the UK, recently released a great little guide for working with pixel-aligned imagery when using photoshop. It also has some other good tips that are worth reading before pushing pixels around.
]]></description>
			<content:encoded><![CDATA[<p>ustwo, an agency in the UK, recently released a great little guide for working with pixel-aligned imagery when using photoshop. It also has some other good tips that are worth reading before pushing pixels around.<br />
<img alt="PPP_v3.jpg" src="http://scarynoises.com/blog/PPP_v3.jpg" width="555" height="466" class="mt-image-left"  /><a href="http://www.ustwo.co.uk/blog/the-ustwo-pixel-perfect-precision-handbook/"></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=dYOry-l6Duc:Bi2aU34r9fw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=dYOry-l6Duc:Bi2aU34r9fw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=dYOry-l6Duc:Bi2aU34r9fw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=dYOry-l6Duc:Bi2aU34r9fw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=dYOry-l6Duc:Bi2aU34r9fw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=dYOry-l6Duc:Bi2aU34r9fw:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/dYOry-l6Duc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://design-for-innovation.com/2012/03/28/pixel-perfect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scarynoises.com/blog/archives/2012/03/pixel-perfect.html</feedburner:origLink></item>
		<item>
		<title>Solarized</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/wVTgfTpFWmM/solarized.html</link>
		<comments>http://scarynoises.com/blog/archives/2012/03/solarized.html#comments</comments>
		<pubDate>Thu, 29 Mar 2012 00:34:11 +0000</pubDate>
		<dc:creator>ScaryNoises</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://scarynoises.com/blog/archives/2012/03/solarized.html</guid>
		<description><![CDATA[Over at Ethan Schoonover's site, he has a very useful color palette set up for code hinting. This particular palette uses 16 colors designed to look pleasing, reduce eye fatigue, and remain appropriately legible, whether used with a light or dark backg...]]></description>
			<content:encoded><![CDATA[<p>Over at Ethan Schoonover's site, he has a very useful color palette set up for code hinting. This particular palette uses 16 colors designed to look pleasing, reduce eye fatigue, and remain appropriately legible, whether used with a light or dark background.<br />
<img alt="solarized-vim.png" src="http://scarynoises.com/blog/solarized-vim.png" width="549" height="555" class="mt-image-left" style="float: left; margin: 0 0 20px 0;" /><br />
<a href="http://ethanschoonover.com/solarized">http://ethanschoonover.com/solarized</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=wVTgfTpFWmM:lxx_IJxxkLs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=wVTgfTpFWmM:lxx_IJxxkLs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=wVTgfTpFWmM:lxx_IJxxkLs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=wVTgfTpFWmM:lxx_IJxxkLs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=wVTgfTpFWmM:lxx_IJxxkLs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=wVTgfTpFWmM:lxx_IJxxkLs:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/wVTgfTpFWmM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://design-for-innovation.com/2012/03/28/solarized/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scarynoises.com/blog/archives/2012/03/solarized.html</feedburner:origLink></item>
		<item>
		<title>iPad Sketch Prototype Template</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/JqXl6L4c7AA/</link>
		<comments>http://www.uxarray.com/2012/01/20/ipad-sketch-prototype-template/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 17:07:05 +0000</pubDate>
		<dc:creator>UX Array</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[Prototyping]]></category>
		<category><![CDATA[sketching]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://www.uxarray.com/?p=635</guid>
		<description><![CDATA[
I&#8217;ve been doing a bunch of tablet prototyping lately so I thought I&#8217;d share with you! Feel free to print, share and use as you wish. Happy creating and look for more prototyping downloads coming soon.
Grab the pdf prototype template here.
]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.uxarray.com/wp-content/uploads/2012/01/iPad_Sketch_Prototype_600px.png"  title="click for larger image"><img class="post_image alignleft" src="http://www.uxarray.com/wp-content/uploads/2012/01/iPad_Sketch_Prototype_330px.png" width="330" height="440" alt="click for larger image" /></a>
</p><p>I&#8217;ve been doing a bunch of tablet prototyping lately so I thought I&#8217;d share with you! Feel free to print, share and use as you wish. Happy creating and look for more prototyping downloads coming soon.</p>
<h3>Grab the pdf prototype template <a href="http://www.uxarray.com/wp-content/uploads/2012/01/iPad_Sketch_prototype.pdf">here</a>.</h3>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=JqXl6L4c7AA:zz20sBucChQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=JqXl6L4c7AA:zz20sBucChQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=JqXl6L4c7AA:zz20sBucChQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=JqXl6L4c7AA:zz20sBucChQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=JqXl6L4c7AA:zz20sBucChQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=JqXl6L4c7AA:zz20sBucChQ:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/JqXl6L4c7AA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.uxarray.com/2012/01/20/ipad-sketch-prototype-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.uxarray.com/2012/01/20/ipad-sketch-prototype-template/</feedburner:origLink></item>
		<item>
		<title>The Truth About ‘The Lean Start-up’</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/_93G2Ch9VFk/</link>
		<comments>http://www.uxarray.com/2011/10/24/the-truth-lean-start-up/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 17:00:14 +0000</pubDate>
		<dc:creator>UX Array</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[design process]]></category>
		<category><![CDATA[honesty]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[Prototyping]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://www.uxarray.com/?p=589</guid>
		<description><![CDATA[My one treat I give myself when I travel is a trip the magazine rack. I stock up on Fast Company (my personal fav), Inc., The Harvard Business Review and when I’m really spoiling myself a Dwell. The October Inc. looked promising, ‘The Lean Start-up’, with Mr. Lean himself, Eric Ries on the cover. And [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.flickr.com/photos/47388015@N00/6266276253/"  title="Permanent link to The Truth About &#8216;The Lean Start-up&#8217;"><img class="post_image alignleft" src="http://www.uxarray.com/wp-content/uploads/2011/10/Lean_ux_330px.png" width="330" height="350" alt="Post image for The Truth About &#8216;The Lean Start-up&#8217;" /></a>
</p><p>My one treat I give myself when I travel is a trip the magazine rack. I stock up on Fast Company (my personal fav), Inc., The Harvard Business Review and when I’m really spoiling myself a Dwell. The October Inc. looked promising, <a title="The Lean Start-up Article in Inc." href="http://www.inc.com/magazine/201110/eric-ries-usability-testing-product-development.html" >‘The Lean Start-up’</a>, with Mr. Lean himself, Eric Ries on the cover. And his start-up story has the painfully familiar melody that most of us can relate to. I didn’t have the misfortune of tanking my own venture, but I woefully bared witness to two Titanics destined for the ocean floor. And my work in design and user experience  during those times only strengthened my belief in generating value by delivering a great product experience to the customer, the same work I’d spent years reading about. Anyone sharing that message is a friend of mine.</p>
<p>Yet, it didn’t take long for my enthusiasm to wane. As the article slowly starts to define this genius new way to innovate product development, a method that seems an awful lot like what I do, what I’ve been doing for years; user experience. And I’m not the only one, nor am I the first, far far from it. Those radicals at IDEO, the outlier Bill Buxton, the godfather of all things process and experience Alan Cooper, I could do this all day… Was Ries cryogenically frozen for 20 years and missed all this UX talk? I didn’t care, I was ticked.</p>
<h3>But, I kept myself, until I read Andy Budd’s take on <a title="Andy Budd's Blog on Lean UX" href="http://www.andybudd.com/archives/2011/10/my_thoughts_on_lean_ux/" >Lean UX</a>. Ok, good, it’s not just me (thanks Andy).</h3>
<p>Andy’s perspective nailed it, so at first, I thought, Sweet, I’ll just retweet that…but there was one rather looming issue. Something I think erodes the fabric of the craft of experience design. Now, you can brand something, write a book,  make some dough on it, shout it from the mountain-tops, but I CANNOT swallow is re-naming something that already has a name, a history, practitioners and craftsmen who make a living at it and teach it to others. What’s worse is design has always had a problem defining itself, explaining the value; the 2003 Clement Mok article, <a title="Clement Mok's Time for Change" href="http://www.clementmok.com/musings/detail.php?ItemID=12" >‘Time for Change’</a> is likely the most powerful depiction of the problem and a solution. When I read it, I made a promise to better the design conversation.</p>
<p>From the <a title="Lean Start-up in Inc." href="http://www.inc.com/magazine/201110/eric-ries-usability-testing-product-development.html" >Inc. article</a>:<em><br />
</em></p>
<h3><em>“By building what I call a minimum viable product—or MVP. It helps entrepreneurs start the process of learning as quickly as possible. Unlike a prototype or concept test, an MVP is designed not just to answer product design or technical questions. Its goal is to test fundamental business hypotheses.”</em></h3>
<p><em> </em>I’m fine with someone calling their, WIP prototype a MVP, but it’s still a prototype. And prototyping IS and always has been the business plan, the journey AND the path. So unlike the MVP Eric described, the prototype solves for the technical and design (the ‘what’s possible’) as well as the customer/user and business value. That’s right, the prototype when used effectively is the whole enchilada.</p>
<p>Another quote:<em><br />
</em></p>
<h3><em>“Lean thinking defines value as &#8220;providing benefit to the customer&#8221;; anything else is waste.”</em></h3>
<p>User experience is and has always been described and utilized to address and focus on customer/user meaning and benefit. It seems by renaming UX to ‘lean thinking’ for no other reason than personal gain, is categorically wrong.  We really, desperately need to use the same language, consistently to communicate the value of what we do. If we dilute it, complicate it and re-mystify our work, everyone loses. Clement illustrates this with a comparison, “If every physician made up his own set of definitions and beliefs about anatomy and disease on an improvised basis, the medical profession would still be in the Dark Ages.”</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=_93G2Ch9VFk:uaHZU9TEYU0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=_93G2Ch9VFk:uaHZU9TEYU0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=_93G2Ch9VFk:uaHZU9TEYU0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=_93G2Ch9VFk:uaHZU9TEYU0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=_93G2Ch9VFk:uaHZU9TEYU0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=_93G2Ch9VFk:uaHZU9TEYU0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/_93G2Ch9VFk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.uxarray.com/2011/10/24/the-truth-lean-start-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.uxarray.com/2011/10/24/the-truth-lean-start-up/</feedburner:origLink></item>
		<item>
		<title>The last blog post at Design Thinking Digest</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/1FnxY8aeqiw/the-last-blog-post-at-design-thinking-digest.html</link>
		<comments>http://feedproxy.google.com/~r/typepad/chrisbernard/design_thinking_digest/~3/fDIjPzhCV7U/the-last-blog-post-at-design-thinking-digest.html#comments</comments>
		<pubDate>Mon, 17 Oct 2011 19:56:34 +0000</pubDate>
		<dc:creator>Chris Bernard</dc:creator>
				<category><![CDATA[BizSpark]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Current Affairs]]></category>
		<category><![CDATA[Design Thinking]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false" />
		<description><![CDATA[The last blog post of Chris Bernard at Design Thinking Digest where Chris announces a new blog at 21stCenturyStory.com]]></description>
			<content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><a style="display: inline;" href="http://chrisbernard.blogs.com/.a/6a00d83453b76469e201543630ddf4970c-pi"><img class="asset  asset-image at-xid-6a00d83453b76469e201543630ddf4970c image-full" title="Next" src="http://chrisbernard.blogs.com/.a/6a00d83453b76469e201543630ddf4970c-800wi" border="0" alt="Next" /></a><br />This will be my last post at Design Thinking Digest. For those that remember the more fruitful days of this blog this should come as no surprise--but it felt like a bookend was appropriate. DTD has been an experiment and online journey for me; it's had a relatively modest amount of posting—around 250 posts over the past five years and around 120,000 page views.</p>
<p>Around 500 folks read this blog on a regular basis--certainly breaking no social media records but nonetheless an audience that I knew well and that was very important to me. Over the last 16 months my role in Microsoft had changed from a public role to one that was a more private and inward looking one. There were simply more things I was working on that I couldn't talk about than I could and the forums of Facebook and Twitter became a more personal way to keep up with folks. The ‘long’ format of a blog simply wasn’t a medium I could take advantage of over the past year.</p>
<p>But things have changed. I now have a new role that has a much more public component to it and an audience that while not unfamiliar or new to me, certainly has a new pivot.</p>
<p><span style="font-size: 14pt;">Now seems like the time to start something new and that's exactly what's going to happen over at my new blog entitled <a href="http://www.21stcenturystory.com" >21st Century Storytelling</a>.</span></p>
<p>DTD won't go away right away.&nbsp;I'll be migrating most of my stories over to my new blog and eventually when you come to www.designthinkingdigest.com it will take you to my new blog. I hope you'll join me there and drop in to say hello again. I promise that I'll do my best to tell share new things with a fresh perspective and make sure the time you spend there is worth it. Thank you. Please join me on my next journey at <a href="http://www.21stcenturystory.com" >21st Century Storytelling</a>.</p>
<p>&nbsp;</p></div>
<img src="http://feeds.feedburner.com/~r/typepad/chrisbernard/design_thinking_digest/~4/fDIjPzhCV7U" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=1FnxY8aeqiw:Ro2eosQjYao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=1FnxY8aeqiw:Ro2eosQjYao:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/1FnxY8aeqiw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://design-for-innovation.com/2011/10/17/the-last-blog-post-at-design-thinking-digest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://feedproxy.google.com/~r/typepad/chrisbernard/design_thinking_digest/~3/fDIjPzhCV7U/the-last-blog-post-at-design-thinking-digest.html</feedburner:origLink></item>
		<item>
		<title>The last blog post at Design Thinking Digest</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/1FnxY8aeqiw/the-last-blog-post-at-design-thinking-digest.html</link>
		<comments>http://feedproxy.google.com/~r/typepad/chrisbernard/design_thinking_digest/~3/fDIjPzhCV7U/the-last-blog-post-at-design-thinking-digest.html#comments</comments>
		<pubDate>Mon, 17 Oct 2011 19:56:34 +0000</pubDate>
		<dc:creator>Chris Bernard</dc:creator>
				<category><![CDATA[BizSpark]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Current Affairs]]></category>
		<category><![CDATA[Design Thinking]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false" />
		<description><![CDATA[The last blog post of Chris Bernard at Design Thinking Digest where Chris announces a new blog at 21stCenturyStory.com]]></description>
			<content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><a style="display: inline;" href="http://chrisbernard.blogs.com/.a/6a00d83453b76469e201543630ddf4970c-pi"><img class="asset  asset-image at-xid-6a00d83453b76469e201543630ddf4970c image-full" title="Next" src="http://chrisbernard.blogs.com/.a/6a00d83453b76469e201543630ddf4970c-800wi" border="0" alt="Next" /></a><br />This will be my last post at Design Thinking Digest. For those that remember the more fruitful days of this blog this should come as no surprise--but it felt like a bookend was appropriate. DTD has been an experiment and online journey for me; it's had a relatively modest amount of posting—around 250 posts over the past five years and around 120,000 page views.</p>
<p>Around 500 folks read this blog on a regular basis--certainly breaking no social media records but nonetheless an audience that I knew well and that was very important to me. Over the last 16 months my role in Microsoft had changed from a public role to one that was a more private and inward looking one. There were simply more things I was working on that I couldn't talk about than I could and the forums of Facebook and Twitter became a more personal way to keep up with folks. The ‘long’ format of a blog simply wasn’t a medium I could take advantage of over the past year.</p>
<p>But things have changed. I now have a new role that has a much more public component to it and an audience that while not unfamiliar or new to me, certainly has a new pivot.</p>
<p><span style="font-size: 14pt;">Now seems like the time to start something new and that's exactly what's going to happen over at my new blog entitled <a href="http://www.21stcenturystory.com" >21st Century Storytelling</a>.</span></p>
<p>DTD won't go away right away.&nbsp;I'll be migrating most of my stories over to my new blog and eventually when you come to www.designthinkingdigest.com it will take you to my new blog. I hope you'll join me there and drop in to say hello again. I promise that I'll do my best to tell share new things with a fresh perspective and make sure the time you spend there is worth it. Thank you. Please join me on my next journey at <a href="http://www.21stcenturystory.com" >21st Century Storytelling</a>.</p>
<p>&nbsp;</p></div>
<img src="http://feeds.feedburner.com/~r/typepad/chrisbernard/design_thinking_digest/~4/fDIjPzhCV7U" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=1FnxY8aeqiw:Ro2eosQjYao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1FnxY8aeqiw:Ro2eosQjYao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=1FnxY8aeqiw:Ro2eosQjYao:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/1FnxY8aeqiw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://design-for-innovation.com/2011/10/17/the-last-blog-post-at-design-thinking-digest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://feedproxy.google.com/~r/typepad/chrisbernard/design_thinking_digest/~3/fDIjPzhCV7U/the-last-blog-post-at-design-thinking-digest.html</feedburner:origLink></item>
		<item>
		<title>Dear Kerning Game, A Love Letter</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/yaxUbZHP4Lw/</link>
		<comments>http://www.uxarray.com/2011/10/13/kerning-game-a-love-letter/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 18:01:01 +0000</pubDate>
		<dc:creator>UX Array</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.uxarray.com/?p=582</guid>
		<description><![CDATA[I played the kerning game a few days ago and then I couldn’t stop thinking about it. The game wasn’t just good, it wasn’t just cool because it was done in HTML5 (ok, fine, that made me giddy) and, sure, it was touch enabled…but that wasn’t it. This game was about kerning, KERNING. Type nerds, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.flickr.com/photos/47388015@N00/6240740771/"  title="Permanent link to Dear Kerning Game, A Love Letter"><img class="post_image alignleft" src="http://www.uxarray.com/wp-content/uploads/2011/10/Print_to_UX_330px.png" width="330" height="322" alt="Post image for Dear Kerning Game, A Love Letter" /></a>
</p><p>I played the<a title="Link to the Kerning Game" href="http://type.method.ac/" > kerning game</a> a few days ago and then I couldn’t stop thinking about it. The game wasn’t just good, it wasn’t just cool because it was done in HTML5 (ok, fine, that made me giddy) and, sure, it was touch enabled…but that wasn’t it. This game was about kerning, KERNING. Type nerds, print designers adore analyzing every possible flaw, the tiniest spaces between symbols, but I would never dare admit my love for it in mixed company. My dev buddies might just laugh and tell me to go make them a t-shirt, right?</p>
<p>I needed to know who the hell made this game, someone with clear dev chops and enough design geek to love this sacred art as old as the printing press. The <a title="Method Action Blog" href="http://method.ac/blog/" >Method Action blog</a>, held the answer and his name is Mark MacKay, Twitter handle <a title="duopixel's twitter page" href="http://twitter.com/#!/duopixel" >@duopixel</a>. But let’s go back to that blog…</p>
<p>Most of my time is spent, split between speaking to devs and designers, usually at separate conferences (that’s a different problem). The topics are always similar; ux, mobile design, user research, prototyping, but how I format the content for each audience is markedly different. MacKay’s writing, his raison d&#8217;etre, is something that I’ve been working on for years; bridging the gap between design and dev. <a title="Programmers Designers Blog Post" href="http://method.ac/blog/design/programmers-designers.html" >This piece</a> in particular, brilliantly tackles the issue.</p>
<p>Especially, how design is written and talked about, how we frame design in an effort to explain it to more right brained folks is flawed. Mark’s points are similar to the message I give to dev’s: you already have the skills. Design, in its most simple form, is a problem with a set of constraints. Problem solving skills, attention to detail, a scientific approach and a solution based eye are the critical shared DNA that devs already possess.</p>
<p>What <a title="Method of Action Main Page" href="http://method.ac/" >Method of Action</a> is building, games for participatory learning, is not only genius, it bridges the divide in understanding and communicating in and with technology. No small thing. Addressing this huge problem deserves some props, in fact, I’ll be bragging about this in future talks. Thanks Mark and Maria, keep it up!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=yaxUbZHP4Lw:A1uMNEqsLTI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=yaxUbZHP4Lw:A1uMNEqsLTI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=yaxUbZHP4Lw:A1uMNEqsLTI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=yaxUbZHP4Lw:A1uMNEqsLTI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=yaxUbZHP4Lw:A1uMNEqsLTI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=yaxUbZHP4Lw:A1uMNEqsLTI:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/yaxUbZHP4Lw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.uxarray.com/2011/10/13/kerning-game-a-love-letter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.uxarray.com/2011/10/13/kerning-game-a-love-letter/</feedburner:origLink></item>
		<item>
		<title>My Favorite New Features of Windows Phone 7 Mango</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/k0Mxsot7MWE/my-favorite-new-features-of-windows-phone-7-mango.aspx</link>
		<comments>http://feedproxy.google.com/~r/Synergist/~3/6r_p26cxnQ0/my-favorite-new-features-of-windows-phone-7-mango.aspx#comments</comments>
		<pubDate>Sat, 01 Oct 2011 07:28:57 +0000</pubDate>
		<dc:creator>Synergist</dc:creator>
				<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false" />
		<description><![CDATA[A few days ago I got a notice over my phone that an update was ready to be installed and I should connect it to my computer.&#160; Mango had arrived for my Dell Venue Pro on T-Mobile’s network.&#160; I connected my phone to my computer and proceeded ...]]></description>
			<content:encoded><![CDATA[<p>A few days ago I got a notice over my phone that an update was ready to be installed and I should connect it to my computer.&#160; Mango had arrived for my Dell Venue Pro on T-Mobile’s network.&#160; I connected my phone to my computer and proceeded to update the phone.&#160; A few minutes later it was ready.&#160; Now after using it for a few days, I am really happy with so many of the new features.&#160; I’d like to share my favorites with you:</p>  <ol>   <li>Turn-by-turn audible directions on Bing maps</li>    <li>Podcasts are now in the Marketplace and you can now subscribe to them</li>    <li>Visual Voice Mail – I had to enable/disable/enable this on the T-Mobile account website but finally it is working</li>    <li>Quick App Switching/Multitasking</li>    <li>Easy check-in to locations</li>    <li>Integrated Messenger/SMS/Facebook Chat</li>    <li>Twitter &amp; LinkedIn integration</li>    <li>Ability to open and Share Office documents on SkyDrive</li>    <li>Pinning a playlist to my home screen</li>    <li>Pinning an Outlook folder to my home screen</li>    <li>Groups in the People hub (and pinning groups)</li>    <li>Auto-Fix for photos</li>    <li>Upload videos from the phone to Facebook</li>    <li>New HTML5 IE9 </li> </ol>  <p>What are your favorite Windows Phone 7 Mango features?</p><div style="clear:both;"></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10218770" width="1" height="1"><img src="http://feeds.feedburner.com/~r/Synergist/~4/6r_p26cxnQ0" height="1" width="1"/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=k0Mxsot7MWE:Ro2eosQjYao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=k0Mxsot7MWE:Ro2eosQjYao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=k0Mxsot7MWE:Ro2eosQjYao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=k0Mxsot7MWE:Ro2eosQjYao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=k0Mxsot7MWE:Ro2eosQjYao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=k0Mxsot7MWE:Ro2eosQjYao:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/k0Mxsot7MWE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/synergist/rsscomments.aspx?WeblogPostID=10218770</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://feedproxy.google.com/~r/Synergist/~3/6r_p26cxnQ0/my-favorite-new-features-of-windows-phone-7-mango.aspx</feedburner:origLink></item>
		<item>
		<title>PR goes to the dogs</title>
		<link>http://feedproxy.google.com/~r/DesignForInnovation/~3/1A4-VmRwC9E/pr_goes_to_the.html</link>
		<comments>http://scarynoises.com/blog/archives/2011/09/pr_goes_to_the.html#comments</comments>
		<pubDate>Wed, 14 Sep 2011 18:31:43 +0000</pubDate>
		<dc:creator>ScaryNoises</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://scarynoises.com/blog/archives/2011/09/pr_goes_to_the.html</guid>
		<description><![CDATA[So in moving from Microsoft to tech startup buuteeq there was a press release and some coverage in various trade journals and websites. I knew one of the Microsoft-focused journalists might pick up on it related to the fate of Silverlight which would b...]]></description>
			<content:encoded><![CDATA[<p>So in moving from Microsoft to tech startup <a href="http://www.buuteeq.com">buuteeq</a> there was a press release and some coverage in various trade journals and websites. I knew one of the Microsoft-focused journalists might pick up on it related to the fate of Silverlight which would be understandable with the <a href="http://www.buildwindows.com/">Build</a> conference happening. What I didn't expect was this:</p>

<p><a href="http://scarynoises.com/blog/assets_c/2011/09/EdieDog-26.html" onclick="window.open('http://scarynoises.com/blog/assets_c/2011/09/EdieDog-26.html','popup','width=497,height=309,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://scarynoises.com/blog/assets_c/2011/09/EdieDog-thumb-497x309-26.png" width="497" height="309" alt="EdieDog.png" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1A4-VmRwC9E:0rmd_Gm7J3k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1A4-VmRwC9E:0rmd_Gm7J3k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1A4-VmRwC9E:0rmd_Gm7J3k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=1A4-VmRwC9E:0rmd_Gm7J3k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DesignForInnovation?a=1A4-VmRwC9E:0rmd_Gm7J3k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/DesignForInnovation?i=1A4-VmRwC9E:0rmd_Gm7J3k:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DesignForInnovation/~4/1A4-VmRwC9E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://design-for-innovation.com/2011/09/14/pr-goes-to-the-dogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://scarynoises.com/blog/archives/2011/09/pr_goes_to_the.html</feedburner:origLink></item>
	</channel>
</rss>

