<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Surgeworks — Blog»  – Surgeworks — Blog</title>
	
	<link>http://surgeworks.com/blog</link>
	<description>Development Done Right</description>
	<lastBuildDate>Fri, 23 Jul 2010 09:18:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SurgeworksBlog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="surgeworksblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Using Raw SQL snippets to create Thinking-Sphinx Indexes</title>
		<link>http://surgeworks.com/blog/rails/using-raw-sql-snippets-to-create-thinking-sphinx-indexes</link>
		<comments>http://surgeworks.com/blog/rails/using-raw-sql-snippets-to-create-thinking-sphinx-indexes#comments</comments>
		<pubDate>Mon, 17 May 2010 21:00:40 +0000</pubDate>
		<dc:creator>Cássio Marques</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[sphinx]]></category>
		<category><![CDATA[thinking-sphinx]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1454</guid>
		<description><![CDATA[We have used Thinking-Sphinx in several projects to implement search engines. Thinking-Sphinx is a wrapper in Ruby to use ActiveRecord with Sphinx. But in the project I&#8217;m working right now I had to solve a different problem: the user should be able to search for formatted values, however without using the formatting characters, i.e, suppose [...]]]></description>
			<content:encoded><![CDATA[<p>We have used <a href="http://freelancing-god.github.com/ts/en/">Thinking-Sphinx</a> in several projects to implement search engines. Thinking-Sphinx is a wrapper in Ruby to use ActiveRecord with <a href="http://www.sphinxsearch.com/">Sphinx</a>. But in the project I&#8217;m working right now I had to solve a different problem: the user should be able to search for formatted values, however without using the formatting characters, i.e, suppose a field containing 111.444.777-35, the user should be able to find it searching for 11144477735 (or a substring of it).</p>
<p>The default behaviour for Thinking-Sphinx is to index the exact values for each column it scans, but we can by-pass it. The Thinking-Sphinx index definition allows us to use raw SQL to define which values should be indexed for each attribute. In my case, I used the native PostgreSQL regular expressions functions to get rid of the punctuation characters, indexing only the &#8220;clean&#8221; version of each value. My database column is called &#8220;entity_number&#8221;:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">define_index <span style="color:#9966CC; font-weight:bold;">do</span> 
  indexes <span style="color:#996600;">&quot;regexp_replace(entity_number, E'<span style="color:#000099;">\[</span><span style="color:#000099;">\[</span><span style="color:#000099;">\:</span>punct<span style="color:#000099;">\:</span><span style="color:#000099;">\]</span><span style="color:#000099;">\]</span>', '', 'g')&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:as</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#ff3333; font-weight:bold;">:raw_entity_number</span>
  group_by <span style="color:#996600;">&quot;raw_entity_number&quot;</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>However, there are two gotchas:</p>
<ul>
<li>The regular expression metacharacters have to be escaped, so Sphinx can build the right SQL query. If you will or will not need to do the same, will depend on what you&#8217;re using inside your SQL snippet. </li>
<li>Sphinx has to put each indexed column in a GROUP BY clause. By default, fields created like I did above are not automatically included in this clause, so your indexing will fail. You&#8217;ll need to explicitly include your new field to the GROUP BY clause using &#8220;group_by :raw_entity_number&#8221;. The new field name will be appended to the query, without messing up the values already present in it.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/rails/using-raw-sql-snippets-to-create-thinking-sphinx-indexes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send a large quantity of email in Rails, using ar_mailer</title>
		<link>http://surgeworks.com/blog/general/how-to-send-a-large-quantity-of-email-in-rails-using-ar_mailer</link>
		<comments>http://surgeworks.com/blog/general/how-to-send-a-large-quantity-of-email-in-rails-using-ar_mailer#comments</comments>
		<pubDate>Wed, 12 May 2010 23:17:32 +0000</pubDate>
		<dc:creator>Radu Cojocaru</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1403</guid>
		<description><![CDATA[Sending a large number of emails is not an easy task. It can take a lot of time so you need to do it asynchronously. Also, if you are on a shared hosting, you might be limited to a certain number of emails per hour, so you need to divide your list of email addresses in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://surgeworks.com/blog/wp-content/uploads/2010/03/email-newsletter.jpg"><img class="alignleft size-full wp-image-1409" title="email-newsletter" src="http://surgeworks.com/blog/wp-content/uploads/2010/03/email-newsletter.jpg" alt="email-newsletter" width="200" height="150" /></a>Sending a large number of emails is not an easy task. It can take a lot of time so you need to do it asynchronously. Also, if you are on a shared hosting, you might be limited to a certain number of emails per hour, so you need to divide your list of email addresses in batches and send them at certain intervals.</p>
<p>There&#8217;s a plugin that can help us with this: <a title="ar_mailer" href="http://github.com/adzap/ar_mailer">ar_mailer</a>.</p>
<p>This plugin adds a new deliver method to ActionMailer::Base <strong>:activerecord</strong>. In this delivery method, emails are not actually delivered, they are stored into a database table. A ruby script <strong>ar_sendmail</strong> can then be run (in a cron job) in order to send the emails saved in the database.</p>
<p>Step by step intructions on how to use the plugin:</p>
<p><strong>1) Install the plugin</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>script<span style="color: #000000; font-weight: bold;">/</span>plugin <span style="color: #c20cb9; font-weight: bold;">install</span> git:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>adzap<span style="color: #000000; font-weight: bold;">/</span>ar_mailer.git</pre></div></div>

<p>Add following line to <em>config/environment.rb</em>:</p>

<div class="wp_syntax"><div class="code"><pre class="rails" style="font-family:monospace;">config.<span style="color:#9900CC;">gem</span> <span style="color:#996600;">&quot;adzap-ar_mailer&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:source</span> =<span style="color:#006600; font-weight:bold;">&amp;</span>gt; <span style="color:#996600;">'http://gems.github.com'</span></pre></div></div>

<p><strong>2) Create table to store emails</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>script<span style="color: #000000; font-weight: bold;">/</span>generate ar_mailer</pre></div></div>

<p>This will create the <em><strong>Email</strong></em><em><strong> <span style="font-style: normal;">model</span></strong></em> (and <strong><em>emails</em></strong><strong><em> </em>table</strong>) in which emails will be stored before sending.</p>
<p><strong>3) Create mailer class</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>script<span style="color: #000000; font-weight: bold;">/</span>generate mailer Newsletter</pre></div></div>

<p>Add the following line to <em>app/models/newsletter.rb</em>:</p>

<div class="wp_syntax"><div class="code"><pre class="rails" style="font-family:monospace;"><span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">delivery_method</span> = <span style="color:#ff3333; font-weight:bold;">:activerecord</span></pre></div></div>

<p>You can now add in your controller the code to send emails (<em>Newsletter.deliver_name_of_method</em>). To test that everything is fine so far you can open your web app and perform an action that should send an email, then fire up the console and check <em>emails</em> table (you should see your email in <em>Email.all</em>).</p>
<p>You can also run <strong>ar_sendmail &#8211;mailq</strong> (in the project&#8217;s root directory) to check if the are emails in the queue (waiting the be sent).</p>
<p><strong>4) Setup cron job to send emails in batches</strong></p>
<p>We can run ar_sendmail as a daemon or put it in a cron job. The script will take emails from <em>emails</em> table and deliver them (after delivery emails will be deleted from the table). I prefer the second one. Here&#8217;s the command that you have to put in your cron file to send batches of 100 emails at intervals of 5 minutes:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">*/</span><span style="color: #000000;">5</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>path-to-web-app<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">&amp;</span>amp;<span style="color: #000000; font-weight: bold;">&amp;</span>amp; ar_sendmail <span style="color: #660033;">-o</span> <span style="color: #660033;">--batch-size</span> <span style="color: #000000;">100</span> <span style="color: #660033;">--environment</span> production <span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt; log<span style="color: #000000; font-weight: bold;">/</span>cron.log <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>amp;<span style="color: #000000;">1</span></pre></div></div>

<p>This command also puts the output of ar_sendmail in log/cron.log.</p>
<p>It&#8217;s a good practice to redirect output from all your cron jobs to some log files (I use <em>log/cron.log</em>). This way you have details when something goes wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/general/how-to-send-a-large-quantity-of-email-in-rails-using-ar_mailer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook GUI free PSD resource</title>
		<link>http://surgeworks.com/blog/design/facebook-gui-free-psd-resource</link>
		<comments>http://surgeworks.com/blog/design/facebook-gui-free-psd-resource#comments</comments>
		<pubDate>Sat, 24 Apr 2010 00:07:28 +0000</pubDate>
		<dc:creator>Ney Ricardo</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1412</guid>
		<description><![CDATA[Facebook developers already have a useful info on Facebook components documentation, i.e., they count on Facebook FBML wiki as reference.
Thinking of designers and, of course, ourselves as designers, we made a Facebook Graphic User Interface (FBGUI) resource kit for Photoshop to make our work easier.

The purpose is to speed up Facebook interface design, sparing you [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook developers already have a useful info on Facebook components documentation, i.e., they count on <a title="FBML wiki" href="http://wiki.developers.facebook.com/index.php/FBML" target="_blank">Facebook FBML wiki</a> as reference.</p>
<p>Thinking of designers and, of course, ourselves as designers, we made a <strong>Facebook Graphic User Interface</strong> (FBGUI) <strong>resource kit for Photosho</strong>p to make our work easier.</p>
<p><img class="alignleft size-full wp-image-1427" title="fb-gui-thumb" src="http://surgeworks.com/blog/wp-content/uploads/2010/04/fb-gui-thumb.jpg" alt="fb-gui-thumb" width="690" height="500" /></p>
<p>The purpose is to speed up Facebook interface design, sparing you from drawing all the comps and letting you customize all the texts, buttons and data as you need.</p>
<p>The kit brings the Facebook vector icon and logo. Also, since the focus of this resource are the UI elements, it brings a main window with the header, menu and the chat window for you to set up your realistic mock-ups. Cannot forget to mention all the modal components, comment boxes, buttons, message boxes, tabs, etc.</p>
<p>Needless to say, all the components are full layered, built using vectors and blending options, so that scaling and editing the objects will not be a problem for the designer.</p>
<p>We&#8217;re sure we&#8217;ll notice lots of missing elements and will keep updating</p>
<p>So, feel free to share and use at will. Also feel free to send us a feedback to help us improve it with something we haven&#8217;t thought earlier.</p>
<div style="text-align: center; position: relative; clear: both"><a style="border:none; background-color:transparent;" href="http://media.libsyn.com/media/surgeworks/facebook-gui-psd.zip"><img class="size-full wp-image-1432  aligncenter" style="float: none; margin:auto; border:none;" title="Download Facebook PSD GUI" src="http://surgeworks.com/blog/wp-content/uploads/2010/04/DFGUI.png" alt="Download Facebook PSD GUI" width="296" height="47" /></a></div>
<p>I’d appreciate it if you let others know about the PSD if you download it. <a href="http://twitter.com/home?status=RT%20%40surgeworks%20Facebook%20GUI%20free%20PSD%20resource%20http%3A%2F%2Fbit.ly%2FaeETl6">Tweet</a> this or blog it. Thank you!</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/design/facebook-gui-free-psd-resource/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iPad Characteristics</title>
		<link>http://surgeworks.com/blog/general/ipad-characteristics</link>
		<comments>http://surgeworks.com/blog/general/ipad-characteristics#comments</comments>
		<pubDate>Sun, 28 Feb 2010 13:41:50 +0000</pubDate>
		<dc:creator>Ivan Kalaica</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1395</guid>
		<description><![CDATA[This is abstract about key iPad features and characteristics. Here you can learn few differences between iPhone and iPad phenomenon. :)

Split view – you can use this iPad-only element to display more than one view onscreen at a time, such as to present data in a master-detail or source list–style arrangement. The split view is a [...]]]></description>
			<content:encoded><![CDATA[<p style="font-size: 14px; line-height: 1.4em; margin-top: 3px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;">This is abstract about key iPad features and characteristics. Here you can learn few differences between iPhone and iPad phenomenon. :)</p>
<ol style="margin-top: 3px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;">
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">Split view – you can use this iPad-only element to display more than one view onscreen at a time, such as to present data in a master-detail or source list–style arrangement. The split view is a common organizational element in iPad applications because it helps flatten the information hierarchy.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">Popover – you can use this iPad-only view to temporarily display additional information, controls, or choices related to content in the main view. The main benefit of the popover is that it can contain information or choices that don’t need to be in the main interface all the time.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">Results list button – you can use this system-provided button to reveal search results from a search bar.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">Modal views have new presentation styles – you can use styles such as full screen, partial screen, and form to present a modal interface that’s more closely tailored to your application’s user experience and visual design.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">Toolbars can be in additional locations – you can place a toolbar at the top or the bottom of a screen. You can also use a toolbar inside a split view or a popover.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">The edit menu can display custom items – you can supply menu items to augment or replace the standard Cut, Copy, Paste, Select, and Select All commands.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">The keyboard view can be customized – you can replace the system-provided keyboard view with a custom view that contains custom buttons.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">The keyboard view can include custom input accessories – you can supply auxiliary keyboard controls that users can tap to input application-defined content.</li>
<li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; font-size: 14px; line-height: 1.4em;">Custom text views can support text in multiple styles and offer advanced editing features – You can offer word-processing capabilities and support spell checking and autocompletion for text entry.</li>
</ol>
<p style="font-size: 14px; line-height: 1.4em; margin-top: 3px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;"><strong>iPhone Applications – iPhone applications are optimized to run on iPhone and iPod touch. These applications run on iPad in their original resolution or can be optionally set to be pixel- doubled to accommodate for the larger display.</strong></p>
<p><strong> </strong></p>
<p style="font-size: 14px; line-height: 1.4em; margin-top: 3px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;"><strong>iPad Applications – iPhone </strong><span><strong>SDK 3</strong></span><strong>.2 supports the development of iPad applications that are optimized to take advantage of iPad features, but run only on iPad.</strong></p>
<p style="font-size: 14px; line-height: 1.4em; margin-top: 3px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;"><strong>Universal Applications – iPhone <span>SDK 3</span>.2 supports the development of Universal applications. A Universal app is optimized to run on all iPhone OS devices—itʼs essentially an iPhone app and an iPad app built as a single binary.</strong></p>
<p style="font-size: 14px; line-height: 1.4em; margin-top: 3px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;"><strong><span style="font-weight: normal;">Cheers!</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/general/ipad-characteristics/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iBoobs banned from the App Store: no more sexy ladies (or men) on the iPhone.</title>
		<link>http://surgeworks.com/blog/iphone/iboobs-banned-from-the-app-store-no-more-sexy-ladies-or-men-on-the-iphone</link>
		<comments>http://surgeworks.com/blog/iphone/iboobs-banned-from-the-app-store-no-more-sexy-ladies-or-men-on-the-iphone#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:44:01 +0000</pubDate>
		<dc:creator>Mauro Dalu</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1392</guid>
		<description><![CDATA[With iPhone OS 3.0, Apple added an age rating system for applications. This not only allowed parents to set appropriate application access for their families, but also opened up the potential for developers to release applications with more adult-oriented content, until Apple received &#8220;numerous complaints&#8221; from users asking for the &#8220;Wobble iBoobs&#8221; app to be [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1391" title="iPhone-Bans-Boobs-5000-apps" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/iPhone-Bans-Boobs-5000-apps.jpg" alt="iPhone-Bans-Boobs-5000-apps" width="300" height="300" />With iPhone OS 3.0, Apple added an age rating system for applications. This not only allowed parents to set appropriate application access for their families, but also opened up the potential for developers to release applications with more adult-oriented content, until Apple received &#8220;numerous complaints&#8221; from users asking for the &#8220;Wobble iBoobs&#8221; app to be removed from the App Store.<span id="more-1392"></span></p>
<p>Developer ChilliFresh, creator of the offending application which has been removed from the App Store last week, claimed that a discussion with Apple revealed the company removed more than 5,000 &#8220;overtly sexual&#8221; applications from the App Store. However, other adult oriented content, such as the official 99 cent Playboy app, remains for sale.</p>
<p>The developer, ChilliFresh, claimed that an Apple representative said images of both women and men in bikinis are inappropriate, as are words that have a sexual connotation. Apple allegedly is not allowing applications that can be &#8220;sexually arousing,&#8221; or that imply sexual content.</p>
<p>That number was supported by tracking from AppShopper.com, which found that more that nearly 4,000 applications were removed last Friday, Feb. 18. The total number of removed applications is said to have amounted to roughly 3 percent of the entire App Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/iphone/iboobs-banned-from-the-app-store-no-more-sexy-ladies-or-men-on-the-iphone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel Moblin + Nokia Maemo = MeeGo</title>
		<link>http://surgeworks.com/blog/iphone/intel-moblin-nokia-maemo-meego</link>
		<comments>http://surgeworks.com/blog/iphone/intel-moblin-nokia-maemo-meego#comments</comments>
		<pubDate>Fri, 19 Feb 2010 11:49:36 +0000</pubDate>
		<dc:creator>Mauro Dalu</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[symbian]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1383</guid>
		<description><![CDATA[Intel&#8217;s Mobilin and Nokia&#8217;s Maemo, two Linux-based mobile operating systems, will be merged into one platform. Intel and Nokia said the MeeGo platform will extend beyond smartphones and will be flexible enough to scale to larger devices like full-fledged computers or in-car systems.
The first devices running MeeGo, including a new phone from Nokia, are expected [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://surgeworks.com/blog/wp-content/uploads/2010/02/MeeGo-Intel-Nokia-OS.jpg" alt="MeeGo-Intel-Nokia-OS" title="MeeGo-Intel-Nokia-OS" width="300" height="300" class="alignleft size-full wp-image-1384" />Intel&#8217;s Mobilin and Nokia&#8217;s Maemo, two Linux-based mobile operating systems, will be merged into one platform. Intel and Nokia said the MeeGo platform will extend beyond smartphones and will be flexible enough to scale to larger devices like full-fledged computers or in-car systems.</p>
<p>The first devices running MeeGo, including a new phone from Nokia, are expected to arrive later in 2010.<span id="more-1383"></span></p>
<p>Both companies will keep their separate application stores: Intel&#8217;s AppUp for netbooks, and Nokia&#8217;s Ovi software store will remain.</p>
<p>Intel announced its Moblin operating system for low-cost notebooks based on the Atom processor. And Nokia&#8217;s Maemo 5.0, first introduced last summer, was expected to replace Symbian in the company&#8217;s high-end smartphones. The move would seem to signal the end of both platforms. The recent move to <a href="http://surgeworks.com/blog/iphone/nokias-symbian-goes-open-source-market-share-dropping-still-dominates-the-market">open source symbian</a> also means Nokia still intends to sell smartphones based on its Symbian platform, likely on entry level devices.</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/iphone/intel-moblin-nokia-maemo-meego/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nokia’s Symbian goes open-source: market share dropping, still dominates the market.</title>
		<link>http://surgeworks.com/blog/iphone/nokias-symbian-goes-open-source-market-share-dropping-still-dominates-the-market</link>
		<comments>http://surgeworks.com/blog/iphone/nokias-symbian-goes-open-source-market-share-dropping-still-dominates-the-market#comments</comments>
		<pubDate>Fri, 19 Feb 2010 11:36:46 +0000</pubDate>
		<dc:creator>Mauro Dalu</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[symbian]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1376</guid>
		<description><![CDATA[Nokia, the world&#8217;s largest cell phone maker, launched Symbian OS 10 years ago. It established the market for smart phones and helped propel Nokia to its market dominance. More than 330 million cell phones running Symbian OS have been produced by a number of makers, including Nokia, Samsung, Sony Ericsson, Motorola, LG, Sharp, Fujitsu, and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://surgeworks.com/blog/wp-content/uploads/2010/02/Symbian-Open-Source.jpg" alt="Symbian-Open-Source" title="Symbian-Open-Source" width="300" height="300" class="alignleft size-full wp-image-1377" />Nokia, the world&#8217;s largest cell phone maker, launched Symbian OS 10 years ago. It established the market for smart phones and helped propel Nokia to its market dominance. More than 330 million cell phones running Symbian OS have been produced by a number of makers, including Nokia, Samsung, Sony Ericsson, Motorola, LG, Sharp, Fujitsu, and Huawei. The Symbian OS ended 2009 with a 48% global market share for smart phones, says ABI Research. That&#8217;s down from 63% in 2007, the year that saw the iPhone launch.</p>
<p>&#8220;Symbian has a huge installed base, but a prevailing issue is that the user interface is not good,&#8221; said William Stofega, an analyst at research firm IDC. &#8220;If Nokia is going to stick with Symbian, as they have said, (the operating system) has to be revitalized.&#8221;<span id="more-1376"></span></p>
<p>&#8220;The question is: can Symbian garner enough interest in the marketplace outside of Nokia?&#8221; said Jack Gold, principal of research firm J.Gold Associates. &#8220;Look at who&#8217;s endorsed Android: Motorola, Samsung, LG, HTC; it&#8217;s a long list. How many vendors are concentrating on Symbian?&#8221;</p>
<p>In an effort to completely open Symbian in order to better compete against Apple, RIM and Google, in June 2008 Nokia paid $410 million to Sony Ericsson, Panasonic and Samsung to buy all of the Symbian platform. Before that, Nokia owned 48%.</p>
<p>On Feb. 4, the Symbian Foundation released the first completely open-sourced version of its mobile phone operating system, a move it hopes will make it easier for developers to improve the software and create applications for use on Symbian-based phones. Developers will be able to download, modify and use the software at no charge.</p>
<p>The foundation also hopes to get more handset firms making Symbian phones.</p>
<p>&#8220;This is a significant milestone,&#8221; said Lee Williams, executive director of the London-based Symbian Foundation. &#8220;It makes us a stronger competitor.&#8221;</p>
<p>By 2012, Google&#8217;s Android will surpass Windows Phone and the iPhone to become the world’s No. 2 most popular mobile operating system behind Symbian, according to Gartner. As rival software gained market share, support for Symbian began to flag. Symbian hopes the new, open-sourced software will help reverse the slide. “We’ll see proliferation of converged devices based on Symbian happen this year,” says Larry Berkin, general manager for Symbian in the U.S.</p>
<p>Personally, I see Symbian as the OS for &#8220;cheap&#8221; smartphones. There are very many phones running Symbian well below the price tag of Android phones. People will go on buying Symbian powered phones because they are cheap, widespread (they likely already know how to interact with the device), and they provide the closer experience to a modern smartphone that they can afford. People will also tell you that Nokia phones are more feature packed then an iPhone: better camera, FM radio, powerful stereo speakers&#8230;</p>
<p>The system has undergo a great facelift. They are working toward a centralized app store, together with a workflow that will make purchasing apps easier. But only a change in Symbian&#8217;s average user behavior in regards to apps and a peak of apps sales has the hope to ignite a &#8220;Rinascimento&#8221; effect for this platform. Considering <a href="http://surgeworks.com/blog/iphone/intel-moblin-nokia-maemo-meego">Nokia&#8217;s recent partnership with Intel</a>, it looks like the No. 1 maker is not betting on Symbian their future.</p>
<p>So the point is, who is interested into building apps for a platform that is at the end of its life cycle?</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/iphone/nokias-symbian-goes-open-source-market-share-dropping-still-dominates-the-market/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Starting with Titanium and Android</title>
		<link>http://surgeworks.com/blog/iphone/starting-with-titanium-and-android</link>
		<comments>http://surgeworks.com/blog/iphone/starting-with-titanium-and-android#comments</comments>
		<pubDate>Thu, 18 Feb 2010 13:08:57 +0000</pubDate>
		<dc:creator>Radu Cojocaru</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[titanium]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1338</guid>
		<description><![CDATA[Appcelerator Titanium is one of the 3 cross-platform mobile frameworks (the other 2 are Rhodes and PhoneGap). Similar to PhoneGap, it exposes devices capabilites through Javascript and you write your app using HTML, CSS and of course, Javascript. What really sets Titanium apart is its user interface API: you can use Javascript to create table [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1370" title="titanium-appcellerator-android" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/titanium-appcellerator-android.png" alt="titanium-appcellerator-android" width="180" height="180" /><a href="http://www.appcelerator.com/">Appcelerator Titanium</a> is one of the 3 cross-platform mobile frameworks (the other 2 are Rhodes and PhoneGap). Similar to PhoneGap, it exposes devices capabilites through Javascript and you write your app using HTML, CSS and of course, Javascript. What really sets Titanium apart is its user interface API: you can use Javascript to create table views or other specific user interface controls. This leads to the best replication of the native look &amp; feel.<span id="more-1338"></span></p>
<h3>Android SDK installation</h3>
<p>* Download Android SDK from: <a href="http://developer.android.com/sdk/index.html">http://developer.android.com/sdk/index.html</a><br />
* Decompress the archive to <em>~/Library</em> for example<br />
* Run <em>~/Library/android-sdk-mac_86/tools/android</em><br />
* Go to <em>Settings</em>, check &#8220;<em>Force https://&#8230;&#8221; sources to be fetched using http://&#8230;</em>&#8221; and click <em>Save &amp; Apply</em></p>
<div><img class="image" title="android_settings" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/android_settings.jpg" alt="android_settings" width="635" height="367" /></div>
<p>* Go to <em>Available Packages</em>, expand the default URL, select all and click <em>Install Selected </em>(it will take a while to download all SDK versions and you can find them in <em>~/Library/android-sdk-mac_86/platforms/</em>)</p>
<div><img class="image" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/android_packages.jpg" alt="android_packages" width="694" height="366" /></div>
<p>You have now all versions of Android SDK installed on your machine.</p>
<h3>Titanium installation</h3>
<p>Download Titanium Developer from <a href="http://www.appcelerator.com/products/download/">http://www.appcelerator.com/products/download/</a>. This software allows you to create projects and build for simulator or device.</p>
<h3>Creating a project</h3>
<ol>
<li>Click <em>New Project</em> in Titanium</li>
<li>Fill <em>Mobile</em> for <em>Project type</em> (after this selection iPhone SDK and Android SDK at the bottom)</li>
<li>Click <em>Android SDK</em> and select the folder where you have the <em>Android SDK</em> (~/Library/android-sdk-mac_86_2/); a green check mark should appear after a few moments. <img class="aligncenter size-full wp-image-1344 image" title="titanium_create_project" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/titanium_create_project.png" alt="titanium_create_project" width="450" height="466" /></li>
<li>Fill in the rest of the fields and click <em>Create Project</em> (a very basic app will be generated for you).<em><br />
</em></li>
<li>Now you should be able to select your project in the left panel (under <em>Projects</em>). In your project view, click <em>Test &amp; Package</em> and then <em>Run Android Emulator</em></li>
<li>It will take a few moments for Titanium to analyze what Android SDK versions you have on your machine. When it&#8217;s ready, you can select a version and click <em>Launch <img class="aligncenter size-full wp-image-1345 image" title="titanium_launch" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/titanium_launch.jpg" alt="titanium_launch" width="500" height="42" /><br />
</em></li>
</ol>
<p>Android simulator takes longer to load than iPhone simulator, so be patient. If you want to see some sample projects you can download them from Titanium Mobile Dev Center: <a href="http://www.codestrong.com/timobile/samples/">http://www.codestrong.com/timobile/samples/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/iphone/starting-with-titanium-and-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft on the verge of releasing Windows Mobile version 2.0</title>
		<link>http://surgeworks.com/blog/general/microsoft-on-the-verge-of-releasing-windows-mobile-version-2-0</link>
		<comments>http://surgeworks.com/blog/general/microsoft-on-the-verge-of-releasing-windows-mobile-version-2-0#comments</comments>
		<pubDate>Thu, 18 Feb 2010 07:20:20 +0000</pubDate>
		<dc:creator>Brad Midgley</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[rhodes]]></category>
		<category><![CDATA[rhomobile]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1358</guid>
		<description><![CDATA[OK&#8230; sorry about the inflammatory title, but it really does feel like MS has been coasting since it came out with its first mobile software release. I&#8217;ve used Windows Mobile on two Dell Axim revs and two cellphones. Instead of feeling like each new OS revision was an upgrade, it just felt like the same [...]]]></description>
			<content:encoded><![CDATA[<p>OK&#8230; sorry about the inflammatory title, but it really does feel like MS has been coasting since it came out with its first mobile software release. I&#8217;ve used Windows Mobile on two Dell Axim revs and two cellphones. Instead of feeling like each new OS revision was an upgrade, it just felt like the same thing with a few more applications included and a few more options in settings. Before that I went through almost every model of the Apple Newton&#8230; at least with Newton, each OS update and device update felt like a significant improvement.</p>
<p>Windows Mobile currently has the worst browser in any shipping operating system and made development for mobile web sites or multiplatform mobile development (Rhomobile) very difficult. I&#8217;ve had countless customers tell me &#8220;no one uses&#8221; Windows Mobile so they didn&#8217;t want to target it. Lots of people use Windows Mobile every day, but the fact that our customers don&#8217;t act on this means MS seriously squandered a multi-year lead in the mobile software market.</p>
<p>Check out a preview of the version 7 OS:</p>
<p><a href="http://channel9.msdn.com/posts/LauraFoy/First-Look-Windows-Phone-7-Series-Hands-on-Demo/">http://channel9.msdn.com/posts/LauraFoy/First-Look-Windows-Phone-7-Series-Hands-on-Demo/</a></p>
<p>and if you don&#8217;t have silverlight installed, go right to the media:</p>
<p><a href="http://ecn.channel9.msdn.com/o9/ch9/wp7.mp4">http://ecn.channel9.msdn.com/o9/ch9/wp7.mp4</a></p>
<p>My thoughts as I watched the videos were that they will end up with something similar to Google Android. They&#8217;ll continue to have multiple hardware OEM partners, allow for more tweaking of the experience than iPhone, and won&#8217;t be hobbled with single-tasking like iPhone. The visual experience looks a bit thin in this preview&#8230; it might be inspired by iPhone, but it&#8217;s no iPhone.</p>
<p>I look forward to working with the new OS and hope that it really does come through as a serious update to what was a stagnating system. It will be tough for MS to start from zero again since older devices can&#8217;t be updated to WM7. I&#8217;m not sure when our customers will start noticing that interesting mobile devices out there are running Microsoft software.</p>
<p>So, this finally brings Windows Mobile in line with Web 2.0&#8230; another reason to rebrand the product and put a &#8220;2.0&#8243; in the name :)</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/general/microsoft-on-the-verge-of-releasing-windows-mobile-version-2-0/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://ecn.channel9.msdn.com/o9/ch9/wp7.mp4" length="220470762" type="video/mp4" />
		</item>
		<item>
		<title>Windows 7 Phone Series: Microsoft is doing something “new” and “original”?</title>
		<link>http://surgeworks.com/blog/iphone/windows-7-phone-series-microsoft-is-doing-something-new-and-original</link>
		<comments>http://surgeworks.com/blog/iphone/windows-7-phone-series-microsoft-is-doing-something-new-and-original#comments</comments>
		<pubDate>Tue, 16 Feb 2010 10:35:00 +0000</pubDate>
		<dc:creator>Mauro Dalu</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone os]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://surgeworks.com/blog/?p=1332</guid>
		<description><![CDATA[Just four months after Windows Mobile 6.5 hit the market, Microsoft has officially introduced Windows Phone 7 Series, the new multitouch-capable mobile operating system designed to defeat Apple&#8217;s iPhone.
We were all looking at the iPad and suddenly, Microsoft comes with this new, impressive, and I would dare to say &#8220;original&#8221; take on the mobile phones [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1333" title="Windows-7-Phone-Series" src="http://surgeworks.com/blog/wp-content/uploads/2010/02/Windows-7-Phone-Series.jpg" alt="Windows-7-Phone-Series" width="300" height="300" />Just four months after Windows Mobile 6.5 hit the market, Microsoft has officially introduced Windows Phone 7 Series, the new multitouch-capable mobile operating system designed to defeat Apple&#8217;s iPhone.</p>
<p>We were all looking at the iPad and suddenly, Microsoft comes with this new, impressive, and I would dare to say &#8220;original&#8221; take on the mobile phones with a whole new OS. Yes, you read it well, I, the guy coming from Apple&#8217;s EvangeList, am saying Microsoft has done something &#8220;new&#8221; and &#8220;original&#8221;&#8230; How&#8217;s that? Read on to find out.<span id="more-1332"></span></p>
<p>The new Microsoft Windows 7 Phone Series has a terrible name, but looks amazing. Microsoft mobile market share has been free falling since the iPhone introduction, while Android made things just worse for them. The software giant had to take action and they did by reinventing their mobile experience from scratch and for once, they didn&#8217;t just copy Apple.</p>
<p>&#8220;In a crowded market filled with phones that look the same and do the same things, I challenged the team to deliver a different kind of mobile experience,&#8221; Microsoft Chief Executive Steve Ballmer said. &#8220;Windows Phone 7 Series marks a turning point toward phones that truly reflect the speed of people’s lives and their need to connect to other people and all kinds of seamless experiences.&#8221;</p>
<p>Apple&#8217;s iPhone has a static home screen that shows you a list of apps. Period. It has a customizable dock on which you&#8217;ll surely want to keep the Phone and Messages apps, leaving you just 2 spaces for quick access to other features. The App Store has outgrown the OS interface so much that I have 10 pages of apps on my device, and in many cases, Spotlight won&#8217;t be enough to help me find what I need (how can I recall 160 app names?). Of corse, you can keep everything organized using iTunes and keep on the first page of your phone the most used apps, but that is kind of cumbersome.</p>
<p>Microsoft is not likely to have this problem right now: their marketplace isn&#8217;t even comparable, and whatever they do to attract developers, their platform hasn&#8217;t the market share, sales traction and revenue promises to get developers attention. They know it, and they didn&#8217;t bet on that: if you look at the new Windows 7 Phone Series, you will hardly see where the 3rd parties apps fit in the mix.</p>
<p>Instead, their bet is on the social aspect of the phone. They made their platform a hub of all the social activities: live Facebook (and Windows Live) status updates, photos, location aware internet searches. And they populated the home screen with lots of quick access &#8220;badge-able&#8221; buttons (recent calls, messages, unread e-mail, people&#8230;). The new software&#8217;s &#8220;Start&#8221; screen includes constantly updated &#8220;live tiles&#8221; that show users real-time content. Microsoft has touted these as &#8220;breaking the mold of static icons that serve as an intermediate step on the way to an application.&#8221;</p>
<p>For example, creating a tile for a contact would allow live updates on the person, such as newly uploaded Facebook photos or status updates. The information could be gleaned from the Start page without ever loading an application.</p>
<p>Windows Phone 7 Series includes &#8220;integrated services&#8221; that Microsoft has dubbed &#8220;Hubs.&#8221; These are divided into six categories that aim to make it easy for users to gather information: People, Pictures, Games, Music + Video, Marketplace, and Office.</p>
<p>They added to the mix a bunch of eye candy&#8230; animations, effects, items scrolling at different speeds. Everything says &#8220;look, I&#8217;m amazing and your iPhone doesn&#8217;t do any of this&#8221;.</p>
<p>The six hubs in Windows Phone 7 Series were selected because they represent the activities and information that are most important to people, Microsoft said. The following is a breakdown of the hubs included in the new software:</p>
<ul>
<li>People: Ties in live feeds from social networks and photos to contacts. Includes a central place to post updates to Facebook and Windows Live.</li>
<li>Pictures: Allows users to share photos and videos with a social network. Also integrates with the Web and PC, allowing users to view their entire picture and video collection.</li>
<li>Games: Connects with Xbox Live and plays games. Allows users to see a gamer&#8217;s Xbox Live avatar, achievements and gamer profile.</li>
<li>Music + Video: Brings &#8220;the best of Zune,&#8221; Microsoft said, to the mobile phone. Includes online music services, syncing with content from a PC, and a built-in FM radio. Also connects with Zune Social for sharing music.</li>
<li>Marketplace: Microsoft&#8217;s own app store gives access to certified applications and games.</li>
<li>Office: Offers access to Microsoft Office, oneNote and SharePoint Workspace. Users can read, edit and share documents. Also offers access to Outlook Mobile.</li>
</ul>
<p>Microsoft is building this targeting the 2010 holiday season, and is not compromising: no phone on the market today will run this. They built all this targeting the latest and greatest hardware available this year. The new OS comes with a new, specific hardware design that has 3 buttons: start, search and back. The dedicated Bing button will allow one-click access to search from anywhere within the phone. Integration with Bing search allows the system to automatically locate the user and allows them to conduct a local search.</p>
<p>The Start button is all about branding: it has the windows logo. You won&#8217;t need to dig into the phones specs to get what OS that model is running.</p>
<p>Microsoft has partnered with a number of carriers and manufacturers around the world to bring the first Windows Phone 7 Series handsets to market later this year. Mobile operators include AT&amp;T, Deutsche Telekom AG, Orange, SFR, Sprint, Telecom Italia, Telefónica, Telstra, T-Mobile USA, Verizon Wireless and Vodafone. Manufacturers include Dell, Garmin-Asus, HTC Corp., HP, LG, Samsung, Sony Ericsson, Toshiba and Qualcomm Inc.</p>
<p>All we have to look at now are screenshots and a couple of videos on YouTube. The platform looks very promising and is finally giving people something else that is worth too look at as a &#8220;different&#8221; alternative to the iPhone.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7IOTrqlz4jo&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/7IOTrqlz4jo&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Now let&#8217;s look at the doubts for a minute.</p>
<p>Live updates on the home screen: that is awesome&#8230; but how will that affect battery life?<br />
We have people turning off push notifications on the iPhone for that reason, so what drain will these live updates represent? Is this done through a similar technology (one connection to get all updates) or will this use multiple connections to multiple servers for different sources of contents?</p>
<p>Will the home screen be customizable? It looks like 3rd parties applications will be able to add new &#8220;live&#8221; elements to the home screen. If that is the case, what degree of customization will be possible? How much control will the user have on what is happening on the device?</p>
<p>How did they solve multi-tasking and application switching? Did they design everything in the OS to be as polished and refined as this front-end they are showing off or behind it we&#8217;ll find a &#8220;C prompt&#8221; thing and a scary &#8220;task manager&#8221;?</p>
<p>Will 3rd parties develop for this device?<br />
Microsoft is moving toward XBox Live integration. At the time they entered the console market, the software giant acquired several smaller games development companies (including the Mac games developer Bungie, that became famous on the XBox thanks to the Halo series) &#8212; so they have the means to keep their marketplace filled with quality games and software even without opening the doors to third parties. I would expect the Windows 7 Phone Series marketplace to be populated by titles from bigger developers (namely Electronic Arts, Gameloft) rather then a place in which an Indie can make a living.  Microsoft is already including Office in the mix, so I doubt they will attract many productivity apps developers.</p>
<p>Will Apple catch up?<br />
We are waiting for a major release in June (iPhone OS 4). Apple now has 3 very different devices to support with their OS (a phone, a music player and an ebook reader)&#8230; Will they effort spread too thin to keep up with the competition? Is there something in Jobs hat that will blow this away?</p>
]]></content:encoded>
			<wfw:commentRss>http://surgeworks.com/blog/iphone/windows-7-phone-series-microsoft-is-doing-something-new-and-original/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
