<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>natasha's corner</title>
	
	<link>http://www.natashascorner.com</link>
	<description>thoughts on design, user experience, and other things that begin with letters</description>
	<lastBuildDate>Thu, 01 Dec 2011 19:56:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/natashascorner" /><feedburner:info uri="natashascorner" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to make Outlook more like Gmail</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/rjajBWpF7Pw/</link>
		<comments>http://www.natashascorner.com/2011/12/01/how-to-make-outlook-more-like-gmail/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 19:52:40 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=597</guid>
		<description><![CDATA[Ever since Microsoft improved the searching capabilities in Outlook, I have been using it more and more like Gmail (with its concepts of tags and archiving) rather than a traditional email client with folders. If you would like to reproduce the Gmail experience within Outlook, here is one way to do it. (Note: I use [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since Microsoft improved the searching capabilities in Outlook, I have been using it more and more like Gmail (with its concepts of tags and archiving) rather than a traditional email client with folders. If you would like to reproduce the Gmail experience within Outlook, here is one way to do it.</p>
<p>(Note: I use Outlook 2007 but this should work in later versions as well with hopefully minor modifications.)</p>
<h3>Create a top-level folder called &#8220;Archive&#8221;</h3>
<p><img src="http://www.natashascorner.com/wp-content/uploads/2011/12/archive_folder.png" alt="Archive folder" title="Archive folder" width="181" height="185" class="alignnone size-full wp-image-614" /></p>
<p>This folder will store all the emails you no longer want to have in your inbox but don&#8217;t want to delete. Having all the emails in one place makes it very easy to find a specific email by just about any criteria &#8211; sender, date, subject. When you search, Outlook will filter to show only the items that match your criteria right as you type, which makes locating emails very quick.</p>
<h3>Set up and use Categories instead of folders</h3>
<p>Using the &#8220;Categories&#8221; feature of Outlook has several advantages over using folders. For one, it lets you categorize emails without moving them from your inbox. If you use your inbox as a sort of to-do list, this can be very handy as it keeps you from jumping between folders to see what you need to do or respond to.</p>
<p>Another advantage is that you can apply more than one category to any given email. This is the biggest restriction in using folders because you can only file something away into one group. Sometimes, though, emails can be classified into two or more groups, which might require complex folder hierarchies that will make finding that email all that much more difficult. Categories remove this problem because you can assign as many categories as you want to an email.</p>
<p>Categories can also be color-coded, which enables a quick way for you to scan through a long list of emails and locate just the ones that you are interested in. The colors are also reflected in Calendar if you categorize your meeting requests.</p>
<p>If you don&#8217;t have a &#8220;Categories&#8221; column in your email view, you can add by right-clicking in the table header (where is shows the subject, sender, etc.) and selecting &#8220;Field Chooser&#8221;. In this dialog, locate &#8220;Categories&#8221; and drag it into your email list view where you want the categories to appear. I have them as the last column for easy scanning.</p>
<p>If you want to view all your emails for a given category, this can be easily accomplished by setting some view options in Outlook. You can sort by category, then choose the View > Arrange By > Show in Groups option.</p>
<h3>Add an &#8220;Archive&#8221; button to your toolbar</h3>
<p><img src="http://www.natashascorner.com/wp-content/uploads/2011/12/archive_button.png" alt="Archive button" title="Archive button" width="604" height="134" class="alignnone size-full wp-image-617" /></p>
<p>This is kind of an advanced bonus feature you can add to make archiving emails even easier. For this, you need to be somewhat comfortable using macros.</p>
<p>First, create a new macro called &#8220;Archive&#8221;. Use the following code and just substitute the name of your top-level folder (the one containing Inbox, Deleted Items, etc.):</p>
<pre>
Sub Archive()
On Error Resume Next
    Dim objFolder1 As Outlook.MAPIFolder, objFolder2 As Outlook.MAPIFolder
    Dim objNS As Outlook.NameSpace, objItem As Outlook.MailItem

    Set objNS = Application.GetNamespace("MAPI")
    Set objFolder1 = objNS.Folders("<SPAN STYLE="color: #ff0000">Name of your top-level folder</span>")
    Set objFolder2 = objFolder1.Folders("Archive")

    If objFolder2 Is Nothing Then
        MsgBox "This folder doesn't exist!", vbOKOnly + vbExclamation, "INVALID FOLDER"
    End If

    If Application.ActiveExplorer.Selection.Count = 0 Then
        'Require that this procedure be called only when a message is selected
        Exit Sub
    End If

    For Each objItem In Application.ActiveExplorer.Selection
        If objFolder.DefaultItemType = olMailItem Then
            If objItem.Class = olMail Then
                objItem.Move objFolder2
            End If
        End If
    Next
    Set objItem = Nothing
    Set objFolder1 = Nothing
    Set objFolder2 = Nothing
    Set objNS = Nothing
End Sub
</pre>
<p>(Note that I did not write this code myself. It&#8217;s based on sample code I found elsewhere and modified to suit my needs.)</p>
<p>Next, to add the button, go to View > Toolbars > Customize. In the Commands tab, select category &#8220;Macros&#8221;. This will show a list of all the macros you have defined. Click and drag your &#8220;Archive&#8221; macro to the toolbar of your choice (I put mine in the main toolbar, but you can also create a custom toolbar just for this button). </p>
<p>Once you have the button placed you can close the dialog and start using the button right away &#8211; just select an email in your inbox, click the button, and it should be moved to your Archive folder.</p>
<p>However, if you want to make it look a bit nicer, go back to the Customize dialog (you can right-click the button and select &#8220;Customize&#8221;). In the Commands tab, click the button &#8220;Rearrange Commands&#8221;. This will bring up another dialog. Select the toolbar that contains your Archive button and then select the button in the list of controls. If you click on the &#8220;Modify Selection&#8221; button to the right, you&#8217;ll get a long list of options. The first thing you should change is the name so it just says &#8220;Archive&#8221;. The other thing is you may want to change the icon or choose to not display an icon at all. </p>
<p>And that&#8217;s it! Now you should have a nice button in your toolbar for quickly archiving email messages.</p>
<div style="text-align: center">***</div>
<p>I&#8217;ve been using this method of archiving and categorizing for several years now and have found that it really improves my productivity within Outlook. I don&#8217;t have to dig through folders looking for something I received 6 months ago and I don&#8217;t have to worry about filing my emails to stay organized. As soon as there is nothing actionable left for me to do regarding an email, I archive it and forget about it until I need to reference it again. It&#8217;s a great way to get things done.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=rjajBWpF7Pw:hIsOer4PIe0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rjajBWpF7Pw:hIsOer4PIe0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rjajBWpF7Pw:hIsOer4PIe0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rjajBWpF7Pw:hIsOer4PIe0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rjajBWpF7Pw:hIsOer4PIe0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rjajBWpF7Pw:hIsOer4PIe0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rjajBWpF7Pw:hIsOer4PIe0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rjajBWpF7Pw:hIsOer4PIe0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rjajBWpF7Pw:hIsOer4PIe0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rjajBWpF7Pw:hIsOer4PIe0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/rjajBWpF7Pw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2011/12/01/how-to-make-outlook-more-like-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2011/12/01/how-to-make-outlook-more-like-gmail/</feedburner:origLink></item>
		<item>
		<title>Dryness is not a scale</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/HE2brPHIvgw/</link>
		<comments>http://www.natashascorner.com/2011/08/26/dryness-is-not-a-scale/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 13:20:21 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=585</guid>
		<description><![CDATA[My LG dryer asks me to choose how dry I would like my clothes to be. Since when is dryness a scale? Something is either dry or it isn&#8217;t. &#8220;Damp&#8221; is not dry. Imagine a washer asking how clean you&#8217;d like your clothes to come out &#8211; &#8220;dirty clean&#8221; or &#8220;very clean&#8221;?]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.natashascorner.com/wp-content/uploads/2011/08/photo-400x303.jpg" alt="Dryness scale" title="Dryness scale" width="400" height="303" class="alignnone size-medium wp-image-586" /></p>
<p>My LG dryer asks me to choose how dry I would like my clothes to be. Since when is dryness a scale? Something is either dry or it isn&#8217;t. &#8220;Damp&#8221; is not dry. Imagine a washer asking how clean you&#8217;d like your clothes to come out &#8211; &#8220;dirty clean&#8221; or &#8220;very clean&#8221;?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=HE2brPHIvgw:MAA2uMHSQcw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=HE2brPHIvgw:MAA2uMHSQcw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=HE2brPHIvgw:MAA2uMHSQcw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=HE2brPHIvgw:MAA2uMHSQcw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=HE2brPHIvgw:MAA2uMHSQcw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=HE2brPHIvgw:MAA2uMHSQcw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=HE2brPHIvgw:MAA2uMHSQcw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=HE2brPHIvgw:MAA2uMHSQcw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=HE2brPHIvgw:MAA2uMHSQcw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=HE2brPHIvgw:MAA2uMHSQcw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/HE2brPHIvgw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2011/08/26/dryness-is-not-a-scale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2011/08/26/dryness-is-not-a-scale/</feedburner:origLink></item>
		<item>
		<title>What’s wrong with the new Netflix pricing: A UX perspective</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/ctNhArijDw8/</link>
		<comments>http://www.natashascorner.com/2011/07/14/whats-wrong-with-the-new-netflix-pricing-a-ux-perspective/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 19:09:48 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Words]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=561</guid>
		<description><![CDATA[A lot has been written about the recent announcement by Netflix that they will be increasing their plan prices by as much as 60%. Clearly, this backlash was not unanticipated by Netflix &#8211; according to David Pogue: Netflix knew that there would be a nasty backlash, and has already taken the subscriber defection into account [...]]]></description>
			<content:encoded><![CDATA[<p>A lot has been written about the recent announcement by Netflix that they will be increasing their plan prices by as much as 60%. Clearly, this backlash was not unanticipated by Netflix &#8211; according to <a href="http://pogue.blogs.nytimes.com/2011/07/14/why-netflix-raised-its-prices/">David Pogue</a>:</p>
<blockquote><p>Netflix knew that there would be a nasty backlash, and has already taken the subscriber defection into account in its financial forecasts. It still figures it will come out ahead.</p></blockquote>
<p>That&#8217;s nice. But in fact, it fits in with the logic behind <a href="http://blog.netflix.com/2011/07/netflix-introduces-new-plans-and.html">Netflix&#8217;s decision</a> to change its pricing structure:</p>
<blockquote><p>Last November when we launched our $7.99 unlimited streaming plan, DVDs by mail was treated as a $2 add on to our unlimited streaming plan. At the time, we didn’t anticipate offering DVD only plans. Since then we have realized that there is still a very large continuing demand for DVDs both from our existing members as well as non-members. Given the long life we think DVDs by mail will have, treating DVDs as a $2 add on to our unlimited streaming plan neither makes great financial sense nor satisfies people who just want DVDs. Creating an unlimited DVDs by mail plan (no streaming) at our lowest price ever, $7.99, does make sense and will ensure a long life for our DVDs by mail offering. Reflecting our confidence that DVDs by mail is a long-term business for us, we are also establishing a separate and distinct management team solely focused on DVDs by mail, led by Andy Rendich, our Chief Service and Operations Officer and an 11 year veteran of Netflix.</p></blockquote>
<p>That&#8217;s a difficult paragraph to parse, but since I&#8217;m well versed in corporate-speak from working at a large corporation, I think I get it. It sounds like Netflix has decided to split its business into two units: online streaming and DVDs by mail. That is what they are explaining by saying that they &#8220;have realized that there is still a very large continuing demand for DVDs&#8221;. It&#8217;s not that Netflix didn&#8217;t know this before; they just decided the demand was big enough to justify a new business unit. That&#8217;s where the new management team comes in.</p>
<p>The explanation seems to be: we now have two business units and each business unit will charge users independently in order to remain profitable. What Netflix avoids addressing, though, is how this decision affects the current user experience offered by the company.</p>
<p>Here is how we use Netflix at home: stream some older TV shows for casual TV watching, with an occasional movie now and then, and supplement the titles not available for streaming with DVDs. I bet there are lots of other customers who use it exactly the same way.</p>
<p>The key to the service, in other words, is the fact that you can stream <em>and</em> supplement with DVDs when something is not available for streaming. This is what <em>makes</em> Netflix. And this is where the new pricing structure breaks down. It fails to address this special combination that is not offered by anyone else in the business. Take away the DVDs and you&#8217;ve got Hulu and Amazon Prime. Take away the streaming and you&#8217;ve got Redbox. But put them together and you&#8217;ve got <strong>Netflix</strong>.</p>
<p>To a Netflix customer, streaming and DVDs are inseparable.</p>
<p>To Netflix, they are two separate business units.</p>
<p>It&#8217;s a classic case of implementation-model design. The pricing is based on Netflix&#8217;s implementation model: DVDs by mail are markedly different from streaming content from a business perspective.</p>
<p>Compare this to a cable company that offers TV, internet, and telephone services. They have separate business units for each, but they still offer bundle pricing if you subscribe to more than one service. Why isn&#8217;t Netflix offering the same? This is what doesn&#8217;t make sense from the perspective of their users. The service we are receiving doesn&#8217;t change, yet the price increases dramatically because of what? Because they decided to have a re-org? </p>
<p>I predict that by the time September 1st rolls around, Netflix <em>will</em> offer a bundle plan for around $12-13/month. In the meantime, customers like myself are left wondering: do I cancel streaming or DVDs by mail? And if I cancel either of those, why not go with the cheaper (or even free) offerings from companies like Hulu, Amazon, or Redbox?</p>
<p>On a final note, here is a hint to Netflix marketing and user experience folks: if the description of your new pricing plan reads like a math problem, you&#8217;re doing it wrong.</p>
<blockquote><p>Your current $11.99 a month membership for unlimited streaming and unlimited DVDs (including Blu-ray access) will be split into 2 distinct plans:</p>
<p>   Plan 1: Unlimited Streaming (no DVDs) for $7.99 a month<br />
   Plan 2: Unlimited DVDs (including Blu-ray), 1 out at-a-time (no streaming)<br />
              for $9.99 a month</p>
<p>Your price for getting both of these plans will be $17.98 a month ($7.99 + $9.99). </p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=ctNhArijDw8:zh1nIcQeAVA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ctNhArijDw8:zh1nIcQeAVA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ctNhArijDw8:zh1nIcQeAVA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ctNhArijDw8:zh1nIcQeAVA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ctNhArijDw8:zh1nIcQeAVA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ctNhArijDw8:zh1nIcQeAVA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ctNhArijDw8:zh1nIcQeAVA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ctNhArijDw8:zh1nIcQeAVA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ctNhArijDw8:zh1nIcQeAVA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ctNhArijDw8:zh1nIcQeAVA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/ctNhArijDw8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2011/07/14/whats-wrong-with-the-new-netflix-pricing-a-ux-perspective/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2011/07/14/whats-wrong-with-the-new-netflix-pricing-a-ux-perspective/</feedburner:origLink></item>
		<item>
		<title>Uncharted: A new blog for dashboard design posts</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/rfXJ1LBeZ-0/</link>
		<comments>http://www.natashascorner.com/2010/01/03/uncharted-a-new-blog-for-dashboard-design-posts/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 02:55:14 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=548</guid>
		<description><![CDATA[I&#8217;ve wanted to write more about dashboard design, but never felt like this was the right place to it because it&#8217;s my personal blog. So, as a new project for 2010, I decided to start a new blog. It&#8217;s called Uncharted and it&#8217;s all about applying user experience principles to dashboard design. I&#8217;ve moved a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve wanted to write more about dashboard design, but never felt like this was the right place to it because it&#8217;s my personal blog. So, as a new project for 2010, I decided to start a new blog. It&#8217;s called <a href="http://www.unchartedblog.com">Uncharted</a> and it&#8217;s all about applying user experience principles to dashboard design.</p>
<p>I&#8217;ve moved a few relevant posts from this blog to the new one and have disabled comments here in order to keep all the discussion in one place.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=rfXJ1LBeZ-0:DrEHZ1wLXtE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rfXJ1LBeZ-0:DrEHZ1wLXtE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rfXJ1LBeZ-0:DrEHZ1wLXtE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rfXJ1LBeZ-0:DrEHZ1wLXtE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rfXJ1LBeZ-0:DrEHZ1wLXtE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rfXJ1LBeZ-0:DrEHZ1wLXtE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rfXJ1LBeZ-0:DrEHZ1wLXtE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rfXJ1LBeZ-0:DrEHZ1wLXtE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=rfXJ1LBeZ-0:DrEHZ1wLXtE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=rfXJ1LBeZ-0:DrEHZ1wLXtE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/rfXJ1LBeZ-0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2010/01/03/uncharted-a-new-blog-for-dashboard-design-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2010/01/03/uncharted-a-new-blog-for-dashboard-design-posts/</feedburner:origLink></item>
		<item>
		<title>The shortest distance between two points is two lines</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/9gcNarLvBL4/</link>
		<comments>http://www.natashascorner.com/2009/11/13/the-shortest-distance-between-two-points-is-two-lines/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 02:30:52 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=520</guid>
		<description><![CDATA[This is a map of the route my package took to arrive via FedEx: I never would have guessed that the best way to get something from Pennsylvania to Boston is through Tennessee. But then, geography was never my strong point. (Memphis must be FedEx City.)]]></description>
			<content:encoded><![CDATA[<p>This is a map of the route my package took to arrive via FedEx:</p>
<div id="attachment_522" class="wp-caption alignnone" style="width: 510px"><img src="http://www.natashascorner.com/wp-content/uploads/2009/11/00000021.png" alt="FedEx map" title="FedEx map" width="500" height="314" class="size-full wp-image-522" /><p class="wp-caption-text">Connect the dots from the green pin to the boxy thing</p></div>
<p>I never would have guessed that the best way to get something from Pennsylvania to Boston is through Tennessee. But then, geography was never my strong point.</p>
<p>(Memphis must be <a href="http://www.natashascorner.com/2008/12/01/no-matter-what/">FedEx City</a>.)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=9gcNarLvBL4:9ezGAORnlEk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=9gcNarLvBL4:9ezGAORnlEk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=9gcNarLvBL4:9ezGAORnlEk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=9gcNarLvBL4:9ezGAORnlEk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=9gcNarLvBL4:9ezGAORnlEk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=9gcNarLvBL4:9ezGAORnlEk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=9gcNarLvBL4:9ezGAORnlEk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=9gcNarLvBL4:9ezGAORnlEk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=9gcNarLvBL4:9ezGAORnlEk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=9gcNarLvBL4:9ezGAORnlEk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/9gcNarLvBL4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/11/13/the-shortest-distance-between-two-points-is-two-lines/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2009/11/13/the-shortest-distance-between-two-points-is-two-lines/</feedburner:origLink></item>
		<item>
		<title>Why not to pre-order from Amazon</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/GM1HtoKYVFs/</link>
		<comments>http://www.natashascorner.com/2009/11/05/why-not-to-pre-order-from-amazon/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 03:16:26 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=514</guid>
		<description><![CDATA[A while ago, I decided to pre-order a book from Amazon for the first time. The book was Confessions of a Public Speaker by Scott Berkun and it&#8217;s the first time I remember being really excited about a non-fiction book coming out. The thing is, I&#8217;m cheap, so if Amazon says I only have to [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago, I decided to pre-order a book from Amazon for the first time. The book was <a href="http://bit.ly/copsbook">Confessions of a Public Speaker</a> by <a href="http://www.scottberkun.com">Scott Berkun</a> and it&#8217;s the first time I remember being really excited about a non-fiction book coming out. The thing is, I&#8217;m cheap, so if Amazon says I only have to add something worth $8.51 to get free shipping, I&#8217;m going to do it &#8217;cause I don&#8217;t want to pay for shipping. There were actually a couple other books I wanted to get, so I added them to my cart and checked out.</p>
<p>Here is where my expected experience completely deviated from the actual experience.</p>
<p>What I <em>thought</em> would happen is that Amazon would ship the other books right away and once the pre-ordered book became available, they would send that out. That&#8217;s how it works in regular stores &#8211; if something is available in-store, you can pay for that and walk out with it, but you can also pre-order something else at the same time and come get it when it becomes available. So I waited. A week went by and my books hadn&#8217;t arrived. Then another week went by. At this point, I got worried and logged back on to Amazon to see the status of my order. I was shocked to see that they hadn&#8217;t even shipped it yet! Apparently, they were holding back <em>my entire order</em> until the pre-ordered book became available.</p>
<p>While I understand that in order to save on shipping Amazon needs to combine orders into as few packages as possible, it was the last thing I would have expected that they would hold my entire order because one item was not available. It just doesn&#8217;t make sense. What Amazon <em>should</em> have done is one of three things:</p>
<ol>
<li>Make it crystal clear that the order will not ship until the pre-ordered item is available.</li>
<li>Ship the available items right away and send the pre-ordered item when it&#8217;s available.</li>
<li>Don&#8217;t give customers the option to mix pre-ordered and available items in the same transaction.</li>
</ol>
<p>While #2 is my preferred option, any of these would have been acceptable. As it was, I lost two weeks waiting for an order that didn&#8217;t come and then had to go through the trouble of canceling the entire order and re-purchasing the available items separately. Thankfully Confessions of a Public Speaker comes out next week and I&#8217;ll finally feel safe ordering it. And in the future, I&#8217;ll steer clear of Amazon&#8217;s &#8220;pre-order&#8221; system.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=GM1HtoKYVFs:5kn8u1uh3Bo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=GM1HtoKYVFs:5kn8u1uh3Bo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=GM1HtoKYVFs:5kn8u1uh3Bo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=GM1HtoKYVFs:5kn8u1uh3Bo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=GM1HtoKYVFs:5kn8u1uh3Bo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=GM1HtoKYVFs:5kn8u1uh3Bo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=GM1HtoKYVFs:5kn8u1uh3Bo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=GM1HtoKYVFs:5kn8u1uh3Bo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=GM1HtoKYVFs:5kn8u1uh3Bo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=GM1HtoKYVFs:5kn8u1uh3Bo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/GM1HtoKYVFs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/11/05/why-not-to-pre-order-from-amazon/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2009/11/05/why-not-to-pre-order-from-amazon/</feedburner:origLink></item>
		<item>
		<title>Reflections on usability testing at the SAP BusinessObjects User Conference</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/MY2B2uL-PSo/</link>
		<comments>http://www.natashascorner.com/2009/11/04/reflections-on-usability-testing-at-the-sap-businessobjects-user-conference/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 22:26:00 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Xcelsius]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=503</guid>
		<description><![CDATA[This post has been moved to my new blog, Uncharted. Please continue the discussion there. It&#8217;s been a couple of weeks since our round of usability tests at the SAP BusinessObjects User Conference (rolls right off the tongue, doesn&#8217;t it?) and I wanted to share a couple of thoughts about the experience. This was the [...]]]></description>
			<content:encoded><![CDATA[<div class="important">This post has been moved to my new blog, <a href="http://www.unchartedblog.com/2009/11/04/reflections-on-usability-testing-at-the-sap-businessobjects-user-conference/">Uncharted</a>. Please continue the discussion there.</div>
<p>It&#8217;s been a couple of weeks since our round of usability tests at the <a href="http://www.gbnannualconference.org">SAP BusinessObjects User Conference</a> (rolls right off the tongue, doesn&#8217;t it?) and I wanted to share a couple of thoughts about the experience. This was the first time we did usability tests since I joined the team back in March and it was also my first time meeting our community of users in person. </p>
<p>The first thing that struck me was the willingness of people who use Xcelsius to come and participate in the testing sessions. There were 13 sessions total, with room for one tester and one observer, and we had most of them filled before the conference even started. Our recruiters said they had people practically busting down the doors, trying to get into the sessions. This kind of support is exactly what we need in order to improve our product. For those who couldn&#8217;t make it, this is what it looked like:</p>
<p><img src="http://www.natashascorner.com/wp-content/uploads/2009/11/37564989.jpg" alt="Xcelsius usability testing at SAP BusinessObjects User Conference"></p>
<p>The second thing that really impressed me was the quality of feedback we received. I have to admit, I was a little nervous going into these sessions because I know a lot of our users get frustrated with some of Xcelsius&#8217; shortcomings. However, everyone that participated was very supportive and provided great constructive feedback. We learned a lot from watching people use the product &#8211; some of which we expected, and some that took us by surprise. Spending 13 hours looking at Xcelsius through the eyes of our customers was a very enlightening experience.</p>
<p>Finally, the thing I enjoyed most was meeting everyone in the Xcelsius user community in person. I follow many discussions online (including on <a href="http://www.linkedin.com/groups?home=&#038;gid=1847619&#038;trk=anet_ug_hm">LinkedIn</a>, <a href="https://forums.sdn.sap.com/forum.jspa?forumID=302">SDN</a>, and <a href="http://search.twitter.com/search?q=xcelsius">Twitter</a>) and it was very exciting to be able to put a face to the names of people I have come to respect through these discussions. I tried to meet as many people as I could, through lunches, networking events, the Xcelsius Community event, and the usability testing sessions. Through all of this I learned a lot about what people do with Xcelsius and their top concerns. There were two questions that I heard more than any others, though, and I&#8217;ll leave you with the answers here:</p>
<ol>
<li>Q: When is the next version of Xcelsius coming out?
<p>A: Unfortunately, I can&#8217;t comment on that. All I can say is, &#8220;soon.&#8221;</li>
<li>Q: Are you related to <a href="http://forums.sdn.sap.com/profile.jspa?userID=3788979">Matt Lloyd</a>?
<p>A: You know how some people are related by marriage? Well, Matt and I are related by product. Beyond that, there is no relation. It&#8217;s just an awesome last name.</li>
</ol>
<p>Also, if you want to see photos from the Xcelsius Community event, you can find them <a href="http://www.flickr.com/photos/nblloyd/sets/72157622631578156/">on Flickr</a>.</p>
<div class="important">This post has been moved to my new blog, <a href="http://www.unchartedblog.com/2009/11/04/reflections-on-usability-testing-at-the-sap-businessobjects-user-conference/">Uncharted</a>. Please continue the discussion there.</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=MY2B2uL-PSo:vmlfLYfcnPg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=MY2B2uL-PSo:vmlfLYfcnPg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=MY2B2uL-PSo:vmlfLYfcnPg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=MY2B2uL-PSo:vmlfLYfcnPg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=MY2B2uL-PSo:vmlfLYfcnPg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=MY2B2uL-PSo:vmlfLYfcnPg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=MY2B2uL-PSo:vmlfLYfcnPg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=MY2B2uL-PSo:vmlfLYfcnPg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=MY2B2uL-PSo:vmlfLYfcnPg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=MY2B2uL-PSo:vmlfLYfcnPg:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/MY2B2uL-PSo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/11/04/reflections-on-usability-testing-at-the-sap-businessobjects-user-conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2009/11/04/reflections-on-usability-testing-at-the-sap-businessobjects-user-conference/</feedburner:origLink></item>
		<item>
		<title>Amplify Anything: Sentiment analysis for the web</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/sAT4Dy-uB5Q/</link>
		<comments>http://www.natashascorner.com/2009/09/02/amplify-anything-sentiment-analysis-for-the-web/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 03:13:01 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Words]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=499</guid>
		<description><![CDATA[I&#8217;ve been pretty excited about the possibilities presented by OpenAmplify &#8211; I wrote a bit about it in my previous post. So I got thinking&#8230; Twitter is a good obvious place to start with text analysis, but wouldn&#8217;t it be cool to see the top topics and sentiment for any website you&#8217;re looking at? For [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been pretty excited about the possibilities presented by <a href="http://community.openamplify.com">OpenAmplify</a> &#8211; I wrote a bit about it in my <a href="http://www.natashascorner.com/2009/07/28/twitter-openamplify-xcelsius-awesome/">previous post</a>. So I got thinking&#8230; Twitter is a good obvious place to start with text analysis, but wouldn&#8217;t it be cool to see the top topics and sentiment for any website you&#8217;re looking at? </p>
<p>For example, say I&#8217;m thinking about buying a Kindle. I can go to Amazon.com and read through the 5000+ reviews. But what if I just want a summary? Amazon provides ratings, but that doesn&#8217;t tell me what I really want to know. In particular, what are the key things people are talking about? And how do they feel about them? Sure, I could copy/paste the URL into some tool and get the analysis, but that&#8217;s way too much work and I&#8217;ll probably forget about the tool when I need it anyway.</p>
<p>This is where Ubiquity comes in. Ubiquity is an add-on for Firefox that gives you the power to do more within your browser. For instance, you can select an address and immediately see a map. You can quickly shorten the URL you&#8217;re looking at so you can post it to Twitter. You can even tweet directly within the context of what you are reading. The beauty of Ubiquity is that it doesn&#8217;t interrupt your workflow to accomplish related tasks. You can read more about it here: <a href="http://labs.mozilla.com/ubiquity/">http://labs.mozilla.com/ubiquity</a>.</p>
<p>It&#8217;s easy to see that Ubiquity provides the perfect platform to incorporate the kind of analysis provided by OpenAmplify. It can expose the hidden information in a website that you otherwise could spend hours hunting down. This is where my Ubiquity command, &#8220;amplify&#8221;, comes in.</p>
<p>Here is how it works:</p>
<ol>
<li>Go to any website, like the <a href="http://www.amazon.com/Kindle-Amazons-Wireless-Reading-Generation/product-reviews/B00154JDAI">Kindle reviews page on Amazon.com</a>.
<p><a href="http://www.natashascorner.com/wp-content/uploads/2009/09/ubiquity1.png"><img src="http://www.natashascorner.com/wp-content/uploads/2009/09/ubiquity1-400x258.png" alt="Kindle reviews on Amazon.com" title="Kindle reviews on Amazon.com" width="400" height="258" class="size-medium wp-image-500" /></a><br />
<small>Kindle reviews on Amazon.com</small></li>
<li>Activate Ubiquity (Alt+Space) and execute the &#8220;amplify&#8221; command.
<p><a href="http://www.natashascorner.com/wp-content/uploads/2009/09/ubiquity2.png"><img src="http://www.natashascorner.com/wp-content/uploads/2009/09/ubiquity2-400x258.png" alt="Results of the &quot;amplify&quot; command" title="Results of the &quot;amplify&quot; Ubiquity command" width="400" height="258" class="size-medium wp-image-501" /></a><br />
<small>Results of the &#8220;amplify&#8221; Ubiquity command</small></li>
</ol>
<p>That&#8217;s it. You don&#8217;t need to open a new window, launch an external tool, or do any keyword searching. You get the sentiment analysis right in context, and that can reveal interesting insights.</p>
<p>So, how do you get this set up on your computer? It&#8217;s easy:</p>
<ol>
<li>Install <a href="http://www.firefox.com">Firefox</a>.</li>
<li>Install the <a href="http://labs.mozilla.com/ubiquity/">Ubiquity</a> add-on for Firefox.</li>
<li>Subscribe to my <a href="http://www.natashascorner.com/dev/ubiquity">&#8220;amplify&#8221; command feed</a>.</li>
</ol>
<p>Here are some ideas (besides my Kindle example above) to try out once you have the command installed:</p>
<ul>
<li>Amplify <a href="http://www.cnn.com">CNN.com</a> and compare it to <a href="http://www.foxnews.com">FoxNews.com</a>.</li>
<li>Open up an e-mail in Gmail, select the text, and Amplify it.</li>
<li>Go to your <a href="http://www.natashascorner.com">favorite blog</a> and Amplify it.</li>
</ul>
<p>Any other ideas for this type of sentiment analysis? Please share in the comments.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=sAT4Dy-uB5Q:x4xP0maJR_o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=sAT4Dy-uB5Q:x4xP0maJR_o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=sAT4Dy-uB5Q:x4xP0maJR_o:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=sAT4Dy-uB5Q:x4xP0maJR_o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=sAT4Dy-uB5Q:x4xP0maJR_o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=sAT4Dy-uB5Q:x4xP0maJR_o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=sAT4Dy-uB5Q:x4xP0maJR_o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=sAT4Dy-uB5Q:x4xP0maJR_o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=sAT4Dy-uB5Q:x4xP0maJR_o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=sAT4Dy-uB5Q:x4xP0maJR_o:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/sAT4Dy-uB5Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/09/02/amplify-anything-sentiment-analysis-for-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2009/09/02/amplify-anything-sentiment-analysis-for-the-web/</feedburner:origLink></item>
		<item>
		<title>Twitter + OpenAmplify + Xcelsius = Awesome</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/7CW4kzcGyZk/</link>
		<comments>http://www.natashascorner.com/2009/07/28/twitter-openamplify-xcelsius-awesome/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 11:24:22 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Words]]></category>
		<category><![CDATA[Xcelsius]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=463</guid>
		<description><![CDATA[This post has been moved to my new blog, Uncharted. Please continue the discussion there. I recently learned about OpenAmplify, a web service that uses Natural Language Processing (NLP) to extract meaning from text. I&#8217;m very familiar with NLP because I&#8217;ve worked on the Text Analysis team at SAP (previously with Inxight Software), so I [...]]]></description>
			<content:encoded><![CDATA[<div class="important">This post has been moved to my new blog, <a href="http://www.unchartedblog.com/2009/07/28/twitter-openamplify-xcelsius-awesome/">Uncharted</a>. Please continue the discussion there.</div>
<p>I recently learned about <a href="http://community.openamplify.com">OpenAmplify</a>, a web service that uses Natural Language Processing (NLP) to extract meaning from text. I&#8217;m very familiar with NLP because I&#8217;ve worked on the <a href="http://www.sap.com/solutions/sapbusinessobjects/large/intelligenceplatform/im/data-integration/textanalysis/index.epx">Text Analysis</a> team at SAP (previously with Inxight Software), so I was very interested to see OpenAmplify provide this capability for free and online. It&#8217;s the first such service that I&#8217;ve heard of and I wanted to try it out.</p>
<p>So, I put together a little demo using Twitter and Xcelsius, the product I&#8217;m currently working on. Here&#8217;s how it works:</p>
<ol>
<li><a href="http://apiwiki.twitter.com/">Twitter</a> supplies the data.</li>
<li><a href="http://community.openamplify.com">OpenAmplify</a> analyzes it for semantic content.</li>
<li><a href="http://www.sap.com/solutions/sapbusinessobjects/sme/xcelsius/index.epx">Xcelsius</a> displays the data.</li>
</ol>
<p>Try it out for yourself. (Note: Only single-word keywords will work right now.)</p>
<p><object width="475" height="566"><param name="movie" value="http://www.natashascorner.com/xcelsius/samples/twitter_plus_openamplify_plus_xcelsius.swf"></param>
<PARAM NAME="quality" VALUE="high"></param>
<PARAM NAME="bgcolor" VALUE="#FFFFFF"></param>
<PARAM NAME="play" VALUE="true"></param>
<PARAM NAME="loop" VALUE="true"></param>
<PARAM NAME=bgcolor VALUE="#FFFFFF"></param>
<EMBED src="http://www.natashascorner.com/xcelsius/samples/twitter_plus_openamplify_plus_xcelsius.swf" quality=high bgcolor=#FFFFFF WIDTH="475" HEIGHT="566" NAME="myMovieName" ALIGN="" TYPE="application/x-shockwave-flash" play="true" loop="true" PLUGINSPAGE="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"><br />
</EMBED><br />
</object></p>
<p>Those who are geekily-inclined can continue reading for the &#8220;how.&#8221; The rest of you can stop reading now. <img src='http://www.natashascorner.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Getting this set up was actually really easy and quick. Both Twitter&#8217;s and OpenAmplify&#8217;s APIs are easy to use and easy to connect. Here is what an OpenAmplify API call looks like when using Twitter as the data source:</p>
<blockquote><p>http://portaltnx.openamplify.com/AmplifyWeb/AmplifyThis?apiKey=[your API key]&#038;sourceURL=http://search.twitter.com/search.atom?q=[keyword]</p></blockquote>
<p>To get this into Xcelsius, you first need to create an XML map to that URL in your Excel spreadsheet. Then, you set up the XML Map connection and with a little concatenation, link the URL to a cell that inserts the keyword at the end. (Feel free to <a href="mailto:nblloyd@gmail.com">e-mail me</a> if you have questions about how to get this working.)</p>
<p>That&#8217;s all there is to it. Seriously.</p>
<p>In terms of functionality, I think OpenAmplify is rather limited. In their &#8220;About&#8221; page, they claim that OpenAmplify &#8220;identifies the significant topics, brands, people, perspectives, emotions, actions and timescales.&#8221; While that&#8217;s probably true, it would be nice to see the data by type (e.g., who are the people? what are the perspectives? what are the emotions?). As it is, you just get a list of &#8220;topics&#8221; and &#8220;actions&#8221; with ratings for polarity (positive, negative, or neutral). It would also be nice to get the supporting evidence that shows why each topic got the rating it got as a list of all the positive statements and all the negative statements. The style analysis (&#8220;slang&#8221; and &#8220;flamboyance&#8221;) might be fun, but I have a hard time imagining real uses for it. The demographics data, on the other hand, is very useful and I&#8217;m glad the OpenAmplify team says they will focus more on this in the future.</p>
<p>The latest release of OpenAmplify seems to have some good improvements in it, including performance improvements and the addition of &#8220;intentions&#8221; (what are people doing or intend to to). Just note that if you want to use the latest release, you actually have to use a different base URL for your API call:</p>
<p>http://portaltnx.openamplify.com/<strong>AmplifyWeb_V11</strong>/</p>
<p>rather than</p>
<p>http://portaltnx.openamplify.com/<strong>AmplifyWeb</strong>/</p>
<p>[A note for any OpenAmplify folks who may be reading this: You might want to update your <a href="http://community.openamplify.com/blogs/quickstart/pages/overview.aspx">documentation</a> to point to the latest release URL. Not everyone reads your blog.]</p>
<p>I did not use this latest release because I wasn&#8217;t aware of the difference in URLs, but I&#8217;ll try to upgrade to it in the future and see how it works.</p>
<p>Overall, I am impressed with OpenAmplify for two reasons. One, it provides a valuable service for free, and two, it uses a community model. Rather than building applications themselves, the OpenAmplify team provides the tools for other people to do it. This can be very powerful, as demonstrated by Apple&#8217;s App Store, and I hope it takes off for natural language processing as well. Twitter seems to be a popular choice for analysis at the moment, but I&#8217;m really interested to see what other applications people find for OpenAmplify and NLP. I think there is a lot of potential here.</p>
<p>UPDATE: This little app was <a href="http://community.openamplify.com/blogs/ampthis/archive/2009/07/28/twitter-openamplify-xcelsius-awesome.aspx">blogged by OpenAmplify</a>!</p>
<div class="important">This post has been moved to my new blog, <a href="http://www.unchartedblog.com/2009/07/28/twitter-openamplify-xcelsius-awesome/">Uncharted</a>. Please continue the discussion there.</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=7CW4kzcGyZk:l4NRFOZ22DQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=7CW4kzcGyZk:l4NRFOZ22DQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=7CW4kzcGyZk:l4NRFOZ22DQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=7CW4kzcGyZk:l4NRFOZ22DQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=7CW4kzcGyZk:l4NRFOZ22DQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=7CW4kzcGyZk:l4NRFOZ22DQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=7CW4kzcGyZk:l4NRFOZ22DQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=7CW4kzcGyZk:l4NRFOZ22DQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=7CW4kzcGyZk:l4NRFOZ22DQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=7CW4kzcGyZk:l4NRFOZ22DQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/7CW4kzcGyZk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/07/28/twitter-openamplify-xcelsius-awesome/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2009/07/28/twitter-openamplify-xcelsius-awesome/</feedburner:origLink></item>
		<item>
		<title>Bill Pay: Good Idea / Bad Idea</title>
		<link>http://feedproxy.google.com/~r/natashascorner/~3/ltboan9uXKc/</link>
		<comments>http://www.natashascorner.com/2009/07/15/bill-pay-good-idea-bad-idea/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 20:21:01 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=455</guid>
		<description><![CDATA[Good Idea Clearly identifying a bill&#8217;s due date when the user is scheduling a payment. Citibank&#8217;s calendar widget clearly indicates when the next payment is due. Bad Idea Telling the user to remember a bill&#8217;s due date while scheduling a payment. ECSI&#8217;s student loan bill pay options require you to know your bill&#8217;s due date. [...]]]></description>
			<content:encoded><![CDATA[<h2>Good Idea</h2>
<p><strong>Clearly identifying a bill&#8217;s due date when the user is scheduling a payment.</strong></p>
<p><img src="http://content.screencast.com/users/nblloyd/folders/Jing/media/fa66c881-c3d2-4e73-b146-19e467a8cbc8/2009-07-15_1607.png" alt="Citibank bill pay calendar" /><br />
Citibank&#8217;s calendar widget clearly indicates when the next payment is due.</p>
<h2>Bad Idea</h2>
<p><strong>Telling the user to remember a bill&#8217;s due date while scheduling a payment.</strong></p>
<p><a href="http://www.natashascorner.com/wp-content/uploads/2009/07/2009-07-15_1610.png"><img src="http://www.natashascorner.com/wp-content/uploads/2009/07/2009-07-15_1610-400x103.png" alt="ECSI&#039;s bill pay options" title="ECSI&#039;s student loan bill pay options" width="400" height="103" class="alignnone size-medium wp-image-458" /></a><br />
ECSI&#8217;s student loan bill pay options require you to know your bill&#8217;s due date. Note the two notes. Also note that the due date does not appear anywhere else on this form.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/natashascorner?a=ltboan9uXKc:G7G9rn14vyo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ltboan9uXKc:G7G9rn14vyo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ltboan9uXKc:G7G9rn14vyo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ltboan9uXKc:G7G9rn14vyo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ltboan9uXKc:G7G9rn14vyo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ltboan9uXKc:G7G9rn14vyo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ltboan9uXKc:G7G9rn14vyo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ltboan9uXKc:G7G9rn14vyo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/natashascorner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/natashascorner?a=ltboan9uXKc:G7G9rn14vyo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/natashascorner?i=ltboan9uXKc:G7G9rn14vyo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/natashascorner/~4/ltboan9uXKc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/07/15/bill-pay-good-idea-bad-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.natashascorner.com/2009/07/15/bill-pay-good-idea-bad-idea/</feedburner:origLink></item>
	</channel>
</rss>

