<?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>natasha&#039;s corner &#187; Work</title>
	<atom:link href="http://www.natashascorner.com/categories/work/feed/" rel="self" type="application/rss+xml" />
	<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>
		<item>
		<title>How to make Outlook more like Gmail</title>
		<link>http://www.natashascorner.com/2011/12/01/how-to-make-outlook-more-like-gmail/</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>
]]></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>
		</item>
		<item>
		<title>UPA Boston Mini Conference Slides</title>
		<link>http://www.natashascorner.com/2009/05/26/upa-boston-mini-conference-slides/</link>
		<comments>http://www.natashascorner.com/2009/05/26/upa-boston-mini-conference-slides/#comments</comments>
		<pubDate>Wed, 27 May 2009 00:42:37 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=388</guid>
		<description><![CDATA[Many thanks to those who attended my presentation on &#8220;Connecting with Developers to Expand UX Influence&#8221; at the UPA Boston Mini Conference today. There were many excellent questions and I hope everyone found the presentation useful. You can download the slides here (in PDF form) or here (in PPTX form).]]></description>
			<content:encoded><![CDATA[<p>Many thanks to those who attended my presentation on &#8220;Connecting with Developers to Expand UX Influence&#8221; at the <a href="http://www.upaboston.org/miniconf09/index.shtml">UPA Boston Mini Conference</a> today. There were many excellent questions and I hope everyone found the presentation useful. </p>
<p>You can download the slides <a href="http://www.natashascorner.com/upaboston09/slides.pdf">here (in PDF form)</a> or <a href="http://www.natashascorner.com/upaboston09/Connecting%20with%20Developers%20to%20Expand%20UX%20Influence%20v2.pptx">here (in PPTX form)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/05/26/upa-boston-mini-conference-slides/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making the switch from developer to designer</title>
		<link>http://www.natashascorner.com/2009/02/09/making-the-switch-from-developer-to-designer/</link>
		<comments>http://www.natashascorner.com/2009/02/09/making-the-switch-from-developer-to-designer/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 14:47:37 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=265</guid>
		<description><![CDATA[Recently, Jared Spool and Robert Hoekman, Jr. addressed the question of making a career move from developer to designer on their Userability podcast. I listened to it with great interest, having made this move myself not too long ago. Jared and Robert had some great advice, like to just start observing how people use your [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, Jared Spool and Robert Hoekman, Jr. addressed the question of making a career move from developer to designer on their <a href="http://www.uie.com/brainsparks/2009/02/05/userability-podcast-2-transitioning-to-ixd-and-usability/">Userability podcast</a>. I listened to it with great interest, having made this move myself not too long ago. Jared and Robert had some great advice, like to just start observing how people use your software, but I thought I&#8217;d add some thoughts from my own experience.</p>
<p>I found there are four things you need to do in parallel: <strong>learn</strong>, <strong>stay current</strong>, <strong>practice</strong>, and <strong>evangelize</strong>. Sometimes you&#8217;ll focus on one more than others, but to be successful, you really need to juggle all four. (And it doesn&#8217;t stop after you&#8217;ve made the switch, you just have less to learn and more to stay current on.)</p>
<h2>Learn</h2>
<p>Although a lot of design is common sense, you still need to learn how to recognize what sense is  &#8220;common&#8221; and what is not. To this end, I recommend attending conferences and seminars and reading books. </p>
<p>Depending on where you live, there may be a local <a href="http://www.sigchi.org/local-sigs/">SIGCHI</a>, <a href="http://www.upassoc.org/chapters/index.html">UPA</a>, or <a href="http://www.ixda.org/local.php">IxDA</a> chapter that organizes events and seminars &#8211; that would be the first thing to check out because local events are usually less expensive and more intimate than the big national conferences put on by these organizations. Regarding the bigger conferences, I can&#8217;t speak for <a href="http://www.upassoc.org/">UPA</a> or <a href="http://www.ixda.org/">Interaction</a>, but <a href="http://www.sigchi.org/">CHI</a> tends to be more academic, so it may not be the best use of funding (if you&#8217;re lucky enough to get it in this economy). I found UIE&#8217;s <a href="http://www.uie.com/">UI</a> conference to be great for a beginner, with great speakers and day-long seminars that cover subjects like design strategy, intro to interaction design, paper prototyping, and many others in full detail.</p>
<p>For books, I recommend Robert&#8217;s first book <a href="http://rhjr.net/dto/">Designing the Obvious</a> and <a href="http://www.sensible.com/buythebook.html">Don&#8217;t Make Me Think</a> by Steve Krug. These are quick reads, but they manage to cover a lot of design basics &#8211; definitely enough to get you started. Books like <a href="http://www.cooper.com/insights/books/#aboutface3">About Face</a> by Alan Cooper, while comprehensive and often recommended, are more useful as references when you need to look up how to solve a particular problem. It&#8217;s not something you&#8217;ll want to read cover-to-cover (unless you have a lot of time on your hands).</p>
<h2>Stay Current</h2>
<p>There is a bit of overlap between learning and staying current, but I think they deserve to be called out individually because the resources you use are different. </p>
<p>To get and stay current in the field, you should make <a href="http://www.google.com/reader">Google Reader</a> or another RSS feed aggregator your best friend. Blogs are by far the best way to stay in touch with the design community. Here are a few that I recommend:</p>
<ul>
<li><a href="http://blogcabin.37signals.com/">Signal vs. Noise</a></li>
<li><a href="http://www.uie.com/brainsparks/">UIE Brain Sparks</a></li>
<li><a href="http://www.boxesandarrows.com/">Boxes and Arrows</a></li>
<li><a href="http://sethgodin.typepad.com/seths_blog/">Seth Godin&#8217;s Blog</a></li>
</ul>
<p>If you find an author you like, they probably <a href="http://rhjr.net/theblog/">have a blog</a> &#8211; look it up. If you do some development, read developer blogs. Subscribe to <a href="http://gizmodo.com/">Gizmodo</a> if you have time to spare. Whatever you&#8217;re interested, subscribe to the feed and you&#8217;ll be on top of all the latest news, trends, and techniques.</p>
<p>Another fantastic resource for staying current is the <a href="http://sxsw.com/interactive">SXSW Interactive</a> conference. This will be the best investment you make, guaranteed. You&#8217;ll be surrounded by bright and creative people and all the emerging technologies. It&#8217;s a great motivator and a great way to meet all those internet &#8216;celebrities&#8217; like Jared and Robert (not to mention <a href="http://headrush.typepad.com/">Kathy Sierra</a>, <a href="http://www.37signals.com/">Jason Fried</a>, <a href="http://www.zeldman.com/">Jeffrey Zeldman</a>, and many others).</p>
<h2>Practice</h2>
<p>The only way to become a designer is to design. Even if it&#8217;s not in your job description, start incorporating design techniques you read or hear about. </p>
<p>Do some hallway usability tests, make a paper prototype, create some mock-ups before diving into the code. One of the first things I did was create a paper prototype and run some usability tests with people in the office. We got some great feedback this way that led to a much better design. It&#8217;s amazing how much a quick and dirty usability test can uncover.</p>
<p>Another thing you can do is start asking questions: Who are the users? Why do they need our tool? How do they currently accomplish their tasks? Why do we need features x, y, and z? What workflow are we trying to support? These are the types of things a designer needs to tackle for every project, so the sooner you start asking questions, the sooner you&#8217;ll figure out the right questions to ask. If you&#8217;re lucky, you may get to talk to some real users and observe them in their environment.</p>
<p>Find the low-hanging fruit for your project &#8211; something that would be easy to improve &#8211; and do it. It may not be the most visible thing or lead to impressive results, but at least you&#8217;ll get to practice your skills and it&#8217;ll give you something to talk about when you need to convince others of the value of design and usability. The more you do, the more people will start to see you as the &#8220;expert&#8221; in the field. </p>
<h2>Evangelize</h2>
<p>There&#8217;s no getting away from this one. You have to be passionate about great design and usability and you need to talk about it. Make it a point to know all the key decision makers in your company and meet with them on a regular basis. Even if it&#8217;s over coffee in the break room, you need to spread the idea that usability is a priority, not a &#8220;nice-to-have&#8221;. It&#8217;s usually not hard to convince people that usability is necessary, but it <em>is</em> hard to get them to act on that belief.</p>
<p>One of the things I did is establish a Usability Special Interest Group where we review our current products and mock-ups, read and discuss design-related books, and share other interesting information we learn at conferences or read online. We have a group of people interested in usability (developers, managers, interaction designers, and technical writers) who learn together and all now evangelize usability on the projects they&#8217;re involved with. In addition to being a support group for like-minded individuals, it&#8217;s also a great way to spread the influence.</p>
<p>What you do will depend on your organization and its culture. Just find the right people and talk, talk, talk. This is a great way to establish yourself as a usability expert and to start swaying the company culture in the direction of usability, where they will actually value your work.<br />
<br/><br/><br />
Remember, it&#8217;s better to ask forgiveness than to ask permission. The best way to make the switch to interaction designer is to start doing the work. As a developer, you are intimately involved in your products, so you have a great chance to influence them. Don&#8217;t wait for someone to ask you to design something or run a usability test &#8211; just do it and then present the results. Time may be a concern, but if <em>you</em> don&#8217;t find the time for design, no one else will either. Learn, stay current, practice, and evangelize and soon enough, people will see you as the designer you want to be.</p>
<p>Then order your new business cards. <img src='http://www.natashascorner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/02/09/making-the-switch-from-developer-to-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Corporate hairdryer</title>
		<link>http://www.natashascorner.com/2009/01/30/corporate-hairdryer/</link>
		<comments>http://www.natashascorner.com/2009/01/30/corporate-hairdryer/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 02:17:16 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/2009/01/30/corporate-hairdryer/</guid>
		<description><![CDATA[Nothing says &#8220;we care about our employees&#8221; more than a corporate hairdryer in the ladies&#8217; room.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/nblloyd/3239481027/" title="Click to see photo on Flickr"><img src="http://farm4.static.flickr.com/3453/3239481027_6949201fe5.jpg" alt="Click to see photo on Flickr" /></a></p>
<p>
Nothing says &#8220;we care about our employees&#8221; more than a corporate hairdryer in the ladies&#8217; room.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2009/01/30/corporate-hairdryer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clouds from the 9th floor</title>
		<link>http://www.natashascorner.com/2008/10/03/clouds-from-the-9th-floor/</link>
		<comments>http://www.natashascorner.com/2008/10/03/clouds-from-the-9th-floor/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 19:41:54 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/2008/10/03/clouds-from-the-9th-floor/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/nblloyd/2910468542/" title="Click to see photo on Flickr"><img src="http://farm4.static.flickr.com/3135/2910468542_785aed9445.jpg" alt="Click to see photo on Flickr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2008/10/03/clouds-from-the-9th-floor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crossing the river to Boston</title>
		<link>http://www.natashascorner.com/2008/09/15/crossing-the-river-to-boston/</link>
		<comments>http://www.natashascorner.com/2008/09/15/crossing-the-river-to-boston/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 00:02:58 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/2008/09/15/crossing-the-river-to-boston/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/nblloyd/2861215172/" title="Click to see photo on Flickr"><img src="http://farm4.static.flickr.com/3017/2861215172_c61c3855cb.jpg" alt="Click to see photo on Flickr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2008/09/15/crossing-the-river-to-boston/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technology Square, Cambridge</title>
		<link>http://www.natashascorner.com/2008/09/15/technology-square-cambridge/</link>
		<comments>http://www.natashascorner.com/2008/09/15/technology-square-cambridge/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 23:50:58 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/2008/09/15/technology-square-cambridge/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/nblloyd/2860359489/" title="Click to see photo on Flickr"><img src="http://farm4.static.flickr.com/3282/2860359489_ca73db30a4.jpg" alt="Click to see photo on Flickr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2008/09/15/technology-square-cambridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My poor lonely car</title>
		<link>http://www.natashascorner.com/2008/09/11/my-poor-lonely-car/</link>
		<comments>http://www.natashascorner.com/2008/09/11/my-poor-lonely-car/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 02:27:00 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/2008/09/11/my-poor-lonely-car/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/nblloyd/2849106107/" title="Click to see photo on Flickr"><img src="http://farm4.static.flickr.com/3177/2849106107_ee457c157b.jpg" alt="Click to see photo on Flickr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2008/09/11/my-poor-lonely-car/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excavating my file cabinet</title>
		<link>http://www.natashascorner.com/2008/09/11/excavating-my-file-cabinet/</link>
		<comments>http://www.natashascorner.com/2008/09/11/excavating-my-file-cabinet/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 21:45:25 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=91</guid>
		<description><![CDATA[(Note: Hold your mouse over the image to view the notes.) The treasures of my file cabinet, left by some unknown office worker long ago and only now excavated by me, armed with a new key to open the cabinet. Using the penny-dating technique, I place these contents somewhere between 1975 and 1992.]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.elsewhere.org/mbedr/?p=2848518543&#038;v" frameborder="0" scrolling="no" height="375" width="500"><a href="http://www.flickr.com/photos/nblloyd/2848518543/" title="Excavating my file cabinet by Natasha Lloyd, on Flickr" target="_blank"><img src="http://farm4.static.flickr.com/3144/2848518543_fca59eebce.jpg" width="500" height="375" alt="Excavating my file cabinet"/></a></iframe><br />
(Note: Hold your mouse over the image to view the notes.)</p>
<p>The treasures of my file cabinet, left by some unknown office worker long ago and only now excavated by me, armed with a new key to open the cabinet. Using the penny-dating technique, I place these contents somewhere between 1975 and 1992.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2008/09/11/excavating-my-file-cabinet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Brainteaser interview questions&#8230; my nemesis</title>
		<link>http://www.natashascorner.com/2008/09/04/brainteaser-interview-questions-my-nemesis/</link>
		<comments>http://www.natashascorner.com/2008/09/04/brainteaser-interview-questions-my-nemesis/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 16:46:29 +0000</pubDate>
		<dc:creator>Natasha Lloyd</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.natashascorner.com/?p=81</guid>
		<description><![CDATA[One reader shared with me the story of his brainteaser interview. During a screening interview, I was asked how I would design a bike fit for someone visually impaired. I responded something to the effect of, &#8220;What, like, for blind people?&#8221;, and she answered yes.  I thought for a moment and then I responded, &#8220;Well.. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>One reader shared with me the story of his brainteaser interview.</p>
<blockquote><p>During a screening interview, I was asked how I would design a bike fit for someone visually impaired. I responded something to the effect of, &#8220;What, like, for blind people?&#8221;, and she answered yes. </p>
<p>I thought for a moment and then I responded, &#8220;Well.. a blind person riding a bike doesn&#8217;t sound like a very safe idea, so I would make the bike stationary, maybe with a fan blowing in the person&#8217;s face. He probably wouldn&#8217;t even know the difference.&#8221;</p>
<p>She was speechless.</p></blockquote>
<p>Now, granted, he will not get the job. Despite the complete absurdity of the design request, and the complete practicality of his answer, the job will go to a candidate who manages to answer the question by designing an extremely overcomplicated solution for a completely non-existent problem. And that candidate will be the same person who designs their software.</p>
<p><em>&#8211; <a href="http://thedailywtf.com/Articles/Classic-WTF-Job-Interview-20-Now-With-Riddles!.aspx">Classic WTF: Job Interview 2.0: Now With Riddles!</a></em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.natashascorner.com/2008/09/04/brainteaser-interview-questions-my-nemesis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

