<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Davin&#039;s blog &#187; design</title>
	<atom:link href="http://blog.davingranroth.com/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.davingranroth.com</link>
	<description>Occassional posts on user experience design, faith, and family.</description>
	<lastBuildDate>Sun, 18 Jul 2010 17:17:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Newsweek&#8217;s Spring 2010 Website Redesign</title>
		<link>http://blog.davingranroth.com/2010/05/newsweeks-spring-2010-website-redesign/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=newsweeks-spring-2010-website-redesign</link>
		<comments>http://blog.davingranroth.com/2010/05/newsweeks-spring-2010-website-redesign/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 02:21:48 +0000</pubDate>
		<dc:creator>Davin Granroth</dc:creator>
				<category><![CDATA[Web design and technology]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[newsweek]]></category>

		<guid isPermaLink="false">http://blog.davingranroth.com/?p=1220</guid>
		<description><![CDATA[I don&#8217;t know when it happened, exactly, but Newseek.com was recently redesigned. There is so much to say about it, and it is mostly good. I&#8217;ll start with the most obvious: the design. In short, the home page is easy &#8230; <a href="http://blog.davingranroth.com/2010/05/newsweeks-spring-2010-website-redesign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1221" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-1221" title="newsweek-home-page" src="http://blog.davingranroth.com/wp-content/uploads/2010/05/newsweek-home-page.jpg" alt="Home page of Newsweek.com, May 31, 2010" width="535" height="375" /><p class="wp-caption-text">Home page of Newsweek.com, May 31, 2010</p></div>
<p>I don&#8217;t know when it happened, exactly, but Newseek.com was recently redesigned. There is so much to say about it, and it is mostly good.</p>
<p>I&#8217;ll start with the most obvious: the design.</p>
<p>In short, the home page is easy to scan. There is a clear visual hierarchy. The lead photos and articles have been spot-on for Memorial Day news items, and the clarity of the layout made certain I couldn&#8217;t miss them.</p>
<p>The article pages are easy to read and keep enough of the patterns, like the byline and publication date, that it&#8217;s easy to figure out what&#8217;s what.</p>
<p>My biggest complaint is one that they no doubt haven&#8217;t figured out how to get rid of yet: the banner ads.</p>
<p><a href="http://nymag.com/daily/intel/2010/05/newsweekcom_redesign_launched.html">There&#8217;s more talk about the visuals for the new newsweek.com at nymag.com</a>. I won&#8217;t go on about that, myself, other than to say, gee, it looks like a professional blog. Oddly, that&#8217;s a compliment.</p>
<h3>Now let&#8217;s look at the markup.</h3>
<div id="attachment_1222" class="wp-caption alignright" style="width: 310px"><a href="http://blog.davingranroth.com/wp-content/uploads/2010/05/Screen-shot-2010-05-31-at-9.50.45-PM.png"><img class="size-medium wp-image-1222 " title="Newsweek.com namespaces" src="http://blog.davingranroth.com/wp-content/uploads/2010/05/Screen-shot-2010-05-31-at-9.50.45-PM-300x97.png" alt="Code for namespaces on newsweek.com" width="300" height="97" /></a><p class="wp-caption-text">Newsweek.com&#39;s namespaces point to interesting uses of meta data.</p></div>
<p>I&#8217;ve had a penchant for information architecture since the late 1990s, and about the first thing I noticed when glancing at the markup for the home page is the references to the Dublin Core meta data definitions and other meta data sets.</p>
<p>I was suddenly intrigued. Good use of meta data is sadly absent in many large-scale websites, and it&#8217;s really great to see an effort to play the game for real.</p>
<p>So, at a quick glance through the markup you&#8217;ll notice some unusual pieces, first this:<br />
<code>data-track="{'title':'stories being discussed'}"</code>, which is an attribute with a value that looks a bit like JSON.</p>
<p>I admit to being behind the times with studying HTML 5, but that attribute spurred my suspicion that this page was using HTML 5. I stopped wondering a few lines later when I spotted an <code>article</code> element, followed soon thereafter by a <code>header</code> element, and a <code>nav</code> element sporting an attribute of <code>role="navigation"</code>. Whoa. Newsweek jumped right in.</p>
<p>So what about the meta data? Well, I can&#8217;t really know what they&#8217;re actually doing, but here is an observation. In a sidebar, they have a list of quotes. Each quote is marked up as a blockquote with an id attribute. Following each quote is a span with attributes like <code>property="dc:creator"</code> and <code>about="#q1"</code>. The about attribute refers to the id of the blockquote in question. The content of that span itself is the name of the quoted person, plus which publication the quote came from.</p>
<p>Pretty cool idea: internal markup references like this can build relationships into the content. It could provide some interesting opportunities for parsing later on. Yeah, that&#8217;s right, the semantic web.</p>
<h3>The problem with this all is…it&#8217;s half-baked!</h3>
<div id="attachment_1226" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.davingranroth.com/wp-content/uploads/2010/05/Screen-shot-2010-05-31-at-10.13.03-PM.png"><img class="size-medium wp-image-1226" title="Newsweek.com meta tags, bad markup" src="http://blog.davingranroth.com/wp-content/uploads/2010/05/Screen-shot-2010-05-31-at-10.13.03-PM-300x80.png" alt="Newsweek.com meta tags, bad markup" width="300" height="80" /></a><p class="wp-caption-text">Newsweek.com used &quot;http-equiv&quot; when they needed &quot;name&quot;. Oops.</p></div>
<p>That list of quotes with the ID attributes? All that meta data is duplicated and thereby meaningless! Further, why use a span element when they could have used a cite element? More semantic and those attributes would&#8217;ve played as well. Gah!</p>
<p>And back at the top of the markup by those meta data namespace references there is another set of meta tag elements which are sadly marked up incorrectly.</p>
<p>There is a stack of 5 meta elements that use the http-equiv attribute when they should have used the name attribute. I&#8217;ll bet whoever coded that knows the difference, but I wonder if they were rushed to get this version out. It feels like a beta.</p>
<p>They are so close to providing some really great examples of meta data use in HTML 5! I hope they release another version soon that gets more precise and cleans up some of this code.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davingranroth.com/2010/05/newsweeks-spring-2010-website-redesign/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Seams between systems and the Vignelli NYC subway map</title>
		<link>http://blog.davingranroth.com/2009/11/seams-between-systems-and-the-vignelli-nyc-subway-map/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=seams-between-systems-and-the-vignelli-nyc-subway-map</link>
		<comments>http://blog.davingranroth.com/2009/11/seams-between-systems-and-the-vignelli-nyc-subway-map/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 17:23:42 +0000</pubDate>
		<dc:creator>Davin Granroth</dc:creator>
				<category><![CDATA[Web design and technology]]></category>
		<category><![CDATA[bierut]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[information design]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[seams]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[vignelli]]></category>

		<guid isPermaLink="false">http://blog.davingranroth.com/?p=972</guid>
		<description><![CDATA[I just read &#8220;Mr. Vignelli&#8217;s Map&#8221; by Michael Bierut over at Design Observer. In the post, Bierut remembers and analyzes why the public rejected Vignelli&#8217;s map of the New York City subway system. (Here&#8217;s the Vignelli subway map.) The Vignelli &#8230; <a href="http://blog.davingranroth.com/2009/11/seams-between-systems-and-the-vignelli-nyc-subway-map/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just read &#8220;<a href="http://observatory.designobserver.com/entry.html?entry=2647">Mr. Vignelli&#8217;s Map&#8221; by Michael Bierut</a> over at Design Observer. In the post, Bierut remembers and analyzes why the public rejected Vignelli&#8217;s map of the New York City subway system. (<a href="http://www.nycsubway.org/perl/caption.pl?/img/maps/system_1972.jpg">Here&#8217;s the Vignelli subway map.</a>)</p>
<p>The Vignelli map smartly acknowledged that for passengers of the subway focused on navigating the subway system itself, above ground geography was nothing but a factor of added complexity. So the map instead was oriented around the subway lines and stops themselves, abstracting actual geography. This was a keen simplification from an information design perspective.</p>
<p>But consider this observation from Bierut&#8217;s article.</p>
<blockquote><p>To make the map work graphically meant that a few geographic liberties had to be taken. What about, for instance, the fact that the Vignelli map represented Central Park as a square, when in fact it is three times as long as it is wide? If you&#8217;re underground, of course, it doesn&#8217;t matter: there simply aren&#8217;t as many stops along Central Park as there are in midtown, so it requires less map space. But what if, for whatever reason, you wanted to get out at 59th Street and take a walk on a crisp fall evening? Imagine your surprise when you found yourself hiking for hours on a route that looked like it would take minutes on Vignelli&#8217;s map.</p></blockquote>
<p>The concept of designing the seams between systems has become apparent within the user experience design community over the last couple years. This is an example of that problem of seams.</p>
<p>Passengers of the subway system are also navigators of the city itself, so their context of use spans beyond the subway and the end of their decisions are not merely which stop to get on and off of, but where they are going once they get out of the subway.</p>
<p>Bierut makes the point:</p>
<blockquote><p>The problem, of course, was that Vignelli&#8217;s logical system came into conflict with another, equally logical system: <a href="http://www.library.cornell.edu/Reps/DOCS/nyc1811.htm" target="_blank">the 1811 Commissioners&#8217; Plan for Manhattan</a>.</p></blockquote>
<p>How can designers consider the seams between the subway system and the city plan to result in a better-designed subway map?</p>
<p>NYC, of course, has a functioning subway map. Is functionality the only litmus test?</p>
<p>(I&#8217;ve taken the subway in New York City only once, and managed to get from Point A to Point B successfully, although with some anxiety.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davingranroth.com/2009/11/seams-between-systems-and-the-vignelli-nyc-subway-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Many stories in user experience</title>
		<link>http://blog.davingranroth.com/2009/10/many-stories-in-user-experience/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=many-stories-in-user-experience</link>
		<comments>http://blog.davingranroth.com/2009/10/many-stories-in-user-experience/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 17:43:33 +0000</pubDate>
		<dc:creator>Davin Granroth</dc:creator>
				<category><![CDATA[Web design and technology]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interactions]]></category>
		<category><![CDATA[personas]]></category>
		<category><![CDATA[stories]]></category>
		<category><![CDATA[ted]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.davingranroth.com/?p=890</guid>
		<description><![CDATA[I just watched this TED talk, &#8220;Chimamanda Adichie: The danger of a single story.&#8221; Please, take the 18 minutes to watch it, then continue to read. Watching this talk brought to mind two thoughts related to user experience work. First, &#8230; <a href="http://blog.davingranroth.com/2009/10/many-stories-in-user-experience/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just watched this TED talk, &#8220;Chimamanda Adichie: The danger of a single story.&#8221;</p>
<p>Please, take the 18 minutes to watch it, then continue to read.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="446" height="326" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/ChimamandaAdichie_2009G-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/ChimamandaAdichie-2009G.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=652&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=chimamanda_adichie_the_danger_of_a_single_story;year=2009;theme=speaking_at_tedglobal2009;theme=master_storytellers;theme=words_about_words;theme=the_creative_spark;theme=new_on_ted_com;event=TEDGlobal+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="446" height="326" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" flashvars="vu=http://video.ted.com/talks/dynamic/ChimamandaAdichie_2009G-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/ChimamandaAdichie-2009G.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=652&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=chimamanda_adichie_the_danger_of_a_single_story;year=2009;theme=speaking_at_tedglobal2009;theme=master_storytellers;theme=words_about_words;theme=the_creative_spark;theme=new_on_ted_com;event=TEDGlobal+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" bgcolor="#ffffff" wmode="transparent" allowfullscreen="true"></embed></object></p>
<p>Watching this talk brought to mind two thoughts related to user experience work.</p>
<p>First, in a recent edition of Interactions magazine there is an article <a href="http://interactions.acm.org/content/?p=1266">&#8220;Stories that inspire action&#8221; by Gary Hirsch and Brad Robertson</a>, that has planted the desire in me to uncover the stories of the company I work for, Covenant Eyes. There are so many ideas we have of ourselves, set by the expectations of management, employees, and so forth. But there are also stories of our customers, and by telling many of these stories, I suspect we will hear some stark contrasts that will cause us to reckon with ourselves.</p>
<p>Have we stereotyped our corporate self?</p>
<p>The second thought is in regards to personas. At Covenant Eyes, my colleague Jackie has taken the lead on creating a set of personas that we can use during our design and development work. This is a first for us. This week as we were reviewing the current set of about 16 personas, we were working on writing in various scenarios for each persona. I think the point of each scenario is to enrich the story of that persona.</p>
<p>But perhaps more important is that across the full set of personas, however large it may get, that we have properly balanced the stories that are represented by each persona. I think, at its root, that is part of why personas are valuable in the first place. To challenge the stereotype, the single story, that we might have in development about our &#8220;user.&#8221; These personas will be valuable if they can help us tell the many stories of our customers and users.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davingranroth.com/2009/10/many-stories-in-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
