<?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/"
	>

<channel>
	<title>Interactive Logic</title>
	<atom:link href="http://interactivelogic.net/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://interactivelogic.net/wp</link>
	<description>Evan K. Stone's thoughts and observations about UX, interaction design and software development</description>
	<pubDate>Fri, 26 Feb 2010 19:03:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>15+ Free Abobe Air Applications for Designers and Developers</title>
		<link>http://interactivelogic.net/wp/2010/02/15-free-abobe-air-applications-for-designers-and-developers/</link>
		<comments>http://interactivelogic.net/wp/2010/02/15-free-abobe-air-applications-for-designers-and-developers/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 19:03:57 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/2010/02/15-free-abobe-air-applications-for-designers-and-developers/</guid>
		<description><![CDATA[Great Adobe AIR-based tools for web design and development!
15+ Free Abobe Air Applications for Designers and Developers &#124; Admix Web:
Adobe AIR, which stands for Adobe Integrated Runtime, is a cross-functioning system runtime engine that allows web designers and web developers to create rich internet applications, and Adobe AIR is compatible with Windows, Macs and Linux. [...]]]></description>
			<content:encoded><![CDATA[<p>Great Adobe AIR-based tools for web design and development!</p>
<p><a href="http://www.admixweb.com/2010/02/26/15-free-abobe-air-applications-for-designers-and-developers/">15+ Free Abobe Air Applications for Designers and Developers | Admix Web</a>:</p>
<blockquote><p>Adobe AIR, which stands for Adobe Integrated Runtime, is a cross-functioning system runtime engine that allows web designers and web developers to create rich internet applications, and Adobe AIR is compatible with Windows, Macs and Linux. Adobe AIR is a very functional and useful system for web designers and web developers because it permits Flash, Flex, JavaScript, HTML and AJAX code to look like traditional desktop applications by running without the Web browser. Adobe has created an official Adobe AIR Marketplace which essesntially trys to show all of the Adobe AIR applications that exist. These applications range from tools useful for designers to developers to bloggers to the average person using the web. These are great tools and applications because they can make our lives as designer and developers easier, and best of all they are free. I have compliled a list of 15+ great Adobe AIR applications for you all to use. Remember, this list is not a best of or all inclusive, just ones that I have found to be helpful! Click on the images for links to the application. Enjoy!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2010/02/15-free-abobe-air-applications-for-designers-and-developers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET Logging to the Visual Studio Output Window with log4net</title>
		<link>http://interactivelogic.net/wp/2010/02/aspnet-logging-to-output-window-with-log4net/</link>
		<comments>http://interactivelogic.net/wp/2010/02/aspnet-logging-to-output-window-with-log4net/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 19:14:37 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[annoyances]]></category>

		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=59</guid>
		<description><![CDATA[OK this one has been baffling me for a long time but I just ignored it. We have been using the open source logging library log4net for a long time, and for the most part it was working fine. But the one thing that I wanted to do but could never get working was logging [...]]]></description>
			<content:encoded><![CDATA[<p>OK this one has been baffling me for a long time but I just ignored it. We have been using the open source logging library log4net for a long time, and for the most part it was working fine. But the one thing that I wanted to do but could never get working was logging to what my brain wanted to call &#8220;The Console,&#8221; AKA (to me) the Output window in Visual Studio.</p>
<p>I tried using the log4net appenders ConsoleAppender and ColoredConsoleAppender, to no avail. Turns out there&#8217;s a different appender that works with the Output window, and it&#8217;s not ConsoleAppender.</p>
<p>The appender in question is <a title="TraceAppender - log4net Documentation" href="http://logging.apache.org/log4net/release/sdk/log4net.Appender.TraceAppender.html" target="_blank">TraceAppender</a>!</p>
<p>So here&#8217;s a little snippet of XML from my web.config files that handles output to the Output window (basically the same markup as appears on <a title="TraceAppender - log4net Examples Page" href="http://logging.apache.org/log4net/release/config-examples.html#TraceAppender" target="_blank">the log4net examples page</a>):</p>
<pre>  &lt;/log4net&gt;
    &lt;appender name="TraceAppender" type="log4net.Appender.TraceAppender"&gt;
      &lt;layout type="log4net.Layout.PatternLayout"&gt;
        &lt;conversionPattern value="%d [%t] %-5p %c %m%n"/&gt;
      &lt;/layout&gt;
    &lt;/appender&gt;</pre>
<pre>    &lt;root&gt;
      &lt;level value="ALL"/&gt;
      &lt;appender-ref ref="TraceAppender"/&gt;
    &lt;/root&gt;
  &lt;/log4net&gt;</pre>
<p>To those familiar with the way the log4net section looks in your web.config this will make sense, but the key concept is that, per the log4net documentation, &#8220;Events are written using the System.Diagnostics.Trace.Write(string,string) method&#8221; &#8212; and it turns out that one of the listeners is the Output window!</p>
<p><a title="Nik Boyd - Educery.com" href="http://www.educery.com/" target="_blank">A colleague of mine</a> and I were very confused by all this (I&#8217;m glad I wansn&#8217;t alone in that feeling either!), but we were both very glad to figure this one out.</p>
<p>Thanks go to Google (of course), and <a title="SharpDevelop Forums" href="http://community.sharpdevelop.net/forums/p/4253/12203.aspx" target="_blank">this post</a> on the SharpDevelop forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2010/02/aspnet-logging-to-output-window-with-log4net/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Remote is Dead! Long Live the Remote!</title>
		<link>http://interactivelogic.net/wp/2010/02/the-remote-is-dead-long-live-the-remote/</link>
		<comments>http://interactivelogic.net/wp/2010/02/the-remote-is-dead-long-live-the-remote/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:26:46 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Nerdstuff]]></category>

		<category><![CDATA[apple store]]></category>

		<category><![CDATA[eBay]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=40</guid>
		<description><![CDATA[Imagine my dismay when I discovered that my Apple Remote had taken a ride through the clothes washer and dryer a couple of weeks ago&#8230; As you may imagine, this journey rendered the remote inoperative and useless (albeit totally dry).
Additionally, searching on the Apple Store was a bit more depressing since the device is evidently [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine my dismay when I discovered that my Apple Remote had taken a ride through the clothes washer and dryer a couple of weeks ago&#8230; As you may imagine, this journey rendered the remote inoperative and useless (albeit totally dry).</p>
<div id="attachment_41" class="wp-caption alignleft" style="width: 125px"><a href="http://interactivelogic.net/wp/wp-content/uploads/2010/02/apple_remote.jpg"><img class="size-full wp-image-41       " title="apple_remote" src="http://interactivelogic.net/wp/wp-content/uploads/2010/02/apple_remote.jpg" alt="Apple Remote" width="115" height="273" /></a><p class="wp-caption-text">Apple Remote</p></div>
<p>Additionally, searching on the <a title="Apple Store" href="http://store.apple.com/" target="_blank">Apple Store</a> was a bit more depressing since the device is evidently no longer available&#8230; yikes.</p>
<h2>eBay to the Rescue</h2>
<p>Thankfully there&#8217;s eBay.</p>
<p>After nosing around a bit I was able to find several vendors who had very reasonable prices on basically brand-new remotes. I think mine ended up being $6.99 USD.</p>
<p>At any rate, it arrived today and I was very pleased to try it out while listening to iTunes and it works perfectly. At that rate I probably should have purchased a few extras just in case this happens again&#8230;</p>
<p>Let&#8217;s hope not.</p>
<h2>Strange Behavior</h2>
<p>My next task was to resolve a very strange and annoying problem if you have more than one Mac in the proximity while using the remote. This happened to me while on vacation &#8212; the remote was pointed at my MacBook Pro, but in addition to controlling it, my wife&#8217;s MacBook was also responding to the controller, starting and stopping iTunes while a movie was playing on my computer. Very interesting.</p>
<p>Thankfully <a title="Pairing your Apple Remote with your computer" href="http://support.apple.com/kb/HT1619" target="_blank">it is possible to pair up your remote to your computer</a>, and I&#8217;ve already paired the new remote with my laptop and will do the same with our other MacBook and its respective controller&#8230;</p>
<p>Whew!</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2010/02/the-remote-is-dead-long-live-the-remote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Look</title>
		<link>http://interactivelogic.net/wp/2010/02/new-look/</link>
		<comments>http://interactivelogic.net/wp/2010/02/new-look/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:01:37 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=37</guid>
		<description><![CDATA[I&#8217;ve been experimenting with some new WordPress themes, and I took a shine to DailyPress by Blog Oh Blog!
I haven&#8217;t decided if this is going to be the permanent design, but it&#8217;s much better than the old default look I was using, especially with all the links back here regarding the iPhone wireframing templates.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been experimenting with some new WordPress themes, and I took a shine to <strong><a title="DailyPress Template" href="http://www.blogohblog.com/wordpress-theme-dailypress/" target="_blank">DailyPress</a></strong> by Blog Oh Blog!</p>
<p>I haven&#8217;t decided if this is going to be the permanent design, but it&#8217;s <strong>much </strong>better than the old default look I was using, especially with all the links back here regarding the iPhone wireframing templates.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2010/02/new-look/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Please don&#8217;t add debug messages to your customer-facing application</title>
		<link>http://interactivelogic.net/wp/2009/09/please-dont-add-debug-messages-to-your-customer-facing-application/</link>
		<comments>http://interactivelogic.net/wp/2009/09/please-dont-add-debug-messages-to-your-customer-facing-application/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 17:23:46 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Interaction Design]]></category>

		<category><![CDATA[User Experience]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[annoyances]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[engineering]]></category>

		<category><![CDATA[interaction design]]></category>

		<category><![CDATA[intuit]]></category>

		<category><![CDATA[ixd]]></category>

		<category><![CDATA[messageboxes]]></category>

		<category><![CDATA[online banking]]></category>

		<category><![CDATA[rudeness]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[user experience]]></category>

		<category><![CDATA[ux]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=21</guid>
		<description><![CDATA[Debugging messages are for developers/engineers, not for humans (I can say that since I&#8217;m a developer). But I can&#8217;t believe that it&#8217;s 2009 and I still encounter things like the following example&#8230;
Every time I log into one of my online banking systems, I get a message like the following:


This is just intrusive and rude behavior [...]]]></description>
			<content:encoded><![CDATA[<p>Debugging messages are for developers/engineers, not for humans (I can say that since I&#8217;m a developer). But I can&#8217;t believe that it&#8217;s 2009 and I still encounter things like the following example&#8230;</p>
<p><strong>Every time </strong>I log into one of my online banking systems, I get a message like the following:</p>
<p><a href="http://interactivelogic.net/wp/wp-content/uploads/2009/09/online-banking-message.png"><img class="aligncenter size-full wp-image-23" title="Online Banking Debug Message" src="http://interactivelogic.net/wp/wp-content/uploads/2009/09/online-banking-message.png" alt="Online Banking Debug Message" width="562" height="170" /></a></p>
<p style="text-align: center;">
<p>This is just <strong>intrusive </strong>and <strong>rude</strong> behavior (as <a title="Cooper Interactive" href="http://www.cooper.com/" target="_blank">Alan Cooper</a> might say). First of all, the message first off tells me when the last <strong>unsuccessful </strong>attempt was made to access the account&#8230; HUH??? Then it tries to be helpful and tell me when the last <strong>successful</strong> attempt was made.</p>
<p>It just makes no sense at all to me why this message exists at all. Why would I ever care about these particular statistics, and even if I did care about them, <strong>is it really necessary to pop up a message box every time I log in???</strong></p>
<p>I vote no.</p>
<p>Fine. If you want to have that information accessible, provide a log of all accesses tucked away in my account settings or somewhere I can get to if I think I have a security concern. Don&#8217;t show this message to me, please. What this message boils down to is a debug-ish message in the clothing of security (I could be wrong, but that&#8217;s what it smells like to me).</p>
<p>Interestingly, as a side note, I happen to know that this system is from a company that is now owned by <a title="Digital Insight: an Intuit Company" href="http://www.digitalinsight.com/home/?pageLabel=home" target="_blank">Intuit</a> (my former stomping ground), and in the two or more years since that acquisition, this message box has surprisingly <em>still </em>not disappeared.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2009/09/please-dont-add-debug-messages-to-your-customer-facing-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HP printer driver gets subtle usability upgrade</title>
		<link>http://interactivelogic.net/wp/2009/09/hp-printer-driver-gets-subtle-usability-upgrade/</link>
		<comments>http://interactivelogic.net/wp/2009/09/hp-printer-driver-gets-subtle-usability-upgrade/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 17:25:07 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Interaction Design]]></category>

		<category><![CDATA[User Experience]]></category>

		<category><![CDATA[User Interface Design]]></category>

		<category><![CDATA[hp]]></category>

		<category><![CDATA[labeling]]></category>

		<category><![CDATA[taxonomy]]></category>

		<category><![CDATA[technospeak]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[ux]]></category>

		<category><![CDATA[wording]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/2009/09/hp-printer-driver-gets-subtle-usability-upgrade/</guid>
		<description><![CDATA[I just noticed when printing up a document today that my  [Windows] HP printer drivers must have been upgraded recently. As a result, the Printing Preferences dialog that used to have an entry entitled &#8220;Default Printing&#8221; (or something to that effect) now reads &#8220;General Everyday Printing,&#8221; which, while a little confusing in itself, is [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed when printing up a document today that my  [Windows] HP printer drivers must have been upgraded recently. As a result, the Printing Preferences dialog that used to have an entry entitled &#8220;Default Printing&#8221; (or something to that effect) now reads &#8220;General Everyday Printing,&#8221; which, while a little confusing in itself, is a lot less TechnoSpeakish than using &#8220;Default&#8230;&#8221;, since non-software-development professionals don&#8217;t generally know that word.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2009/09/hp-printer-driver-gets-subtle-usability-upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone Wireframe Templates for Sketching</title>
		<link>http://interactivelogic.net/wp/2009/09/iphone-wireframe-templates/</link>
		<comments>http://interactivelogic.net/wp/2009/09/iphone-wireframe-templates/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 21:10:32 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Interaction Design]]></category>

		<category><![CDATA[User Experience]]></category>

		<category><![CDATA[User Interface Design]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[interaction design]]></category>

		<category><![CDATA[ipodtouch]]></category>

		<category><![CDATA[ixd]]></category>

		<category><![CDATA[paper prototyping]]></category>

		<category><![CDATA[ux]]></category>

		<category><![CDATA[wireframes]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=10</guid>
		<description><![CDATA[In the spirit of Open Source, I have posted some iPhone Paper Prototyping and Design templates, and you can Download The .Zip File Here.
There are two layouts, and both layouts are in PDF and Viso (VSD) formats.

Feel free to download and tweak them as needed.
Have fun with them!
UPDATE: With all the recent activity following the [...]]]></description>
			<content:encoded><![CDATA[<p>In the spirit of Open Source, I have posted some iPhone Paper Prototyping and Design templates, and you can <strong><a title="iPhone Design Templates" href="http://www.interactivelogic.net/downloads/iphone-design-templates.zip">Download The .Zip File Here</a></strong>.</p>
<p>There are two layouts, and both layouts are in PDF and Viso (VSD) formats.</p>
<p style="text-align: center;"><a href="http://www.interactivelogic.net/downloads/iphone-design-templates.zip"><img class="aligncenter size-medium wp-image-13" title="iPhone Design Wireframes" src="http://interactivelogic.net/wp/wp-content/uploads/2009/09/iphonestencil-300x150.png" alt="iPhone Design Wireframes" width="300" height="150" /></a></p>
<p>Feel free to download and tweak them as needed.</p>
<p>Have fun with them!</p>
<p><strong>UPDATE</strong>: With all the recent activity following the <a title="50 Free UI and Web Design Wireframing Kits, Resources and Source Files" href="http://www.smashingmagazine.com/2010/02/05/50-free-ui-and-web-design-wireframing-kits-resources-and-source-files/" target="_blank">Smashing Magazine article on Wireframing</a>, I&#8217;ve added the PDF files on their own, so if you&#8217;re viewing this page on an iPhone or other device that doesn&#8217;t like .zip files, then you can at least view them.</p>
<ul>
<li><a title="iPhone Wireframe Template" href="../downloads/iphone-wireframe-template.pdf" target="_self">iPhone Wireframe Template (.PDF)<br />
</a></li>
<li><a title="iPhone Wireframe Template (with Notes)" href="../downloads/iphone-wireframe-template-with-notes.pdf" target="_self">iPhone Wireframe Template with Notes (.PDF)</a></li>
</ul>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2009/09/iphone-wireframe-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET Forum Tags: Semicolons as Separators?</title>
		<link>http://interactivelogic.net/wp/2009/05/aspnet-forum-tags-semicolons-as-separators/</link>
		<comments>http://interactivelogic.net/wp/2009/05/aspnet-forum-tags-semicolons-as-separators/#comments</comments>
		<pubDate>Mon, 25 May 2009 22:44:24 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Interaction Design]]></category>

		<category><![CDATA[User Experience]]></category>

		<category><![CDATA[User Interface Design]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[annoyances]]></category>

		<category><![CDATA[interaction design]]></category>

		<category><![CDATA[ixd]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[user experience]]></category>

		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=7</guid>
		<description><![CDATA[Ummm&#8230; OK I know Microsoft is trying to give the illusion of being user friendly and all, but when the delimiter for tags that categorize a post on the ASP.NET developer forums, they chose semicolons.
Is it just me or is that a ludicrous choice? Why not a space (my preference - a la delicious) or [...]]]></description>
			<content:encoded><![CDATA[<p>Ummm&#8230; OK I know Microsoft is trying to give the illusion of being user friendly and all, but when the delimiter for tags that categorize a post on the ASP.NET developer forums, they chose <span style="font-weight: bold;">semicolons</span>.</p>
<p>Is it just me or is that a <span style="font-weight: bold;">ludicrous choice</span>? Why not a space (my preference - a la delicious) or a comma?</p>
<p>In addition, there is no <span style="font-weight: bold;">example </span>visible to show you what the legal delimiter is! You have to miraculously divine what it wants, or let it show you what it wants, as I chose to do.</p>
<p>To find out what the delimiter is, I had to do the following:</p>
<ol>
<li>Open the &#8220;Select Tags&#8230;&#8221; dialog.</li>
<li>Select two (short) tags. <span style="font-style: italic;">(I notice lots of other folks thought that a space would be a logical delimiter too&#8230;!)</span></li>
<li>Close the dialog.</li>
<li>Oops. Closing the dialog didn&#8217;t populate the text box with my selections. Awesome.</li>
<li>Trying again&#8230; Open the &#8220;Select Tags&#8230;&#8221; dialog.</li>
<li>Select two (short) tags, this time at the<span style="font-weight: bold;"> end of the list </span>where I notice OK and Cancel buttons (yes - you heard that right. The buttons are embedded <span style="font-weight: bold; font-style: italic;">in the list itself&#8230; </span>and at the <span style="font-weight: bold;">bottom </span>of the list, no less! They&#8217;re not on the dialog &#8220;window.&#8221;)</li>
<li>Click OK.</li>
<li>Observe that text box has the new selections delimited by semicolons.</li>
</ol>
<p>The auto-populating text box is another usability nightmare deserving of its own article, but I&#8217;ll let someone else write that one up. <img src='http://interactivelogic.net/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2009/05/aspnet-forum-tags-semicolons-as-separators/feed/</wfw:commentRss>
		</item>
		<item>
		<title>User-Friendly Nissan - Now with Wi-Fi!</title>
		<link>http://interactivelogic.net/wp/2009/03/hello-world/</link>
		<comments>http://interactivelogic.net/wp/2009/03/hello-world/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 19:26:42 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
		
		<category><![CDATA[Nerdstuff]]></category>

		<category><![CDATA[User Experience]]></category>

		<category><![CDATA[user experience]]></category>

		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=1</guid>
		<description><![CDATA[I have always dreaded going to my local Nissan dealer (Northbay Nissan, Petaluma, CA) for service in the morning before work, since it was like being in an information vacuum since they did not have wireless for their customers (isn&#8217;t this 2009????).
However that has now changed. I went in this morning and lo and behold&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>I have always dreaded going to my local Nissan dealer (Northbay Nissan, Petaluma, CA) for service in the morning before work, since it was like being in an information vacuum since they did not have wireless for their customers (isn&#8217;t this 2009????).</p>
<p>However that has now changed. I went in this morning and lo and behold&#8230; the &#8220;Would you like to connect to &#8216;Nissan Customer&#8217;&#8221; message appears when I opened up my laptop (expecting dead air)!</p>
<p>So this is great news, and they have yet again proved their superiority in my opinion - from the usability in their cars to the usability now in their lobby!</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2009/03/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
