<?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>Tiffany B. Brown &#187; Usability</title>
	<atom:link href="http://tiffanybbrown.com/category/usability/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiffanybbrown.com</link>
	<description>A web log about web development and internet culture with frequent detours into other stuff.</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:48:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Google&#8217;s keyboard widget</title>
		<link>http://tiffanybbrown.com/2011/01/30/googles-keyboard-widget/</link>
		<comments>http://tiffanybbrown.com/2011/01/30/googles-keyboard-widget/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 18:32:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[norwegian]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=5613</guid>
		<description><![CDATA[Typing addresses into Google Maps on a U.S. English keyboard in Norway (maps.google.no)? No matter. Google has you covered. Click to embiggen.]]></description>
			<content:encoded><![CDATA[<div class="image640"><a href="http://webinista.s3.amazonaws.com/images/uploads/2011/01/Screen-shot-2011-01-30-at-7.26.03-PM.png"><img src="http://webinista.s3.amazonaws.com/images/uploads/2011/01/Screen-shot-2011-01-30-at-7.26.03-PM-640x141.png" alt="Google offers a clickable &quot;keyboard&quot; for Norwegian-specific characters." title="Google&#039;s Norwegian Character Widget" width="640" height="141" class="alignnone size-medium wp-image-5614" /></a></div>
<p>Typing addresses into Google Maps on a U.S. English keyboard in Norway (<a href="http://maps.google.no/">maps.google.no</a>)? No matter. Google has you covered. Click to embiggen.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2011/01/30/googles-keyboard-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To password mask or not password mask?</title>
		<link>http://tiffanybbrown.com/2010/02/09/to-password-mask-or-not-password-mask/</link>
		<comments>http://tiffanybbrown.com/2010/02/09/to-password-mask-or-not-password-mask/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 17:00:20 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[a list apart]]></category>
		<category><![CDATA[adactio]]></category>
		<category><![CDATA[jakob nielsen]]></category>
		<category><![CDATA[jeremy keith]]></category>
		<category><![CDATA[lyle mullican]]></category>
		<category><![CDATA[password unmasking]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=3403</guid>
		<description><![CDATA[That is the question Jakob Nielsen sparked with last summer&#8217;s column: Stop Password Masking. In this week&#8217;s A List Apart, Lyle Mullican discusses The Problem with Passwords, and writes: However, making such a sweeping change to a fundamental user interaction could present serious problems. Consider some contexts in which a password might need to be [...]]]></description>
			<content:encoded><![CDATA[<p>That is the question <b>Jakob Nielsen</b> sparked with last summer&#8217;s column: <a href="http://www.useit.com/alertbox/passwords.html" class="ext">Stop Password Masking</a>. In this week&#8217;s <i>A List Apart,</i> Lyle Mullican discusses <a href="http://www.alistapart.com/articles/the-problem-with-passwords/" class="ext">The Problem with Passwords</a>, and writes:</p>
<blockquote><p>However, making such a sweeping change to a fundamental user interaction could present serious problems. Consider some contexts in which a password might need to be entered in front of a large group of people, such as while using a conference room projector. And many years of web experience have set user expectations on how form elements should work. People understood that password masking was invented for their security. Failing to meet that expectation might undermine confidence, and we cannot afford to lose our users&#8217; trust.</p></blockquote>
<p>I agree with Nielsen here, and suggest that if you need to enter a password while using a conference room projector, you should have logged-in before your presentation.</p>
<p>Password masking prevents users from making sure the password is correct before sending it to the server. If you, like you should and I do, pick long, hard-to-guess passwords, an unknown mistype can be a source of frustration. </p>
<p>Password masking also provides a false sense of security, particularly on unencrypted connections. Sure it prevents a person peeking over your shoulder. But it doesn&#8217;t stop her from watching you type it on a keyboard. Nor does it stop someone from intercepting it with a packet sniffer if the password is sent as plain text. </p>
<p>In other words: password masking is a bad convention.  </p>
<p>So what&#8217;s the answer? Password <em>un</em>masking &#8212; a toggle that allows users to choose whether or not to show the password. It&#8217;s a fairly recent convention that&#8217;s become widely used for WiFi set-up screens. Jeremy Keith <a href="http://adactio.com/journal/1618/" class="ext">described one method of password masking</a> last summer. Mullican covers a similar technique in his <i>A List Apart</i> piece. </p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2010/02/09/to-password-mask-or-not-password-mask/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Content Strategy and Curation</title>
		<link>http://tiffanybbrown.com/2009/12/08/on-content-strategy-and-curation/</link>
		<comments>http://tiffanybbrown.com/2009/12/08/on-content-strategy-and-curation/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 15:00:18 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Information management]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[content strategy]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2962</guid>
		<description><![CDATA[When a site launches, your audience arrives to learn more about what you know most about. It’s critical to create a content experience with purpose, that is consistent and contextual. This helps to assert your brand’s authority, establishes relationships with your audience, and secures a return visit based on your content’s value. The content strategist-as-curator [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>When a site launches, your audience arrives to learn more about what you know most about. It’s critical to create a content experience with purpose, that is consistent and contextual. This helps to assert your brand’s authority, establishes relationships with your audience, and secures a return visit based on your content’s value. The content strategist-as-curator is the one who makes this happen. How? </p></blockquote>
<p>From Erin Scime&#8217;s article <a href="http://www.alistapart.com/articles/content-strategist-as-digital-curator/" class="ext">The Content Strategist as Digital Curator</a> in the latest issue of <i class="website title">A List Apart</i></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/12/08/on-content-strategy-and-curation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;Usability&#8221; versus &#8220;User Experience&#8221;</title>
		<link>http://tiffanybbrown.com/2009/11/18/usability-versus-user-experience/</link>
		<comments>http://tiffanybbrown.com/2009/11/18/usability-versus-user-experience/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 15:06:06 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/?p=2597</guid>
		<description><![CDATA[The two terms are often used interchangeably, but they&#8217;re slightly different concepts. As Cecily explains, [user experience] is how developers use persuasion, reward, and design to craft an environment that is a pleasure to use. Cecily drives the point home with a Slideshare deck. Usability vs. User Experience: What&#39;s the Difference? View more presentations from [...]]]></description>
			<content:encoded><![CDATA[<p>The two terms are often used interchangeably, but they&#8217;re slightly different concepts. As <a href="http://cecily.info/2009/11/16/usability-vs-user-experience/" class="ext">Cecily</a> explains, <q>[user experience] is how developers use persuasion, reward, and design to craft an environment that is a pleasure to use.</q></p>
<p>Cecily drives the point home with a Slideshare deck.</p>
<div class="video">
<div style="width:425px;text-align:left" id="__ss_2510778"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/cecilywalker/usability-vs-user-experience-whats-the-difference-2510778" title="Usability vs. User Experience: What&#39;s the Difference?">Usability vs. User Experience: What&#39;s the Difference?</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=usability-091116085335-phpapp02&#038;rel=0&#038;stripped_title=usability-vs-user-experience-whats-the-difference-2510778" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=usability-091116085335-phpapp02&#038;rel=0&#038;stripped_title=usability-vs-user-experience-whats-the-difference-2510778" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div>View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/cecilywalker">Cecily Walker</a>.</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2009/11/18/usability-versus-user-experience/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Link dump: July 31, 2006</title>
		<link>http://tiffanybbrown.com/2006/07/31/link-dump-july-31-2006/</link>
		<comments>http://tiffanybbrown.com/2006/07/31/link-dump-july-31-2006/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 21:25:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/viewqb.php/712</guid>
		<description><![CDATA[I suspect, though that two four is not much of an actual &#8216;dump.&#8217; Tor Mac OS X Installation instructions More anonymous web surfing using Tor, Vidalia (a Tor GUI and Privoxy. (And the Torbutton extension for Firefox.) Cultural differences in gameland i18n and l10n of games based on cultural frameworks. [Hi-jacked from Rebecca's Pocket] Screen [...]]]></description>
			<content:encoded><![CDATA[<p>I suspect, though that <del datetime="2006-08-02T03:17:07+00:00">two</del> <ins datetime="2006-08-02T03:17:07+00:00">four</ins> is not much of an actual &#8216;dump.&#8217;</p>
<dl>
<dt><a href="http://tor.eff.org/docs/tor-doc-osx.html.en">Tor Mac OS X Installation instructions</a></dt>
<dd>More anonymous web surfing using Tor, Vidalia (a Tor <abbr title="Graphical User Interface">GUI</abbr> and Privoxy. (And the <a href="https://addons.mozilla.org/firefox/2275/">Torbutton</a> extension for Firefox.)</dd>
<dt><a href="http://blogs.guardian.co.uk/games/archives/2006/07/27/cultural_differences_in_gameland.html">Cultural differences in gameland</a></dt>
<dd><abbr title="internationalization">i18n</abbr> and <abbr title="localization">l10n</abbr> of games based on cultural frameworks. [Hi-jacked from <a href="http://www.rebeccablood.net">Rebecca's Pocket</a>]</dd>
<dt><a href="http://www.useit.com/alertbox/screen_resolution.html">Screen Resolution and Page Layout</a></dt>
<dd>Jakob Nielsen gives the go ahead to &#8216;optimize&#8217; your layout for a 1024-by-728 pixel resolution, but make it work with all.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/07/31/link-dump-july-31-2006/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Recommended: &#8220;Internationalization Primer&#8221;</title>
		<link>http://tiffanybbrown.com/2006/06/06/recommended-internationalization-primer/</link>
		<comments>http://tiffanybbrown.com/2006/06/06/recommended-internationalization-primer/#comments</comments>
		<pubDate>Tue, 06 Jun 2006 23:51:39 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Internet life]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/viewqb.php/636</guid>
		<description><![CDATA[Digital Web takes a holistic look at how to develop an internationalized, multi-lingual website. It focuses on back-end and template development as opposed to internationalizing mark-up. For more on internationalization, you can also check out the W3C Internationalization Activity group.]]></description>
			<content:encoded><![CDATA[<p>Digital Web takes a holistic look at how to develop an <a href="http://www.digital-web.com/articles/internationalization_primer/">internationalized, multi-lingual website</a>. It focuses on back-end and template development as opposed to <a href="http://alistapart.com/articles/worldgrowssmall" title="World Grows Small: Open Standards for the Global Web">internationalizing mark-up</a>.</p>
<p>For more on internationalization, you can also check out the W3C <a href="http://www.w3.org/International/">Internationalization Activity</a> group. </p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/06/06/recommended-internationalization-primer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web page context, and a notice on each post</title>
		<link>http://tiffanybbrown.com/2006/05/04/web-page-context/</link>
		<comments>http://tiffanybbrown.com/2006/05/04/web-page-context/#comments</comments>
		<pubDate>Thu, 04 May 2006 10:00:17 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/viewqb.php/590</guid>
		<description><![CDATA[I made the mistake of posting about Lil Romeo and Bow Wow a couple of weeks ago. Within a few hours of adding the comments feature I had three comments, including one each from Bow Wow&#8217;s fantasy girlfriend and Lil Romeo&#8217;s future wife hopeful. Now I always pictured my readers as 25+ adults. Not 14-year-old [...]]]></description>
			<content:encoded><![CDATA[<p>I made the mistake of posting about <a href="http://tiffanybbrown.com/viewqb.php/570">Lil Romeo and Bow Wow</a> a couple of weeks ago. Within a few hours of adding the comments feature I had three comments, including one each from Bow Wow&#8217;s fantasy girlfriend and Lil Romeo&#8217;s future wife hopeful.</p>
<p>Now I always pictured my readers as 25+ adults. Not 14-year-old children. But part of the magic of the Internet is the ability to stumble across a site from anywhere and come to any page entirely removed from its context. I&#8217;m quite sure it doesn&#8217;t help that my site has a 6th grade-ish pink stars theme (I had old school roller rinks in mind when I came up with it). </p>
<p>I always assumed that it was obvious to people that a page was part of a larger site. Each page has links to previous and next posts. Each page has a global navigation header. But if the Romeo/Bow wow entry was all you saw, I can see how you might assume I was a 16 year old girl, or that this was a celebrity-worshipping site.</p>
<p>The problem with not having enough context, as I&#8217;m starting to understand, is that visitors (particularly new or infrequent ones) may define your entire site by a single page. For example, interracial personals sites contacted me a half-dozen times about advertising on Blackfeminism.org based on <span class="i">exactly two</span> posts about pop culture depictions of interracial relationships. I also received hate mail about those two pages. And that&#8217;s two pages out of over 400 posts hundred posts. Again: not enough context.</p>
<p>In an attempt to give visitors some context, I added a simple message to each post. You will now notice three short paragraphs on the right side of each page.</p>
<blockquote><p>This page is part of a web log (or blog) written by Tiffany B. Brown.</p>
<p>I write about web design and development with frequent forays into pop culture, internet life, politics, travel and personal stuff. </p>
<p>You can find the latest entry on my home page.
 </p></blockquote>
<p>I&#8217;m sure some folks won&#8217;t care about a page&#8217;s context, even if it&#8217;s there. And I&#8217;m just as sure that some others will miss it entirely. Still, I think it&#8217;s helpful information to have. My hope is that it will prompt people to think before they type something that is off-base, off-topic or out-of-context.</p>
<p>Have you noticed or experienced this problem with context? How have you managed it or designed around it? </p>
<p><span class="b">Technorati-ism:</span> <a href="http://www.technorati.com/tag/usability/" rel="tag">usability</a>, <a href="http://www.technorati.com/tag/web+design" rel="tag">web design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/05/04/web-page-context/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Link dump: May 3, 2006</title>
		<link>http://tiffanybbrown.com/2006/05/03/link-dump-may-3-2006/</link>
		<comments>http://tiffanybbrown.com/2006/05/03/link-dump-may-3-2006/#comments</comments>
		<pubDate>Wed, 03 May 2006 23:01:14 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Journalism]]></category>
		<category><![CDATA[Link dumps]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/viewqb.php/595</guid>
		<description><![CDATA[Slides from php&#124;tek Bits of information from conference presentations. [Via Chris Shiflett] Cluesheet Quick-n-dirty PHP development tips. [Also via Shiflett] IE7 For XP Beta 2: Has Firefox Met Its Match? IE 7 is a very good browser &#8212; if you&#8217;ve never used Firefox. WineCamp Geek + Grapes = me green with envy. [Via Emily Chang] [...]]]></description>
			<content:encoded><![CDATA[<dl>
<dt><a href="http://hades.phparch.com/ceres/public/page/index.php/tek_live::slides">Slides from php|tek</a> </dt>
<dd>Bits of information from conference presentations. [Via <a href="http://shiflett.org/">Chris Shiflett</a>] </dd>
<dt><a href="http://cluesheet.com/">Cluesheet</a> </dt>
<dd>Quick-n-dirty PHP development tips. [Also via <a href="http://shiflett.org/">Shiflett</a>]</dd>
<dt><a href="http://www.informationweek.com/internet/showArticle.jhtml?articleID=186700892&#038;pgno=1&#038;queryText=">IE7 For XP Beta 2: Has Firefox Met Its Match?</a> </dt>
<dd>IE 7 is a very good browser &#8212; if you&#8217;ve never used Firefox. </dd>
<dt><a href="http://www.winecampcalaveras.com/">WineCamp</a> </dt>
<dd>Geek + Grapes = me green with envy. [Via <a href="http://www.emilychang.com/go/ehub/">Emily Chang</a>]</dd>
<dt><a href="http://www.lukew.com/ff/entry.asp?339">The Difference in Web Applications</a></dt>
<dd>Differences in how users conceptualize web applications versus static web sites. Related (in fact, you can probably skip the blog post and just read this): <a href="http://www.lukew.com/resources/articles/web_applications.html">Design Considerations for Web-based Applications</a>.</dd>
<dt><a href="http://www.globescan.com/news_archives/bbcreut.html">BBC/Reuters/Media Center Poll: Trust in the Media</a> </dt>
<dd>Americans and Brits trust their government more than they trust the media. [Via <a href="http://www.paidcontent.org/">paidContent</a>]</dd>
<dt><a href="http://news.bbc.co.uk/2/hi/technology/4962770.stm">Talkin&#8217; bout a media revolution</a></dt>
<dd>How big media is adjusting to mass niche media.</dd>
<dt><a href="http://www.shaveeverywhere.com/">Shave Everywhere</a></dt>
<dd>Motivation for manscaping.</dd>
<dt><a href="http://www.apple.com/getamac/ads/">Get a Mac ads</a></dt>
<dd>If computers were people.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/05/03/link-dump-may-3-2006/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thursday three-fer</title>
		<link>http://tiffanybbrown.com/2006/04/20/thursday_threefer/</link>
		<comments>http://tiffanybbrown.com/2006/04/20/thursday_threefer/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2006/04/20/thursday_threefer</guid>
		<description><![CDATA[F-Shaped Pattern For Reading Web Content This week&#8217;s Alertbox column, offers tips for web writing based on eyetracking studies of how users read web pages. Community Creators, Secure Your Code! Tips for sanitizing your user-generated content and code. Related: Ask Chris Episode 1 (MP3 file). Google Calendar releases an API So now you can create [...]]]></description>
			<content:encoded><![CDATA[<dl>
<dt><a href="http://www.useit.com/alertbox/reading_pattern.html">F-Shaped Pattern For Reading Web Content</a></dt>
<dd>This week&#8217;s Alertbox column, offers tips for web writing based on eyetracking studies of how users read web pages.</dd>
<dt><a href="http://alistapart.com/articles/secureyourcode">Community Creators, Secure Your Code!</a></dt>
<dd>Tips for sanitizing your user-generated content and code. Related: <a href="http://podcast.phparch.com/main/index.php/episodes:20050808">Ask Chris Episode 1</a> (MP3 file). </dd>
<dt><a href="http://code.google.com/apis/gdata/calendar.html">Google Calendar releases an API</a></dt>
<dd>So now you can create a calendar front-end and use Google Calendar as a back-end.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/04/20/thursday_threefer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grammar in an online world&#8230;</title>
		<link>http://tiffanybbrown.com/2006/02/19/grammar_in_an_online_world/</link>
		<comments>http://tiffanybbrown.com/2006/02/19/grammar_in_an_online_world/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2006/02/19/grammar_in_an_online_world</guid>
		<description><![CDATA[Today&#8217;s thought which I have considered for some time: If, as rules of grammar tell us, you&#8217;s supposed to underline titles of books, and, as rules of usability tell us, you&#8217;re not supposed to underline anything that isn&#8217;t a link, how do you properly represent book titles in an online environment (when they don&#8217;t link [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s thought which I have considered for some time:</p>
<p>If, as rules of grammar tell us, you&#8217;s supposed to <a href="http://ollie.dcccd.edu/library/Module4/M4-IV/punct.htm">underline titles of books</a>, and, as rules of usability tell us, you&#8217;re not supposed to <a href="http://www.useit.com/alertbox/20040510.html">underline anything that isn&#8217;t a link</a>, how do you properly represent book titles in an online environment (when they don&#8217;t link to an Amazon.com entry)?</p>
<p>I have opted to use quote marks and/or italics. But somehow, it just doesn&#8217;t seem right.</p>
<p><ins datetime="2005-03-09T14:14:00EST"><br />
<a href="http://fungibleconvictions.com/"><cite>Andrew</cite></a> tells me that italics are the way to go:</p>
<blockquote><p>
The history of italics vs. underlining is thus. Typesetters always italicized book titles &#8212; after all, there were only roman and italicized characters to set, no batch of underlined characters existed. But then came the typewriter, which had no keys for italics, so people were forced to hand-underline book titles. People began to assume that underlining was how it had always been.</p>
<p>Today, fortunately for writing on the web, italicizing is regaining its rightful place!
</p></blockquote>
<p></ins></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2006/02/19/grammar_in_an_online_world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atlanta: AJAX &#8212; Time for the Transformation of Web Applications</title>
		<link>http://tiffanybbrown.com/2005/09/12/atlanta_ajax__time_for_the_transformation_of_web_applications/</link>
		<comments>http://tiffanybbrown.com/2005/09/12/atlanta_ajax__time_for_the_transformation_of_web_applications/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2005/09/12/atlanta_ajax__time_for_the_transformation_of_web_applications</guid>
		<description><![CDATA[CHI*A presents its monthly event. This month it&#8217;s AJAX. AJAX: Time for the Transformation of Web Applications Steve Benfield of ClearNova delivers a presentation on AJAX and its business applications. When: Thu, Sept 22, 6:30 p.m. Where: Macquarium, 1800 Peachtree St, Suite 250, Atlanta How much? FREE]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.chia.org/"><abbr title="Computer-Human Interaction - Atlanta">CHI*A</abbr></a> presents its monthly event. This month it&#8217;s <abbr title="Asynchronus Javascript and X M L">AJAX</abbr>.</p>
<p><span class="b">AJAX: Time for the Transformation of Web Applications</span><br />
Steve Benfield of <a href="http://www.clearnova.com/">ClearNova</a> delivers a presentation on AJAX and its business applications.<br />
<span class="b">When:</span> Thu, Sept 22, 6:30 p.m.<br />
<span class="b">Where:</span> <a href="http://www.macquarium.com/company/contact_us/directions.html">Macquarium</a>, 1800 Peachtree St, Suite 250, Atlanta<br />
<span class="b">How much?</span> FREE</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2005/09/12/atlanta_ajax__time_for_the_transformation_of_web_applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on writing effective alt text</title>
		<link>http://tiffanybbrown.com/2005/04/04/thoughts_on_writing_effective_alt_text/</link>
		<comments>http://tiffanybbrown.com/2005/04/04/thoughts_on_writing_effective_alt_text/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2005/04/04/thoughts_on_writing_effective_alt_text</guid>
		<description><![CDATA[Trenton Moss, of the UK-based usability/accessibility firm Webcredible, writes some guidelines for writing effective alt text]]></description>
			<content:encoded><![CDATA[<p>Trenton Moss, of the <abbr class="say">UK</abbr>-based usability/accessibility firm Webcredible, writes some guidelines for <a href="http://www.w3reports.com/index.php?itemid=846">writing effective <code>alt</code> text</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2005/04/04/thoughts_on_writing_effective_alt_text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The title attribute and search result links</title>
		<link>http://tiffanybbrown.com/2004/05/27/the_title_attribute_and_search_result_links/</link>
		<comments>http://tiffanybbrown.com/2004/05/27/the_title_attribute_and_search_result_links/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Search engines]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2004/05/27/the_title_attribute_and_search_result_links</guid>
		<description><![CDATA[While searching the SURL site, I noticed that many of the page titles were cut off. I won&#8217;t go in to what makes a good page title, or why page titles are important. But perhaps Google should add the title attribute &#8212; featuring the complete page title &#8212; to each link. When a user moused-over, [...]]]></description>
			<content:encoded><![CDATA[<p>While searching the <a href="http://www.surl.org/"><abbr title="Software Usability Research Laboratory">SURL</abbr></a> site, I noticed that many of the <a href="http://www.google.com/u/SURL?q=navigation&#038;sa=Google+Search&#038;domains=psychology.wichita.edu&#038;sitesearch=psychology.wichita.edu&#038;hq=inurl%3Apsychology.wichita.edu%2Fsurl" title="See what I mean">page titles</a> were cut off.</p>
<p><a href="http://www.google.com/u/SURL?q=navigation&#038;sa=Google+Search&#038;domains=psychology.wichita.edu&#038;sitesearch=psychology.wichita.edu&#038;hq=inurl%3Apsychology.wichita.edu%2Fsurl" title="See what I mean"><img src="/images/surl.jpg" style="border:1px solid #000;width:400px;height:175px;margin-top:10px;"></a></p>
<p>I won&#8217;t go in to what makes a <a href="http://www.sitepoint.com/article/html-title/2">good page title</a>, or why page titles are important. But perhaps Google should add the title attribute &#8212; featuring the complete page title &#8212; to each link. When a user moused-over, the complete title would appear.<br />
<img src="/images/surl2.gif" style="border:1px solid #000;width:484px;height:83px;margin-top:10px;"></p>
<p>And the code would look like this:</p>
<pre>
&lt;a href="http://psychology.wichita.edu/surl/usabilitynews/52/breadcrumb.htm"
title="Usability News - 5.2 2003 -- Breadcrumb Navigation: Further
Investigation of Usage"&gt;Usability News - 5.2 2003 -- Breadcrumb
&lt;b&gt;Navigation&lt;/b&gt;: Further ...&lt;/a&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2004/05/27/the_title_attribute_and_search_result_links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recommended reading: This month&#8217;s Human Factors International newsletter</title>
		<link>http://tiffanybbrown.com/2004/04/03/recommended_reading_this_months_human_factors_international_newsletter/</link>
		<comments>http://tiffanybbrown.com/2004/04/03/recommended_reading_this_months_human_factors_international_newsletter/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2004/04/03/recommended_reading_this_months_human_factors_international_newsletter</guid>
		<description><![CDATA[This month&#8217;s newsletter discusses &#8220;Some Considerations for Doing Usability in the Global Markets,&#8221; featuring links and other groovy analysis about how culture and language affect usability efforts. Of particular interest is the link to Hofstede&#8217;s Dimension of Culture Scales, which give you a sense of how hierarchical and individualistic (among other traits) a particular society [...]]]></description>
			<content:encoded><![CDATA[<p>This month&#8217;s newsletter discusses &#8220;<a href="http://www.humanfactors.com/downloads/currentissue.asp">Some Considerations for Doing Usability in the Global Markets</a>,&#8221; featuring links and other groovy analysis about how culture and language affect usability efforts.</p>
<p>Of particular interest is the link to <a href="http://spectrum.troyst.edu/~vorism/hofstede.htm">Hofstede&#8217;s Dimension of Culture Scales</a>, which give you a sense of how hierarchical and individualistic (among other traits) a particular society is.</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2004/04/03/recommended_reading_this_months_human_factors_international_newsletter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fleet error message?</title>
		<link>http://tiffanybbrown.com/2004/03/10/fleet_error_message/</link>
		<comments>http://tiffanybbrown.com/2004/03/10/fleet_error_message/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>tiffany</dc:creator>
				<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://tiffanybbrown.com/2004/03/10/fleet_error_message</guid>
		<description><![CDATA[I was trying to log in to check my account balance on my Fleet Bank-issued credit card. I entered my user name and password, and &#8230; nothing. So I tried again, and nothing &#8230; I realized at this point that the log in I was using just wasn&#8217;t working. But I couldn&#8217;t figure out why [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to <a href="http://mycard.fleet.com/">log in</a> to check my account balance on my Fleet Bank-issued credit card. I entered my user name and password, and &#8230; nothing. So I tried again, and nothing &#8230; </p>
<p>I realized at this point that the log in I was using just wasn&#8217;t working. But I couldn&#8217;t figure out why I wasn&#8217;t getting an error message.</p>
<p>I use <a href="http://www.mozilla.org/">Mozilla</a> and I have Javascript for popup windows disabled. That can cause problems for a few web sites. So I fired up Internet Explorer.</p>
<p>Know what the problem was? Fleet&#8217;s error message is a pop-up window.</p>
<p>I mean, it&#8217;&#8217;s easy enough to program an error message into a login script. Why make it a pop up window and confuse the hell out of someone?</p>
]]></content:encoded>
			<wfw:commentRss>http://tiffanybbrown.com/2004/03/10/fleet_error_message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

