<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Cutehacks</title>
	<atom:link href="http://cutehacks.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cutehacks.com</link>
	<description>Crossplatform mobile software</description>
	<lastBuildDate>Thu, 23 Feb 2012 17:52:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cutehacks.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/030a1bebe011d2be4510f400fc614744?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Cutehacks</title>
		<link>http://cutehacks.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cutehacks.com/osd.xml" title="Cutehacks" />
	<atom:link rel='hub' href='http://cutehacks.com/?pushpress=hub'/>
		<item>
		<title>Tabs on Android</title>
		<link>http://cutehacks.com/2012/02/23/tabs-on-android/</link>
		<comments>http://cutehacks.com/2012/02/23/tabs-on-android/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 17:52:03 +0000</pubDate>
		<dc:creator>espen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[back-stack]]></category>
		<category><![CDATA[backstack]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[tabbar]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[tabwidget]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=883</guid>
		<description><![CDATA[Using a tabbar, either at the top or bottom of an interface, is a typical design pattern used in apps to navigate between segments. This is used by the Android Twitter client for example. The typical way to implement this &#8230; <a href="http://cutehacks.com/2012/02/23/tabs-on-android/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=883&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using a tabbar, either at the top or bottom of an interface, is a typical design pattern used in apps to navigate between segments. This is used by the Android Twitter client for example. The typical way to implement this is by using <a href="http://developer.android.com/reference/android/widget/TabWidget.html">TabWidget</a>, TabActivity, TabHost and <a href="http://developer.android.com/resources/tutorials/views/hello-tabwidget.html">friends</a>. Each tab is populated with whatever activity you want and all is well.</p>
<p>There is a problem with this approach however. If you start a new activity <em>the tabs (area A, B, C) all disappear</em> and this is not always what you want. Sometimes what you want is to keep the tabbar around and have an individual backstack for each of the tabs.</p>
<div id="attachment_888" class="wp-caption aligncenter" style="width: 359px"><a href="http://cutehacks.files.wordpress.com/2012/02/stacksintabs-areas.png"><img class="size-full wp-image-888" title="Typical tab layout" src="http://cutehacks.files.wordpress.com/2012/02/stacksintabs-areas.png?w=500" alt="Typical tab layout"   /></a><p class="wp-caption-text">Typical tab layout</p></div>
<p>I&#8217;ve published an <a href="https://github.com/snowpong/stacksintabs">example on github</a> that shows how you can get the best of both worlds. It explains how to keep an <em>individual backstack</em> for each tab, but also how to start activities that <em>break out of the tabs</em> as is the traditional way on Android. The Back button still works and you can also programmatically navigate back. The behavior of back is changed to respect the backstack of each individual tab.</p>
<p><big>If you want to try it out yourself I&#8217;ve compiled an Android package for you. Navigate to <a href="http://bit.ly/stacksintabs">http://bit.ly/stacksintabs</a> with your Android device and install the .apk to check it out.</big></p>
<div id="attachment_890" class="wp-caption aligncenter" style="width: 212px"><a href="http://cutehacks.files.wordpress.com/2012/02/stacksintabs-navigation.png"><img class="size-medium wp-image-890" title="Navigation in the example" src="http://cutehacks.files.wordpress.com/2012/02/stacksintabs-navigation.png?w=202&#038;h=300" alt="Navigation in the example" width="202" height="300" /></a><p class="wp-caption-text">Navigation in the example</p></div>
<p>The design is very simple. I still use TabWidget, TabHost and TabActivity (layout <a href="https://github.com/snowpong/stacksintabs/blob/master/res/layout/tabswithfragmentsactivity.xml">here</a>) &#8211; but instead using normal activities for each tab, I <a href="https://github.com/snowpong/stacksintabs/blob/master/src/com/cutehacks/example/stacksintabs/FragmentStackActivity.java">subclass FragmentActivity</a> &#8211; and build a stack of Fragments inside each tab. The gist of the code is in the <a href="https://github.com/snowpong/stacksintabs/blob/master/src/com/cutehacks/example/stacksintabs/FragmentStackActivity.java#L38">addFragment(&#8230;)</a> function</p>
<p>To launch a new fragment inside a tab <em>(area D)</em>, see the <a href="https://github.com/snowpong/stacksintabs/blob/master/src/com/cutehacks/example/stacksintabs/FragmentStackActivity.java#L60">launchNewFragment()</a> function, and to see how you break out of the tabs and launch a new activity <em>(area E)</em> see the function <a href="https://github.com/snowpong/stacksintabs/blob/master/src/com/cutehacks/example/stacksintabs/FragmentStackActivity.java#L47">launchNewActivity(&#8230;)</a></p>
<p>The fragments and activity I use are just examples, the point is that you replace <a href="https://github.com/snowpong/stacksintabs/blob/master/src/com/cutehacks/example/stacksintabs/ExampleActivity.java">ExampleActivity</a> and <a href="https://github.com/snowpong/stacksintabs/blob/master/src/com/cutehacks/example/stacksintabs/ExampleFragment.java">ExampleFragment</a> with you own classes.</p>
<p>My initial approach at solving this problem was using Fragments exclusively, but since nested Fragments are not supported on Android I gave up.</p>
<p>I hope this helps some of you &#8211; it&#8217;s all available under a BSD license. The example requires API level 7 and uses the Android Support library v4. Comments and contributions are welcome. Btw: I&#8217;m also working on a comparison between QML and Android XML where I compare pros and cons, so stay tuned for more <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /> Tagged: <a href='http://cutehacks.com/tag/android-2/'>android</a>, <a href='http://cutehacks.com/tag/apps/'>apps</a>, <a href='http://cutehacks.com/tag/back-stack/'>back-stack</a>, <a href='http://cutehacks.com/tag/backstack/'>backstack</a>, <a href='http://cutehacks.com/tag/bsd/'>bsd</a>, <a href='http://cutehacks.com/tag/mobile/'>mobile</a>, <a href='http://cutehacks.com/tag/navigation/'>navigation</a>, <a href='http://cutehacks.com/tag/tabbar/'>tabbar</a>, <a href='http://cutehacks.com/tag/tabs/'>tabs</a>, <a href='http://cutehacks.com/tag/tabwidget/'>tabwidget</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/883/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/883/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/883/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=883&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2012/02/23/tabs-on-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7230e186152cd65eac132b6add7c637a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">espen</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/02/stacksintabs-areas.png" medium="image">
			<media:title type="html">Typical tab layout</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/02/stacksintabs-navigation.png?w=202" medium="image">
			<media:title type="html">Navigation in the example</media:title>
		</media:content>
	</item>
		<item>
		<title>New office and new employee!</title>
		<link>http://cutehacks.com/2012/01/10/new-office-and-new-employee/</link>
		<comments>http://cutehacks.com/2012/01/10/new-office-and-new-employee/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 12:54:49 +0000</pubDate>
		<dc:creator>hhartz</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Startup]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=830</guid>
		<description><![CDATA[Nothing is like starting the new year with blank sheets of paper and color crayons! OK, Norwegian proverbs might not translate that well, but here we are: A new year, a new office, and a new employee (me)! My name &#8230; <a href="http://cutehacks.com/2012/01/10/new-office-and-new-employee/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=830&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-830" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2012%2F01%2F10%2Fnew-office-and-new-employee%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-do%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2012%2F01%2F10%2Fnew-office-and-new-employee%2F" height="61" width="51" /></a>
</div>Nothing is like starting the new year with blank sheets of paper and color crayons! OK, Norwegian proverbs might not translate that well, but here we are: A new year, a new office, and a new employee (me)!</p>
<div id="attachment_831" class="wp-caption aligncenter" style="width: 310px"><a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-28-of-59.jpg"><img class="size-medium wp-image-831" title="2012.01.06-28 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-28-of-59.jpg?w=300&#038;h=199" alt="New Employee Cava" width="300" height="199" /></a><p class="wp-caption-text">I can totally get used to lunches like this!</p></div>
<p>My name is <a href="http://twitter.com/hhartz">Henrik Hartz</a>, and I joined Espen and Marius January 2nd this year after working 7 years at Trolltech and Nokia. For the first week and a half I have been getting busy with <a href="http://store.ovi.com/content/146826">existing projects</a> while Espen and Marius are pushing new frontiers &#8211; for the time being focusing on an Android project.</p>
<p>Aside from 50% growth, we also moved to a new office &#8211; literally across the road from the old one. The new place is a lot larger &#8211; the three of us share an office &#8211; while we have a lunch-room (with a red couch and gaming system) and extra offices to spare. We want to grow even more this year.</p>
<p>After moving in &#8211; the place was in a bit of a shoddy state..</p>
<div id="attachment_833" class="wp-caption aligncenter" style="width: 209px"><a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-9-of-59.jpg"><img class="size-medium wp-image-833" title="2012.01.06-9 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-9-of-59.jpg?w=199&#038;h=300" alt="before we got our shit together" width="199" height="300" /></a><p class="wp-caption-text">discombobulated...</p></div>
<p>After a quick stop at IKEA, we got some new office furniture to get us ready for a busy New Year!</p>
<p><a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-15-of-59.jpg"><img class="size-medium wp-image-834" title="2012.01.06-15 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-15-of-59.jpg?w=199&#038;h=300" alt="espen building a bookcase" width="199" height="300" /></a> <a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-19-of-59.jpg"><img class="size-medium wp-image-835" title="2012.01.06-19 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-19-of-59.jpg?w=199&#038;h=300" alt="marius building a coat stand" width="199" height="300" /></a> <a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-33-of-59.jpg"><img class="size-medium wp-image-836" title="2012.01.06-33 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-33-of-59.jpg?w=199&#038;h=300" alt="david and alexandra helping out" width="199" height="300" /></a> <a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-16-of-59.jpg"><img class="alignnone size-medium wp-image-839" title="2012.01.06-16 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-16-of-59.jpg?w=199&#038;h=300" alt="marius doing assembly" width="199" height="300" /></a></p>
<p>After organizing and cleaning up, we&#8217;re ready to take on the new year</p>
<p><a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-58-of-59.jpg"><img class="alignnone size-medium wp-image-847" title="2012.01.09-58 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-58-of-59.jpg?w=199&#038;h=300" alt="marius can't stop hacking" width="199" height="300" /></a> <a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-47-of-59.jpg"><img class="alignnone size-medium wp-image-843" title="2012.01.09-47 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-47-of-59.jpg?w=199&#038;h=300" alt="troll bowl" width="199" height="300" /></a> <a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-37-of-59.jpg"><img class="alignnone size-medium wp-image-850" title="2012.01.09-37 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-37-of-59.jpg?w=199&#038;h=300" alt="lunch room" width="199" height="300" /></a> <a href="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-51-of-59.jpg"><img class="alignnone size-medium wp-image-851" title="2012.01.09-51 of 59" src="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-51-of-59.jpg?w=199&#038;h=300" alt="coffee" width="199" height="300" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2012%2F01%2F10%2Fnew-office-and-new-employee%2F&amp;linkname=New%20office%20and%20new%20employee!" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/830/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/830/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/830/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/830/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/830/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/830/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/830/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/830/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=830&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2012/01/10/new-office-and-new-employee/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5ee387dea40bdc5b28f769bc1cf7fc2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hhartz</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-28-of-59.jpg?w=300" medium="image">
			<media:title type="html">2012.01.06-28 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-9-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.06-9 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-15-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.06-15 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-19-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.06-19 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-33-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.06-33 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-06-16-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.06-16 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-58-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.09-58 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-47-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.09-47 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-37-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.09-37 of 59</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2012/01/2012-01-09-51-of-59.jpg?w=199" medium="image">
			<media:title type="html">2012.01.09-51 of 59</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Qt Developer Days 2011 in Munich</title>
		<link>http://cutehacks.com/2011/10/28/devdays2011/</link>
		<comments>http://cutehacks.com/2011/10/28/devdays2011/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 09:56:54 +0000</pubDate>
		<dc:creator>espen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt Quick]]></category>
		<category><![CDATA[WiMP]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[android market]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[cutehacks]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[munich]]></category>
		<category><![CDATA[n9]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[QML]]></category>
		<category><![CDATA[qt quick]]></category>
		<category><![CDATA[samsung]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=776</guid>
		<description><![CDATA[We&#8217;re back from Qt Developer Days 2011 in Munich, Germany. What a great show! For those of you who werent&#8217; there here is a small recap of what happened from our perspective. First, some pictures Both Marius and I were &#8230; <a href="http://cutehacks.com/2011/10/28/devdays2011/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=776&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-776" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F10%2F28%2Fdevdays2011%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-cw%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F10%2F28%2Fdevdays2011%2F" height="61" width="51" /></a>
</div>We&#8217;re back from Qt Developer Days 2011 in Munich, Germany. What a great show! For those of you who werent&#8217; there here is a small recap of what happened from our perspective. First, some pictures</p>
<a href="http://cutehacks.com/2011/10/28/devdays2011/#gallery-1-slideshow">Click to view slideshow.</a>
<p>Both Marius and I were presenting in Munich. Marius dissected the code of several of our apps, and explained how QStateMachine makes your life easier. The talk is available here:</p>
<iframe src='http://www.slideshare.net/slideshow/embed_code/9887016' width='500' height='410'></iframe>
<p>I talked about Necessitas, Qt and Qt for Android and basically explained how you publish Qt apps on the Android market. That talk is available here:</p>
<iframe src='http://www.slideshare.net/slideshow/embed_code/9887763' width='500' height='410'></iframe>
<p>Now we gotta work to catch up on other projects!</p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F10%2F28%2Fdevdays2011%2F&amp;linkname=Qt%20Developer%20Days%202011%20in%20Munich" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br /> Tagged: <a href='http://cutehacks.com/tag/android-2/'>android</a>, <a href='http://cutehacks.com/tag/android-market/'>android market</a>, <a href='http://cutehacks.com/tag/apps/'>apps</a>, <a href='http://cutehacks.com/tag/cutehacks/'>cutehacks</a>, <a href='http://cutehacks.com/tag/meego-2/'>meego</a>, <a href='http://cutehacks.com/tag/mobile/'>mobile</a>, <a href='http://cutehacks.com/tag/munich/'>munich</a>, <a href='http://cutehacks.com/tag/n9/'>n9</a>, <a href='http://cutehacks.com/tag/nokia-2/'>nokia</a>, <a href='http://cutehacks.com/tag/qml/'>QML</a>, <a href='http://cutehacks.com/tag/qt/'>Qt</a>, <a href='http://cutehacks.com/tag/qt-quick-2/'>qt quick</a>, <a href='http://cutehacks.com/tag/samsung-2/'>samsung</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/776/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/776/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/776/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=776&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/10/28/devdays2011/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7230e186152cd65eac132b6add7c637a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">espen</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Qt mobile platforms poll</title>
		<link>http://cutehacks.com/2011/08/23/qt-mobile-platforms-poll/</link>
		<comments>http://cutehacks.com/2011/08/23/qt-mobile-platforms-poll/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 13:21:41 +0000</pubDate>
		<dc:creator>marius</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt Quick]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=720</guid>
		<description><![CDATA[We in Cutehacks are trying to gage the developer interest in Qt for Android and Qt for iOS. Thank you for taking the time to answer this short poll. Update: added nice charts so you can see the results so &#8230; <a href="http://cutehacks.com/2011/08/23/qt-mobile-platforms-poll/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=720&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-720" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F08%2F23%2Fqt-mobile-platforms-poll%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-bC%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F08%2F23%2Fqt-mobile-platforms-poll%2F" height="61" width="51" /></a>
</div>We in Cutehacks are trying to gage the developer interest in Qt for Android and Qt for iOS. Thank you for taking the time to answer <a href="http://bit.ly/qtmobilepoll">this short poll</a>.</p>
<p>Update: added nice charts so you can see the results so far.</p>
<p>Update: the poll has ended. A total of 344 people answered our questions. Thanks to everyone that participated!</p>
<p><img class="alignnone" src="https://docs.google.com/a/cutehacks.com/spreadsheet/oimg?key=0Al2rbXFg4WTqdFFnNE8zcjlldm5LekVYeld3VFI0NXc&amp;oid=4&amp;zx=1tjeshf3vfe6" alt="" width="606" height="361" /><img class="alignnone" src="https://docs.google.com/a/cutehacks.com/spreadsheet/oimg?key=0Al2rbXFg4WTqdFFnNE8zcjlldm5LekVYeld3VFI0NXc&amp;oid=5&amp;zx=sxtrt8qe35ce" alt="" width="600" height="371" /><img class="alignnone" src="https://docs.google.com/a/cutehacks.com/spreadsheet/oimg?key=0Al2rbXFg4WTqdFFnNE8zcjlldm5LekVYeld3VFI0NXc&amp;oid=6&amp;zx=otdcknspuzbi" alt="" width="600" height="371" /></p>
<p>You can also play with the interactive charts <a href="http://www.pvv.org/~mariusbu/">here</a>.</p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F08%2F23%2Fqt-mobile-platforms-poll%2F&amp;linkname=Qt%20mobile%20platforms%20poll" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/720/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/720/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/720/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/720/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/720/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/720/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/720/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/720/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=720&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/08/23/qt-mobile-platforms-poll/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c117e3a755b55dee7b512ae4b60cdda8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbm</media:title>
		</media:content>

		<media:content url="https://docs.google.com/a/cutehacks.com/spreadsheet/oimg?key=0Al2rbXFg4WTqdFFnNE8zcjlldm5LekVYeld3VFI0NXc&#38;oid=4&#38;zx=1tjeshf3vfe6" medium="image" />

		<media:content url="https://docs.google.com/a/cutehacks.com/spreadsheet/oimg?key=0Al2rbXFg4WTqdFFnNE8zcjlldm5LekVYeld3VFI0NXc&#38;oid=5&#38;zx=sxtrt8qe35ce" medium="image" />

		<media:content url="https://docs.google.com/a/cutehacks.com/spreadsheet/oimg?key=0Al2rbXFg4WTqdFFnNE8zcjlldm5LekVYeld3VFI0NXc&#38;oid=6&#38;zx=otdcknspuzbi" medium="image" />

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Cutehacks 1st year &#8211; An executive summary</title>
		<link>http://cutehacks.com/2011/08/03/cutehacks-1st-year/</link>
		<comments>http://cutehacks.com/2011/08/03/cutehacks-1st-year/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 10:56:11 +0000</pubDate>
		<dc:creator>espen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Startup]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=697</guid>
		<description><![CDATA[Time flies when you&#8217;re having fun, and we&#8217;ve had lots! It&#8217;s been year since we started Cutehacks. Here is a short summary of what we&#8217;ve achieved, and what we&#8217;ve learned &#8211; the good stuff and the bad stuff. For the &#8230; <a href="http://cutehacks.com/2011/08/03/cutehacks-1st-year/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=697&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-697" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F08%2F03%2Fcutehacks-1st-year%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-bf%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F08%2F03%2Fcutehacks-1st-year%2F" height="61" width="51" /></a>
</div>Time flies when you&#8217;re having fun, and we&#8217;ve had lots! It&#8217;s been year since we started Cutehacks. Here is a short summary of what we&#8217;ve achieved, and what we&#8217;ve learned &#8211; the good stuff and the bad stuff.</p>
<p>For the executive brief, check out the video below.</p>
<span style="text-align:center; display: block;"><a href="http://cutehacks.com/2011/08/03/cutehacks-1st-year/"><img src="http://img.youtube.com/vi/XU3FeYqEoNY/2.jpg" alt="" /></a></span>
<p><strong>Achievements</strong></p>
<ul>
<li>Formed a legal company</li>
<li>Got an office and bought hardware</li>
<li>Got an accountant, lawyer, designer etc.</li>
<li>Published 4 Symbian apps</li>
<ul>
<li><em>Yr.no</em> for NRK</li>
<li><em>Telenor Faktura</em> for Telenor</li>
<li><em>WiMP</em> for Aspiro</li>
<li><em>Fly</em> for ourselves <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<li>Made our Symbian apps run on Maemo, MeeGo and Android as well</li>
<li>Contributed a bit to Qt for Android</li>
<li>Created a UI prototype on Win/Mac/Symbian for a client</li>
<li>Went to Qt Developer Days, Qt Contributor Summit, MeeGo Summit, Akademy, SEE, etc.</li>
<li>Consulted for ad-agencies and printing companies</li>
<li>Stayed at five star hotels &#8211; for FREEEEE</li>
<li>Got 3 minutes on national TV</li>
<li>Got mentioned on lots of mobile sites</li>
<li>Started a tech-startup-network-club-thingy</li>
<li>Got tattooed</li>
<li>Got paid</li>
</ul>
<p><strong>Three things we&#8217;ve learned</strong></p>
<p><em>&#8220;If you set yourself goals, you will actually reach them&#8221;:</em> When we started Cutehacks we said that an ideal project for us would be to develop the WiMP client. One year later, we actually achieved that. We&#8217;ve also worked towards getting our apps running across multiple platforms &#8211; this is also starting to happen.</p>
<p><em>&#8220;Ask and you may receive&#8221;:</em> We&#8217;ve gotten free hardware, new projects and invitations to talks &#8211; simply by asking for it.</p>
<p><em>&#8220;The only constant is change&#8221;:</em> Wow, this one has definitely been true for us. We didn&#8217;t see 2/11 coming &#8211; but once it did, we&#8217;ve simply had to adjust and move on.</p>
<p><strong>Some advice for software startups</strong></p>
<ul>
<li>Use LinkedIn</li>
<li>Use Twitter</li>
<li>Use YouTube</li>
<li>Use Google Apps (Mail, Documents, Calendar)</li>
<li>Use Github (or similar)</li>
<li>Use WordPress (or similar)</li>
<li>Use a professional accountant</li>
<li>Use a professional designer</li>
<li>Present at conferences</li>
<li>Say Yes more than No</li>
<li>Build up your IP</li>
<li>Act professional</li>
<li>Use your network</li>
<li>Ask for things</li>
<li>Get an office</li>
<li>Always look for new projects</li>
<li>Experiment with new technology</li>
<li>Get signed contracts</li>
<li>Always go to a meeting prepared</li>
<li>KISS</li>
<li>Do it</li>
</ul>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F08%2F02%2Fcutehacks-1st-year%2F&amp;linkname=Cutehacks%201st%20year%20-%20An%20executive%20summary" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/697/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/697/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/697/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/697/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/697/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/697/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/697/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/697/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=697&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/08/03/cutehacks-1st-year/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7230e186152cd65eac132b6add7c637a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">espen</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Cutehacks at the Qt Contributers&#8217; Summit</title>
		<link>http://cutehacks.com/2011/06/16/cutehacks-at-the-qt-contributers-summit/</link>
		<comments>http://cutehacks.com/2011/06/16/cutehacks-at-the-qt-contributers-summit/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 15:08:37 +0000</pubDate>
		<dc:creator>marius</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt Quick]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=654</guid>
		<description><![CDATA[A big &#8216;Guten Tag!&#8217; from Berlin and the Qt Contributor&#8217;s Summit! We&#8217;ve already attended the pre-summit Qt for Android meeting and are now at the Café Moscau where the actual summit is taking place.The place is buzzing with sessions and discussions &#8230; <a href="http://cutehacks.com/2011/06/16/cutehacks-at-the-qt-contributers-summit/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=654&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-654" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F06%2F16%2Fcutehacks-at-the-qt-contributers-summit%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-ay%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F06%2F16%2Fcutehacks-at-the-qt-contributers-summit%2F" height="61" width="51" /></a>
</div>A big &#8216;Guten Tag!&#8217; from Berlin and the <a href="http://developer.qt.nokia.com/groups/qt_contributors_summit/wiki">Qt Contributor&#8217;s Summit</a>! We&#8217;ve already attended the pre-summit Qt for Android meeting and are now at the <a href="http://moskauberlin.net/">Café Moscau</a> where the actual summit is taking place.The place is buzzing with sessions and discussions about present and future Qt development. About half the people present are non-Nokians and all are enthusiastic and engaged in shaping the future of their favorite cross-platform toolkit. There are people walking around with various Android devices and iPads running ports of Qt.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://farm2.static.flickr.com/1185/1344926613_5e74e37ae3.jpg" alt="" width="375" height="500" /></p>
<p>So far it&#8217;s been a fun, interesting and productive event. It&#8217;s a great venue and it&#8217;s all been extremely well organized, including working wifi (!) and free drinks. We will stay here until the end of the event on Saturday, so if you&#8217;re in Berlin and want to talk to us, give us a ping or look around for the Cutehacks logo.</p>
<p style="text-align:center;"><a href="http://bit.ly/qcswiki"><img class="aligncenter" src="http://2.bp.blogspot.com/-ncEN95_QyTw/TfZvSpmnAQI/AAAAAAAAALE/07iq2Zys_7M/s320/summit_01.png" alt="" width="196" height="121" /></a></p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F06%2F16%2Fcutehacks-at-the-qt-contributers-summit%2F&amp;linkname=Cutehacks%20at%20the%20Qt%20Contributers%27%20Summit" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/654/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=654&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/06/16/cutehacks-at-the-qt-contributers-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c117e3a755b55dee7b512ae4b60cdda8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbm</media:title>
		</media:content>

		<media:content url="http://farm2.static.flickr.com/1185/1344926613_5e74e37ae3.jpg" medium="image" />

		<media:content url="http://2.bp.blogspot.com/-ncEN95_QyTw/TfZvSpmnAQI/AAAAAAAAALE/07iq2Zys_7M/s320/summit_01.png" medium="image" />

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Cutehacks targeting Android, Symbian and more</title>
		<link>http://cutehacks.com/2011/04/04/cutehacks-on-android/</link>
		<comments>http://cutehacks.com/2011/04/04/cutehacks-on-android/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 18:51:15 +0000</pubDate>
		<dc:creator>espen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Maemo]]></category>
		<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Tablet]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=631</guid>
		<description><![CDATA[Here is a video of two apps developed by Cutehacks: Yr.no and Fly running on Android 2.2 and Symbian. These native apps were originally written for Symbian but run great on Android as well: Using Qt for Android (more specifically &#8230; <a href="http://cutehacks.com/2011/04/04/cutehacks-on-android/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=631&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-631" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F04%2F04%2Fcutehacks-on-android%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-ab%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F04%2F04%2Fcutehacks-on-android%2F" height="61" width="51" /></a>
</div>Here is a video of two apps developed by Cutehacks: <a href="http://store.ovi.com/content/83319?lang=en">Yr.no</a> and <a href="http://store.ovi.com/content/81300?lang=en">Fly</a> running on Android 2.2 and Symbian. These native apps were originally written for Symbian but run great on Android as well:</p>
<span style="text-align:center; display: block;"><a href="http://cutehacks.com/2011/04/04/cutehacks-on-android/"><img src="http://img.youtube.com/vi/uGoRcumcGqc/2.jpg" alt="" /></a></span>
<p>Using Qt for Android (more specifically <a href="http://sourceforge.net/p/necessitas/home/">Necessitas </a>and <a href="http://sourceforge.net/p/necessitas/ministro/home/">Ministro</a>), the amount of code changes we had to do were <a href="http://pastebin.com/i5CQArbP">minimal</a>. This shows the power of Qt &#8211; it truly <em>is</em> cross-platform. Too see these apps running on MeeGo and Maemo as well &#8211; check out <a href="http://www.youtube.com/watch?v=WdydE-biCr0">this video</a>.</p>
<p>None of the apps above are available in Android Market yet. Be assured we&#8217;ll tell you when/if that happens <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F04%2F04%2Fcutehacks-on-android%2F&amp;linkname=Cutehacks%20targeting%20Android%2C%20Symbian%20and%20more" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/631/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=631&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/04/04/cutehacks-on-android/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7230e186152cd65eac132b6add7c637a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">espen</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>Cross platform apps at MWC</title>
		<link>http://cutehacks.com/2011/02/14/cross-platform-apps-at-mwc/</link>
		<comments>http://cutehacks.com/2011/02/14/cross-platform-apps-at-mwc/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:29:29 +0000</pubDate>
		<dc:creator>espen</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Maemo]]></category>
		<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[OVI]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=610</guid>
		<description><![CDATA[Three of our apps are being shown at the Mobile World Congress this year, for several different devices. If you want to have a look at them in real life head over to the Qt booth located here. The video &#8230; <a href="http://cutehacks.com/2011/02/14/cross-platform-apps-at-mwc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=610&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-610" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F14%2Fcross-platform-apps-at-mwc%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-9Q%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F14%2Fcross-platform-apps-at-mwc%2F" height="61" width="51" /></a>
</div>Three of our apps are being shown at the <a title="MWC 2011" href="http://www.mobileworldcongress.com/index.htm">Mobile World Congress</a> this year, for several different devices. If you want to have a look at them in real life head over to the Qt booth <a title="Map to Qt booth at MWC 2011" href="http://qt.nokia.com/images/events/mwc-map-2011">located here</a>.</p>
<p>The video below shows our apps running on a few of the many platforms supported by Qt.</p>
<span style="text-align:center; display: block;"><a href="http://cutehacks.com/2011/02/14/cross-platform-apps-at-mwc/"><img src="http://img.youtube.com/vi/WdydE-biCr0/2.jpg" alt="" /></a></span>
<p>As you may know, Qt has been a cross-platform toolkit from day one, and supports many more mobile platforms than just Symbian and MeeGo. Here is a list of some of the different mobile platforms Qt runs on today:</p>
<table width="100%">
<tbody>
<tr>
<th>Mobile OS</th>
<th>Support</th>
<th>Links</th>
</tr>
<tr>
<td>Android</td>
<td><a href="http://gitorious.org/~taipan/qt/android-lighthouse">Community</a></td>
<td><a href="http://www.youtube.com/watch?v=xtA_7kaB-0g">Video</a></td>
</tr>
<tr>
<td>iOS</td>
<td><a href="http://qt.gitorious.org/+qt-iphone/qt/qt-iphone-clone">Community</a></td>
<td><a href="http://www.youtube.com/watch?v=cM_QXut3rj8">Video</a></td>
</tr>
<tr>
<td>Windows Mobile</td>
<td><a href="http://doc.qt.nokia.com/latest/supported-platforms.html">Official</a></td>
<td><a href="http://www.youtube.com/watch?v=Qhba1lhBllM">Video</a></td>
</tr>
<tr>
<td>webOS</td>
<td><a href="http://opensource.palm.com/2.0.0/index.html">Community</a></td>
<td><a href="http://www.precentral.net/qt-app-platform-and-running-palm-pre">Article</a></td>
</tr>
<tr>
<td>QNX (Blackberry Playbook)</td>
<td><a href="http://doc.trolltech.com/4.7/platform-notes-qnx.html">Community</a></td>
<td><a href="http://www.youtube.com/watch?v=U05iuHL2b9M">Video</a></td>
</tr>
<tr>
<td>Symbian</td>
<td><a href="http://doc.qt.nokia.com/latest/supported-platforms.html">Official</a></td>
<td><a href="http://www.youtube.com/watch?v=WdydE-biCr0">Video</a></td>
</tr>
<tr>
<td>Maemo/MeeGo</td>
<td><a href="http://doc.qt.nokia.com/latest/supported-platforms.html">Official</a></td>
<td><a href="http://www.youtube.com/watch?v=WdydE-biCr0">Video</a></td>
</tr>
</tbody>
</table>
<p>&#8230;and there have been reports on success getting it running for Bada and Amazon Kindle as well. Go to the <a href="http://qt.nokia.com/images/events/mwc-map-2011">Qt booth</a> to see more apps running across both desktop and mobile platforms.</p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F14%2Fcross-platform-apps-at-mwc%2F&amp;linkname=Cross%20platform%20apps%20at%20MWC" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/610/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=610&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/02/14/cross-platform-apps-at-mwc/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7230e186152cd65eac132b6add7c637a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">espen</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>We&#8217;re on Ovi!</title>
		<link>http://cutehacks.com/2011/02/10/we-are-on-ovi/</link>
		<comments>http://cutehacks.com/2011/02/10/we-are-on-ovi/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 17:26:28 +0000</pubDate>
		<dc:creator>marius</dc:creator>
				<category><![CDATA[Nokia]]></category>
		<category><![CDATA[OVI]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=582</guid>
		<description><![CDATA[It&#8217;s a big day for us here at Cutehacks: our first three apps are now available on the Ovi Store. It&#8217;s a great feeling to finally have people downloading and using our apps. Here they are: Fly Shows flight departure &#8230; <a href="http://cutehacks.com/2011/02/10/we-are-on-ovi/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=582&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><div class="tweetmeme-button" id="tweetmeme-button-post-582" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F10%2Fwe-are-on-ovi%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-9o%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F10%2Fwe-are-on-ovi%2F" height="61" width="51" /></a>
</div>It&#8217;s a big day for us here at Cutehacks: our first three apps are now available on the <a href="http://store.ovi.com/">Ovi Store</a>. It&#8217;s a great feeling to finally have people downloading and using our apps. Here they are:</p>
<table>
<tbody>
<tr>
<td><a href="http://store.ovi.com/content/81300"><br />
<img class="alignleft size-full wp-image-504" title="Fly" src="http://cutehacks.files.wordpress.com/2011/02/flypromo.png?w=500" alt=""   /><br />
</a></td>
<td>
<h3>Fly</h3>
<p><span style="font-size:13px;font-weight:normal;"> Shows flight departure and arrival times for 46 airports in Norway. Using live data from Avinor.</span></p>
<table>
<tbody>
<tr>
<td><a href="http://store.ovi.com/content/81300"><img class="size-full wp-image-556 alignnone" title="Download from Ovi" src="http://cutehacks.files.wordpress.com/2011/02/ovistore-logo48.png?w=500" alt=""   /></a></td>
<td><a href="http://www.youtube.com/watch?v=NO_1vy5ykBI"><img class="size-full wp-image-557 alignnone" title="Watch on youtube" src="http://cutehacks.files.wordpress.com/2011/02/youtube_logo48.png?w=500" alt=""   /></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><a href="http://store.ovi.com/content/82592"><img class="alignleft size-full wp-image-505" title="Telenor Faktura" src="http://cutehacks.files.wordpress.com/2011/02/telenorfakturapromo.png?w=500" alt=""   /></a></td>
<td>
<h3>Telenor Faktura</h3>
<p><span style="font-size:13px;font-weight:normal;">Telenor Faktura gives you an overview of your mobile subscription. This application is intended for use with Telenor Norway subscriptions only.</span></p>
<table>
<tbody>
<tr>
<td><a href="http://store.ovi.com/content/82592"><img class="size-full wp-image-556 alignnone" title="Download in Ovi" src="http://cutehacks.files.wordpress.com/2011/02/ovistore-logo48.png?w=500" alt=""   /></a></td>
<td><a href="http://www.youtube.com/watch?v=kLz8NU96IP0"><img class="size-full wp-image-557 alignnone" title="Watch on youtube" src="http://cutehacks.files.wordpress.com/2011/02/youtube_logo48.png?w=500" alt=""   /></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><a href="http://store.ovi.com/content/8331"><img class="alignleft size-full wp-image-506" title="Yr.no" src="http://cutehacks.files.wordpress.com/2011/02/yrpromo.png?w=500" alt=""   /></a></td>
<td>
<h3>Yr.no</h3>
<p><span style="font-size:13px;font-weight:normal;">Search in 8 million weather forecasts for Norway and the world from yr.no, or use GPS to find your nearest location. Contains weather forecasts, textual forecasts, meteograms and extreme weather warnings. Yr.no is a service from the Norwegian Meteorological Institute and NRK.</span></p>
<table>
<tbody>
<tr>
<td><a href="http://store.ovi.com/content/83319"><img class="size-full wp-image-556 alignnone" title="Download in Ovi" src="http://cutehacks.files.wordpress.com/2011/02/ovistore-logo48.png?w=500" alt=""   /></a></td>
<td><a href="http://www.youtube.com/watch?v=RiL0zKHZJxI"><img class="size-full wp-image-557 alignnone" title="Watch on youtube" src="http://cutehacks.files.wordpress.com/2011/02/youtube_logo48.png?w=500" alt=""   /></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p>Download and enjoy! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F10%2Fwe-are-on-ovi%2F&amp;linkname=We%27re%20on%20Ovi!" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/582/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=582&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/02/10/we-are-on-ovi/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c117e3a755b55dee7b512ae4b60cdda8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbm</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/flypromo.png" medium="image">
			<media:title type="html">Fly</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/ovistore-logo48.png" medium="image">
			<media:title type="html">Download from Ovi</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/youtube_logo48.png" medium="image">
			<media:title type="html">Watch on youtube</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/telenorfakturapromo.png" medium="image">
			<media:title type="html">Telenor Faktura</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/ovistore-logo48.png" medium="image">
			<media:title type="html">Download in Ovi</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/youtube_logo48.png" medium="image">
			<media:title type="html">Watch on youtube</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/yrpromo.png" medium="image">
			<media:title type="html">Yr.no</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/ovistore-logo48.png" medium="image">
			<media:title type="html">Download in Ovi</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/youtube_logo48.png" medium="image">
			<media:title type="html">Watch on youtube</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
		<item>
		<title>28 days later &#8211; an Ovi survival guide</title>
		<link>http://cutehacks.com/2011/02/01/28-days-later/</link>
		<comments>http://cutehacks.com/2011/02/01/28-days-later/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 13:08:44 +0000</pubDate>
		<dc:creator>espen</dc:creator>
				<category><![CDATA[OVI]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://cutehacks.com/?p=456</guid>
		<description><![CDATA[At the moment we have 3 apps pending in the Ovi store. During the submission process we gained some knowledge that might save you some time when you&#8217;re going through the same process. This blog post is meant as a &#8230; <a href="http://cutehacks.com/2011/02/01/28-days-later/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=456&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme-button" id="tweetmeme-button-post-456" style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'>
<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F01%2F28-days-later%2Ftweetmeme_alias%3Dhttp%3A%2F%2Fwp.me%2FpPoYq-7m%26tweetmeme_source%3Dcutehacks"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F01%2F28-days-later%2F" height="61" width="51" /></a>
</div>
<p>At the moment we have 3 apps pending in the Ovi store. During the submission process we gained some knowledge that might save you some time when you&#8217;re going through the same process. This blog post is meant as a survival guide, so I thought <a href="http://www.imdb.com/title/tt0289043/">28 days later</a> was a fitting title, allthough our apps are still pending after 41 days. Here are the issues we ran into so far, and how to avoid them:</p>
<h3><img class="aligncenter size-full wp-image-486" title="OVI Survival Guide" src="http://cutehacks.files.wordpress.com/2011/02/ovi_survival.png?w=500" alt="OVI Survival Guide"   /></h3>
<h3>Issue #1 &#8211; Vendor vs Publisher</h3>
<p>If you have developed an app for another company and now want to publish it through their publishing account, make sure the Vendor listed in the .sis file is the same as the Publisher name. Otherwise you&#8217;ll get an error. This is inspected manually by Ovi QA and took two weeks for them to report back. Here is the error message:</p>
<blockquote><p>SUMMARY: The Vendor Name listed in your package file is &#8220;Cutehacks AS&#8221;<br />
CORRECTIVE ACTION: The Vendor Name listed in your package file must match your publisher name &#8220;NRK&#8221;</p></blockquote>
<p>There are two ways to resolve this. Either get the owner of the publisher account (the company you made it for) to tell Ovi in an email: &#8220;It&#8217;s OK &#8211; really. It&#8217;s fine!&#8221;. Or, fix the Vendor part in your .pkg script. Google it if you don&#8217;t know how.</p>
<h3>Issue #2 &#8211; Countries vs Language</h3>
<p>When submitting a .sis file you tell which languages it supports, and also which countries it should be published in. There is a correlation between these two, and if you haven&#8217;t guessed it right &#8211; your app will fail. To exemplify:  If you put as countries: <em>Worldwide</em>, and languages: <em>American English, Norwegian</em> &#8211; it will fail. You are not allowed to publish an app worldwide if it&#8217;s only in American English and Norwegian. Here is the error we got:</p>
<blockquote><p>SUMMARY: Localized content must be set to its localized region<br />
ACTUAL RESULT: American English  and Norwegian are the only supported language selected by the publisher  however the content is selected to be distributed Neutral<br />
EXPECTED RESULT: Only Canada, US or Finland, Norway, Sweden, Norway,  Denmark regions can be selected in the country distribution if the  content is localized in American English or Norwegian.</p></blockquote>
<p>Now this check is also done manually, and it took them two weeks to report this back to us. In other words, there is an internal list inside Ovi of which languages must be supported to be able to distribute it to certain countries. This list is not documented anywhere as far as I know. Note they make a distinction between <em>English</em> and <em>American English</em>, and actually disallow the app to be distributed to the UK, Australia, India.</p>
<h3>Issue #3 &#8211; Smart Installer warning notice</h3>
<p>Since our apps are using Qt, which on older phones are not yet included, they may in some cases require a download of up to 13 megs. If you don&#8217;t put a warning at the top of your app description that states this, they will fail your Qt based app. Here is the error:</p>
<blockquote><p>ISSUE: Description for Qt Smart Installer content requires additional information<br />
SUMMARY: Items utilizing the Qt SmartInstaller requires an additional disclaimer in the description<br />
CORRECTIVE ACTIONS: Please add the disclaimer below to the beginning of  the metadata description informing users that additional downloads may  be required</p></blockquote>
<p>Now to be fair, in two out of three cases the QA guys just added the warning note for us and we didn&#8217;t get an error &#8211; but in one case the app was simply just failed. This also took them about two weeks to notice and must also have been checked manually. The warning notice needs to read: <em>*This item may require a one-time download of components as large as 13 MB. Use of WLAN is recommended.</em> It needs to be translated to all the languages you support as well.</p>
<h3>Summary and conclusion</h3>
<p>We submitted 3 apps 41 days ago. They are all still pending:</p>
<ul>
<li> Two are still pending for Symbian^3 phones: Reason unknown</li>
<li>One is still pending for Symbian^1 and Symbian^3: Reason unknown</li>
<li>Note that no actual software bugs have been reported yet for any of the apps</li>
</ul>
<p>All reported issues so far have been fixed within hours and then resubmitted to Ovi.</p>
<p><a href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcutehacks.com%2F2011%2F02%2F01%2F28-days-later%2F&amp;linkname=28%20days%20later%20-%20an%20OVI%20survival%20guide" target="_blank"><img src="http://static.addtoany.com/buttons/favicon.png" alt="Share" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cutehacks.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cutehacks.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cutehacks.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cutehacks.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cutehacks.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cutehacks.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cutehacks.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cutehacks.wordpress.com/456/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cutehacks.com&amp;blog=12250730&amp;post=456&amp;subd=cutehacks&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cutehacks.com/2011/02/01/28-days-later/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7230e186152cd65eac132b6add7c637a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">espen</media:title>
		</media:content>

		<media:content url="http://cutehacks.files.wordpress.com/2011/02/ovi_survival.png" medium="image">
			<media:title type="html">OVI Survival Guide</media:title>
		</media:content>

		<media:content url="http://static.addtoany.com/buttons/favicon.png" medium="image">
			<media:title type="html">Share</media:title>
		</media:content>
	</item>
	</channel>
</rss>
