<?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>Rich Internet Applications (RIA) &#187; Usability</title>
	<atom:link href="http://www.canoo.com/blog/category/usability/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.canoo.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 14:30:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IntelliJ IDEA series (IV) interaction design</title>
		<link>http://www.canoo.com/blog/2011/01/07/intellij-idea-series-iv/</link>
		<comments>http://www.canoo.com/blog/2011/01/07/intellij-idea-series-iv/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 22:09:11 +0000</pubDate>
		<dc:creator>Dierk</dc:creator>
				<category><![CDATA[Grails]]></category>
		<category><![CDATA[Groovy]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Dierk König]]></category>
		<category><![CDATA[idea]]></category>

		<guid isPermaLink="false">http://www.canoo.com/blog/?p=1837</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2011/01/07/intellij-idea-series-iv/";</script>Caution: this post contains philosophical content! (at least some readers call it so when I reflect on what makes software great) Please note that this is for Groovy and Grails development on Mac OS X with Swiss-german keyboard layout, so the keybindings may differ on your machine. (For Windows, you most often can replace Cmd [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2011/01/07/intellij-idea-series-iv/";</script><p>Caution: this post contains philosophical content!<br />
(at least some readers call it so when I reflect on what makes software great)</p>
<p><em>Please note that this is for Groovy and Grails development on Mac   OS X with  Swiss-german keyboard layout, so the keybindings may differ   on your  machine. (For Windows, you most often can replace Cmd with   Ctrl)</em></p>
<p>Let&#8217;s start with a simple example.</p>
<p><strong>Cmd Shift A</strong></p>
<blockquote><p>pops up a simple text field (and one checkbox) where you can select from <strong>a</strong>ll <strong>a</strong>vailable <strong>a</strong>ctions in case you have forgotten the shortcut or its place in the menu tree. It appears like the picture below if you e.g. look for the dependency analysis features by entering &#8220;<em>Dep</em>&#8221;</p>
<p><a href="http://www.canoo.com/blog/wp-content/uploads/2011/01/allActions.png"><img class="alignnone size-full wp-image-1839" title="allActions" src="http://www.canoo.com/blog/wp-content/uploads/2011/01/allActions.png" alt="" width="378" height="223" /></a></p></blockquote>
<ul>
<li>First of all, this feature is immensely useful for itself. Especially, it is much quicker than scanning through the menus or reading through the help pages. Apple, Microsoft, could you please steal the idea for your software products?</li>
<li>Second, note how slick the search &#8220;dialog&#8221; is. You hardly recognize it as a dialog at all. Many other software products pester their users with ridiculously overloaden search dialogs. JetBrains learned from Google&#8217;s success: one entry field is enough.<br />
Providing many options to the user is actually the easy way. Taking the hard decisions of what <em>not</em> to show is the true mastery of interaction design.</li>
<li>Finally, the way that you narrow down the options is <strong>consistent</strong> throughout the whole application. Here is another example: use</li>
</ul>
<p><strong>Cmd ,</strong> (comma)</p>
<blockquote><p>to open the setting dialog. Now let&#8217;s assume that you want to enable the (very useful) feature to highlight all usages of the symbol that contains the text cursor (also known as &#8220;caret&#8221;). There are so many possible settings. How do I find the respective checkbox? Just start typing in the search field and the settings view narrows down the options and highlights the candidates.<br />
Try entering &#8220;highl&#8221; and you will see in the <em>Editor</em> section the checkbox &#8220;<em>Highlight usages of element at caret</em>&#8220;.</p></blockquote>
<p>The consistent availability of interaction concepts is key to a usability.</p>
<p>Here are some more of those consistent features. When used in differenct contexts, they may technically do totally different things but still serving a very similar user goal.</p>
<p><strong>F2 </strong>(<strong>Shift</strong> <strong>F2</strong> for backwards)</p>
<blockquote><p>jumps to the next error but also to the next inspection warning, i.e. the next point that requires your attention.</p></blockquote>
<p><strong>F3 </strong>(<strong>Shift</strong> <strong>F3</strong> for backwards)</p>
<blockquote><p>jumps to the next Find target (when you called the in-file finder with <strong>Cmd F</strong>) but also to the next usage of a symbol (when you used the &#8220;find all usages of symbol under caret&#8221; feature with <strong>Cmd Shift F7</strong>).</p></blockquote>
<p><strong>F4</strong></p>
<blockquote><p>from many different tools opens the selection in the editor and gives it the focus</p></blockquote>
<p><strong>F5</strong></p>
<blockquote><p>copy of classes or files, even <strong>Shift F5</strong> for the &#8220;clone&#8221; refactoring.</p></blockquote>
<p><strong>F6</strong></p>
<blockquote><p>move pretty much any OO construct anywhere. <strong>Shift F6</strong> for the &#8220;rename&#8221; refactoring.</p></blockquote>
<p>The point is that these actions are technically quite different in the different contexts but serve a similar purpose and so using the same shortcut is a consistent choice &#8211; easy to explain, easy to remember.</p>
<p>So much for today. It was a bit more contemplative than usual. However, I hope I could inspire you to recognize more of the interaction design of the applications that you use &#8211; and maybe even to pay more attention to the interaction design of the applications you build.</p>
<p>The next post will again be about hands-on tips.<br />
Dierk Koenig<br />
@mittie</p>
<script>var dzone_style="2";</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script><div style="float: left; width: 140px; height: 21px; overflow: hidden; position: relative; left: 8px;"><script>//<![CDATA[
reddit_url="http://www.canoo.com/blog/2011/01/07/intellij-idea-series-iv/";
//]]&gt;
</script><script language="javascript" src="http://reddit.com/button.js?t=1"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.canoo.com/blog/2011/01/07/intellij-idea-series-iv/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Canoo RIA Suite Beta</title>
		<link>http://www.canoo.com/blog/2010/04/01/canoo-ria-suite-beta/</link>
		<comments>http://www.canoo.com/blog/2010/04/01/canoo-ria-suite-beta/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 12:37:40 +0000</pubDate>
		<dc:creator>Felix Schrape</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[UltraLightClient]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://canoo.com/blog/?p=1003</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2010/04/01/canoo-ria-suite-beta/";</script>Canoo Engineering is proud to present the next generation of UltraLightClient! Download the Beta here! The RIA-Framework (Rich Internet Application) has been completely overhauled and enhanced with a series of innovative and useful functions. These will enable more efficient and convenient deployment in future, as well as adding some attractive features to the design of [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2010/04/01/canoo-ria-suite-beta/";</script><p><strong>Canoo Engineering is proud to present the next generation of UltraLightClient! <a href="http://www.canoo.com/ulc/beta/">Download the Beta here!</a></strong></p>
<p>The RIA-Framework (Rich Internet Application) has been completely overhauled and enhanced with a series of innovative and useful functions. These will enable more efficient and convenient deployment in future, as well as adding some attractive features to the design of the user interface.</p>
<p>UltraLightClient will bear the name ULC Core from now on, and forms the basis of the new Canoo RIA Suite, which will officially be released at the beginning of May. The suite is designed in a modular fashion, allowing you to compose functionality according to your own needs. And you only pay for those modules which you actually require.</p>
<p><span style="color: #ffffff;">.</span></p>
<p><img class="alignnone size-full wp-image-1004" title="RIA suite" src="http://canoo.com/blog/wp-content/uploads/2010/04/RIA-suite.jpg" alt="RIA suite" width="178" height="50" /></p>
<p><strong>The Highlights</strong></p>
<ul>
<li>The new <strong>Chart Functionality</strong> enables you to present even complex facts and figures clearly and simply.</li>
<li>Using the integrated <strong>Animations Framework</strong> you can develop dynamic and attractive content in future.</li>
<li>Further <strong>sophisticated graphic features</strong> allow even more attractive designs: transparency, rounded angles etc.</li>
<li>Easy integration to Google App Engine.</li>
</ul>
<h2 style="font-size: 15px; font-weight: bold; line-height: 1px; padding-top: 18px;">THE NEW MODULES AT A GLANCE</h2>
<p><strong>ULC Table Plus</strong>: this package enables you to implement even the most complex tabular requirements in a rapid and straightforward manner.</p>
<p><strong>ULC Web Integration</strong>: simply integrate any browsers such as Safari, Firefox or Internet Explorer into your application developed under ULC. Web services and plug-ins like Google Maps or Flash Player can thus be launched directly in the application.</p>
<p><strong>ULC Office Integration</strong>: this ULC Core module supports the future import and export of Excel and Word files out-of-the-box. The contents can then be stored as PDF files and later printed.</p>
<p><strong>ULC Enterprise Portal Integration</strong>: using this optional extra, existing portlet applications can be easily and efficiently augmented with ULC applications.</p>
<p><strong>ULC Visual Editor</strong>: with the optimized visual editor you can generate your ULC applications by drag &amp; drop even more easily and, as usual, without any manual programming effort whatsoever.</p>
<p><strong>ULC Load</strong>: put your ULC applications though extensive load and performance tests using ULC Load. Thus you can be confident that your applications can bear up to the most rigorous demands in an operational environment.</p>
<p><a href="http://www.canoo.com/ulc/beta/">Download the Beta here!</a></p>
<script>var dzone_style="2";</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script><div style="float: left; width: 140px; height: 21px; overflow: hidden; position: relative; left: 8px;"><script>//<![CDATA[
reddit_url="http://www.canoo.com/blog/2010/04/01/canoo-ria-suite-beta/";
//]]&gt;
</script><script language="javascript" src="http://reddit.com/button.js?t=1"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.canoo.com/blog/2010/04/01/canoo-ria-suite-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The renaissance of user-oriented interface designs</title>
		<link>http://www.canoo.com/blog/2010/01/21/the-renaissance-of-user-oriented-interface-designs/</link>
		<comments>http://www.canoo.com/blog/2010/01/21/the-renaissance-of-user-oriented-interface-designs/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 10:15:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java RIA]]></category>
		<category><![CDATA[Rich Internet Applications]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://canoo.com/blog/?p=949</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2010/01/21/the-renaissance-of-user-oriented-interface-designs/";</script>Excerpt of  &#8221;Rich Internet Applications for Business&#8221;, an article by Hans Dirk Walter, CEO Canoo Engineering AG (in print). Alongside the ascendancy of the World Wide Web (WWW) as global information platform, its technology has increasingly been employed as the basis for enterprise applications in the course of the last 10 years. Web based application [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2010/01/21/the-renaissance-of-user-oriented-interface-designs/";</script><p><em>Excerpt of  &#8221;Rich Internet Applications for Business&#8221;, an article by Hans Dirk Walter, CEO Canoo Engineering AG (in print).</em></p>
<div>
<p>Alongside the ascendancy of the World Wide Web (WWW) as global information platform, its technology has increasingly been employed as the basis for enterprise applications in the course of the last 10 years. Web based application have successively squeezed out the previously widespread client-server applications. Ever more IT managers have recognised the operational advantages of centralised application management (re-)enabled through this technology and have placed a total emphasis upon HTML in their application development. This trend has rather conveyed the impression in recent years, therefore, that page based user interfaces were <em>the last word</em>, while user-oriented layout and design appeared consigned to oblivion.</p>
<p>In the wake of the euphoria surrounding HTML there were always organisations who expressed their dissatisfaction at the shortcomings of pure HTML interfaces. Meanwhile, a significant number of middle sized IT companies made their money developing RIAs for such organisations. Publicly, however, these efforts scarcely attracted attention. It was not until the Eclipse project, with its popular Rich Client Platform (RCP)<a href="#_ftn1">[1]</a> several years ago, that the ordinary developer was once again reminded of the far more ergonomic interfaces of the client-server technology of the 1980s and 1990s.</p>
<p>The term “rich client” now became newly synonymous with this technology.  Since RCP is a “fat client” technology it did not correspond to the centralised “zero footprint”<a href="#_ftn2">[2]</a> approach of classical HTML applications. These benefits, in which no application specific code whatsoever was of installed on the client, thus employed so called “rich thin client” technology, which in turn however merely represented a transient niche. It was not until Jesse James Garrett coined the phrase “Ajax”<a href="#_ftn3">[3]</a> in 2005, thus bestowing respectability on JavaScript based Internet technology that the idea of “Rich Internet Applications” became familiar to a broader public, who has since been demanding the same level of interface interactivity in online connections as that of pure desktop applications.</p>
<p>This trend has been reinforced to now by discussions about the fuzzy, yet enigmatic term “Web 2.0”<a href="#_ftn4">[4]</a>. According to this “hype”, the hitherto largely passive bulk of internet users would become highly active web content authors in the coming years or even site “programmers”. Thus, “Web 1.0 was commerce. Web 2.0 is people. [...] 2015, everyone alive will [..] write a song, author a book, make a video, craft a weblog, and code a program” (Kelly, <em>Wired<a href="#_ftn5">[5]</a></em>). However, in order to motivate and enable the average surfer not just to consume but also to actively contribute new content, the web needs to be equipped with a suitable interactive interface, with whose help the user can rapidly and easily become active. RIAs bridge this gap perfectly with respect to the dizzying expectations of Web 2.0. They represent the technology, without which the entire aspiration and utopia would evaporate.</p>
<p>However, RIA technology offers so many advantages not only for the Web 2.0 community but also for everyday enterprise applications, that the demise of exclusively HTML based “poor ugly web applications” (PUWA) is foreseeable in the not too distant future.</p>
<hr size="1" /><a href="#_ftnref">[1]</a> Jeff McAffer, Jean-Michel Lemieux: Eclipse Rich Client Platform; Addison-Wesley, 2005.</p>
<p><a href="#_ftnref">[2]</a> “Zero footprint” means that no additional Software needs to be installed on the client in order to launch an application</p>
<p><a href="#_ftnref">[3]</a> Jesse James Garrett: AJAX: A New Approach to Web Applications; www.adaptivepath.com/publications/essays/archives/000385.php</p>
<p><a href="#_ftnref">[4]</a> Tim O’Reilly: What is Web 2.0;</p>
<p><a href="#_ftnref">[5]</a> Kelly, K.: We are the Web. In: Wired 13.08 (08/2005)</div>
<script>var dzone_style="2";</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script><div style="float: left; width: 140px; height: 21px; overflow: hidden; position: relative; left: 8px;"><script>//<![CDATA[
reddit_url="http://www.canoo.com/blog/2010/01/21/the-renaissance-of-user-oriented-interface-designs/";
//]]&gt;
</script><script language="javascript" src="http://reddit.com/button.js?t=1"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.canoo.com/blog/2010/01/21/the-renaissance-of-user-oriented-interface-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gartner Oracle: Smartphones to dominante PCs by 2013</title>
		<link>http://www.canoo.com/blog/2010/01/18/gartner-oracle-smartphones-to-dominante-pcs-by-2013/</link>
		<comments>http://www.canoo.com/blog/2010/01/18/gartner-oracle-smartphones-to-dominante-pcs-by-2013/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:00:25 +0000</pubDate>
		<dc:creator>Felix Schrape</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile forecast 2013]]></category>

		<guid isPermaLink="false">http://canoo.com/blog/?p=904</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2010/01/18/gartner-oracle-smartphones-to-dominante-pcs-by-2013/";</script>. The well known research firm Gartner just published it&#8217;s Top Predictions for IT Organizations ans Users for 2010 and beyond, covering developments which definitely affect the RIA market, too. Their key findings are: IT Ownership: &#8221;By 2012, 20% of businesses will own no IT assets&#8221;. Cloud Computing: &#8220;By 2012, India-centric IT services companies will represent 20% of [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2010/01/18/gartner-oracle-smartphones-to-dominante-pcs-by-2013/";</script><p><span style="color: #ffffff;">.</span></p>
