<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Nick DeNardis</title>
	
	<link>http://nickdenardis.com</link>
	<description>Web Dev. Higher Ed. Usability. Accessibility. Ninja.</description>
	<lastBuildDate>Mon, 30 Aug 2010 15:40:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.6.3" -->
	<copyright>2006-2007 </copyright>
	<managingEditor>nick.denardis@gmail.com (Nick DeNardis)</managingEditor>
	<webMaster>nick.denardis@gmail.com (Nick DeNardis)</webMaster>
	<category>posts</category>
	<image>
		<url>http://nickdenardis.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Nick DeNardis</title>
		<link>http://nickdenardis.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle />
	<itunes:summary>Getting things done in reality. Web development for normal people.</itunes:summary>
	<itunes:keywords />
	<itunes:category text="Society &amp; Culture" />
	<itunes:author>Nick DeNardis</itunes:author>
	<itunes:owner>
		<itunes:name>Nick DeNardis</itunes:name>
		<itunes:email>nick.denardis@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://nickdenardis.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/nickdenardis" /><feedburner:info uri="nickdenardis" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Form Errors – Validating phone numbers and the importance of hand testing</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/1eZs8CeG904/</link>
		<comments>http://nickdenardis.com/2010/08/30/form-errors-validating-phone-numbers-and-the-importance-of-hand-testing/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 15:40:04 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[user experience]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[groupon]]></category>
		<category><![CDATA[messages]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[ux]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=671</guid>
		<description><![CDATA[Nothing replaces hand testing forms I fill out a lot of forms during the day, some on existing sites and others as new internal forms that need review. When testing I have a habit of submitting forms with every error combination possible. I know there are automated tools for this but nothing beats seeing it [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://nickdenardis.com/wp-content/uploads/2010/08/error-message.png"><img class="aligncenter size-full wp-image-672" title="error-message" src="http://nickdenardis.com/wp-content/uploads/2010/08/error-message.png" alt="" width="532" height="309" /></a></p>
<h2>Nothing replaces hand testing forms</h2>
<p>I fill out a lot of forms during the day, some on existing sites and others as new internal forms that need review. When testing I have a habit of submitting forms with every error combination possible. I know there are automated tools for this but nothing beats seeing it from the users prospective. It is different to run a command line tool and get a number of fails and successes as it is to spend 2 minutes to fill in a bunch of fields and get some weird screen state, odd colors or wording that doesn&#8217;t make sense.</p>
<p>That is exactly what is happening above. I clearly filled out the form to my best understanding and still got an error.</p>
<h3>Things I notice about this error:</h3>
<ol>
<li>There is something wrong with these three fields, but it doesn&#8217;t point out which one(s)</li>
<li>The wording of the error forces me to look up and then scan down to see where the field is</li>
<li>In my mind I did place the area code in the phone field</li>
<li>There is no explanation of the preferred format for the phone number</li>
</ol>
<p>After understanding that my method isn&#8217;t working and they were not going to automatically transform my format to their preferred format I tried every phone number combination I could think of. In the end none of them worked. Being the curious person I am I ended up digging through their validation javascript and found this regular expression it was validating against:</p>
<pre><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} -->^((\\(\\d{3}\\) ?)|(\\d{3}[-\\s]))?\\d{3}[-\\s]\\d{4}$</pre>
<p>Doing a little more investigation I found that it didn&#8217;t work at all. Try every combination you can think of at: <a href="http://j.mp/9sIWEn">http://j.mp/9sIWEn</a></p>
<h3>Good error messages should include:</h3>
<ol>
<li>A summary at the top of the page of all the errors (long forms usually push the user back to the top of the page)</li>
<li>A highlight around each field with an error</li>
<li>An explanation with an example or clear direction where the visitor went wrong</li>
<li>Not be nit-picky about formatting, transform as much as possible automatically</li>
</ol>
<p>In the end I brought this issue up to <a href="http://groupon.com/">Groupon</a> and they fixed it within an hour. The issue was not with their code, but on the survey vendor&#8217;s site. It got me thinking about the time and effort the user has gone through to get to this point and end up confronted with a road block. These small things have the potential to be a huge turn off for the average user. Command line tools may be great but nothing replaces what you can learn by testing things by hand.</p>
<p><em>* Note, that is not my real phone number <img src='http://nickdenardis.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </em></p>
<div class="shr-publisher-671"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2010/08/30/form-errors-validating-phone-numbers-and-the-importance-of-hand-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2010/08/30/form-errors-validating-phone-numbers-and-the-importance-of-hand-testing/</feedburner:origLink></item>
		<item>
		<title>User manipulation with green buttons</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/UHi8WN9rRUY/</link>
		<comments>http://nickdenardis.com/2010/07/20/user-manipulation-with-green-buttons/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 12:42:52 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[manipulation]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=653</guid>
		<description><![CDATA[Green means go right? Green also means positive, and lastly confirm. So why not manipulate a user&#8217;s actions by placing a green button to confirm an action they might have otherwise not taken? That is exactly what I encountered a few days ago at a grocery store. The Setup I went to the self checkout, [...]]]></description>
			<content:encoded><![CDATA[<p>Green means go right? Green also means positive, and lastly confirm. So why not manipulate a user&#8217;s actions by placing a green button to confirm an action they might have otherwise not taken? That is exactly what I encountered a few days ago at a grocery store.</p>
<h3>The Setup</h3>
<p>I went to the self checkout, scanned my few items, clicked to end the order and pay by credit card. After swiping my card I was presented with this screen:</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-655" title="Cash Back" src="http://nickdenardis.com/wp-content/uploads/2010/07/IMAG0251-1024x612.jpg" alt="" width="491" height="294" /></p>
<h3>What I did</h3>
<p>Typically when I see a screen like this: a large title, the total of my order and then a &#8220;Yes&#8221; and &#8220;No&#8221; button. I think to myself, &#8220;Yes I confirm this charge, lets continue.&#8221; So naturally I click Yes because I didn&#8217;t want to cancel, and then I was presented with this screen:</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-658" title="Select Cash Back" src="http://nickdenardis.com/wp-content/uploads/2010/07/IMAG0252-1024x612.jpg" alt="" width="491" height="294" /></p>
<h3>Not what I expected</h3>
<p>So now I was confused, why is it asking me for cash back? I just wanted to complete my order. So naturally I hit &#8220;No&#8221; and it went to the &#8220;Thank You&#8221; screen I expected before.</p>
<h3>What happened</h3>
<p>After using the machine a few times over the course of a few days I finally realized what was going on. The question on the confirmation screen was not what I expected. It is asking for &#8220;Cash Back&#8221; and not to confirm the total at all. I then felt silly that I had missed this large print text.</p>
<p>Thinking to myself, &#8220;am I the only one who missed this?&#8221; I looked around for a few minutes as others were checking out. Four people checked out with credit cards, they were all presented with the same screen, two of them clicked &#8220;No&#8221; and went on with their day. The other two clicked the &#8220;Yes&#8221; button and in the same state of confusion paused for a minute before clicking the &#8220;No&#8221; cash back. Neither of them wanted cash back but yet still clicked the &#8220;Yes&#8221; button.</p>
<h3>Buttons can be dangerous</h3>
<p>This reminds me a lot of Microsoft Windows and the issue it has had in the past with users installing spyware simply because they click an &#8220;Okay&#8221; button on a dialog box. They don&#8217;t read the box they just assume that &#8220;Yes&#8221; is the default and preferred choice. It reminds me of a great TED talk by <a href="http://www.ted.com/index.php/talks/barry_schwartz_on_the_paradox_of_choice.html">Barry Schwartz on the paradox of choice</a>. When presented with options users will choose the easiest way out.</p>
<p>The lesson is, as a user be careful about what you click. As a producer be good to your users, <a href="http://www.davemulder.com/articles/designing-for-delight/">design to delight</a>, and not to fool them.</p>
<div class="shr-publisher-653"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2010/07/20/user-manipulation-with-green-buttons/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2010/07/20/user-manipulation-with-green-buttons/</feedburner:origLink></item>
		<item>
		<title>Mobile users are either repetitive, bored, or urgent</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/Mh6UHmGLvV0/</link>
		<comments>http://nickdenardis.com/2010/06/22/mobile-users-are-either-repetitive-bored-or-urgent/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 13:15:02 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[habits]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[study]]></category>
		<category><![CDATA[users]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=640</guid>
		<description><![CDATA[In a recent article Google Lays Out Its Mobile User Experience Strategy. In it they bring attention to something we don&#8217;t often think about. Mobile users are either repetitive, bored, or urgent. Repetitive Someone checking for the same piece of information over and over again, like checking the same stock quotes or weather. Google uses [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent article <a href="http://www.informationweek.com/blog/main/archives/2007/04/google_lays_out.html">Google Lays Out Its Mobile User Experience Strategy</a>. In it they bring attention to something we don&#8217;t often think about. Mobile users are either repetitive, bored, or urgent.</p>
<h2>Repetitive</h2>
<p>Someone checking for the same piece of information over and over again, like checking the same stock quotes or weather. Google uses cookies to help cater to mobile users who check and recheck the same data points.</p>
<h2>Bored</h2>
<p>Users who have time on their hands. People on trains or waiting in airports or sitting in cafes. Mobile users in this behavior group look a lot more like casual Web surfers, but mobile phones don&#8217;t offer the robust user input of a desktop, so the applications have to be tailored.</p>
<h2>Urgent</h2>
<p>Request to find something specific fast, like the location of a bakery or directions to the airport. Since a lot of these questions are location-aware, Google tries to build location into the mobile versions of these queries.</p>
<p>Keeping these three user types in context can really help shape your project. If your site doesn&#8217;t accomplish your users goals they likely won&#8217;t come back.</p>
<div class="shr-publisher-640"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2010/06/22/mobile-users-are-either-repetitive-bored-or-urgent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2010/06/22/mobile-users-are-either-repetitive-bored-or-urgent/</feedburner:origLink></item>
		<item>
		<title>Care comes from employees, not institutions</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/Jkhf3NJpljo/</link>
		<comments>http://nickdenardis.com/2010/01/20/care-comes-from-employees-not-institutions/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 13:28:21 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[care]]></category>
		<category><![CDATA[caring]]></category>
		<category><![CDATA[craft]]></category>
		<category><![CDATA[passion]]></category>
		<category><![CDATA[skill]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=617</guid>
		<description><![CDATA[The maintenance people at @waynestate don&#8217;t have to wrap the cord on the vacuum so neatly after every use but they do it anyways. Not only does this show the skill and care they put into their work but also reflects an attitude that spreads. You cannot dictate this type of care, passionate employees breed [...]]]></description>
			<content:encoded><![CDATA[<p>The maintenance people at <a href="http://twitter.com/waynestate">@waynestate</a> don&#8217;t have to wrap the cord on the vacuum so neatly after every use but they do it anyways. Not only does this show the skill and care they put into their work but also reflects an attitude that spreads. You cannot dictate this type of care, passionate employees breed a passionate environment.</p>
<p>How much care do you put into your work? You might not realize who is noticing.</p>
<p><a href="http://nickdenardis.com/wp-content/uploads/2010/01/care.jpg"><img class="aligncenter size-full wp-image-618" title="Caring" src="http://nickdenardis.com/wp-content/uploads/2010/01/care_small.jpg" alt="" width="500" height="393" /></a></p>
<div class="shr-publisher-617"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2010/01/20/care-comes-from-employees-not-institutions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2010/01/20/care-comes-from-employees-not-institutions/</feedburner:origLink></item>
		<item>
		<title>Don’t abandon users, always be testing</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/M_n6CDpbvC8/</link>
		<comments>http://nickdenardis.com/2009/12/28/dont-abandon-users-always-be-testing/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 15:58:58 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[casev]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[labels]]></category>
		<category><![CDATA[sheraton]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=597</guid>
		<description><![CDATA[A few weeks ago at the CaseV conference I was trying to get wifi in the Chicago Sheraton and unfortunately it was not free, they charge by the day. I fired up my laptop fully prepared to pay the $13.63 for a day&#8217;s worth of internet when I was presented with the form above. A [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://nickdenardis.com/wp-content/uploads/2009/12/form-blank.png"><img class="aligncenter size-full wp-image-602" title="form-blank" src="http://nickdenardis.com/wp-content/uploads/2009/12/form-blank.png" alt="" width="518" height="384" /></a></p>
<p style="text-align: left;">A few weeks ago at the <a href="http://www.casefive.org/media/index.htm">CaseV conference</a> I was trying to get wifi in the <a href="http://www.sheratonchicago.com/">Chicago Sheraton</a> and unfortunately it was not free, they charge by the day. I fired up my laptop fully prepared to pay the $13.63 for a day&#8217;s worth of internet when I was presented with the form above.</p>
<h2 style="text-align: left;">A few things struck me as odd.</h2>
<p style="text-align: left;">The first of course was the <strong>inability to read the labels</strong> for each field. This made it very difficult to use unless you <a href="http://nickdenardis.com/wp-content/uploads/2009/12/form-highlighted.png">highlight the entire page</a>.</p>
<p style="text-align: left;">The second was the URL, it was a local address and the page was <strong>not protected by an SSL</strong>. No way was I going to put my credit card into a form without an SSL. Even a self signed certificate would have worked but CC information going over the air with potentially dozens of people able to intercept it does not sit well with me.</p>
<p style="text-align: left;">Last but not least the <strong>lack of instructions, terms or even description</strong> of what I was about to pay for really turned me off. Every customer asks &#8220;what is in it for me&#8221; before taking any action online. If the benefit doesn&#8217;t outweigh the cost the user will not continue. In this case it&#8217;s so unclear what the user is getting I would be surprised if anyone has filled out and submitted this form.</p>
<h2 style="text-align: left;">Continuous testing</h2>
<p style="text-align: left;">I&#8217;m sure they didn&#8217;t design the form to be blank like this but whether it was the browser I was using or some change got moved to production that broke the form brings to light a very important lesson. Make sure you test all primary user paths every time a change goes in to production. It might sounds like a daunting task but something like this can easily happen if no one is watching. Just image how many people they are loosing because they didn&#8217;t take 10 minutes to test their form.</p>
<div class="shr-publisher-597"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2009/12/28/dont-abandon-users-always-be-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2009/12/28/dont-abandon-users-always-be-testing/</feedburner:origLink></item>
		<item>
		<title>Currently: Watching, Listening and Reading</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/qKstXLwevtM/</link>
		<comments>http://nickdenardis.com/2009/11/27/currently-watching-listening-and-reading-2/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 14:55:21 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[listening]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[watching]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=583</guid>
		<description><![CDATA[Currently Watching: Beautiful Losers A film about youth, creativity and insight into the culture of art. It&#8217;s now available on iTunes if it&#8217;s not playing in a theater near you. Currently Listening: Raditude (Weezer) Weezer&#8217;s newest album which does have the same feel as their older songs but has a new attitude. My favorite song [...]]]></description>
			<content:encoded><![CDATA[<h3>Currently Watching: <a href="http://www.beautifullosers.com/">Beautiful Losers</a></h3>
<p><a href="http://www.beautifullosers.com/"><img class="aligncenter size-full wp-image-584" title="beautiful-losers" src="http://nickdenardis.com/wp-content/uploads/2009/11/beautiful-losers.jpg" alt="beautiful-losers" /></a><br />
A film about youth, creativity and insight into the culture of art. It&#8217;s now available on <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=333312137&amp;s=143441">iTunes</a> if it&#8217;s not playing in a theater near you.</p>
<h3>Currently Listening: <a href="http://www.amazon.com/gp/product/B002U5535K?ie=UTF8&amp;tag=nicden-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002U5535K">Raditude</a> (Weezer)</h3>
<p><a href="http://www.amazon.com/gp/product/B002U5535K?ie=UTF8&amp;tag=nicden-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B002U5535K"><img class="aligncenter size-full wp-image-587" title="weezer" src="http://nickdenardis.com/wp-content/uploads/2009/11/weezer.jpg" alt="weezer" /></a><br />
Weezer&#8217;s newest album which does have the same feel as their older songs but has a new attitude. My favorite song is &#8220;Can&#8217;t Stop Partying&#8221;</p>
<h3>Currently Reading: <a href="http://www.amazon.com/gp/product/0316069906?ie=UTF8&amp;tag=nicden-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0316069906">Eating Animals</a> (Jonathan Safran Foer)</h3>
<p><a href="http://www.amazon.com/gp/product/0316069906?ie=UTF8&amp;tag=nicden-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0316069906"><img class="aligncenter size-full wp-image-585" title="eating-animals" src="http://nickdenardis.com/wp-content/uploads/2009/11/eating-animals.jpg" alt="eating-animals" /></a><br />
I&#8217;m not a vegetarian but do eat more vegetables than meat. A friend recommended this book and I have been addicted to it. In this book Jonathan experiences and details how the meat we eat gets on our plates, the myths and truths about our eating habits and traditions.</p>
<div class="shr-publisher-583"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2009/11/27/currently-watching-listening-and-reading-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2009/11/27/currently-watching-listening-and-reading-2/</feedburner:origLink></item>
		<item>
		<title>Enhance user experience by auto-selecting location</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/dVZ2vlHOyEY/</link>
		<comments>http://nickdenardis.com/2009/11/26/enhance-user-experience-by-auto-selecting-location/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 11:58:06 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[applebees]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[retail]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=563</guid>
		<description><![CDATA[A few days ago I did something I&#8217;ve never done before, get take out from Applebees Restaurant. (I am in no way endorsing Applebees, just merely writing about an experience I had with them) Upon visiting their site something sparked my attention. Highlighted on the image above is the closest Applebees location to me. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://applebees.com/"><img class="aligncenter size-full wp-image-570" title="applebees-location" src="http://nickdenardis.com/wp-content/uploads/2009/11/applebees-location1.jpg" alt="applebees-location" /></a></p>
<p>A few days ago I did something I&#8217;ve never done before, get take out from <a href="http://applebees.com/">Applebees Restaurant</a>. (I am in no way endorsing Applebees, just merely writing about an experience I had with them) Upon visiting their site something sparked my attention. Highlighted on the image above is the closest Applebees location to me. I have never been to this site before or set any type of settings previously.</p>
<p>This was great since I came with a purpose, to look at the menu and call the closest location. By them taking that initial step for me I was able to complete my task quicker. Not to mention if I were deciding between two restaurants of equal quality the one that provided me the most information the fastest would probably get my sale.</p>
<p>Location by IP is not anything new, geotargeted ads are everywhere but using it to help users with primary tasks make them feel a greater sense of customer service and increase your sales and ROI. The retail industry is in the best position to take advantage of this since all brick and mortar sales are driven by location. Other industries may have to get a little more creative.</p>
<p>Like I mentioned above location based targeting is not anything new but its use in new ways can really have an impact on your end users. I know I came away happier.</p>
<div class="shr-publisher-563"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2009/11/26/enhance-user-experience-by-auto-selecting-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2009/11/26/enhance-user-experience-by-auto-selecting-location/</feedburner:origLink></item>
		<item>
		<title>MSU World Usability Day 2009 Wrap Up</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/XSauD2Xnyb4/</link>
		<comments>http://nickdenardis.com/2009/11/13/msu-world-usability-day-2009-wrap-up/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:19:15 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[event]]></category>
		<category><![CDATA[#wud2009]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[msu]]></category>
		<category><![CDATA[usabilty]]></category>
		<category><![CDATA[world]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=539</guid>
		<description><![CDATA[Yesterday I attended the MSU World Usability Day which focused on usability and accessibility not only for the web but for the physical world. The theme of this years World Usability Day was sustainability. One of the main themes throughout the day was there is a large difference between things appearing to be usable and their actual [...]]]></description>
			<content:encoded><![CDATA[<p><a style="float: right; margin: 6px;" title="Great turn out at #wud2009 at MSU by Nick DeNardis, on Flickr" href="http://www.flickr.com/photos/dorkstyle/4099026276/"><img style="border: 0px initial initial;" src="http://farm3.static.flickr.com/2804/4099026276_47c913a3c0_m.jpg" alt="Great turn out at #wud2009 at MSU" width="240" height="180" /></a>Yesterday I attended the <a href="http://usability.msu.edu/conf/2009/Default.aspx">MSU World Usability Day</a> which focused on usability and accessibility not only for the web but for the physical world. The theme of this years <a href="http://www.worldusabilityday.org/">World Usability Day</a> was sustainability. One of the main themes throughout the day was there is a large difference between things appearing to be usable and their actual use.</p>
<p>Below is a run through of the day with a few things I wanted to highlight.</p>
<h2 style="font-size: 1.5em;">In the morning</h2>
<p>There were two break out sections, I attended the <a id="m1" title="ABSTRACT:  WCAG 2.0, ARIA and AJAX" href="http://usability.msu.edu/conf/2009/Abstracts.aspx#m1">WCAG 2.0, ARIA and AJAX</a> presentation. It combined low level introductions of the current and future standards and how they are applied. I was surprised to see how little the browsers are taking advantage of these accessibility standards. Firefox 3.6 implements the most, 47 of the 59 total ARIA roles. They also did a <a href="http://usability.msu.edu/conf/2009/AccessibleAJAXDemo/">recorded session using Jaws</a> (<span style="background-color: #ffffcc;">this was my favorite part of the day</span>) with a regular HTML page, regular AJAX and ARIA enabled AJAX. They were nice enough to put the examples and videos online for everyone to see. It made an amazing difference watching the video and see just how easy it was to add ARIA into AJAX applications and actually make your site usable to users on a screen reader.</p>
<h2 style="font-size: 1.5em;">After lunch</h2>
<p>A panel presented the <a id="a1" title="ABSTRACT:  Special Session:  Contemporary Issues of IT in the  Sustainable Global Knowledge Economy" href="http://usability.msu.edu/conf/2009/Abstracts.aspx#a1">Contemporary Issues of IT in the Sustainable Global Knowledge Economy</a>. This was very interesting because it went beyond the typical accessibility and talked about access. Starting with delivering broadband to rural areas, currently 500,000 Michigan homes are in rural areas where no broadband service is offered. Using the governments stimulus incentives this could all be changed.</p>
<p>Then more locally they talked about how <a href="http://www.iteclansing.org/">ITEC Lansing</a> is transforming the technology skills for Lansing&#8217;s youth. Sharron Rush from <a href="http://www.knowbility.org/main/">Knowbility</a> then talked about how IT is changing the game for people with disabilities, given them the ability to access the outside world like no other time in history. She really put it in perspective when she did an exercise that explained by the time you are 80, a large majority of people (around 90%) will develop a some type of disability.</p>
<p><a style="float: right; margin: 6px;" title="Think you know how to set a household clock? If you're at #wud2009  at MSU come see the MIUPA table and try it out, you might be surprised. by Nick DeNardis, on Flickr" href="http://www.flickr.com/photos/dorkstyle/4099054066/"><img style="border: 0px initial initial;" src="http://farm3.static.flickr.com/2501/4099054066_43120925cb_m.jpg" alt="Think you know how to set a household clock? If you're at #wud2009  at MSU come see the MIUPA table and try it out, you might be surprised." width="240" height="180" /></a></p>
<h2 style="font-size: 1.5em;">During the break</h2>
<p>We did a usability study with household alarm clocks. We had four different clocks and had people estimate how easy/hard it would be to change the time/alarm. We then timed them changing the clock&#8217;s time and if they were successful or not. We then had them give an actual score to how easy/hard it was and comments to why it was that way. Only one clock turned out to be easier than expected. The final results should be up soon.</p>
<h2 style="font-size: 1.5em;">After the break</h2>
<p>An interesting presentation by Shane Schulze from Ford about hybrid cars, batteries and where it is going. During the Q&amp;A a very good point was brought up by a participant who was blind. She asked what Ford was planning to do about how silent electric cars are. She walks everywhere as do people without disabilities and silent cars are a big hazard. This was a great question, unfortunately Shane didn&#8217;t have a concrete answer at the time. I really hope this <a href="http://www.hybridcars.com/safety/blind-people-hybrid-safety.html">topic stays on Ford&#8217;s and the other car manufacturers radar</a>.</p>
<h2 style="font-size: 1.5em;">Lastly</h2>
<p>I wanted to thank everyone from the <a href="http://usability.msu.edu/default.aspx">MSU Usability &amp; Accessibility Center</a> who put this conference on. The <a href="http://miupa.org/">MIUPA</a>and all the vendors who made this happen. It was a great experience and I encourage anyone to attend a World Usability Day event near you next year.</p>
<p>Remember, it is us, the every day workers who can make the largest impact in usability, accessibility and access. Don&#8217;t accept the status quo, be a leader and demand access for all. Just because you have a disability doesn&#8217;t mean you should be locked out of information.</p>
<div class="shr-publisher-539"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2009/11/13/msu-world-usability-day-2009-wrap-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2009/11/13/msu-world-usability-day-2009-wrap-up/</feedburner:origLink></item>
		<item>
		<title>LinkedIn and the WSU identity crisis. #fail</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/Xv4jM3SGmhE/</link>
		<comments>http://nickdenardis.com/2009/11/05/linkedin-and-the-wsu-identity-crisis-fail/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 17:00:56 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[fail]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[washingtonstate]]></category>
		<category><![CDATA[waynestate]]></category>
		<category><![CDATA[wsu]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=529</guid>
		<description><![CDATA[There are quite a few WSU&#8217;s out there, Wayne State University (where I am from), Washington State University, Wichita State University, Wright State University, etc. So referencing WSU on the web doesn&#8217;t always work. Today I received a LinkedIn invitation from someone I did not know in person. So I checked out her profile and [...]]]></description>
			<content:encoded><![CDATA[<p>There are quite a few WSU&#8217;s out there, <a href="http://wayne.edu/">Wayne State University</a> (where I am from), <a href="http://wsu.edu/">Washington State University</a>, <a href="http://www.wichita.edu/">Wichita State University</a>, <a href="http://www.wright.edu/">Wright State University</a>, etc. So referencing WSU on the web doesn&#8217;t always work.</p>
<p>Today I received a <a href="http://linkedin.com/">LinkedIn</a> invitation from someone I did not know in person. So I checked out her profile and got down to a reference to Wayne State University. I simply scrolled my mouse over the title and this pop-up appeared:</p>
<p><a href="http://nickdenardis.com/wp-content/uploads/2009/11/wsu-fail.png"><img class="alignnone size-full wp-image-530" title="WSU Fail" src="http://nickdenardis.com/wp-content/uploads/2009/11/wsu-fail.png" alt="WSU Fail" /></a></p>
<p>The pop-up is a normal action of LinkedIn but the content is completely wrong. They mixed up Washington State and Wayne State!</p>
<p>I cannot tell which university is correct, my guess is Wayne State since their other positions have been in Michigan. Being a programmer at heart I try to analyze how this could possibly  happen in my head but the only reason I continue to come up with is lazy  programming.</p>
<p>I wonder how many other LinkedIn blunders are out there.</p>
<div class="shr-publisher-529"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2009/11/05/linkedin-and-the-wsu-identity-crisis-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2009/11/05/linkedin-and-the-wsu-identity-crisis-fail/</feedburner:origLink></item>
		<item>
		<title>TEDxDetroit Wrap Up</title>
		<link>http://feedproxy.google.com/~r/nickdenardis/~3/NEF50NBz9pM/</link>
		<comments>http://nickdenardis.com/2009/10/25/tedxdetroit-wrap-up/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 15:54:06 +0000</pubDate>
		<dc:creator>nickdenardis</dc:creator>
				<category><![CDATA[event]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[detroit]]></category>
		<category><![CDATA[LTU]]></category>
		<category><![CDATA[ted]]></category>
		<category><![CDATA[tedxdetroit]]></category>
		<category><![CDATA[wrapup]]></category>

		<guid isPermaLink="false">http://nickdenardis.com/?p=510</guid>
		<description><![CDATA[This last week I attended TEDxDetroit. An independently organized TED event held at Lawrence Tech University in Southfield, Michigan. The idea of TEDxDetroit is to spread positive ideas for the world from Detroit. Seating was limited and I was one of the lucky 150 hand picked attendees. Although the videos from all the speakers will [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tedxdetroit.com/"><img class="aligncenter size-full wp-image-512" title="TEDxDetroit Logo" src="http://nickdenardis.com/wp-content/uploads/2009/10/tedxdetroitweblogo.gif" alt="TEDxDetroit Logo" /></a></p>
<p>This last week I attended <a href="http://tedxdetroit.com/">TEDxDetroit</a>. An independently organized TED event held at Lawrence Tech University in Southfield, Michigan. The idea of TEDxDetroit is to spread positive ideas for the world from Detroit. Seating was limited and I was one of the lucky 150 hand picked attendees. Although the videos from all the speakers will be available shortly I wanted to take some time and reflect on the event as a whole.</p>
<h2>The Event</h2>
<p>All the speakers were either from the Detroit area or had some connection to Detroit. <span><a href="http://twitter.com/CharlieCurve">Charlie Wollborg</a> along with a few others did an amazing job bringing in such a diverse group of speakers. The day was broken into four sections, powering, educating, perceiving and connecting.</span></p>
<p><span>The <strong>powering section</strong> started out strong with some inspiration and then got down to business with an <a href="http://accioenergy.com/">alternative way to gather wind energy</a> and a different way to think about electric cars. Mixed in was musical performances about Michigan and Detroit.</span></p>
<p><span><strong>Educating section</strong> was a filled with local Detroiters who are really making a difference in the community. <a href="http://www.publicartworkz.org/">Chazz Miller</a> stood out the most because of the amazing things he is doing with art, Detroit and the youth. He was referred to many times by other presenters as a &#8220;hurricane&#8221;, fundamentally changing Detroit with amazing force.</span></p>
<p><span>The <strong>perceiving section</strong> had some amazing stories about the current and future state of Detroit. Two presenters really stuck out, the first was a <a href="http://www.positivedetroit.net/2009/10/tedxdetroit-video-poet-d-blair-peforms.html">poem by D Blair titled &#8220;Detroit (While I Was Away)&#8221;</a>.  You can see an unofficial recording of it at the link. It&#8217;s a view that many of us have of Detroit, it&#8217;s what makes Detroit home. Although it&#8217;s not the best view it shows the passion, drive and determination of the entire city. The second was <a href="http://www.turningwhite.com/">Lee Thomas talking about his struggle with </a></span><a href="http://www.turningwhite.com/">vitiligo</a> and turning all lives experiences into positive power.</p>
<p>The last <strong>section connecting</strong> was also highly inspiring. <a href="http://www.gocomedy.net/">PJ Jacokes talked about demanding imagination</a>. PJ runs Go Comedy, an improv theater and encourages all of us to take time to explore our imagination. He asks &#8220;When was the last time the floor was made of lava&#8221;? A world without imagination is boring and mundane, we cannot get caught in the impression of &#8220;adulthood&#8221; and just let go and dream every once and a while. It will make you focus on the things that are really important.</p>
<h2>Takeaways</h2>
<p>The attendees were amazing, everyone I met was very open, friendly and doing great work. All the speakers were very inspiring and uplifting and had a very clear vision for Detroit and how to move it forward. The ideas have to start someplace and these speakers took full advantage of their time to inspire us.</p>
<p>I am so glad I was invited to attend TEDxDetroit and have been inspired to go forth to inspire others and move Detroit forward.</p>
<p>I also <a href="http://www.flickr.com/photos/dorkstyle/sets/72157622635698736/">posted a few photos to Flickr</a> from the event.</p>
<div class="shr-publisher-510"></div>]]></content:encoded>
			<wfw:commentRss>http://nickdenardis.com/2009/10/25/tedxdetroit-wrap-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nickdenardis.com/2009/10/25/tedxdetroit-wrap-up/</feedburner:origLink></item>
	</channel>
</rss>
