<?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>Distracted by Design</title>
	<atom:link href="http://katewalser.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://katewalser.com</link>
	<description>Usability . User Experience Design . Web 2.0 . Accessibility</description>
	<lastBuildDate>Wed, 29 Jun 2011 01:32:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Content Strategy and ROI</title>
		<link>http://katewalser.com/2010/07/content-strategy-and-roi/</link>
		<comments>http://katewalser.com/2010/07/content-strategy-and-roi/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 21:15:14 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[content strategy]]></category>
		<category><![CDATA[roi]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=176</guid>
		<description><![CDATA[<p>&#8220;How do you prove ROI of content to the boardroom,&#8221; was the question on the Content Strategy Google Group.</p>
<p>Before answering this question, stop and ask yourself &#8211; &#8220;What&#8217;s important to your boardroom?&#8221;  That should drive how you prove ROI. &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>&#8220;How do you prove ROI of content to the boardroom,&#8221; was the question on the Content Strategy Google Group.</p>
<p>Before answering this question, stop and ask yourself &#8211; &#8220;What&#8217;s important to your boardroom?&#8221;  That should drive how you prove ROI.  You may think you don&#8217;t know &#8211; just look at any mission statement, marketing material, or annual report kicking around, and you&#8217;ll find your answers.</p>
<p>Here are examples:</p>
<ul>
<li>If <strong>new prospects or customers</strong> is an objective, then look at site traffic and new visits, how many pages per visit, etc.</li>
<li>If <strong>conversion</strong> (visits &#8211;&gt; customers, transactions) is objective, then look at how many site visits generated transactions.</li>
<li>If <strong>increased public awareness</strong> is a goal, then mentions in media / blogs, etc. would be a good indicator.</li>
<li>If <strong>SEO</strong> is a goal, then look at search rankings before / after.</li>
</ul>
<p>If you work with a large organization, chances are they&#8217;ve tied these types of objectives to some dollar amount (e.g., attract new customers to generate revenues that push us over $1 Bn).  If you can get those numbers (or make guesses based on where company is now and just assume 10-12% growth goals), you can start to translate increased visits, new customers, conversion, etc. into dollar amounts.</p>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2010/07/content-strategy-and-roi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;How do I check for Section 508 compliance?&#8221;</title>
		<link>http://katewalser.com/2009/09/accessibility-section-508-reviews/</link>
		<comments>http://katewalser.com/2009/09/accessibility-section-508-reviews/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 05:20:21 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[compliance]]></category>
		<category><![CDATA[screen reader]]></category>
		<category><![CDATA[Section 508]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=164</guid>
		<description><![CDATA[<p>You just found out your application or website needs to be accessible and are handed a set of Section 508 standards. Where do you start? After the question came up on the IXDA discussion list recently, I realized it still&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>You just found out your application or website needs to be accessible and are handed a set of Section 508 standards. Where do you start? After the question came up on the IXDA discussion list recently, I realized it still seems like a scary prospect for people new to accessibility. So hopefully this will help.</p>
<h2>Validate</h2>
<p>It&#8217;s not a Section 508 standard, but before you do anything else, validate your code. Why? Because when assistive technologies are looking through code and trying to translate that into spoken text, Braille displays, etc., they&#8217;re trying to figure out what&#8217;s what. If you have unclosed tags, improperly nested tags, etc. they don&#8217;t know what&#8217;s what and choke. Take a listen to some bad code with JAWS (popular screen reader) &#8211; you won&#8217;t know what hit you.</p>
<p>There are free tools out there like the <a href="http://validator.w3.org/" target="_blank">W3C Validator tool</a> (http://validator.w3.or<cite>g)</cite> and many IDEs like Dreamweaver have built in validation options. It can take a few minutes per site or page, depending on what type of site you have (content or application), and it will make a huge difference.</p>
<h2>Content Sites</h2>
<p>If your site contains content, which even web-based applications will, look at it in this way:</p>
<ul>
<li><strong>Navigation / links</strong> &#8211; can you reach all navigation (including nav bar menus) via the keyboard? if not, do you have landing pages that can be reached by keyboard as alternative to mouseover menus?</li>
<li><strong>Text</strong> &#8211; if you use images for headings, nav links, etc. do you have alt attribute or text behind it (and is your image still readable when zoomed in?)</li>
<li><strong>Headings</strong> &#8211; are they identified via &lt;h1&gt;, &lt;h2&gt;, etc.? That helps people jump to different parts of the document and bypass nav menus</li>
<li><strong>Tables of data</strong> &#8211; do you have table headers identified with &lt;th&gt; (CSS classes like &#8220;heading&#8221; etc. aren&#8217;t enough)</li>
<li><strong>CSS for general site and content layout, not a table-based layout </strong>- and following on tables, imagine hearing there are 10 tables on a page? or checking to see if your tables are used for data and need &lt;th&gt; tags? If the web standards mavens haven&#8217;t convinced you to go with CSS, run your page through Fangs (mentioned below) or JAWS and maybe that will convince you! &#8220;3 tables&#8230;table with 1 column and 20 rows&#8230;table with 3 columns and 18 rows&#8221; (and nothing contains any data worthy of a table! ugh)</li>
<li><strong>Search, contact fields</strong> &#8211; when you have form elements, do you use label tags or title attribute to provide labels? (preferrably visible onscreen to help all visitors) if you have drop-down menus, can users select from them and then select the action (e.g., select a category, then click Go; vs. automatically moving to another place as they select)</li>
<li><strong>Unique labels</strong> <strong>for documents</strong> &#8211; if you have PDFs and other doc lists, are the links or icons labeled with unique on-screen text (preferrably) or title attribute (so someone using screen reader doesn&#8217;t har &#8220;PDF PDF PDF&#8221; etc.)</li>
</ul>
<h2>Web-based Applications</h2>
<p>If the site&#8217;s a web-based app, forms and tables for presenting record/data collections are usually more of the beast. You&#8217;ll want to check items above, and then really go deep into the forms, checking that:</p>
<ul>
<li> <strong>&lt;label&gt; </strong>tags are used, preferrably explicitly (e.g., &lt;label for=&#8221;idforfield&#8221;&gt;labelname&lt;/label&gt;&lt;input id=&#8221;idforfield&#8221;&gt;&#8230;</li>
<li><strong>&lt;fieldset&gt; and &lt;legend&gt;</strong> are used with groupings of related fields (e.g., multiple parts to an address block, phone numbers with extensions, etc.)</li>
<li><strong>Error messages and feedback </strong>can be communicated to users, possibly via &lt;span&gt; tags within the &lt;label&gt; tags (set span to hidden when there&#8217;s no error message, and then set to visible when there&#8217;s an error so it&#8217;s picked up by assistive technology)</li>
<li><strong>Any data-dependent items</strong> (e.g., lists refresh based on selection)? is the change downstream?</li>
<li><strong>You&#8217;ve used CSS for laying out forms</strong>, rather than using a table-driven layout</li>
<li>If you&#8217;re using <strong>AJAX and other RIA components</strong>, and want to know about ARIA, well, that can cover several posts or a full-day tutorial! (talk to me)</li>
</ul>
<p>There&#8217;s more (e.g., image maps, frames, etc.), but the above covers most of the usual problems.</p>
<h2>Favorite Plugins &amp; Tools</h2>
<p>Firefox is great if you have the flexibility to use it for checking pages. Here&#8217;s a list of my favorite plugins&#8230;</p>
<ul>
<li><strong><a href="https://addons.mozilla.org/firefox/addon/60">Web Developer Toolbar</a> </strong>(<a href="https://addons.mozilla.org/firefox/addon/60">https://addons.mozilla.org/firefox/addon/60</a>) &#8211; great for displaying information about various fields, content, etc. so you can see if heading tags, labels, etc. are missing</li>
<li><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a></strong> (<a href="https://addons.mozilla.org/en-US/firefox/addon/1843">https://addons.mozilla.org/en-US/firefox/addon/1843</a>) &#8211; one of the greatest tools ever, lets you inspect elements on a page and figure out what&#8217;s happening. So handy when used with JAWS and other screen readers / tools as you&#8217;re checking.</li>
<li><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/402">Fangs</a></strong>, a screen reader emulator &#8211; it&#8217;s not a perfect emulation, but does give you an idea (<a href="https://addons.mozilla.org/en-US/firefox/addon/402">https://addons.mozilla.org/en-US/firefox/addon/402</a>)</li>
</ul>
<p>The Opera browser&#8217;s great for checking accessibility too.</p>
<p>If you&#8217;re using IE, you can install the <strong><a href="http://www.paciellogroup.com/resources/wat-ie-about.html">Web Developer Toolbar</a></strong> that&#8217;s useful. Jim Thatcher has some great <strong><a href="http://jimthatcher.com/favelets/">favelets</a></strong> as well to help tweak the Web Developer toolbar.</p>
<p>Hope it helps. This may seem overwhelming &#8211; once you run through it once or twice, you become familiar with what to check.</p>
<p>For what it&#8217;s worth, the automated tools can help spot items <strong>to</strong> check, but you&#8217;re better off with a good approach and plugins for Firefox / IE to check things. The automated tools can give some false positives and negatives that could be pretty critical. I&#8217;ve seen organizations get excited when the tools give a green light (despite major accessibility flaws, especially where forms are concerned), and concerned customers when the report shows all the &#8220;warnings&#8221; for elements that needed manual checks. And the times, they are a-changing, so the techniques that were givens 5 years ago aren&#8217;t the only way to provide information to users anymore.</p>
<h2>Delicious Resources</h2>
<p>If you&#8217;re brave, check out my Delicious bookmarks on Section 508 and accessibility &#8211; I&#8217;ve bookmarked a bunch of tools and articles I&#8217;ve found over the years at <a href="http://delicious.com/walserk/accessibility">http://delicious.com/walserk/accessibility</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/09/accessibility-section-508-reviews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today I Was Left Speechless &#8211; World Refugee Day</title>
		<link>http://katewalser.com/2009/06/world-refugee-day/</link>
		<comments>http://katewalser.com/2009/06/world-refugee-day/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 03:08:53 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Better World]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=102</guid>
		<description><![CDATA[Today I attended the <a href="http://www.unrefugees.org/site/c.lfIQKSOwFqG/b.5261389/k.66A8/World_Refugee_Day_Angelina_Jolie_calls_for_greater_understanding_of_the_plight_of_refugees.htm">World Refugee Day in DC</a> event.

Today I saw 200 some people who know there's a refugee crisis come together to recognize those who are helping them, the <strong>42 million</strong> uprooted people - 16 million forced to leave their countries, 26 million internally displaced people and 827,000 asylum seekers. (Reference: <a href="http://www.unhcr.org/4a3b98706.html">http://www.unhcr.org/4a3b98706.html</a>)]]></description>
			<content:encoded><![CDATA[<p><em>Note: &#8220;Today&#8221; was Thursday, June 18.<br />
If you&#8217;re returning, please see the <a href="#updates">updates</a> I&#8217;ve added since hearing from others.</p>
<p><a rel="attachment wp-att-147" href="http://katewalser.com/2009/06/world-refugee-day/angelina_jolie_unhcr/"><img class="size-thumbnail wp-image-147" title="Angelina Jolie speaks at World Refugee Day 2009 (Photo: UNHCR)" src="http://katewalser.com/wordpress/wp-content/uploads/2009/07/angelina_jolie_unhcr-150x150.jpg" alt="Angelina Jolie speaks at World Refugee Day 2009 (Photo: UNHCR)" width="150" height="150" /></a></p>
<p></em></p>
<p>Today I attended the <a href="http://www.unrefugees.org/site/c.lfIQKSOwFqG/b.5261389/k.66A8/World_Refugee_Day_Angelina_Jolie_calls_for_greater_understanding_of_the_plight_of_refugees.htm">World Refugee Day in DC</a> event.</p>
<p>Today I saw 200 some people who know there&#8217;s a refugee crisis come together to recognize those who are helping them, the <strong>42 million</strong> uprooted people - 16 million forced to leave their countries, 26 million internally displaced people and 827,000 asylum seekers. (Reference: <a href="http://www.unhcr.org/4a3b98706.html">http://www.unhcr.org/4a3b98706.html</a>)</p>
<p>It&#8217;s not like these refugees are planning their next vacation and pack several suitcases to go. Nor do they have stores where they&#8217;re going to buy what the toothbrush, underwear, or snacks they forgot to bring. They go in the night. They run when the &#8220;bad men&#8221; come. Sometimes with a bag of their most precious belongings. Often with just the clothes on their back.<span id="more-102"></span></p>
<p>To give you a sense of scale, imagine telling all the people</p>
<div id="attachment_106" class="wp-caption alignright" style="width: 326px"><a href="http://www.unhcr.org/4a3b98706.html"><img class="size-full wp-image-106" title="usstates-uprooted" src="http://katewalser.com/wordpress/wp-content/uploads/2009/06/usstates-uprooted.png" alt="To give a sense of scale, if the world's uprooted and refugees were US states, New York, New Jersey, Maryland, and Virginia would be gone." width="316" height="193" /></a><p class="wp-caption-text">To give a sense of scale, 16 million people are refugees outside their countries. That&#39;s the populations of New Jersey + Virginia  combined. Imagine if they all had to leave. Another 26 million (New York + Maryland populations combined) must leave their homes and move to another part of their country.</p></div>
<p>who live in the states of New York (19.5 M), New Jersey (8.7 M), Maryland (5.6 M), and Virginia (7.8 M) to get out and leave their homes / belongings behind.</p>
<p>Or telling the people in the 39 most populous cities in the US to get out.</p>
<p>Today I saw a Hollywood star and Today show anchor choke up retelling stories about refugees they&#8217;ve met.</p>
<p>Today I became a huge fan of Angelina Jolie - not for any movies she&#8217;s starred in (I can name about one) - but for realizing she could use her status to help change the lives of refugees and for taking the time to talk with them individually (and even check in with them later).</p>
<p>Today I learned why we don&#8217;t hear more in the US news and must look to organizations like the <a href="http://www.unhcr.org/">United Nations High Commission for Refugees (UNHCR) </a>and <a href="http://www.unrefugees.org">USA for UNHCR</a> to tell us. While household names like Ann Curry (who MCed the day and moderated a panel later) want to tell more stories about what&#8217;s really happening in Darfur / Afghanistan / Swat Valley / etc., those who run the news bureaus think (and sadly, may be right) that most Americans just want to hear about &#8220;popular news&#8221; like the latest romances and breakups of Hollywood stars.</p>
<p>Today I saw an audience of 200 people tearing up / crying hearing the stories, including those of the Humanitarian Award winner, a Tutsi refugee woman - <a href="http://www.mapendo.org/about_rose.cfm">Rose Mapendo (http://www.mapendo.org/about_rose.cfm)</a> - who received a Humanitarian Award for surviving and inspiring others.</p>
<p>I saw that same woman - a mother like me - tell how she was thrown in a Democratic Republic Congo prison with several other families because they were Tutsis, how she learned she was pregnant only after becoming a widow at the hands of her captors / commandants, how she only then began to question and abandon her faith in God when learning she was pregnant, and how she chose her babies&#8217; (she delivered <strong>twins</strong> - talk about God having a sense of humor) names in part by thinking of how they might be spared, as the commandants weren&#8217;t discriminating or merciful in who they killed. She named the babies after those commandants - in hopes that the &#8220;honor&#8221; would help them spare the babies and to show she was not the enemy.</p>
<p>Today I heard refugees expressing gratitude and thanking people like Ben Affleck, Cooper Anderson, Susan Sarandon, and others who have brought attention to the plight of refugees, helped them to escape, or given them money or basic things they need to survive.</p>
<p>Today I heard from a boy in Darfur, who&#8217;s been in a refugee camp for the past 6 years say what he wanted. Simple really - &#8220;I want President Bashir to go. I want a secondary school. I want more and better teachers. We want to go back home.&#8221;</p>
<p>Today I saw <a href="http://gregmortenson.com">Greg Mortenson</a> (author of <em><a href="http://www.threecupsoftea.com">Three Cups of Tea</a>,</em> founder of Central Asia Insitute) and <a href="http://www.khaledhosseini.com">Khaled Hosseini</a> (author of <em><a href="http://www.amazon.com/dp/1594489602?tag=katwal-20&amp;camp=213381&amp;creative=390973&amp;linkCode=as4&amp;creativeASIN=1594489602&amp;adid=18NGMSDEETD3WS58GWN5&amp;">The Kite Runner</a></em> and <a href="http://www.amazon.com/dp/1594489602?tag=katwal-20&amp;camp=213381&amp;creative=390973&amp;linkCode=as4&amp;creativeASIN=1594489602&amp;adid=18NGMSDEETD3WS58GWN5&amp;"><em>A Thousand Splendid Suns</em></a>, founder of <a href="http://www.khaledhosseinifoundation.org">The Khaled Hosseini Foundation</a>) talk about violence and unrest in Afghanistan and Pakistan and how educating the young people is the best hope for bringing peace to the area and ridding it of the Taliban. I heard how members of the Taliban, typically recruited from uneducated families, have left after their newly educated mothers show them the light.</p>
<p>And I heard how US Congressmen, upon hearing about the money Greg and others have raised, gave each other pats on the back and high fives - taking credit for something they didn&#8217;t even know was happening.</p>
<p>Today I heard about Halima, a young pregnant woman send her 10-year old sister running upon seeing the Janjaweed as she knew they would attack her sister otherwise. Janjaweed are infamous for their attacks on women especially in attempts to lighten the dark-skinned race by forced encounters. (Calling it &#8220;forced encounters&#8221; to pass through filters - think of a horrible 4-letter word starting with R that victims women most often and that&#8217;s what they do) So instead of letting her 10-year old sister be ruined, she took the brunt of it and had to be carried back to camp.</p>
<p>Today I heard Khalid Hosseini point out that any of us could be refugees - &#8220;the only thing separating you from a refugee is something that didn&#8217;t even involve you&#8230;cosmic lottery.&#8221;</p>
<p><strong>Today I was left speechless. </strong></p>
<p>Because there are no words to truly describe what I heard today. I already knew there was a problem. But until I heard the stories, the numbers and far-away places like Chad, Darfur, Burundi, and Bhutan were hard to imagine.</p>
<p>The words above are meant to give you some idea of the problem and atrocities occurring to innocent people, but I fear that only after hearing the stories and seeing refugees themselves will you begin to appreciate that like Ms. Jolie put it -</p>
<blockquote><p>&#8220;Refugees aren&#8217;t numbers - they are mothers, fathers, daughters and sons&#8230;they are survivors and the most impressive people I have ever met.&#8221;</p></blockquote>
<p>There are video clips to give you some sense of what I heard. But by themselves, without these same individuals in front of you, they are only that - video clips. They lose the sentiment and profundity you get from hearing live from people in the same room where you are sitting. People who have escaped horrible, horrible,  indescribable conditions that I could not even have imagined before hearing from them today.</p>
<h2>Help the 42 Million - Every Bit Counts</h2>
<p>Today I saw two friends hear about challenges refugees face when they relocate in America - understanding rent, finding clothes / furniture, driving - and realize what a difference they&#8217;d made on new-to-America refugees&#8217; lives by driving them (one from Liberia, others from Iraq) around or helping them to find clothing and furniture.</p>
<p>One person truly can make a difference, regardless of fame or fortune.</p>
<h2>Here&#8217;s How You Can Help - Time, Talent, or Money</h2>
<h3><strong>Time &amp; Talent - Write, Tweet, Share, Spread the Word<br />
</strong></h3>
<p>It doesn&#8217;t always mean money. Sometimes telling others means more. <a href="http://www.youtube.com/watch?v=_n0PewGtca8">Brittani McLeod</a> wasn&#8217;t sure how she could help and came up with this <a href="http://www.youtube.com/watch?v=_n0PewGtca8">video clip</a> she posted to the USA for UNHCR Facebook page after thinking some more.</p>
<ul>
<li><a href="http://www.unrefugees.org/site/c.lfIQKSOwFqG/b.4803601/">USA for UNHCR</a> lists several ways you can get involved</li>
<li><a href="http://www.unhcr.org/pages/49c3646c344.html">UNHCR</a></li>
<li>See <a href="http://www.unrefugees.org/site/c.lfIQKSOwFqG/b.4803607/">USA for UNHCR&#8217;s Campaigns Page</a> to check out other campaigns and ways you can help</li>
<li><a href="http://www.betheirmessenger.org/index.html">Be Their Messenger</a></li>
</ul>
<p>Watch these videos and share them with others.</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=P8y-fCeb0yk&amp;eurl=http%3A%2F%2Fwww.unrefugees.org%2Fsite%2Fc.lfIQKSOwFqG%2Fb.5261389%2Fk.66A8%2FWorld_Refugee_Day_Angelina_Jolie_calls_for_greater_understanding_o&amp;feature=player_embedded">Angelina Jolie speaks at 2009 World Refugee Day</a> - June 18, 2009</li>
</ul>
<p><span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/P8y-fCeb0yk?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;loop=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1" />
<param name="allowFullScreen" value="true" />
<embed wmode="opaque" src="http://www.youtube.com/v/P8y-fCeb0yk?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;loop=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="opaque" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=P8y-fCeb0yk">www.youtube.com/watch?v=P8y-fCeb0yk</a></p></p>
<ul>
<li><a href="http://www.artsengine.net/rose_and_nangabire/">Rose &amp; Nangabire</a> - about Rose Mapendo and her reunification with her 5-year daughter who was left behind in the Democratic Republic of Congo</li>
<li><a href="http://www.youtube.com/watch?v=4GYjZszsCDQ&amp;feature=channel_page">Ben Affleck&#8217;s short film</a> for UNHCR&#8217;s Gimme Shelter Campaign</li>
<li><a href="http://www.youtube.com/watch?v=kZg6khQZYuw">Ann Curry interviews Angelina Jolie</a> - June 18, 2009</li>
</ul>
<h3><strong>Twitter &amp; Social Media<br />
</strong></h3>
<ul>
<li>Follow USA for UNHCR (<a href="http://twitter.com/unrefugeeagency">@UNRefugeeAgency</a>), NothingButNets (<a href="http://twitter.com/NothingButNets">@nothingbutnets</a>)</li>
<li>Tweet about these organizations on Fridays, including their twitter username and #followfriday hashtags to spread the word</li>
<li>Join the <a href="http://apps.facebook.com/causes/1860?m=de0957a2">USA for UNHCR Cause on Facebook</a> and tell others about it</li>
<li>Visit <a href="http://www.youtube.com/user/unhcr">UNHCR&#8217;s YouTube channel</a> and tell others about it</li>
</ul>
<h3><strong>Money - even a few dollars can matter </strong></h3>
<p>Why not sacrifice that soda, dessert, or Starbucks today? That&#8217;s a simple way to start.</p>
<ul>
<li><a href="https://www.kintera.org/site/c.lfIQKSOwFqG/b.5019079/apps/ka/sd/donorcustom.asp?kntaw36705=473257C167E445CAA491B6709D4D453C">USA for UNHCR</a> - $12 can provide education textbooks, exercise books, and pencils for a student for a year. $33 can provide warm blankets to keep refugee families warm on cold, wet nights.<a href="https://www.kintera.org/site/c.lfIQKSOwFqG/b.5019079/apps/ka/sd/donorcustom.asp?kntaw36705=473257C167E445CAA491B6709D4D453C"></a></li>
<li><a href="http://www.ikat.org/">Central Asia Institute</a></li>
<li><a href="http://www.nothingbutnets.net/">Nothing But Nets</a> - for $10, you can buy a mosquito net to protect a refugee from malaria</li>
<li>UNHCR&#8217;s <a href="http://www.unhcrshelter.org/">Gimme Shelter Campaign</a></li>
<li><a href="http://www.penniesforpeace.org">Pennies for Peace</a> - donation information AND information about including American schoolchildren in the cause, by saving pennies, writing congresspeople, etc.</li>
<li><a href="http://ninemillion.org">NineMillion.org</a> - a joint campaign by UNHCR in partnership with Nike and Microsoft, aimed at giving 9 million children better access to education, sports, and technology by 2010</li>
</ul>
<h2 id="updates">Updates</h2>
<p>June 23, 2009: Since posting, I&#8217;ve learned of other ways to contribute time / talent / money:</p>
<ul>
<li><a href="http://twitter.com/Refugees">UNHCR&#8217;s Twitter feed - @Refugees</a></li>
<li><a href="http://www.facebook.com/pages/The-Khaled-Hosseini-Foundation/78182714566?ref=mf">The Khaled Hosseini Foundation, on Facebook</a></li>
<li><a href="http://www.supportkind.org">Kids in Need of Defense</a>, an organization led by Microsoft and Angelina Jolie, to help unaccompanied children who come to the US with their legal proceedings</li>
<li><a href="http://www.socialactions.com/">Social Actions</a>, led by Peter Dietz, with many ways to help and tools (for Twitter, Firefox, etc.) to make it easy</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/06/world-refugee-day/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SEO &amp; the Customer Experience &#8211; Usability Trumps Adwords in ROI</title>
		<link>http://katewalser.com/2009/04/seo-usability-customer-experience-usability-adwords-roi/</link>
		<comments>http://katewalser.com/2009/04/seo-usability-customer-experience-usability-adwords-roi/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 03:05:02 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[roi]]></category>
		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=43</guid>
		<description><![CDATA[An article entitled, "Usability 'can complement SEO to up conversions'" just appeared this month in the <acronym title="United Kingdom">UK</acronym>'s <a class="external" rel="external" href="http://www.directnews.co.uk/">DirectNews</a> news source. Similar articles are popping up all over as organizations begin to realize that the two are <em>somehow</em> related. This article caught my eye though because of a reported quote by Herndon Hasty, a senior SEO evangelist at Range Online Media.]]></description>
			<content:encoded><![CDATA[<p><em>Note: Aside from quotes by others, the ideas set forth in this article, mainly, that Usability Trumps Adwords in ROI, are my own opinions based on years of experience working with organizations to improve their site&#8217;s findability and conversion. The ideas are meant to incite a small riot and discussion. To date, I&#8217;ve spent embarassingly little on adwords, yet those organizations found their site traffic increasing dramatically and return visitors and conversion improving.</em></p>
<h3>&#8216;Usability Can Complement SEO to Up Conversions&#8217;</h3>
<p>An article entitled, &#8220;<a href="http://tinyurl.com/d4tnl3"><span class="external">Usability &#8216;can complement SEO to up conversions</span></a>&#8216;&#8221; just appeared this month in the <acronym title="United Kingdom">UK</acronym>&#8216;s <a class="external" rel="external" href="http://www.directnews.co.uk/">DirectNews</a> news source. Similar articles are popping up all over as organizations begin to realize that the two are <em>somehow</em> related. This article caught my eye though because of a reported quote by Herndon Hasty, a senior SEO evangelist at Range Online Media.</p>
<blockquote><p>Herndon Hasty, senior <a class="external" rel="external" href="http://www.directnews.co.uk/search-engine-optimisation/">SEO</a> evangelist at Range Online Media, claimed that a site with a high search engine ranking and low usability is on a par with a site that offers good usability but cannot be indexed by search engines at all, Online Media Daily reports.</p></blockquote>
<p>An <a class="external" rel="external" href="http://www.mediapost.com/publications/?fa=Articles.showArticle&amp;art_aid=103636">article in MediaPost News</a> reports that Hasty and Chris Knoch, a search engine marketing specialist at Omniture, presented and fielded questions during a Search Marketing Now Webinar, &#8220;SEO and Conversion Rates: Hand-in-hand.&#8221;</p>
<blockquote><p>A site that ranks well in search engines but can&#8217;t convert customers from browsers to buyers is just as bad as a site that provides a great user experience but search engines cannot index it, Hasty said.</p></blockquote>
<p>It&#8217;s a great connection organizations often overlook. Throw in Web standards too for that measure.</p>
<h3>Usability + Accessibility + Web Standards = A Winning Plan + Optimized SEO</h3>
<p>Usability + Accessibility + Web Standards &#8211; that&#8217;s the winning combination for me. <span id="more-43"></span>They promote better SEO from what I&#8217;ve seen. I&#8217;ll add in SEO in parentheses since shooting for usability, accessibility, and Web standards compliance often get you a good chunk of the way towards SEO. Adherence to Web standards like <acronym title="Extensible Hypertext Markup Language">XHTML</acronym> + <acronym title="Cascading Style Sheets">CSS </acronym>improve your odds by helping you ensure your site is as crawlable as possible. If you&#8217;re a believer when it comes to Web standards and accessibility, you&#8217;ll probably do things like:</p>
<ul>
<li>Include alternative text for images, and make sure there&#8217;s some alternative text for your ads and messaging that&#8217;s locked in Flash elements</li>
<li>Use semantics and headings to give weighting to key concepts throughout your site</li>
<li>Label links clearly and unambiguously — avoiding the <em>Read More,</em><em> Click Here, </em>and<em> PDF </em>link labels, for instance — so it&#8217;s clear to someone scanning a list of links out of context  — or a search engine crawling your site blindly — where those links point</li>
<li>Remove all non-data table tags that were in version 1.0 of your Web site for formatting and layout, and by doing so, up the odds that a search engine can wade through your site</li>
</ul>
<h3>How Does Usability Fit Into SEO and the Equation?</h3>
<p>I&#8217;ve had some interesting debates with colleagues and friends about what usability means, so let me clarify. To me, usability&#8217;s the <em>goal</em>. To have that as your goal, you need to do several things:</p>
<ul>
<li>Talk with your customers and users to find out what they want, look for, and consider in using information or services</li>
<li>Describe your products and offerings and what you want to sell / provide clearly and in a short, easy-to-digest blurb</li>
<li>Organize your products and offerings on your Web site to make them easy for people to find</li>
<li>Apply conventions and standards such as page titles, headings, and structural elements to make things easy to scan and understand</li>
<li>Use active voice content and unambiguous language to promote readability and understandability (also helps ready your site for translations into other languages)</li>
<li>Design your site to highlight key areas your visitors will want to find quickly so they don&#8217;t need to spend a lot of time thinking first about it — this is where a great designer builds in visual elements and breaks up the monotony of text with images, icons, and other elements</li>
<li>Design your site to be appealing to the target audience and have an immediate <em>curb appeal</em> so they&#8217;ll want to stick around or look further</li>
</ul>
<h3>Case Study: Usability + Accessibility + Web Standards = Better Findability of Product Site</h3>
<p>I worked on a large, international, publicly-traded company&#8217;s Web site redesign recently. A key goal of the site was to pull in all the product and subsites the company&#8217;s product managers and divisions had amassed over the years. A challenging task for sure, especially when being the one to work one-on-one with those product and division managers who&#8217;d been told they would no longer own their own sites.</p>
<p>During that redesign, I sat down with one product owner who had the biggest concerns. She was worried the integration of sites would kill her search engine rankings. Instead of product.com, she&#8217;d now be found at company.com/product. She was not pleased and wanted me to promise her a certain ranking in Google results before she&#8217;d cooperate, and adwords and search engine campaigns if she did cooperate and her ranking dropped. I&#8217;ll keep secret my Jedi Mind Magic for convincing her we had a winning plan&#8230;but I did assure her that what we were doing would most likely <em>improve</em> her rankings for the phrases and product name she wanted optimized.</p>
<p>As it turned out, our plan worked. Even better than expected. Her site went <strong>from #8 to #2</strong> for the key phrase potential customers would use to find relevant products. That ranking as well as the <strong>#1</strong> ranking for the product name (yes, this should be assumed, but if your site&#8217;s not designed well and your product&#8217;s been featured in reviews by top journals, you may find your product slipping in rankings). Those rankings have held steady for a year or so now.</p>
<p>Her old site was ok, it wasn&#8217;t too bad really though it needed a facelift. But the old product site hadn&#8217;t paid much attention to what people wanted to know about the product or how they would look for her type of product, let alone organize the content and site around it  — with keywords and phrases that customers would use in headings and link labels. There were images scattered everywhere that included the product or concept names which weren&#8217;t accessible as they lacked alt tags, so for a search engine, it would be like finding a page whose title and key concepts read something like this — Blank / Untitled / &#8221; &#8220;.</p>
<h3>Summing Up: What&#8217;s Worth a Bigger ROI — Usability or Adwords?</h3>
<p>I&#8217;ve seen a lot of sites and situations in the past 12 years as search engines have evolved and Google&#8217;s become the de facto standard and benchmark. What I&#8217;ve seen is that a well-designed site and one that has considered usability and accessibility, and more recently, has adhered to Web standards, will be findable, and as Hasty argued, promote conversion. People find the site by searching on phrases and keywords that make sense to them, that have been included in the site&#8217;s labels, links, headings, and content structure. Then they reach it and say, &#8220;Wow, this looks cool&#8230;oh, and there&#8217;s what I need, great.&#8221;</p>
<p>And they come back, and better yet, <strong>they recommend it to friends</strong>. A quote from someone I met while conducting a usability test of a site sums it up —</p>
<blockquote><p>I&#8217;m going to tell my colleagues about this site — I had no idea there was a site with all this information. I used to Google sites looking for this information. Now I&#8217;ll just come here. I  would definitely recommend this site to people looking for [this topic].</p></blockquote>
<p>So as you set out on your next big Web site redesign or SEO campaign, give some thought to whether adwords will get you where you&#8217;ll need. Or, if, better yet, usability will get you further.</p>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/04/seo-usability-customer-experience-usability-adwords-roi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UPA &amp; Knowbility Team on Web Accessibility Evaluation Certificate Training</title>
		<link>http://katewalser.com/2009/03/upa-knowbility-team-on-web-accessibility-evaluation-certificate-training/</link>
		<comments>http://katewalser.com/2009/03/upa-knowbility-team-on-web-accessibility-evaluation-certificate-training/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 04:29:27 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=36</guid>
		<description><![CDATA[The Usability Professionals' Association (UPA) and Knowbility have teamed up to create a curriculum and training program designed to enhance usability practitioners' knowledge and understanding of accessibility standards and what constitutes an accessible product. The first offering will be at Access U in Austin, Texas, on May 11-12, 2009.]]></description>
			<content:encoded><![CDATA[<p>The Usability Professionals&#8217; Association (UPA) and Knowbility have teamed up to create a curriculum and training program designed to enhance usability practitioners&#8217; knowledge and understanding of accessibility standards and what constitutes an accessible product. The first offering will be at <a class="external" rel="external" href="http://www.knowbility.org/conference">Access U</a> in Austin, Texas, on May 11-12, 2009.</p>
<p>The <strong>Web Accessibility Evaluation Certificate</strong> program is designed as a way for usability professionals to:</p>
<blockquote>
<ul>
<li>Expand their &#8220;toolkit&#8221; of professional practice to include accessibility.</li>
<li>Understand the standards, guidelines, and US and international laws that apply to accessible information technology.</li>
<li>Learn a set of tools and benchmarks to gauge success in the implementation of accessible design goals from a user perspective.</li>
<li>Gain skills needed to accurately assess and report on web application compliance to standards and best practices in accessible web design.</li>
<li>And prove to their companies that they have gotten the training they need to do all this.</li>
</ul>
</blockquote>
<p>More information, check out <a class="external" rel="external" href="http://www.upassoc.org/upa_publications/upa_voice/volumes/2009/february/web-accessibility-evaluation.html">UPA Voice February 2009 article about the Web Accessibility Evaluation Certificate program</a> or the <a class="external" rel="external" href="http://www.knowbility.org/conference/?content=courses">2009 Access U curriculum and course descriptions</a>.</p>
<p>The Web Accessibility Evaluation Certificate program advisory board includes:</p>
<ul>
<li>Leaders
<ul>
<li>Whitney Quesenbery and Paul Sherman (UPA past-presidents)</li>
<li>Sharron Rush (Knowbility)</li>
</ul>
</li>
<li>Members
<ul>
<li>Cindy Lu (UPA Member)</li>
<li>Karen Mardahl (STC AccessAbility SIG)</li>
<li>Amanda Nance (UPA Board of Directors)</li>
<li>Mike Paciello (The Paciello Group)</li>
<li>Ginny Redish (Redish &amp; Associates)</li>
<li>Sarah Swierenga (MSU Usabilty and Accessibilty Center, UPA representative to TEITAC)</li>
<li>Gregg Vanderheiden (The Trace Center)</li>
<li>Kate Walser (CX Insights and member of TEITAC).</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/03/upa-knowbility-team-on-web-accessibility-evaluation-certificate-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joining the Open Government Bullet Train</title>
		<link>http://katewalser.com/2009/03/joining-open-government/</link>
		<comments>http://katewalser.com/2009/03/joining-open-government/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 04:11:46 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Government 2.0]]></category>
		<category><![CDATA[Open Government]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[transparency]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=16</guid>
		<description><![CDATA[I'd call it a train, but the Open Government initiative is moving so much faster than that. Since President Obama came into office, his top leaders have been organizing the masses and showing promise in establishing open dialogue with citizens. How will it turn out? It's up to us.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d call it a train, but the Open Government initiative is moving so much faster than that that it warrants bullet train. Since President Obama came into office, his top leaders have been organizing the masses and showing promise in establishing open dialogue with citizens. How will it turn out? It&#8217;s up to us.</p>
<h2>What&#8217;s Open Government?</h2>
<p>Open government is many things to many people. So far, the most interesting ideas I&#8217;ve heard have been the following.</p>
<h3>A Dialogue Between Agencies and Citizens</h3>
<p>One definition for &#8220;open government&#8221; is <em>establishing a two-way dialogue between agencies and citizens in hopes that the ideas and discussion will provide new insights for improving relationships and operations</em>. It might involve social media tools that exist, like YouTube (video), Twitter (status updates / short text broadcasts), Facebook (post updates and keep in touch with friends and organizations), and others. The idea is that there are now more ways to open up the discussion lines with that faceless, nameless public than ever before, just by using some simple tools that exist.</p>
<h3>Adopting Open Source Products</h3>
<p>Another way to describe it, depending on your perspective, is that open government is a movement towards using open source products more widely in government with the possibility of lowering acquisition and maintenance costs (you can argue this and other points of course) and having more opportunities in tying together different products to do more interesting things. All the open source products and application programming interfaces (APIs) available now make it even easier for developers (and even non-developers!) to tap into products and Web applications and do some interesting things. For the last couple years it&#8217;s been a joke at Web 2.0 conferences as to whether you can make it through an entire presentation without hearing about Google Maps or a Google Maps mashup (overlaying some hopefully interesting data atop Google Maps). But either way, the availability of the Google Maps <acronym title="application programming interface">API</acronym> and geographic data coupled with open source products have made the prospects even more interesting. <acronym title="District of Columbia">The DC</acronym>&#8216;s government Office of the Chief Technology Officer raised the bar via its <a class="external" title="DC Government's Data Catalog" rel="external" href="http://data.octo.dc.gov/">data catalog</a> and the <a class="external" rel="external" href="http://www.appsfordemocracy.org">Apps for Democracy competition</a>.</p>
<p>The data catalog provides <acronym title="eXtensible Markup Language">XML</acronym> and <acronym title="Keyhole Markup Language">KML</acronym> data sets that let developers and designers and whoever else might be ML-savvy a chance to do something interesting. The crowd favorite of many seems to be <a class="external" rel="external" href="http://www.outsideindc.com/stumblesafely">Stumble Safely</a>, an app that lets you see neighborhoods in DC and whether there&#8217;ve been any safety incidents that might interfere with you safely going out on the town. Useful information even if you left the clubbing and pubbing scene long ago and just want to take a safe stroll at night.</p>
<h3>Making Data More Visible (<acronym title="also known as">aka</acronym> Transparency)</h3>
<div id="attachment_31" class="wp-caption alignright" style="width: 160px"><img class="size-thumbnail wp-image-31" title="oldrobotstxt" src="http://katewalser.com/wordpress/wp-content/uploads/2009/03/oldrobotstxt-150x150.png" alt="The old robots.txt file for WhiteHouse.gov had over 2000 lines like these, which prevented search engines from crawling it." width="150" height="150" /><p class="wp-caption-text">The old robots.txt file for WhiteHouse.gov had over 2000 lines like these, which prevented search engines from crawling it.</p></div>
<p>One of the first things the IT world saw on Day One of the Obama Administration was the major change to the WhiteHouse.gov robots.txt file. It even made international news and a BBC article, &#8220;<em><a class="external" title="BBC Article, White House plans open government" rel="external" href="http://news.bbc.co.uk/1/hi/technology/7844280.stm">White House plans open government</a></em>.&#8221;</p>
<p>What was the big deal? And why&#8217;d it make international news?</p>
<p>For those of you who don&#8217;t know what a robots.txt file is &#8211; it&#8217;s the file you include on your Web site to permit or deny search engines (among other &#8220;crawlers&#8221;) from indexing your content. Before January 20, 2009, the old WhiteHouse.gov site run by the old administration had 2377 lines in the robots file. These lines prevented search engines from indexing and caching, which in a sense stores a snapshot of the page for later searchability. This file gave more credence to speculation that in the eight years before the Obama Administration came into office, there was a &#8220;black box&#8221; of data in the federal government and attempts to cover up data the public might want.</p>
<p>So on day 1, when that same file shrunk to 3 lines, there was much rejoicing and progress in the pursuit of transparency and open data seemed to grow exponentially, literally overnight.</p>
<p>Leading the charge are a few non-government organizations, including the <a class="external" rel="external" href="http://www.sunlightfoundation.com/">Sunlight Foundation</a> and <a class="external" rel="external" href="http://opengovernment.org/">OpentheGovernment.org</a>. There&#8217;s even a whole week, <a class="external" rel="external" href="http://www.sunshineweek.org/sunshineweek/orgs">Sunshine Week</a>, devoted entirely to &#8220;your right to know.&#8221;</p>
<h2>Now We Know What Open Government May Be&#8230;Now What?</h2>
<p>Now the fun starts. Open government holds huge promise as well as many opportunities and challenges in making it happen. It won&#8217;t be an easy ride, but the momentum and the leaders at the helm, including <a class="external" rel="external" href="http://www.whitehouse.gov/the_press_office/President-Obama-Names-Vivek-Kundra-Chief-Information-Officer/">the first federal CIO, Vivek Kundra</a> and <a class="external" rel="external" href="http://change.gov/learn/policy_working_groups">Technology Innovation and Government Reform</a> team, known affectionately as the <acronym title="Technology Innovation and Government Reform">TIGR</acronym> (pronounced like Tigger from <em>Winnie the Pooh</em>) team, increase the chances that open government will in fact happen.</p>
<p>There are unconferences that have popped up all over the DC metropolitan area, including <a class="external" rel="external" href="http://www.transparencycamp.org/">Transparency Camp</a> and <a class="external" rel="external" href="http://news.cnet.com/8301-13578_3-10206276-38.html">Government 2.0 Camp</a>. There&#8217;s also a <a class="external" rel="external" href="http://www.w3.org/2008/02/eGov/ig-charter">W3C eGov Interest Group</a>.</p>
<p>So you can watch and see in the coming months and year how the bullet train takes off and try and catch up down the road (good luck &#8211; it&#8217;s already moving out quickly!) or see how you can join now. Whether you watch or whether you jump on, it will be fun to see how things evolve!</p>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/03/joining-open-government/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UFP Watch: The Chumby</title>
		<link>http://katewalser.com/2009/03/ufp-watch-the-chumby/</link>
		<comments>http://katewalser.com/2009/03/ufp-watch-the-chumby/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 03:20:25 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Great Products]]></category>
		<category><![CDATA[chumby]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[ufp-watch]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=18</guid>
		<description><![CDATA[I bought my first alarm clock probably about 23 years ago. I've only bought 3 over that time I think, aside from an occasional gift like a Train Clock during years where it just seemed harder to get out of bed (i.e., when I was on crew and taking a full engineering curriculum and when I was a Resident Advisor). I parted ways with my last one almost exactly a year ago. And up until that same time, my primary means of checking the weather was to feel the window pane in the morning to see if I needed a sweater or something lighter. Then I discovered the Chumby.]]></description>
			<content:encoded><![CDATA[<p>Note: The User-friendly Product (UFP) Watch is a way to spot and discuss products that have paid attention to details and are useful, intuitive, and fun to use.</p>
<p>So back to the main point, what&#8217;s a Chumby, you ask?</p>
<h2>What&#8217;s a Chumby?</h2>
<p>According to <a class="external" rel="external" href="http://www.chumby.com">Chumby.com</a>,</p>
<blockquote><p>Chumby takes your favorite parts of the Internet and delivers them to you in a friendly, always-on, always-fresh format. It&#8217;s a window into your Internet life that lives outside your desktop, so content like weather, news, celebrity gossip, podcasts, music, and more has a place to play away from your world of documents and spreadsheets. Just plug in your chumby, connect to your wireless network, and use your computer to create a lineup of favorites from over 1,000 widgets in more than 30 categories, with new ones arriving all the time. Then let your chumby do its thing—streaming everything you like, from sports scores to stock tips, from video clips to interactive games, from photos to trivia.</p></blockquote>
<p>And that&#8217;s seriously no joke. It really does do all those things and does them well.</p>
<div id="attachment_19" class="wp-caption alignleft" style="width: 160px"><img class="size-thumbnail wp-image-19" title="Chumby" src="http://katewalser.com/wordpress/wp-content/uploads/2009/03/chpearl_290x270-150x150.jpg" alt="A Chumby can display widgets like a NY Times news feed or pictures of the year." width="150" height="150" /><p class="wp-caption-text">A Chumby can display widgets like a NY Times news feed or pictures of the year.</p></div>
<p>I stumbled upon the Chumby when I was looking at digital picture frame reviews. A site I found, whose name unfortunately escapes me now, had reviewed the Chumby concept model (it wasn&#8217;t yet available) and had included a picture, which grabbed my attention, and a quick description of what the idea of it was. I was sold. It looks like a big marshmallow with a screen. Sure that&#8217;s the reason my husband and others won&#8217;t ever buy one, but for me, it&#8217;s part of its charm.</p>
<h2>Chumby&#8217;s Charm is in Its Thoughtful User-friendly Details</h2>
<p>I&#8217;m a user experience designer, so I&#8217;m always looking at products with that lens and wondering how much thought was put into their design. When it comes to Chumby, it seems like there was a lot of attention paid to small details that matter. Everything from the initial setup that was so much easier than any other product setup I remember to the size of the touchscreen buttons and alarm options (wake up to Pandora radio? Awe-some).</p>
<p>Chumby works with your wireless network, so unfortunately if you haven&#8217;t yet gone wireless, wait until Verizon Fios finally sucks you in and then set up a wireless hub before next holiday season.</p>
<h3>Touchscreen with Big Buttons</h3>
<p>The Chumby works almost entirely by touch. You can go to the Chumby Web site to set up widgets and preferences, but primarily, you&#8217;ll find yourself tapping your options on the display to:</p>
<ul>
<li>Change the display to Night setting, which dims the light and just displays the time and an alarm on indicato</li>
<li>Scroll through your widget set and tapping the Chumby picture on the display to go back to full-screen mode</li>
<li>&#8220;Stay,&#8221; &#8220;send,&#8221; &#8220;rate,&#8221; and even &#8220;delete&#8221; a widget from your stream</li>
<li>Interact with the widgets, and pause news feeds that have that options or moving among Current, Forecast, and Radar on my favorite widget &#8211; The Weather Channel</li>
</ul>
<h3>1000+ Widgets in 30 Categories</h3>
<p>Besides the useful and interesting news feeds from sources including <em>The New York Times</em>, <em>Wired</em>, and many others, there are widgets around fun things as well. Some great ones I&#8217;ve found include:</p>
<ul>
<li>Flickr photo stream, to cycle through your Flickr photos (that was where the digital picture frame piece came in and how I originally found it)</li>
<li><a class="external" rel="external" href="http://www.chumby.com/guide/widget/Food%20Network%20Recipe%20of%20the%20Day">Food Network Recipe of the Day</a></li>
<li>&#8220;Screen clean&#8221; widget with a <a class="external" rel="external" href="http://www.chumby.com/guide/widget/Screen%20Clean">dog licking the inside of the Chumby screen</a></li>
<li>Weather Channel Weather Forecast, with tabs including the Current weather, forecast for the next 3 days, and radar</li>
<li>Letterman&#8217;s Top 10 lists</li>
<li>Social media feeds from Facebook, Twitter, Yelp, etc.</li>
<li>Gmail feed</li>
</ul>
<p>There are so many more at <a class="external" rel="external" href="http://www.chumby.com/guide">http://www.chumby.com/guide</a>.</p>
<h3>Alarm Options</h3>
<p>It took me a while to ditch my old, ugly but reliable, brown and frustrating-to-program alarm clock. I wasn&#8217;t sure the Chumby could hold its own in the real alarm clock division. And then one day I realized what I was missing. With the Chumby I can set up so many different alarm options it&#8217;s almost ridiculous. I can set one for:</p>
<ul>
<li>Weekday mornings with a Klaxon noise to wake me up and a short snooze time</li>
<li>Weekend mornings with a nice lulling Alternative Radio streaming radio feed as the alarm and a different volume setting</li>
<li>Naptime alarm with <a class="external" rel="external" href="http://www.pandora.com/">Pandora radio</a> waking me up</li>
<li>A just-in-time alarm to try the NOAA Weather Station radio feed to see if that would announce the weather forecast to me as I&#8217;m waking up like the coming <a class="external" rel="external" href="http://sleep.fm/">Sleep.fm</a> promises to do (which incidentally will be available for the Chumby platform)</li>
</ul>
<p>I&#8217;ll have to time how long it takes to set the alarm on the Chumby vs. on the old model. I suspect it&#8217;s a couple seconds longer on the Chumby, but that&#8217;s also due to all the different alarm options (hmm, would Monday start better with a Klaxon waking me up or with Pandora?).</p>
<h3>Snooze-like Button on Top to Get Back to Options</h3>
<p>The big target at the top of the marshmallow-looking thing gets you back to your options quickly. Very handy when you want to jump quickly to the Weather widget or over to the news feed widget to get a quick update.</p>
<h3>Web Access Synced with Your Chumby</h3>
<p>It&#8217;s the little details that make a product shine. Whenever I visit Chumby.com to do anything fancy or just explore different widgets, the Chumby frame on the site and my account credentials combine to show me what&#8217;s &#8220;playing&#8221; on my Chumby at home while I&#8217;m monkeying with the online virtual version of it. Nifty.</p>
<h2>Its Logo&#8217;s an Octopus &#8211; What&#8217;s Not to Love?</h2>
<div id="attachment_21" class="wp-caption alignright" style="width: 160px"><img class="size-thumbnail wp-image-21" title="chumby_logo" src="http://katewalser.com/wordpress/wp-content/uploads/2009/03/chumby_logo_text90-150x69.gif" alt="Chumby logo includes an octopus" width="150" height="69" /><p class="wp-caption-text">The Chumby logo includes an octopus</p></div>
<p>It may have been the Chumby&#8217;s logo that grabbed my attention too. It&#8217;s an octopus as best I can tell. About 10 years ago, there was a Web site called My Octopus or something like that that let you set up windows into other Web sites. Log on to My Octopus (name?) and you could see the headlines from the NY Times and other sites. That was a bit more groundbreaking back then, when XML feeds and readers weren&#8217;t quite available yet. The site disappeared abruptly one day, after I&#8217;d captured another victim&#8217;s attentions to tell them about its glory. I&#8217;ve long suspected copyright problems were to blame, but since then, I&#8217;ve somehow tied the ideas of &#8220;octopus,&#8221; &#8220;great,&#8221; and &#8220;cutting edge&#8221; in my mind.</p>
<p>Either way, the Chumby with its nice octopus logo and marshamallowy looking housing is a great product and holiday list worthy.</p>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/03/ufp-watch-the-chumby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recording JAWS Sound Output</title>
		<link>http://katewalser.com/2009/03/recording-jaws-screen-readers/</link>
		<comments>http://katewalser.com/2009/03/recording-jaws-screen-readers/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 03:30:46 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[jaws]]></category>
		<category><![CDATA[screen reader]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=8</guid>
		<description><![CDATA[For those of you who run your Web sites and applications through screen readers like JAWS, knowing how to record their audio output can save you time and frustration. Learn more about how it can help and how to set up your computer to do it.]]></description>
			<content:encoded><![CDATA[<p>If you run through Web sites with screen readers like JAWS, the steps below that describe how to record JAWS output could save you time.</p>
<p><em>Notes: </em></p>
<ul>
<li><em>For simplicity sake, I&#8217;ll refer just to JAWS in this post. Window-Eyes and others work well also -  JAWS just happens to be what I learned and have used most often. The steps below will work for others too.</em></li>
<li><em>Though I love my Mac, I don&#8217;t use screen readers on it and am not sure yet how to do this on a Mac. I suspect there&#8217;s a way, so if you know, feel free to share!</em></li>
</ul>
<h2>Background</h2>
<p>I work with customers and project teams to see how accessible their products are to people with disabilities. I do some basic things first like check that anything that a user should be able to touch (navigation, forms, etc.) is keyboard accessible and that code is valid and well-formed, with no major issues that would hobble an assistive technology like a screen reader. If it passes those tests, it&#8217;s on to a screen reader to see how well an assistive technology can handle it.</p>
<p><em>Dunh dunh dunh dunh&#8230;</em> Imagine the theme song from &#8220;Jaws&#8221; playing for a moment. That&#8217;s about how it feels when you&#8217;re trying to listen, process, and jot down what JAWS is reading and where it&#8217;s reading. Like you&#8217;re about to be attacked by a shark. And inevitably, or at least in about 95% of the times I was testing products, just as I was about to make the big breakthrough and figure out what JAWS was reading, the phone would ring, someone would stop in, or it&#8217;d be fire alarm testing day at work.</p>
<p>Every time I&#8217;d reload the page or try and dig up my cheat sheet of JAWS keyboard shortcuts and remember which one I needed to use, I&#8217;d think &#8220;there&#8217;s got to be a better way.&#8221;</p>
<p>There is.</p>
<h2>Recording Screen Reader Output</h2>
<p>What if you could record what JAWS says on its first run through and not need to have it repeat each time? That&#8217;d save time, wouldn&#8217;t it? I hear what you&#8217;re thinking &#8211; &#8220;you mean like put up an old-school tape recorder or new-school MP3 recorder next to the speaker and record it? That seems klugy.&#8221;</p>
<p>Nope. Even easier than that, and more elegant.</p>
<p>You can internally route the sound output as an input for the microphone. &#8220;What?&#8221; That&#8217;s right. No new cables, wires, or even external speakers required.</p>
<p>A big thank you to <a class="external" rel="external" href="http://www.youtube.com/watch?v=sfdzx7mr51Y">YouTube user &#8216;pbj746&#8242;</a> for cluing me into this one.</p>
<h3>What You&#8217;ll Need</h3>
<ol>
<li>PC with Windows OS and a sound card</li>
<li>Sound recorder software (check Start &gt; Programs &gt; Accessories &#8211; there&#8217;s usually some basic movie maker or sound recorder tool that comes with the OS). If you don&#8217;t have one, try <a class="external" rel="external" href="http://audacity.sourceforge.net/">Audacity</a>, an open source sound editing and recording tool.</li>
</ol>
<h3>Set Up to Record Audio Output</h3>
<ol>
<li>In Windows, go to your Sound control settings, either by going through Control Panel or by right-clicking on the sound icon in the lower right.</li>
<li>In the Sound settings window, go to Options &gt; Properties.</li>
<li>Click on the Recording tab.</li>
<li>Check the checkbox next to &#8220;Sound Mix&#8221; (or &#8220;Wave Out&#8221; if you don&#8217;t see &#8220;Sound Mix&#8221;).</li>
<li>Uncheck the checkbox next to &#8220;Microphone.&#8221;</li>
</ol>
<h3>Record the JAWS Output</h3>
<ol>
<li>Now that you&#8217;ve set up the recording to use the internal sound mixer, launch your sound recording software.</li>
<li>Launch JAWS. (<em>Note: for my sake, I usually began recording before I launched JAWS, just to be sure I captured everything and to avoid needing to restart JAWS once it started reading the Web page. It&#8217;s up to you how you want to handle it.)</em></li>
<li>When you&#8217;re ready to start recording JAWS&#8217;s output, go ahead and click &#8220;Record&#8221; in the sound recording software. When you&#8217;re done, click stop, save the file, and you&#8217;ll now have the output that lets you share how JAWS read the screen with others.</li>
</ol>
<p>And better yet, you&#8217;ll have a referenceable file to replay if you get interrupted or can&#8217;t seem to repeat the same problem again! Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/03/recording-jaws-screen-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing for Cognitive Disabilities</title>
		<link>http://katewalser.com/2009/03/designing-for-cognitive-disabilities/</link>
		<comments>http://katewalser.com/2009/03/designing-for-cognitive-disabilities/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 02:25:33 +0000</pubDate>
		<dc:creator>kwalser</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[cognitive]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[dyslexia]]></category>
		<category><![CDATA[upa]]></category>

		<guid isPermaLink="false">http://katewalser.com/?p=6</guid>
		<description><![CDATA[<p>More people are wondering – “How do we design for people with cognitive disabilities?”</p>
<p>When you’re designing sites that sell services and products, especially health-related services and products, this question often comes up. Usually when it’s raised as a requirement, it’s&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>More people are wondering – “How do we design for people with cognitive disabilities?”</p>
<p>When you’re designing sites that sell services and products, especially health-related services and products, this question often comes up. Usually when it’s raised as a requirement, it’s followed by an awkward pause and silence. Those in the room would agree it’s important, as is accessibility in general. But in that pause and silence, you can see steam pouring out of designers’ and usability specialists’ heads, who are wondering, “How do we design for people with disabilities? What does that even entail? Can we handle that? And…what do we mean by cognitive disabilities?”</p>
<p>In our “Designing for Cognitive Disabilities” talk at the Usability Professionals’ Association International 2008 Conference in Baltimore, MD, Whitney Quesenbery, Sarah Swierenga, and I talked about what we’ve learned through the Telecommunications &amp; Electronic and Information Technology Advisory Committee (<br />
<a rel="external" href=" http://www.access-board.gov/sec508/update-index.htm">TEITAC</a>, aka Section 508 and Section 255 refresh), from Dr. Clayton Lewis of the Coleman Institute, and from Sarah’s research at Michigan State University. The biggest discovery, which is not so shocking when you think about it, is that if you follow usability best practices &#8211; use consistency, use plain language, include landmarks, include ways for people to back up and correct mistakes… &#8211; you’ll be making great strides in making your site or application accessible by people with cognitive disabilities as well. (see below for our slides &#8211; our paper is available in the UPA 2008 proceedings (visit <a rel="external" href="http://www.upassoc.org/">UPAssoc.org</a> for more info))</p>
<p>I fell into the “wheels spinning, steam pouring, awkward silence” category when this topic came up in early conversations. I’ve worked with children and adults who have autism, Asperger Syndrome, Down Syndrome, cerebral palsy, and mental retardation. I have family members who’ve had various cognitive disabilities, including dyslexia, brain injuries, and mental retardation. And I was still at a loss &#8211; it’s hard to envision how to accommodate people without stopping to think about what they can do and what they do differently.</p>
<p>So here are some things to consider &#8211; these are not at all meant to oversimplify the field of cognitive disabilities &#8211; it’s really a complex and amazing topic. These items are meant to help you stop, think, and consider ways to improve on your existing site and product designs and accessibility, and, at the same time, improve usability for all your visitors.</p>
<h2>Design Considerations</h2>
<p>The following are based on our experiences working with users with various cognitive disabilities, as well as best practices that we’ve gathered from sites like Dyslexia.org, that focus on audiences with different disabilities.</p>
<h3>All users</h3>
<ul>
<li>Apply consistency in labeling, titles, navigation positions, etc. &#8211; match labels with the destination page’s heading so users know they clicked the right link.</li>
<li>Include landmarks, to easily tell where you are</li>
<li>Provide ways to back up if you make mistakes</li>
<li>If your site automatically times users out after periods of inactivity, offer timer reset features &#8211; this will benefit users who take some additional time to process information or read through material</li>
<li>Apply <a rel="external" href="http://www.plainlanguage.gov/">plain language</a> guidelines!</li>
<li>Offer spell check capabilities or suggestions for features like search engines or document generation</li>
</ul>
<h3>Users with dyslexia</h3>
<p>Drawn from <a rel="external" href="http://www.dyslexia.org/">dyslexia.org</a></p>
<ul>
<li>Provide options to change background, foreground colors &#8211; high contrast like black on stark white can be challenging for these users to read. See <a rel="external" href="http://www.dyslexia.org/">dyslexia.org</a> for examples. (Aside: my nephew has a much easier time reading things that are printed on green paper &#8211; the white paper was too busy for him)</li>
<li>Use narrow columns, with 60-70 characters &#8211; easier to scan and read.</li>
<li>Left justify content, as opposed to using full justification where left and right sides are even. Full justification creates varying white space that can cause problems.</li>
</ul>
<h2>Resources</h2>
<ul>
<li>Designing for Cognitive Disabilities [PDF, 1.13 Mb], UPA Presentation by Walser, Quesenbery, and Swierenga</li>
<li><a rel="external" href="http://www.colemaninstitute.org/">The Coleman Institute</a></li>
<li><a rel="external" href="http://accessites.org/site/2006/10/designing-for-dyslexics-part-1-of-3/">Designing for Dyslexics, Accessites.org</a></li>
<li><a rel="external" href="http://www.wid.org/publications/telecommunications-problems-and-design-strategies-for-people-with-cognitive-disabilities/?searchterm=francik">Telecommunications Problems and Design Strategies for People with Cognitive Disabilities, by Francik, Levine, Tremain</a></li>
<li><a rel="external" href="http://www.access-board.gov/telecomm/rule.htm">Section 255, Telecommunications Act Accessibility Guidelines, specifically, 1194.31 (i) </a></li>
<li><a rel="external" href="http://www.webaim.org/articles/cognitive/cognitive_too_little/">WebAIM, We Still Know Too Little, and We Do Even Less</a></li>
<li><a rel="external" href="http://www.cs.ubc.ca/~joanna/CHI2006Workshop_CognitiveTechnologies/">ACM CHI 2006 Workshop, Designing Technology for People with Cognitive Impairments</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://katewalser.com/2009/03/designing-for-cognitive-disabilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

