<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Artificial ignorance &#187; Windows phone</title>
	<atom:link href="http://www.Artificialignorance.net/blog/category/windows-phone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.Artificialignorance.net/blog</link>
	<description>the anand iyer chronicles</description>
	<lastBuildDate>Mon, 03 May 2010 06:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Push Notifications in Windows Phone 7 developer tools CTP April Refresh</title>
		<link>http://www.Artificialignorance.net/blog/windows-phone/push-notifications-in-windows-phone-7-developer-tools-ctp-april-refresh/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-phone/push-notifications-in-windows-phone-7-developer-tools-ctp-april-refresh/#comments</comments>
		<pubDate>Mon, 03 May 2010 06:25:37 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[Windows phone]]></category>
		<category><![CDATA[push notificatons]]></category>
		<category><![CDATA[push notifications]]></category>

		<guid isPermaLink="false">http://www.Artificialignorance.net/blog/windows-phone/push-notifications-in-windows-phone-7-developer-tools-ctp-april-refresh/</guid>
		<description><![CDATA[As you may know, we recently announced the April Refresh of the Windows Phone 7 developer tools. We’ve made some changes to some our APIs, including the way our Push Notifications work. A few things you need to be aware of with the new tools and code for Push Notifications in WP7: In your WP7 [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, we <a href="http://windowsteamblog.com/blogs/wpdev/archive/2010/04/29/windows-phone-developer-tools-ctp-refresh.aspx">recently announced</a> the <a href="http://download.microsoft.com/download/D/9/A/D9A6B6ED-D1CF-4FB3-86BD-62A55959175F/VMX/vm_web.exe">April Refresh of the Windows Phone 7 developer tools</a>. We’ve made some changes to some our APIs, including the way our <strong>Push Notifications </strong>work.</p>
<p>A few things you need to be aware of with the new tools and code for Push Notifications in WP7:</p>
<ol>
<li>In your WP7 application’s <strong>WMAppManifest.xml</strong> file, ensure you have listed out the capabilities that your application will be utilizing. In this case, for your application to support Push Notifications, at the least you’d need to add the following to your <strong>WMAppManifest.xml</strong>:      </li>
<pre>&lt;Capabilities&gt;
    &lt;Capability Name=&quot;ID_CAP_NETWORKING&quot; /&gt;
    &lt;Capability Name=&quot;ID_CAP_PUSH_NOTIFICATION&quot; /&gt;
&lt;/Capabilities&gt;<span id="more-198"></span></pre>
<p><b></b></p>
<li>Your application needs to have an entry for the publisher. Perform the following steps since the default entry for Publisher is empty by default (changes in bold and red):
<p><font size="2" face="Courier New">&lt;App xmlns=&quot;&quot; ProductID=&quot;{5286c8f1-e346-4a8b-a0c9-1b37aa9bdc9d}&quot; Title=&quot;PushTest&quot; RuntimeType=&quot;SilverLight&quot;<br />
      <br />Version=&quot;1.0.0.0&quot; Genre=&quot;NormalApp&quot;&#160; Author=&quot;ai&quot; Description=&quot;pushtest&quot; <strong><font color="#ff0000">Publisher=&quot;ai&quot;</font></strong>&gt;</p>
<p></font></li>
<li>There are a couple of changes in the actual payload that gets sent. Inside the application that actually posts the notification (through Microsoft’s push notification server) to Windows Phone 7, the payload now needs to look like (changes in bold and red):
<p><font size="2" face="Courier New">string toastMessage = &quot;Content-Type: text/xml\r\nX-WindowsPhone-Target: toast\r\n\r\n&quot; +<br />
      <br /> &quot;&lt;?xml version=\&quot;1.0\&quot; encoding=\&quot;utf-8\&quot;?&gt;&quot; + </p>
<p>&quot;&lt;wp:<strong><font color="#ff0000">Notification</font></strong> xmlns:wp=\&quot;</font><font color="#ff0000"><strong>WPNotification</strong></font>\&quot;&gt;&quot; + </p>
<p>&quot;&lt;wp:Toast&gt;&quot; + </p>
<p>&quot;&lt;wp:Text1&gt;&lt;string&gt;&lt;/wp:Text1&gt;&quot; + </p>
<p>&quot;&lt;/wp:Toast&gt;&quot; + &quot;&lt;/wp:<font color="#ff0000"><strong>Notification</strong></font>&gt;&quot;;</p>
<p>I’ve used an example payload for a Toast Notification above, but similar changes apply for other types of notifications.</li>
</ol>
<p>That’s it! I’ve tested this with the ‘<a href="http://skeevs.com/blog/?p=35"><strong>Push Tweets</strong></a>’ sample app:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/PushNotificationsinWindowsPhoneDeveloper_CC54/pushnotif.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="pushnotif" border="0" alt="pushnotif" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/PushNotificationsinWindowsPhoneDeveloper_CC54/pushnotif_thumb.jpg" width="376" height="670" /></a> </p>
<p>Related articles:</p>
<ol>
<li><a href="http://download.microsoft.com/download/D/9/A/D9A6B6ED-D1CF-4FB3-86BD-62A55959175F/ReleaseNotes.htm">Changes in the April release of the Windows Phone 7 developer tools</a></li>
<li>MSDN: <a href="http://msdn.microsoft.com/en-us/library/ff402545(v=VS.92).aspx">Send a Push Notification for Windows Phone 7</a></li>
<li><a href="http://skeevs.com/blog/?p=35">Push tweets to a Windows Phone 7 device (via push notifications)</a></li>
<li><a href="http://windowsteamblog.com/blogs/wpdev/archive/2010/04/29/windows-phone-developer-tools-ctp-refresh.aspx">Windows Phone Developer Tools CTP Refresh</a></li>
</ol>
<p><a href="http://twitter.com/ai"><strong>@ai</strong></a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-phone%2Fpush-notifications-in-windows-phone-7-developer-tools-ctp-april-refresh%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=segoe+ui&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone/push-notifications-in-windows-phone-7-developer-tools-ctp-april-refresh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7 Series &#8211; Developers, Developers, Developers</title>
		<link>http://www.Artificialignorance.net/blog/windows-phone/windows-phone-7-series-developers-developers-developers/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-phone/windows-phone-7-series-developers-developers-developers/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 01:44:33 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows phone]]></category>
		<category><![CDATA[wp7]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-phone/windows-phone-7-series-developers-developers-developers/</guid>
		<description><![CDATA[A couple of weeks ago at Mobile World Congress in Barcelona, the world got to see what we’ve been working on with Windows Phone 7 Series. The end-user is at the center of our focus, and we’ve built our features and our platform offerings around how someone may want to use our phones. Those who [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago at Mobile World Congress in Barcelona, the world got to see what we’ve been working on with Windows Phone 7 Series. The <strong>end-user is at the center of our focus</strong>, and we’ve built our features and our platform offerings around how someone may want to use our phones. Those who got to see <a href="http://www.microsoft.com/presspass/presskits/windowsphone/VideoGallery.aspx">JoeB’s presentation</a> or play with the devices walked away with the notion that our phones are <strong>wonderfully different</strong>. The next logical step now is for us to remove the covers of the developer platform, so that our developer community can start building applications that will complement the experiences on the phone.</p>
<h3><strong>Developers want to</strong><span id="more-181"></span></h3>
<ul>
<li>create applications <strong>easily</strong>, </li>
<li>be able to <strong>get to market</strong> quickly, and, </li>
<li>have a clear path for <strong>distribution and/or monetization</strong>. </li>
</ul>
<p>We used these as our guiding principles as we set off to build the platform.</p>
<h3><strong>The Developer Platform is (also) different</strong></h3>
<p>On Windows Phone 7 Series, the primary development platforms will comprise exclusively of <a href="http://www.silverlight.net"><strong>Silverlight</strong></a> and <a href="http://xna.com"><strong>XNA</strong></a>.</p>
<h4>Silverlight</h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/a803e3430d3f_9C83/Silverlight_v_rgb.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Silverlight_v_rgb" border="0" alt="Silverlight_v_rgb" align="left" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/a803e3430d3f_9C83/Silverlight_v_rgb_thumb.png" width="46" height="40" /></a>Since it was first announced back in 2007 as a cross-browser cross-platform browse plugin, Silverlight has&#160; become one of the most widely accepted and acclaimed developer platforms. For the first time through <a href="http://msdn.microsoft.com/en-us/library/ms752059.aspx"><strong>XAML</strong></a>, the primary markup language that powers the design for Silverlight applications, we were able to&#160; provide a great story for <strong>designers and developers to work together </strong>better. We want to be able to bring that power of Silverlight to our phones. </p>
<p>XNA</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/a803e3430d3f_9C83/XNA.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="XNA" border="0" alt="XNA" align="left" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/a803e3430d3f_9C83/XNA_thumb.jpg" width="66" height="28" /></a>The number of people playing games on their phones has doubled in recent years. Naturally, we wanted to enable our&#160; developers to build the best of breed, performant 2D and 3D games to target our phones. Using the XNA Framework, developers can create high performing games and target Windows Phone 7 Series.</p>
<h3><strong>Multiple “Screens”</strong></h3>
<p>With Silverlight and XNA, we’re on course to enable the best scenarios across multiple screens with the consistency of platform. Silverlight helps power applications on PCs (through the browser and out of the browser) as well as Windows Phone 7 Series. XNA helps power applications on the Zune, XBox as well as Windows Phone 7 Series.</p>
<h3><strong>A New Beginning</strong></h3>
<p>The inclusion of these platforms on the phone introduces a new beginning to our developer community. We’ve heard time and again from developers who’ve wanted to create rich applications for Windows Phones but have been limited by the capabilities of our platform. The challenges our developer community faced with the multitude of devices and the varying specifications of these devices also posed problems. And so, change was imminent.</p>
<p>There are definitely more pieces to the platform, like the tools, or the specific feature set that will be exposed via our APIs, or the Marketplace. We’ll be discussing all of these in much more detail at <a href="http://live.visitmix.com/">MIX</a>.</p>
<p>You can read more over on Charlie’s blog &#8211; <a href="http://blogs.msdn.com/ckindel/archive/2010/03/04/different-means-better-with-the-new-windows-phone-developer-experience.aspx"><em>Different Means Better with the new Windows Phone Developer Experience</em></a></p>
<p>Be sure to follow our developer team <a href="http://twitter.com/wp7dev">@wp7dev</a>, or individually, <a href="http://blogs.msdn.com/ckindel">Charlie Kindel</a> (@<a href="http://twitter.com/ckindel">ckindel</a>), <a href="http://blogs.msdn.com/shawnhar/">Shawn Hargreaves</a> (@<a href="http://twitter.com/shawnhargreaves">shawnhargreaves</a>) , <a href="http://klucher.com/">Michael Klucher</a> (@<a href="http://twitter.com/kluch">kluch</a>), <a href="http://www.ozymandias.com/">Andre Vrignaud</a> (@<a href="http://twitter.com/ozymandias">ozymandias</a>), <a href="http://blogs.msdn.com/lokeuei">Loke Uei Tan</a> (@<a href="http://twitter.com/lokeuei">lokeuei</a>), <a href="http://electricbeach.org/">Christian Schormann</a> (@<a href="http://twitter.com/cschormann">cschormann</a>). I hope to see you at MIX!</p>
<p><a href="http://twitter.com/ai"><strong>@ai</strong></a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-phone%2Fwindows-phone-7-series-developers-developers-developers%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=segoe+ui&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone/windows-phone-7-series-developers-developers-developers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>&#8220;Seven&#8221;</title>
		<link>http://www.Artificialignorance.net/blog/windows-phone/seven/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-phone/seven/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:02:54 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows phone]]></category>
		<category><![CDATA[windows phone 7 series]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-phone/seven/</guid>
		<description><![CDATA[[Update: Added links to some others from the team who’ve blogged about Windows Phone 7 Series.] It’s been so very interesting to read all the press leading up to today. Some speculation, some hype, some rumor. Today, we’re announcing Windows Phone 7 Series – a different kind of phone operating system. The genesis The Windows [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>[Update: Added links to some others from the team who’ve blogged about Windows Phone 7 Series.]</strong></em></p>
<p>It’s been so very interesting to read all the press leading up to today. Some speculation, some hype, some rumor. Today, we’re announcing <a href="http://www.windowsphone7series.com"><strong>Windows Phone 7 Series</strong></a> – a different kind of phone operating system.</p>
<h3><strong>The genesis</strong></h3>
<p><a href="www.windowsphone7series.com"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/920f7ebb602f_A8C6/clip_image001.gif" width="217" height="28" /></a></p>
<p>The <a href="http://www.windowsphone7series.com/">Windows Phone 7 Series</a> was built fundamentally with <strong>the end-user</strong>, the consumer, in mind. The Windows Phone team is committed to building an operating system, which handset manufacturers integrate, and carriers sell to end-users. In the past, somewhere along the way, it may have appeared that our immediate end-users were the handset manufacturers – <strong>our end-user is the consumer</strong>. While we still want to enable innovation in the hardware space, we also want end-users to benefit from a consistent and brilliant software experience from the phone. <span id="more-178"></span></p>
<p>The creative mastermind behind most if not all aspects of this experience is <a href="http://www.microsoft.com/presspass/exec/joeb/default.aspx"><strong>Joe Belfiore</strong></a>, a name you may recognize as the lead of the Zune. </p>
<p>Given said, here are 7 things about Windows Phone 7 Series that excite me the most. Narrowing this list down to just 7 was extremely hard, that said, there’s more of where this came from.</p>
<h3><strong>Seven</strong></h3>
<ol>
<li>
<h4><strong>Design</strong></h4>
<p>The Windows Phone 7 <strong>User Experience</strong> is different from what you may have experienced before, not just with Windows (Mobile) Phones 6.X, but others. Bottom-line &#8211; the experience is intuitive – whether you are navigating on the phone, taking pictures, sending and receiving mail, looking up a person to see their latest Facebook status or trying to purchase an application, things just plain work in an <a href="www.windowsphone7series.com"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="clip_image001" border="0" alt="clip_image001" align="right" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/920f7ebb602f_A8C6/clip_image001.png" width="198" height="349" /></a>intuitive fashion.         <br />Today, with the majority of the phones out there, all you see are pages of icons. Every now and then I find myself staring at an icon for a few seconds before I associate the icon with an application. The icon is useful to me, but not as much as the name of the application I’m about to launch. That said, the <strong>User Interface</strong> in Windows Phone 7, as JoeB likes to say, is <strong>predominantly typographical</strong>. You’ll find clear and concise text in several menus, like signs at airports or terminals that are meant to help you get to your destination quickly and easily.         <br />The Start experience is one that we’ve always believed is invaluable. At a glance, you want to get vital information. If you need to perform involved tasks, you may want to launch an application. The <strong>Live Tiles </strong>feature is meant for just that. More importantly, end-users can add and remove tiles to the start screen.</p>
</li>
<li>
<h4><strong>Consistency</strong></h4>
<p>The experiences I’ve described above are meant to be consistent – <strong>when a user picks up a Windows Phone 7 Series device, any Windows Phone 7 Series device, the interface the user will get to experience will be the same</strong>.         <br />While the software experience will be consistent, users also have growing expectations of hardware, and rightfully so. We’ve set forth on defining a base Hardware Design for phones running the Windows Phone 7 Operating System &#8211; the devices will have 3 buttons along the bottom of the phone – one for going back (to whatever you were doing last), one for getting back to the Start screen, and one for Search (<em>more on Search below</em>). There are several consistent hardware features you will see in Windows Phone 7 devices, such as a 3.5mm headphone jack, a minimum of 5 megapixel camera, sensors like an Accelerometer or A-GPS, 480&#215;800 resolution, capacitive dual symmetric multi-touch screens, etc.</p>
</li>
<li>
<h4><strong>Pervasive Search</strong></h4>
<p> The name says it all – one click of the button on the bottom far right, and you are taken to Bing, to search locally on the device or search on the web, with the option of searching for items that are contextually location aware. </li>
<li>
<h4><strong>People are more than just contacts<a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/920f7ebb602f_A8C6/people.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="people" border="0" alt="people" align="right" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/920f7ebb602f_A8C6/people_thumb.jpg" width="149" height="119" /></a></strong></h4>
<p> I use the ‘contacts’ feature on my phone today to call, text or email someone. This information about my contacts primarily comes from our <strong>Exchange</strong> server. While contacting a person is key, today that’s just not enough – I want to know what pictures have they recently posted, what are they currently doing, or what does this person look like today? While I prefer text to icons with applications, I prefer photographs to names of people when I’m looking someone up.       <br />That said, the integration with <strong>Facebook</strong> and <strong>Windows Live</strong> lets a user ‘pivot’ on a person on your phone – you’re not just looking up a contact, you’re learning more about them by associating with the social networks they might be on. I don’t need to launch a specific app just to learn about my sister’s latest Facebook status update, for example.&#160;&#160; </li>
<li>
<h4><strong>Marketplace++</strong></h4>
<p>We all know that the notion of an on-deck Marketplace where users can discover applications, games and music is paramount both for users and the developer community. The Marketplace experience, everything from what you see on the device to the portal that developers get to use to submit applications, has received major facelifts. As much as I’d like to, I can’t dive into too much detail just yet, but the experience will want users to keep using the Marketplace. </p>
</li>
<li>
<h4><strong>XBox Live Integration</strong> </h4>
<p>Game changing &#8211; no pun intended. From what we’ve heard, this is a dream come true for XBox gamers.</p>
</li>
<li>
<h4><strong>Zune Integration</strong></h4>
<p>The reviews for the ZuneHD have been amazing. The experience that the Zune player provides is nearly unparalleled and it is fully integrated into the phone. Your music and videos go with you on your phone.</p>
</li>
</ol>
<p>If you haven’t already, have a go at this Channel 9 Video with JoeB demoing the experience:</p>
<p><object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="512" height="384"><param name="source" value="http://channel9.msdn.com/App_Themes/default/VideoPlayer10_01_18.xap" /><param name="initParams" value="deferredLoad=true,duration=0,m=http://ecn.channel9.msdn.com/o9/ch9/wp7.wmv,autostart=false,autohide=true,showembed=true, thumbnail=http://ecn.channel9.msdn.com/o9/ch9/wp7_512_thumb.png, postid=526720" /><param name="background" value="#00FFFFFF" /><a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"> <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /> </a> </object></p>
<h3><strong>Developer Platform</strong></h3>
<p>The developer platform on Windows Phone 7 Series deserves its own section and mention. This is the team that <a href="http://blogs.msdn.com/ckindel/"><strong>Charlie Kindel</strong></a> (<a href="http://twitter.com/ckindel">@ckindel</a>) leads, and <a href="http://blogs.msdn.com/lokeuei"><strong>Loke</strong></a> (<a href="http://twitter.com/lokeuei">@lokeuei</a>) and I amongst others work on. We have so much to share about this topic, that we thought it deserved its own conference, really. So, come to <a href="http://live.visitmix.com/Registration"><strong>MIX</strong></a>, and hear the likes of Charlie, <a href="http://blogs.msdn.com/scottgu">Scott Guthrie</a>, Loke and others talk about the application platform. Let me wrap this up by saying, based on what you’ve seen and heard, you’ll want to develop for this platform. Watch ’#wp7dev’ or follow <a href="mailto:&lsquo;@wp7dev&rsquo;">‘<strong>@wp7dev’</strong></a> and <a href="mailto:&lsquo;@ckindel">‘<strong>@ckindel</strong></a>’&#160; for more. </p>
<h3><strong>Excited?</strong></h3>
<p>I hope the Windows Phone 7 Series excites you as much as it does us. We’re hoping to provide more details about the application platform soon enough so that you can start developing.</p>
<p>I hope to see you at MIX!</p>
<p>In the meanwhile, here are blog posts from fellow Windows Phone 7 Series team members:</p>
<ul>
<li><a href="http://blogs.msdn.com/ckindel/archive/2010/02/11/hello-from-seattle.aspx">Hello from Seattle</a> (<a href="http://twitter.com/ckindel">@ckindel</a>)</li>
<li><a href="http://blogs.msdn.com/shawnhar/archive/2010/02/15/predicting-the-future.aspx">Predicting the Future</a> (@<a title="http://twitter.com/shawnhargreaves" href="http://twitter.com/shawnhargreaves">shawnhargreaves</a>)</li>
<li><a href="http://www.ozymandias.com/multiple-screens-is-the-new-main-screen">Multiple Screens is the New Main Screen</a> (@<strong><a href="http://twitter.com/gameozymandias">gameozymandias</a></strong>)</li>
<li><a href="http://windowsteamblog.com/blogs/windowsphone/archive/2010/02/15/windows-phone-7-series-show-and-tell.aspx">Windows Phone 7 Series – Show and Tell</a></li>
</ul>
<p><a href="http://www.twitter.com/ai"><strong>@ai</strong></a></p>
<p><em>now playing in my head: “Stronger”, Kanye West</em></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-phone%2Fseven%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=segoe+ui&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone/seven/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
<enclosure url="http://ecn.channel9.msdn.com/o9/ch9/wp7.wmv" length="294440319" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>WinMoSquare &#8211; Foursquare for Windows phone now in Beta</title>
		<link>http://www.Artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 18:07:48 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[Windows phone]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[winmosquare]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/</guid>
		<description><![CDATA[I’m glad to announce a beta version of the Foursquare app for Windows phones – WinMoSquare. Prerequisites The app is only available for touch screen Windows phones today. The .NET Compact Framework v3.5 is a pre-requisite for you to be able to run the application on the phone. You’d also need a phone that runs [...]]]></description>
			<content:encoded><![CDATA[<p>I’m glad to announce a beta version of the <a href="http://www.foursquare.com">Foursquare</a> app for Windows phones – WinMoSquare. </p>
<p><strong>Prerequisites</strong></p>
<p>The app is only available for touch screen Windows phones today. The .NET Compact Framework v3.5 is a pre-requisite for you to be able to run the application on the phone. You’d also need a phone that runs either Windows Mobile 6.1 or a Windows Mobile 6.5.</p>
<p><strong>Get me them goods</strong></p>
<p>You can get the goods by emailing <a href="mailto:admin@touchality.com">admin@touchality.com</a> or submitting your email address in this webform: <a href="http://touchality.com/WinMoSquare/">http://touchality.com/WinMoSquare/</a></p>
<p><strong>Futures</strong><span id="more-176"></span></p>
<p>This is a beta. We definitely want to add features to expose the leaderboard, add new friends on the fly, and incorporate any new APIs that Foursquare may expose. There are also plans to submit this application to the <a href="http://developer.windowsphone.com/Marketplace.aspx">Windows Marketplace for Mobile</a>, and that will happen as soon as we hit v1 of the app and we’re confident that we’re beyond a beta.</p>
<p><strong>Demo</strong></p>
<p>Here I’ve installed WinMoSquare on an <a href="http://www.htc.com/europe/product/hd2/overview.html">HTC HD2</a>. I’ll let the screen captures do the talking as far as the functionality of the app itself goes:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen01.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen01" border="0" alt="Screen01" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen01_thumb.jpg" width="214" height="353" /></a><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen02.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen02" border="0" alt="Screen02" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen02_thumb.jpg" width="214" height="354" /></a></p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen03.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen03" border="0" alt="Screen03" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen03_thumb.jpg" width="213" height="352" /></a> <a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen04.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen04" border="0" alt="Screen04" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen04_thumb.jpg" width="213" height="353" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen05.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen05" border="0" alt="Screen05" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen05_thumb.jpg" width="215" height="354" /></a> <a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen06.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen06" border="0" alt="Screen06" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen06_thumb.jpg" width="214" height="355" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen07.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen07" border="0" alt="Screen07" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen07_thumb.jpg" width="216" height="358" /></a> <a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen08.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen08" border="0" alt="Screen08" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen08_thumb.jpg" width="216" height="358" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen10.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen10" border="0" alt="Screen10" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen10_thumb.jpg" width="212" height="350" /></a> <a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen11.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen11" border="0" alt="Screen11" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen11_thumb.jpg" width="211" height="349" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen12.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen12" border="0" alt="Screen12" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen12_thumb.jpg" width="213" height="352" /></a> <a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen13.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen13" border="0" alt="Screen13" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen13_thumb.jpg" width="214" height="354" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen14.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Screen14" border="0" alt="Screen14" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WinMoSquareFoursquareforWindowsPhonenowi_887E/Screen14_thumb.jpg" width="212" height="351" /></a>&#160; </p>
<p>Last but not least, I want to thank the team at <a href="http://www.touchality.com">Touchality</a> for developing the app. Foursquare away!</p>
<p><a href="http://twitter.com/ai"><strong>ai</strong></a></p>
<p><em>PS: And thanks to </em><a href="http://twitter.com/kylemce"><em>@kylemce</em></a><em> for the name “WinMoSquare” :)</em></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-mobile%2Fwinmosquare-foursquare-for-windows-phone-now-in-beta%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=segoe+ui&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Windows phones launching October 6, 2009</title>
		<link>http://www.Artificialignorance.net/blog/windows-phone/windows-phones-launching-october-6-2009/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-phone/windows-phones-launching-october-6-2009/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:05:00 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows phone]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-phone/windows-phones-launching-october-6-2009/</guid>
		<description><![CDATA[Today we are announcing the availability of Windows phones at retail stores worldwide on October 6, 2009. The new phones will be the first to feature Windows Mobile 6.5, the latest version of our mobile phone software, and will deliver new customer experiences through an improved, easy-to-use user interface, better browsing capabilities and access to [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are announcing the availability of <strong>Windows phones</strong> at retail stores <strong>worldwide</strong> on <strong>October 6, 2009</strong>. The new phones will be the first to feature <strong>Windows Mobile 6.5</strong>, the latest version of our mobile phone software, and will deliver new customer experiences through an improved, easy-to-use user interface, better browsing capabilities and access to valuable services, including <a href="http://developer.windowsmobile.com/Marketplace.aspx"><strong>Windows Marketplace for Mobile</strong></a> and <a href="http://myphone.microsoft.com/"><strong>Microsoft My Phone</strong></a>.</p>
<p>Mobile partners from around the globe are committed to updating or expanding their portfolios to include phones with Windows Mobile 6.5.</p>
<ul>
<li><strong>In North America:</strong> Mobile operators AT&amp;T, Bell Mobility, Sprint, TELUS and Verizon Wireless, and phone manufacturers HP, HTC Corp., LG Electronics, Samsung and Toshiba Corp.</li>
<li><strong>In Europe:</strong> Mobile operators Orange, Deutsche Telekom AG and Vodafone Group Plc, and phone manufacturers Acer, HTC, LG Electronics, Samsung, Sony Ericsson and Toshiba</li>
<li><strong>In Latin America:</strong> Mobile operator TIM Brazil, and phone manufacturers HTC, LG Electronics and Samsung</li>
<li><strong>In Asia Pacific:</strong> Mobile operators NTT DoCoMo Inc., SoftBank Mobile Corp., SK Telecom, Telstra and WILLCOM Inc., and phone manufacturers Acer Inc., HTC, LG Electronics, Samsung, Sony Ericsson and Toshiba</li>
<p><span id="more-168"></span></ul>
<h3>What’s new in 6.5?</h3>
<ul>
<li><strong>Consumer oriented features</strong> &#8211; A Windows phone lets you get your work done and still have fun, wherever you are. We have been working on making Windows Phones more consumer friendly while retaining our strong enterprise focused applications, such as Outlook, Word, etc.</li>
<li><strong>Stay connected</strong> &#8211; Connect to powerful online services so the information, contacts and apps you need are always at your fingertips.</li>
<li><strong>Better UI, Better UX</strong>
<ul>
<li>
<div>A new home screen with customizable <strong>widgets</strong> that display glance-able updates, such as news, weather, traffic and more, from your favorite Web services.</div>
</li>
<li>
<div>An improved user interface focused on finger touch and the ability to cut through clutter to accomplish what you want. Windows phones enable a number of gestures that take advantage of the <strong>new physics engine</strong> to make it fun and easy to use the phone with your finger. Windows phones support resistive touch, which can be operated with one hand and uses pressure to activate the touch feature.</div>
</li>
</ul>
</li>
</ul>
<p align="center"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/lockscreen.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="lockscreen" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/lockscreen_thumb.jpg" border="0" alt="lockscreen" width="264" height="355" /></a><br />
<em>Lock Screen<br />
</em><br />
<a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/today.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="today" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/today_thumb.jpg" border="0" alt="today" width="261" height="347" /></a><br />
<em>Today screen </em></p>
<p style="text-align: center;"><em> </em><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/programs.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="programs" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/programs_thumb.jpg" border="0" alt="programs" width="254" height="332" /></a><br />
<em>Programs Menu<br />
</em></p>
<ul>
<li><strong>New Browser</strong> &#8211; <strong>Internet Explorer Mobile</strong>, a powerful new browser where websites will look the same on your phone as they do on the PC so it’s easy to check in for a flight, get directions or pay a bill from wherever you are. Internet Explorer Mobile is built on the same technologies as its desktop counterpart, Internet Explorer, and brings the mobile browsing experiences on par with what people expect from their desktop computers.
<ul>
<li><strong>High quality mobile browsing &#8211; </strong>Using the Internet Explorer rendering engine, Internet Explorer Mobile displays Web pages on the phone in the same quality as on the desktop, allowing consumers to experience their content in the layout they enjoy. <strong>Panning and zooming</strong> capabilities, as well as mouse navigation for non-touch phones, helps people easily find and enjoy what they are looking for while browsing the Web.</li>
<li><strong>Rich media experiences &#8211; </strong>Internet Explorer Mobile will support the rich experiences that many Web pages are built on, such as <strong>Adobe Flash</strong>. This will enable people to view Flash-based video content, like YouTube, at the same level of quality as if they were using their desktop computers.</li>
<li><strong>Desktop consistent AJAX support -</strong> Through the support of <strong>Jscript version 5.7</strong> in Internet Explorer Mobile, developers will now be able to deliver desktop-consistent AJAX Web experiences up to date to that of Internet Explorer 8 on Windows Mobile devices.</li>
<li><strong>Best-in-class mobile Web transactions &#8211; </strong>With the newest experiences in Internet Explorer Mobile, Microsoft brings the mobile Web browsing experience on par with what people have come to expect from their desktops – the ability to easily view Web pages and multimedia on the Web and complete transactions, from banking to Facebook updates.</li>
</ul>
</li>
</ul>
<p align="center"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/IE.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IE" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/IE_thumb.jpg" border="0" alt="IE" width="293" height="390" /></a><br />
<em>Internet Explorer rendering </em><a href="http://bing.com"><em>http://bing.com</em></a></p>
<p style="text-align: center;"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/IEUnited.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IE United" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/IEUnited_thumb.jpg" border="0" alt="IE United" width="295" height="397" /></a><br />
<em>Internet Explorer rendering </em><a href="http://united.com"><em>http://united.com</em></a></p>
<ul>
<li><strong>Sync your on-device data</strong> &#8211; <strong>My Phone</strong>, a free service, which provides Web sync of valuable data from the phone, like pictures, music <em>and texts</em>, to a Web portal for safe keeping and sharing.</li>
<li><strong>Download and install apps easily</strong> &#8211; <strong>Windows Marketplace for Mobile</strong>, a new, rich application marketplace available on Windows phones which allow people to easily find, install and experience the applications you want</li>
</ul>
<h3>Which phones are upgradeable to 6.5?</h3>
<p>Some current Windows Mobile 6.1 phones will be updateable to Windows Mobile 6.5 <em>if</em> they meet hardware requirements. Ultimately, it’s our partners’ decision whether their phones will support the upgrade.</p>
<p>The Samsung Jack with AT&amp;T, the HTC Diamond 2, the HTC Touch Pro 2, and LG phones Eigen and HQ, along with four new Windows Mobile 6.5 devices from Acer have announced to offer Windows Mobile 6.5 upgrades.</p>
<h3>Why “Windows phone”?</h3>
<p>As we move into the consumer space, we need to adjust our language to be more approachable and friendly. Windows phone fits naturally into consumer language and users can easily relate given the popularity of the Windows brand.</p>
<h3>When will My Phone be available?</h3>
<p>My Phone is <strong>available today </strong>for all users of Windows Mobile 6.0 or 6.1 phones will and can be downloaded at <a href="http://sn1-p1.myphone.microsoft.com/">http://sn1-p1.myphone.microsoft.com/</a>. My Phone will be available on Windows phones beginning on October 6, 2009.
</p>
<p align="center"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/myphone1.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="myphone1" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/myphone1_thumb.jpg" border="0" alt="myphone1" width="283" height="378" /></a><br />
<em>My Phone Sync Screen<br />
</em><br />
<a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/myphone2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="myphone2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/WindowsPhonelaunchingonOctober62009_145C7/myphone2_thumb.jpg" border="0" alt="myphone2" width="284" height="378" /></a><br />
<em>My Phone Syncing</em></p>
<h3>What is Windows Marketplace for Mobile?</h3>
<p>A rich and integrated <strong>marketplace</strong> for <strong>searching</strong>, <strong>browsing </strong>and <strong>purchasing </strong>mobile applications from Windows phones based on Windows Mobile 6.5, or from a PC, by simply using a Windows Live ID. For developers, <strong>the marketplace presents yet another opportunity to generate revenue by selling applications, but now with direct access to millions of Windows phone users</strong>. For mobile operators, it provides opportunity to increase data plan attach rates and generate a new revenue stream from application sales.</p>
<p>ISVs and developers will set their own price for applications, some will be available for free. We’re doing all we can to help generate revenue for ISVs and developers to encourage innovation and attract shoppers by delivering strong value and a great experience. Our model will encourage developers to sell their applications at a price that reflects their true value to customers.</p>
<h3>What is the Race to Market challenge?</h3>
<p>When you submit your mobile app to the Windows Marketplace, you’ll be eligible to win the <a href="http://www.mobilethisdeveloper.com/"><strong>Race to Market Challenge</strong></a> and exciting prizes. The <strong>Race to Market Challenge</strong> will reward the developer whose paid application earns the most revenue within the contest period <em>and</em> the developer whose free application is downloaded the most within the contest period. Winners will receive a <strong>prize package including a Microsoft Surface table and developer kit</strong>, <strong>free online marketing and promotion of their application</strong>, <strong>plus a one-of-a-kind trophy</strong>. Visit <a title="http://www.mobilethisdeveloper.com/" href="http://www.mobilethisdeveloper.com/"><strong>http://www.mobilethisdeveloper.com/</strong></a> for more details.</p>
<h3>Stay connected</h3>
<ul>
<li>Twitter – <a href="http://twitter.com/wmdev">@wmdev</a></li>
<li>Facebook &#8211; <a title="http://www.facebook.com/wmdev" href="http://www.facebook.com/wmdev">http://www.facebook.com/wmdev</a></li>
<li>Our website &#8211; <a href="http://developer.windowsmobile.com">http://developer.windowsmobile.com</a></li>
<li>The Windows Phone Blog &#8211; <a title="http://windowsteamblog.com/blogs/windowsphone/default.aspx" href="http://windowsteamblog.com/blogs/windowsphone/default.aspx">http://windowsteamblog.com/blogs/windowsphone/default.aspx</a></li>
<li>You can also meet members of the Windows phone team in person at these events:
<ul>
<li><a href="http://events.gigaom.com/mobilize/09/">Mobilize</a> on 9/10 in San Francisco, CA</li>
<li><a href="http://www.techcrunch50.com">TechCrunch50</a> on 9/13 and 9/14 in San Francisco, CA</li>
<li><a href="http://www.wirelessit.com/">CTIA Wireless</a> on 10/7-10/9 in San Diego, CA</li>
</ul>
</li>
</ul>
<p>“<strong>ai</strong>”</p>
<p><em><strong>Update: Here is Stephanie Ferguson’s launch announcement post: </strong></em><a href="http://windowsteamblog.com/blogs/windowsphone/archive/2009/09/01/windows-phones-are-coming-on-october-6th.aspx"><em><strong>Windows  phones are Coming on October  6th!</strong></em></a><em><strong> and our PressPass announcement : <a href="http://www.microsoft.com/presspass/press/2009/sep09/09-01WindowsPhoneAvailablePR.mspx" target="_self">Microsoft to Deliver New Generation of Windows Phones on Oct. 6</a></strong></em></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-phone%2Fwindows-phones-launching-october-6-2009%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=segoe+ui&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone/windows-phones-launching-october-6-2009/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
