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

<channel>
	<title>The UIQ Evangelist</title>
	<atom:link href="http://www.uiqblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uiqblog.com</link>
	<description>This is UIQ Territory</description>
	<pubDate>Sat, 17 May 2008 04:38:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>&#8220;Application&#8221;</title>
		<link>http://www.uiqblog.com/2008/05/17/application/</link>
		<comments>http://www.uiqblog.com/2008/05/17/application/#comments</comments>
		<pubDate>Sat, 17 May 2008 04:38:14 +0000</pubDate>
		<dc:creator>nipsen</dc:creator>
		
		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Operating Systems]]></category>

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

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

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=382</guid>
		<description><![CDATA[At which point we try to wrap up some loose threads, explain why some clock- cycles are more equal than others. And wonder about what sort of direction smartphones are really heading (if anywhere at all).
Part IV: &#8220;Application&#8221;

In part I, we looked at the how the phones are constructed. Part II and part III dealt [...]]]></description>
			<content:encoded><![CDATA[<p><em>At which point we try to wrap up some loose threads, explain why some clock- cycles are more equal than others. And wonder about what sort of direction smartphones are really heading (if anywhere at all).</em></p>
<p>Part IV: &#8220;Application&#8221;<br />
<span id="more-382"></span></p>
<p>In <a href="http://www.uiqblog.com/2008/05/03/fundamentals/">part I</a>, we looked at the how the phones are constructed. <a href="http://www.uiqblog.com/2008/05/09/possibilities/">Part II</a> and <a href="http://www.uiqblog.com/2008/05/11/complications/">part III</a> dealt with how the parts of the phone fit together, from an abstract point of view. And how the lack of a good philosophy on constructing these phones is a very serious problem. In this part, we&#8217;ll look more closely at how the software really is fitted on top of the phone, and what the issues in general are - as well as what the limitations and possibilities are when retrofitting devices with high level library support.</p>
<p>But - why would anyone want to retrofit a phone with anything, other than ring- tones and new pictures and games? Why not simply choose an up to date component array, and then directly use these for all operations? Why, for example, go through the trouble of creating an OS, when you&#8217;re intent on using the same platform forever, or otherwise to a large extent scrap the existing implementations whenever you do change platform? Now that&#8217;s a good question some of us ask ourselves very often.</p>
<p>And the answer typically appears to be &#8220;Youtube&#8221;. Or, that as long as a specific application exists on the phone, the rest doesn&#8217;t matter, except as a selling point. For example, &#8220;fundamental improvements to GUI customization and a re-drawn static memory handling that enable object- exchange&#8221; - who cares about that?</p>
<p>Another reason is that lack of variety on the market (there&#8217;s only a few chip designers), has made retrofitting devices with software- optimisations necessary. This has also given rise to an entire industry of &#8220;system on chip&#8221; designs, as well as the more &#8220;flexible&#8221; DSP (digital signal processing) solutions. Simply because the requirement to support multiple formats and standards was growing.</p>
<p>But why bother with the extra component arrays at all, then? Why not just use atomic instructions and high clock- speeds like any PC does now? Because the main idea on mobile devices in general is &#8220;parallelism&#8221;. To get as much done at the same time, in order to save clock- cycles or processor time and power. Which means that moving certain common operations from a time- shared &#8220;multitask&#8221;, and to pre- processed data areas independent of the bus suddenly seems like an incredibly good idea. Take a look at &#8220;DMA&#8221; on any computer, for example - you program the bus to read in chunks without interruption from the storage device, and then the OS picks up the full chunk when it&#8217;s ready. Quick and efficient, right?</p>
<p>Unfortunately, translating that theory to a mobile device is less successful. Since when a device performs more complex operations, with more varied instruction sets at the same time - any type of hardware- support runs into trouble, sooner or later. This is the case for even the most strict format and instruction set - simply because the memory- transport operations involved will incur overheads compared to the ideal and theoretical scenario. It&#8217;s also a problem that an energy- drain based on a fixed decoding process, for example, will rarely be as effective as an opportunistic variable software- algoritm. In addition, it&#8217;s not like the hardware solution doesn&#8217;t use any power on it&#8217;s own. Something that put together defeats the point of attempting to save power through direct hardware- support for even the most common tasks - such as mp3 playback or certain hardware- accelerated video formats.</p>
<p>But splitting functionality in this way is nevertheless chosen. Because with few clock- cycles to go on on a mobile phone chip, this was the only way to have acceptable response- times (though syncronisation issues certainly exist - popping sound, bad quality, noise - typical problems). Externalising certain instruction sets also would give the developer of that technology some &#8220;security&#8221; - as well as give the OS manufacturer the possibility to provide the specifications and the interface - and then just provide these to any 3rd party.</p>
<p>And this setup has been kept, with the system- on- chip designs, even though the parts of these chips now come in generic versions with programmable data- areas.</p>
<p>Where, then, does RISC (reduced instruction set computer) fit in this backwards summary? This is the other approach to increasing parallel processing, which, due to lack of small and flexible enough chipsets, have never taken off (even if it has been used successfully in fairly complex commercial platforms, for example PlayStation One and 2). Because in order to use a RISC system effectively - so it can save clock- cycles - the system needs to perform many similar instructions repeatedly at the OS kernel level, as well as be fundamentally based on parallelism. &#8230;!</p>
<p><img src="http://www.uiqblog.com/wp-content/uploads/2008/05/light-bulb.jpg" alt="" title="light-bulb" class="alignleft size-full wp-image-383" /></p>
<p>In other words, we&#8217;ve just found the perfect use for a risc- system. A mobile phone or a pda platform, where the point is to save clock- cycles while avoiding syncronisation issues, because parallel processing is the fundamental idea - and where you want to lower the transport- overhead on the bus, as well as increase the life- span of the battery as much as possible.</p>
<p>And, with a well constructed system - no more would it be necessary to scrap the phone to upgrade the voice- filter, or incur enormous overhead on post- processing algoritms. Since you would be able to exploit soft DSPs for certain tasks, and then transport that data effectively. While it would still be neceesary to develop external chips for the fundamental tasks such as voice- recording or display- buffers and screens, and so on..</p>
<p>So - why don&#8217;t we have programmable risc- systems and a blooming multiplatform operating system industry in motion already? That is, I suppose, a good question.</p>
<p>&#8212;</p>
<p>The practical solution that was chosen, was to fit certain functionality to external chips where that would be useful (such as voice- processing, noise filters), and then employ risc- technology to the memory- transport areas. What we&#8217;ve seen mostly, however, is a generic implementation of close to atomic operations, and collections of often performed instructions that are not necessarily tailored to the tasks the device is supposed to perform. So, while increasing the amount of instructions processed each clock- cycle by large amounts, it still remains an underused technology, in an application type that is evidently perfect for it.</p>
<p>This practical solution is also the reason the systems released at the present are time- shifted multitask systems that draw on processor speed, more than instruction set optimisation. And, we see that increased processor speed is the number one requirement on new devices - while it really should be quite a long way down on the list, if parallel computing was more than a funny- sounding concept. Because, as mentioned, the huge gains it&#8217;s possible to achieve in reducing the power- consumption in lesser processors, and the decreased cpu time used for any amount of processing, is well worth it.</p>
<p>But - no doubt it&#8217;s easier to deploy a high level (or program level) instruction set for certain technology, since this can be retrofitted to the device more easily. So Flash lite 3 will be supplied through software on the new UIQ devices, and it will be a high- level implementation using generic OS functionality to operate. Not a low- level implementation, though it might be using some instruction sets specifically tailored for generic vector- graphics. Something that of course would make it suitable for deployment on all UIQ3 devices, and so on. As well as exploit the architecture that has been there for some time. But executing the code will not be nearly as efficient as it could&#8217;ve been.</p>
<p>Cost efficiency also has something to do with this - it&#8217;s much cheaper to fix and expand on the platform independent of the phone construction and market deployment process. So programming a solution independent of the hardware- mess is an increasingly tempting option. But the question is really one of organisation, and of applying the available technology in a strategic way.</p>
<p>So two directions seem to be staked out:</p>
<p>1. To choose functional and programmable risc- solutions that still can be expanded upon after deployment of the device. And on the other hand -</p>
<p>2. to choose a component platform on beforehand, and ensure the unit is obsolete before the newer (and infinitely more customer - as well as developer- friendly) software and OS is ever thought of.</p>
<p>..I wonder - what sort of strange compromise will we end up with in the end?</p>
<p>(next: Part V, &#8220;From the user&#8217;s point of view&#8221;.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/17/application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>USEB finds new SE smartphone!</title>
		<link>http://www.uiqblog.com/2008/05/17/useb-finds-new-se-smartphone/</link>
		<comments>http://www.uiqblog.com/2008/05/17/useb-finds-new-se-smartphone/#comments</comments>
		<pubDate>Fri, 16 May 2008 20:15:29 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Sony Ericsson]]></category>

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=381</guid>
		<description><![CDATA[
This is what Michell wrote about this:

I bet some of you have checked out the JavaOne conferences, but obviously no-one has gone through them in depth. In on of the videos, Rikko Sakaguchi at Sony Ericsson actually leaks an upcoming phone, well, sort of… After having showcased the video below at the JavaOne conference, Sakaguchi [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://blog.se-nse.net/wp-content/uploads/2008/05/unknown_new_phone.jpg" alt="" /></p>
<p>This is what Michell wrote about this:</p>
<p><em></p>
<blockquote><p>I bet some of you have checked out the JavaOne conferences, but obviously no-one has gone through them in depth. In on of the videos, Rikko Sakaguchi at Sony Ericsson actually leaks an upcoming phone, well, sort of… After having showcased the video below at the JavaOne conference, Sakaguchi says “actually… you saw the device in the video? T<strong>hat’s something that we’re going to launch this year</strong>.” However! If we look closely at a few screenshots from the video, you’ll notice that there’s actually two devices, and not one. Could this be different prototypes for one phone? I mean, Sakaguchi did say “the device”.</p></blockquote>
<p></em></p>
<p>We are not sure right now, but all points for this device to be another UIQ device (w960 successor comes to mind).</p>
<p>[via <a href="http://blog.se-nse.net/2008/05/16/video-sony-ericssons-upcoming-multi-device/">USEB</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/17/useb-finds-new-se-smartphone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash lite 3 on UIQ3 - updated G900 whitepaper confirms it</title>
		<link>http://www.uiqblog.com/2008/05/16/flash-lite-3-on-uiq3-updated-g900-whitepaper-confirms-it/</link>
		<comments>http://www.uiqblog.com/2008/05/16/flash-lite-3-on-uiq3-updated-g900-whitepaper-confirms-it/#comments</comments>
		<pubDate>Fri, 16 May 2008 11:29:35 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Apps]]></category>

		<category><![CDATA[Coming Soon]]></category>

		<category><![CDATA[Sony Ericsson]]></category>

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

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

		<category><![CDATA[UIQ 3.0]]></category>

		<category><![CDATA[UIQ 3.3]]></category>

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

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

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=380</guid>
		<description><![CDATA[
Sometime ago,  we told yout x-tream from P1blog had found a reference to FL3 on the first version of G900 whitepaper. Soon after, that document was removed, and there was some speculation one of the reasons of doing that was to remove such reference.
Well, now we have the new version of G900 whitepaper and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://thenokiaguide.typepad.com/my_weblog/images/2007/10/01/adobe_flash_8s600x600.jpg" alt="" width="165" height="165" /></p>
<p>Sometime ago,  we told yout x-tream from P1blog <a href="http://www.uiqblog.com/2008/04/14/reference-to-flash-found-in-g900-whitepaper/">had found a reference to FL3 on the first version of G900 whitepaper</a>. Soon after, that document was removed, and there was some speculation one of the reasons of doing that was to remove such reference.</p>
<p>Well, now we have the new version of <a href="http://www.uiqblog.com/2008/05/14/g700-and-g900-whitepapers-reappear/">G900 whitepaper</a> and this is what we can read in page 9:</p>
<blockquote><p>Opera™ 8.0 Web browser<br />
Opera™ 8.0 allows full HTML browsing and supports all de facto standards. It features normal or small<br />
screen rendering as well as full screen view. <strong>Includes Flash Lite 3 support (from maintenance release 1 of the phone software)</strong>.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/16/flash-lite-3-on-uiq3-updated-g900-whitepaper-confirms-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>UIQ Technology announces Chairman of the Board</title>
		<link>http://www.uiqblog.com/2008/05/16/uiq-technology-announces-chairman-of-the-board/</link>
		<comments>http://www.uiqblog.com/2008/05/16/uiq-technology-announces-chairman-of-the-board/#comments</comments>
		<pubDate>Fri, 16 May 2008 09:16:13 +0000</pubDate>
		<dc:creator>asri</dc:creator>
		
		<category><![CDATA[Events]]></category>

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

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=379</guid>
		<description><![CDATA[Ronneby, Sweden, 14 May 2008 - UIQ Technology today announced that Dr. Colin Tucker has been appointed to the role of Non-Executive Independent Chairman of the Board of Directors of UIQ Technology. To promote the success of UIQ Technology, Dr. Tucker will, in addition to his role as chairman, serve as a principal advisor and, [...]]]></description>
			<content:encoded><![CDATA[<p>Ronneby, Sweden, 14 May 2008 - UIQ Technology today announced that Dr. Colin Tucker has been appointed to the role of Non-Executive Independent Chairman of the Board of Directors of UIQ Technology. To promote the success of UIQ Technology, Dr. Tucker will, in addition to his role as chairman, serve as a principal advisor and, together with the other Board members, continuously assess the company&#8217;s financial standing and constructively challenge and contribute to its strategic development.<span id="more-379"></span></p>
<p>&#8220;I am very pleased to welcome Dr. Colin Tucker as chairman of the UIQ Technology board, said Johan Sandberg, CEO at UIQ Technology. Dr. Tucker comes with over 30 years of telecommunications leadership experience and it is great for us to get such an experienced chairman&#8221;</p>
<p>Dr Colin Tucker has amongst a number of other positions served as Chief Technology Officer and Group Director International of Orange Plc, Executive Director to the Board of Orange Plc, Managing Director 3 UK and Deputy Chairman of Hutchison 3G and was listed by the Financial Times as one of the eight key people to know in the Telecommunications sector.</p>
<p>&#8220;I have always had a passion for how people use technology, said Dr Colin Tucker. This is an excellent opportunity for me to be part of the strategic development and help UIQ becoming the innovation platform enabling the best mobile user experience&#8221;</p>
<p>Other directors of the UIQ Technology Board are Rob Shaddock and Alain Mutricy from Motorola and Ulf Persson and Mats Lindoff from Sony Ericsson.</p>
<p>Further information:<br />
Carina Dietmann<br />
Head of Corporate Communications<br />
+46 708 576020<br />
carina.dietmann@uiq.com<br />
www.uiq.com<br />
About UIQ Technology</p>
<p>UIQ Technology is an independent software provider to the world&#8217;s leading mobile phone manufacturers. The company develops UIQ, an open user interface and application development platform that is flexible and customizable. UIQ Technology is currently owned by Sony Ericsson and Motorola which each have a 50% stake in UI Holdings. www.uiq.com</p>
<p>Via : http://uiq.com/2888_3029.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/16/uiq-technology-announces-chairman-of-the-board/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Update regarding MyphoneExplorer on UIQ3.x</title>
		<link>http://www.uiqblog.com/2008/05/16/update-regarding-myphoneexplorer-on-uiq3x/</link>
		<comments>http://www.uiqblog.com/2008/05/16/update-regarding-myphoneexplorer-on-uiq3x/#comments</comments>
		<pubDate>Thu, 15 May 2008 17:37:19 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Apps]]></category>

		<category><![CDATA[Coming Soon]]></category>

		<category><![CDATA[Sony Ericsson]]></category>

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

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

		<category><![CDATA[UIQ 3.0]]></category>

		<guid isPermaLink="false">http://www.uiqblog.com/?p=378</guid>
		<description><![CDATA[
In March we told you the good news: MyphoneExplorer, the hugely popular SE PC Suite free alternative was starting to work really good with SE UIQ3.x smartphones (and not only with SE feature phones).
Being testing the beta, i am pleased to tell you guys that more steps were taken into the full symbian support, because [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://www.fjsoft.at/en/Bilder/highlight-mpe-hover.gif" alt="" width="188" height="151" /></p>
<p>In March we told you the good news<a href="http://www.uiqblog.com/2008/03/19/myphoneexplorer-keeps-improving/">:</a><strong> MyphoneExplorer</strong>, the hugely popular SE PC Suite free alternative was starting to work really good with SE UIQ3.x smartphones (and not only with SE feature phones).</p>
<p>Being testing the beta, i am pleased to tell you guys that more steps were taken into the full symbian support, because now, besides file explorer, sms, and contact support, there is Calendar and Tasks support! The only major thing absent is Notes.</p>
<p>So, congrats to <a href="http://www.fjsoft.at/en/">Fjsoft</a> for the amazing work, and lets hope they can soon announce full support for UIQ3, and release this new version for all users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/16/update-regarding-myphoneexplorer-on-uiq3x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fast Track to Nowhere</title>
		<link>http://www.uiqblog.com/2008/05/15/fast-track-to-nowhere/</link>
		<comments>http://www.uiqblog.com/2008/05/15/fast-track-to-nowhere/#comments</comments>
		<pubDate>Thu, 15 May 2008 12:32:52 +0000</pubDate>
		<dc:creator>nipsen</dc:creator>
		
		<category><![CDATA[Comments]]></category>

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

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=376</guid>
		<description><![CDATA[UIQ's Fast Track event was cancelled. UIQ hires new telecom suit for leadership position on board of directors.]]></description>
			<content:encoded><![CDATA[<div style="text-align:center">
<div><img src="http://www.uiqblog.com/wp-content/uploads/2008/05/train_tracks2.jpg" alt="Tracks to nowhere" title="Fast Track to Nowhere" /></div>
<p><em>&#8220;Slide two: business strategy.&#8221;</em></div>
<p><a href="http://fasttrack.uiq.com/">http://fasttrack.uiq.com/</a></p>
<blockquote><p>The UIQ Developer Fast Track events that were planned to take place in Boston (15th and 16th May) and San Francisco (19th and 20th May) have been canceled unfortunately due to a low level of registrations.<br />
(&#8230;)<br />
We want to create the best environment for our developer community to meet people, interact and learn lots of new fantastic news and details and hence we&#8217;re already creating an event later in the year that you won&#8217;t want to miss! Your feedback and help in creating such and event is always more than welcome at fasttrack@uiq.com.</p>
<p>If you have any question, don&#8217;t hesitate to contact us as fasttrack@uiq.com.</p></blockquote>
<p>..I have a few suggestions for you.<br />
<span id="more-376"></span></p>
<p>1. Don&#8217;t <a href="http://uiq.com/2888_3029.html">hire Telecommunication business people</a> into the company. Not even as figureheads. Paying someone a million dollars a year isn&#8217;t necessary for infinitely reinventing the importance of &#8220;subscription- based services&#8221;, &#8220;portal services&#8221;, the &#8220;pay per button- click&#8221; concept, or for making sure UIQ pays proper homage to the customisation needs of the telecom suits. Neither is it necessary for divining the whims of the telecoms in general. Yes, I know you&#8217;ve all been lamenting that you don&#8217;t have the ability to sell yourselves to the telecoms and still maintain your dignity - but what UIQ needs to do is to grow out of the idea that it&#8217;s impossible to create a good product, and then shape the market without the help of the telecoms. Specifically, a company that can lead when it comes to using available technology in a smart (bleh) way will not need to finance itself (in the short term) by crippling the functionality of an otherwise well- constructed framework before it hits the market - and so telling the general developer- community and the users UIQ wants (and needs) to charm, to f.. look elsewhere.</p>
<p>2. Maintain ability to release new OS- versions directly to devices. Waiting at least a year before releasing a device with the newest UIQ version is one part of what will keep UIQ in purgatory - the other is allowing it not just to be branded by phone- makers and telecoms, but crippled by their requirements of centralised release of software (a demand they cannot, and are not willing to meet at the moment, nor in the foreseeable future. Something that UIQ discovered years ago). Neither of these are strong selling points on their own, and worse than the sum of their parts together. So why maintain a collaboration that serves no one?</p>
<p>Does changing any of this mean concessions, or maybe &#8220;welcome consolidations of interest&#8221; on the part of shareholders and the involved telecoms? Does that mean increasing the company&#8217;s number of employees? Does it mean expanding the 3rd party development into forbidden ground such as the phone- tools, and even the optional portal- service programs? Obviously - but on the plus side, maintaining the ability to release versions directly to devices will ensure minimum platform- breaking limitations (for as long as the partnership lasts), and a modern platform and developer framework that makes use of the latest technology and the latest standards. It will also place UIQ in a position of being able to influence the direction of the underlying platform: UIQ will be able to suggest the requirements for such and such technology, and say that if we would like to see this type of animated red button in 3d on the devices, then we need this and that to effectively make it happen. </p>
<p>Example: using the programmable areas on the ARM architecture for native implementation of certain standards - how much is that actually used on Symbian- devices currently? Not a whole lot. What about OpenGL ES through the PowerVR instruction set? The iPhone demonstrated some possibilities - but where are the rest of the &#8220;giants&#8221; on this one? </p>
<p>Also, what about looking ahead for new platforms and platform- configurations in general? Instead of deploying these technologies at random in the hopes that someone will happen to use them, like the phone- manufacturers are doing now - UIQ has an option to shape the way this is done, and use it effectively. And - perhaps - actually manage to make that technology accessible, fast and supported on the devices UIQ is deployed on, to: *cough* &#8220;further enhance an outstanding product&#8221;, and [insert favourite trope here].</p>
<p>Deploying directly to devices will also, magically, do wonders for the licensed deals involved with certain developers of in- built software, as the companies who program them won&#8217;t be dissolved and their ledgers won&#8217;t end up on a flea- market, before their programs are actually used for more than a concept- demonstration.</p>
<p>3. Talk to customers.</p>
<p>4. Listen to customers. (And answer your mail once in a while.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/15/fast-track-to-nowhere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dreamspring releases finger optimized Dreamconnect 3 v3.60</title>
		<link>http://www.uiqblog.com/2008/05/14/dreamspring-releases-finger-optimized-dreamconnect-3-v360/</link>
		<comments>http://www.uiqblog.com/2008/05/14/dreamspring-releases-finger-optimized-dreamconnect-3-v360/#comments</comments>
		<pubDate>Wed, 14 May 2008 15:41:35 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Apps]]></category>

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

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

		<category><![CDATA[UIQ 3.0]]></category>

		<category><![CDATA[UIQ 3.3]]></category>

		<category><![CDATA[apps. uiq]]></category>

		<guid isPermaLink="false">http://www.uiqblog.com/?p=375</guid>
		<description><![CDATA[
DreamSpring released a vast improvement of DreamConnect 3, featuring finger friendly navigation as introduced in Sony Ericsson’s Developer World, and feature and performance enhancements which make the already intuitive DreamConnect 3 even more user-friendly.
New to DreamConnect 3 v3.60 is gesture support, providing quicker and more convenient access to contact details. Users can simply swipe their [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://www.simplysymbian.com/wp-content/gallery//2008/05/dreamconnectafter.gif" alt="" width="200" height="267" /></p>
<p>DreamSpring <a title="DreamConnect 3" href="http://www.dreamspring.com/news/pr080513.php" target="_blank">released a vast improvement of <strong class="highlighted0">DreamConnect</strong> 3</a>, featuring finger friendly navigation as introduced in <a href="http://developer.sonyericsson.com/site/global/newsandevents/latestnews/newsfeb08/p_dreamspring_dreamconnect_smalleruiq3screens.jsp">Sony Ericsson’s Developer World</a>, and feature and performance enhancements which make the already intuitive <strong class="highlighted0">DreamConnect</strong> 3 even more user-friendly.</p>
<p>New to <strong class="highlighted0">DreamConnect</strong> 3 v3.60 is gesture support, providing quicker and more convenient access to contact details. Users can simply swipe their finger or thumb either to the left or right to scroll through contact details or up and down to scroll through the contact list. On the upcoming Sony Ericsson G700 and G900, this even takes advantage of their accelerated scrolling feature.</p>
<p>[credits of this text go asri over at <a href="http://www.simplysymbian.com/2008/05/13/dreamconnect-360-upgrade-released/">simplysymbian]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/14/dreamspring-releases-finger-optimized-dreamconnect-3-v360/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fring is App of the Month</title>
		<link>http://www.uiqblog.com/2008/05/14/fring-is-app-of-the-month/</link>
		<comments>http://www.uiqblog.com/2008/05/14/fring-is-app-of-the-month/#comments</comments>
		<pubDate>Wed, 14 May 2008 15:30:53 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Apps]]></category>

		<category><![CDATA[Sony Ericsson]]></category>

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

		<category><![CDATA[UIQ 3.0]]></category>

		<category><![CDATA[UIQ 3.3]]></category>

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

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=374</guid>
		<description><![CDATA[
UIQ3.x´s only true VOIP solution, fring, is was choosed by UIQ Technology as May´s Application of the month.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://uiq.com/application/fringe.jpg" alt="" width="540" height="240" /></p>
<p>UIQ3.x´s only true VOIP solution, <strong>fring</strong>, is was choosed by UIQ Technology as <a href="http://uiq.com/application_of_the_month_2008_3026.html">May´s Application of the month</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/14/fring-is-app-of-the-month/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More from Paris</title>
		<link>http://www.uiqblog.com/2008/05/14/more-from-paris/</link>
		<comments>http://www.uiqblog.com/2008/05/14/more-from-paris/#comments</comments>
		<pubDate>Wed, 14 May 2008 14:59:57 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Coming Soon]]></category>

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

		<category><![CDATA[UIQ 3.3]]></category>

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

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

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

		<category><![CDATA[Sony Ericsson]]></category>

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=373</guid>
		<description><![CDATA[
Go to mobile-review for the full set of photos. Credits go to   gliatiotis.

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://img81.imageshack.us/img81/5803/dsc02580ys1.jpg" alt="" width="640" height="480" /></p>
<p style="text-align: left;">Go to <a href="http://forum2.mobile-review.com/showthread.php?p=696332#post696332">mobile-review</a> for the full set of photos. Credits go to   <strong>gliatiotis.<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/14/more-from-paris/feed/</wfw:commentRss>
		</item>
		<item>
		<title>G700 and G900 whitepapers reappear</title>
		<link>http://www.uiqblog.com/2008/05/14/g700-and-g900-whitepapers-reappear/</link>
		<comments>http://www.uiqblog.com/2008/05/14/g700-and-g900-whitepapers-reappear/#comments</comments>
		<pubDate>Wed, 14 May 2008 10:56:34 +0000</pubDate>
		<dc:creator>ares</dc:creator>
		
		<category><![CDATA[Coming Soon]]></category>

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

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

		<category><![CDATA[Sony Ericsson]]></category>

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

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

		<category><![CDATA[UIQ 3.0]]></category>

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

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

		<guid isPermaLink="false">http://www.uiqblog.com/?p=372</guid>
		<description><![CDATA[Sometime ago, SE removed the G700 and G900 whitepapers from their Devs site. Well, know it seems the new versions of this documents are finally available - get G900´s here and G700´s here.
[thanks to benitorios from estato for the heads up]
]]></description>
			<content:encoded><![CDATA[<p>Sometime ago, SE removed the G700 and G900 whitepapers from <a href="http://developer.sonyericsson.com/site/global/home/p_home.jsp">their Devs site</a>. Well, know it seems the new versions of this documents are finally available - get G900´s <a href="http://developer.sonyericsson.com/getDocument.do?docId=100349">here</a> and G700´s <a href="http://developer.sonyericsson.com/getDocument.do?docId=100348">here.</a></p>
<p>[thanks to benitorios from estato for the heads up]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uiqblog.com/2008/05/14/g700-and-g900-whitepapers-reappear/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
