<?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>www.fooberry.com &#187; A Tale of Awful Design</title>
	<atom:link href="http://fooberry.com/category/a-tale-of-awful-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://fooberry.com</link>
	<description>Sweetness Without Context</description>
	<lastBuildDate>Fri, 30 Jul 2010 14:17:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Flickr Paging Oddities</title>
		<link>http://fooberry.com/2009/11/10/flickr-paging-oddities/</link>
		<comments>http://fooberry.com/2009/11/10/flickr-paging-oddities/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:26:06 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[A Tale of Awful Design]]></category>
		<category><![CDATA[Nonsensical Rant]]></category>

		<guid isPermaLink="false">http://fooberry.com/2009/11/10/flickr-paging-oddities/</guid>
		<description><![CDATA[<br/>It might have always been this way, but Flickr is making some odd choices when paging their photos. As you can see in the screenshot, it stacks the photos in three columns, but only completely fills the first two, leaving an empty slot in the last column. I’ve tried this with several different searches, different [...]]]></description>
			<content:encoded><![CDATA[<br/><p>It might have always been this way, but Flickr is making some odd choices when paging their photos. As you can see in the screenshot, it stacks the photos in three columns, but only completely fills the first two, leaving an empty slot in the last column. </p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/11/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/11/image_thumb.png" width="709" height="620" /></a> </p>
<p>I’ve tried this with several different searches, different ordering, etc, and it appears to be random. Sometimes it completely fills up the grid, sometimes it leaves one space, sometimes it leaves two. The first time I saw it, I thought my search only brought up one page of result, but then saw the pager at the bottom, along with the number of results.</p>
<p>I don’t know what they are thinking, but it’s odd. At least to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://fooberry.com/2009/11/10/flickr-paging-oddities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode one ups #region in Visual Studio</title>
		<link>http://fooberry.com/2009/06/19/xcode-one-ups-region-in-visual-studio/</link>
		<comments>http://fooberry.com/2009/06/19/xcode-one-ups-region-in-visual-studio/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 17:49:05 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[A Tale of Awful Design]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://fooberry.com/2009/06/19/xcode-one-ups-region-in-visual-studio/</guid>
		<description><![CDATA[<br/>I hate regions in Visual Studio. I don’t like the fact you can hide code from my incremental search and scanning eyes. If it is unimportant to me at the moment, give me a mechanism to jump over it. #region &#34;collapse me&#34; // you’ll never see me if I’m collapsed. #endregion I don’t like that [...]]]></description>
			<content:encoded><![CDATA[<br/><p>I hate regions in Visual Studio. I don’t like the fact you can hide code from my incremental search and scanning eyes. If it is unimportant to me at the moment, give me a mechanism to jump over it.</p>
<pre language="c#" name="code">#region &quot;collapse me&quot;
    // you’ll never see me if I’m collapsed.
#endregion</pre>
<p>I don’t like that I can’t CTRL+I through them nor CTRL+F will skip them unless you tell them otherwise. </p>
<p>While Visual Studio gives your the ability to skip to the method directly via a dropdown.</p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/06/image5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/06/image_thumb.png" width="308" height="224" /></a></p>
<p>The dropdown is nice and all, but the members are in alphabetical order, not the order they are in file. Alphabetical may make sense in some cases, but I usually have related members near each other in the source. When I go look for them in the dropdown, why aren’t they the same.</p>
<p>Xcode does things a bit differently. They line up everything with the order of the members in the file. Also, they let you give clues to the IDE to format the dropdown into sections. Brilliant. </p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/06/image6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/06/image_thumb1.png" width="633" height="494" /></a> </p>
<p>Notice the following lines of source and their related markup of the dropdown.</p>
<pre language="c" name="code">#pragma mark -
#pragma mark Picker DataSource Methods</pre>
<p>Pretty awesome huh? The best part is as you move the code around, the markup and members move in the dropdown. A+</p>
]]></content:encoded>
			<wfw:commentRss>http://fooberry.com/2009/06/19/xcode-one-ups-region-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Questionable Hulu Usability</title>
		<link>http://fooberry.com/2009/06/12/questionable-hulu-usability/</link>
		<comments>http://fooberry.com/2009/06/12/questionable-hulu-usability/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:11:21 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[A Tale of Awful Design]]></category>

		<guid isPermaLink="false">http://fooberry.com/2009/06/12/questionable-hulu-usability/</guid>
		<description><![CDATA[<br/>Let me preface this with accolades for Hulu. It is an amazing site, with terrific content and amazing usability…except for this one little thing. When I want to subscribe to a new channel, I find a convenient “Subscribe” link on the channel landing page. What a great show! I want to be sure and get [...]]]></description>
			<content:encoded><![CDATA[<br/><p>Let me preface this with accolades for Hulu. It is an amazing site, with terrific content and amazing usability…except for this one little thing. When I want to subscribe to a new channel, I find a convenient “Subscribe” link on the channel landing page.</p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/06/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/06/image-thumb.png" width="496" height="230" /></a> </p>
<p>What a great show! I want to be sure and get new content in my queue, so I’ll subscribe to it.</p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/06/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/06/image-thumb1.png" width="503" height="454" /></a> </p>
<p>Yea, that sounds good. I want full episodes to appear in my queue. Submit!</p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/06/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/06/image-thumb2.png" width="500" height="459" /></a> </p>
<p>…uh….yea. I clicked submit. What are you asking me now? Submit again? Do I click cancel to close the dialog? Will that remove the subscription? Maybe I should click the “x”? I don’t know!</p>
<p>Why didn’t it just close the dialog and change the page to something like this?</p>
<p><a href="http://fooberry.com/wp-content/uploads/2009/06/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://fooberry.com/wp-content/uploads/2009/06/image-thumb3.png" width="364" height="127" /></a>&#160;
</p>
</p>
<p>I’m really surprised that they missed the mark on that one. </p></p>
]]></content:encoded>
			<wfw:commentRss>http://fooberry.com/2009/06/12/questionable-hulu-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Tale of Awful Design: Smoke Detectors</title>
		<link>http://fooberry.com/2009/04/07/a-tale-of-awful-design-smoke-detectors/</link>
		<comments>http://fooberry.com/2009/04/07/a-tale-of-awful-design-smoke-detectors/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:51:42 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[A Tale of Awful Design]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://fooberry.com/?p=722</guid>
		<description><![CDATA[<br/>The other night, at the most unexpected time, I got a crash course in usability and design. It was about 2 a.m. and I was sound asleep when I heard &#8220;BEEP&#8221;. I probably didn&#8217;t hear that, but I felt the dog shake the bed as she popped her head up from her night&#8217;s sleep. I [...]]]></description>
			<content:encoded><![CDATA[<br/><p><a href="http://www.flickr.com/photos/cayusa/2457929763/"><img class="alignright" title="smoke detector" src="http://farm3.static.flickr.com/2173/2457929763_eb15338f2b_m.jpg" alt="" width="192" height="240" /></a>The other night, at the most unexpected time, I got a crash course in usability and design. It was about 2 a.m. and I was sound asleep when I heard &#8220;BEEP&#8221;. I probably didn&#8217;t hear that, but I felt the dog shake the bed as she popped her head up from her night&#8217;s sleep. I definitely heard the next &#8220;BEEP&#8221;, followed but another a few moments later. </p>
<p>There was no fire, thankfully, but the smoke alarm was telling me the battery was low, and if I wasn&#8217;t too busy I should think about changing it. I dragged myself out of bed, trying to find the alarm that was complaining. Check the one in our room, and it has a green light. That must be good, right? Next room, green. Next room, green, too. Next room, also green. The hallway, blinking red. This must be it right? Thank goodness, since I can just reach up and grab this one, and the other three are at the top of vaulted ceilings and would mean I would have to drag the ladder up from the garage. In the hallway, however, I can just reach up and take down the detector, and put in a new battery. I did, and the light changed to green and I was back to bed. Not bad. 5 minutes 0f disrupted sleep.</p>
<p>&#8230;Beep.</p>
<p>What the hell? <em>I changed it</em>. Now, the alarms all have a green light, so I spend the next 15 minutes standing in each room trying to figure out which room has the low battery, until I finally just shut all the doors and put the pillow over my head.</p>
<p>Where did my logic fail me? The light was red, which surely means something bad, and I made it green, which means something good, right?  What would I have done if I was color blind? What did it mean when that light went from red to green? I never heard a beep while I was fixing it so maybe that alarm was never the problem.</p>
<p>Since reading <span style="text-decoration: underline;"><a href="http://amazon.com/dp/0465067107" title="Amazon.com: The Design of Everyday Things: Donald A. Norman: Books">The Design of Everyday Things</a></span>, my <span style="text-decoration: line-through;">girlfriend</span> fiance gets annoyed when I point out how poorly designed a door is. This time she just had to listen the poor design described in very colorful language. Luckily, she was half asleep.</p>
]]></content:encoded>
			<wfw:commentRss>http://fooberry.com/2009/04/07/a-tale-of-awful-design-smoke-detectors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