<p>The well known research firm Gartner just published it&#8217;s <a href="http://www.gartner.com/it/page.jsp?id=1278413" target="_blank">Top Predictions for IT Organizations ans Users for 2010 and beyond</a>, covering developments which definitely affect the RIA market, too. Their key findings are:</p>
<ul>
<li><strong>IT Ownership</strong>: &#8221;By 2012, 20% of businesses will own no IT assets&#8221;.</li>
<li><strong>Cloud Computing</strong>: &#8220;By 2012, India-centric IT services companies will represent 20% of the leading cloud aggregators&#8221;.</li>
<li><strong>S</strong><strong>ocial Networking</strong>: &#8220;By 2012, Facebook will become the hub for social network integration and Web socialization&#8221;.</li>
<li><strong>Sustainability</strong>: &#8221;By 2014, most IT business cases will include carbon remediation costs&#8221;.</li>
<li><strong>Internet Marketing</strong> &#8220;will be regulated by 2015, controlling more than $250 billion in Internet marketing spending worldwide&#8221;.</li>
<li><strong>Mobile Commerce</strong>: &#8220;By 2014, over 3 billion of the world&#8217;s adult population will be able to transact electronically&#8221;.</li>
<li><strong>Context Aware Computing </strong>&#8220;will be as influential to mobile consumer services [..] as search engines are to the Web&#8221;.</li>
<li><strong>User Devices</strong>: &#8220;By 2013, mobile phones will overtake PCs as the most common Web access device worldwide&#8221;.</li>
</ul>
<p style="text-align: left;">Perhaps the most aggressive outlook is the prediction that mobile phones will overtake PCs as the most common Web access devices worldwide by 2013 — <a href="http://www.morganstanley.com/institutional/techresearch/mobile_internet_report122009.html">Morgan Stanley</a> wasn&#8217;t quite that courageous. If we look closely, Gartner predicts that mobile phones will drive the higher number of website accesses &#8220;due to the sheer weight of device numbers&#8221;, but the &#8220;the bulk of page views will continue to occur through larger-format devices&#8221;. However: The RIA sector has to get ready for the mobile revolution, existing websites and web-based applications should be designed to be device-independent and their information structure has to be redesigned for mobile phone access.</p>
<p style="text-align: left;">
<p style="text-align: center;"><img class="size-medium wp-image-919 aligncenter" title="Canoonet Mobile" src="http://canoo.com/blog/wp-content/uploads/2010/01/canoonetmobile-156x300.png" alt="Canoonet Mobile" width="156" height="300" /></p>
<p style="text-align: center;"><em>CanooNet Mobile V2 (announced for 2/2010) demonstrates a successful redesign of a content structure for mobile access: No information should be positioned more than 3 clicks away from the user.</em></p>
<script>var dzone_style="2";</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script><div style="float: left; width: 140px; height: 21px; overflow: hidden; position: relative; left: 8px;"><script>//<![CDATA[
reddit_url="http://www.canoo.com/blog/2010/01/18/gartner-oracle-smartphones-to-dominante-pcs-by-2013/";
//]]&gt;
</script><script language="javascript" src="http://reddit.com/button.js?t=1"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.canoo.com/blog/2010/01/18/gartner-oracle-smartphones-to-dominante-pcs-by-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIA Link Roundup</title>
		<link>http://www.canoo.com/blog/2007/09/01/ria-link-roundup-2/</link>
		<comments>http://www.canoo.com/blog/2007/09/01/ria-link-roundup-2/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 09:10:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Rich Internet Applications]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://canoo.com/blog/2007/09/01/ria-link-roundup-2/</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2007/09/01/ria-link-roundup-2/";</script>Here are some links on Rich Internet Applications (RIA) that caught my eye during the past week: James Breeze is looking for research on RIA usability. He lists some articles on usability, but most of these are fairly old from Macromedia times. The most recent article he points to is: The Business Case for Rich [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://www.canoo.com/blog/2007/09/01/ria-link-roundup-2/";</script><p>Here are some links on Rich Internet Applications (RIA) that caught my eye during the past week:</p>
<p><a href="http://usableworld.terapad.com/index.cfm?fa=contentNews.newsDetails&#038;newsID=28828&#038;from=list">James Breeze</a> is looking for research on RIA usability. He lists some articles on usability, but most of these are fairly old from Macromedia times.</p>
<p>The most recent article he points to is:</p>
<ul>
<li><a href="http://www.adobe.com/enterprise/pdfs/Forrester_RRogowski_BusCase_for_RIAs3_07.pdf">The Business Case for Rich Internet Applications</a>, Forrester report by Ron Rogowski.</li>
</ul>
<p>Needless to say, I am interested in hearing about other research reports as well.</p>
<p><a href="http://www.itwriting.com/blog/?p=299">Tim Anderson</a> tried out <a href="http://www.tafiti.com/">Tafiti</a>, a search application based on Microsoft&#8217;s Silverlight and Live Search.</p>
<p><strong>RIA on Mobile Devices</strong></p>
<p><a href="http://blog.digitalbackcountry.com/?p=1004">Ryan Stewart</a> writes:</p>
<blockquote><p>RIAs can help bring the worlds of desktop, web, and mobile together and that’s going to bring about all kinds of new use cases for applications as well as new business models and modes of communication.</p></blockquote>
<p>In my opinion, posts such as <a href="http://blog.digitalbackcountry.com/?p=903">this one</a> or <a href="http://scobleizer.com/2007/08/29/nokia-tries-to-get-leadership-position-back-from-iphone/">this one</a> are first indicators that RIA on mobile devices will become important. </p>
<p><strong>Planet RIA</strong></p>
<p>For further blogs, see Canoo&#8217;s RIA aggregator at: <a href="http://www.planet-ria.org">http://www.planet-ria.org</a><br />
And feel free to add your favorite feeds.</p>
<script>var dzone_style="2";</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script><div style="float: left; width: 140px; height: 21px; overflow: hidden; position: relative; left: 8px;"><script>//<![CDATA[
reddit_url="http://www.canoo.com/blog/2007/09/01/ria-link-roundup-2/";
//]]&gt;
</script><script language="javascript" src="http://reddit.com/button.js?t=1"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.canoo.com/blog/2007/09/01/ria-link-roundup-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

