<?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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Artificial ignorance</title>
	
	<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>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/artificialignorance" /><feedburner:info uri="artificialignorance" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Push Notifications in Windows Phone 7 developer tools CTP April Refresh</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/UpJuifP3DXg/</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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/UpJuifP3DXg" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-phone/push-notifications-in-windows-phone-7-developer-tools-ctp-april-refresh/</feedburner:origLink></item>
		<item>
		<title>Drinking from the Foursquare Firehose on Windows Phone 7</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/0kR-GY_dVMQ/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-phone-7/drinking-from-the-foursquare-firehose-on-windows-phone-7/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 14:45:00 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[ctia]]></category>
		<category><![CDATA[firehose]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[mix10]]></category>
		<category><![CDATA[society]]></category>
		<category><![CDATA[wp7]]></category>
		<category><![CDATA[wp7dev]]></category>
		<category><![CDATA[xmpp]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-phone-7/drinking-from-the-foursquare-firehose-on-windows-phone-7/</guid>
		<description><![CDATA[[Update: The source code for the app is now available on Codeplex: http://4square.codeplex.com] Foursquare is one of the leading location aware applications out there today with a rapidly growing user base. They’re really hot right now – they exploded dramatically at SXSW this year. We take it for granted when things “just work” – I [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>[Update: The source code for the app is now available on Codeplex: </em></strong><a href="http://4square.codeplex.com"><strong><em>http://4square.codeplex.com</em></strong></a><strong><em>]</em></strong></p>
<p><a href="http://foursquare.com"><strong>Foursquare</strong></a> is one of the leading location aware applications out there today with a rapidly growing user base. They’re really hot right now – they exploded dramatically at <a href="http://www.sxsw.com">SXSW</a> this year. We take it for granted when things “just work” – I can’t recall Foursquare having any kind of downtime at SXSW in spite of the explosive usage they saw that week and this is a huge testament to their dev team that managed the required scale so well. </p>
<p>Some of you may have seen the Foursquare Windows Phone 7 app that was demo’d on stage at <a href="http://live.visitmix.com/">MIX</a> last week. The app looks amazing and “critics agree” ;)<span id="more-196"></span></p>
<p><a href="http://twitter.com/Gartenberg/status/10527199866"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gartenberg" border="0" alt="Gartenberg" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/Gartenberg.jpg" width="383" height="181" /></a></p>
<p><a href="http://twitter.com/ksmarshall/status/10527427532"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ksmarshall4s" border="0" alt="ksmarshall4s" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/ksmarshall4s.jpg" width="380" height="178" /></a></p>
<p>Here’s what the app looks like. For your information, it’s around 11.10pm right now on March 24, 2010, and I’m at my hotel, the <a href="http://www.lvhilton.com/">Las Vegas Hilton</a> in Las Vegas, NV for <a href="http://www.ctiawireless.com/events/">CTIA Spring</a>.</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sstart.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sstart" border="0" alt="4sstart" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sstart_thumb.jpg" width="243" height="485" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4svenues.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4svenues" border="0" alt="4svenues" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4svenues_thumb.jpg" width="243" height="489" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4scheckin.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4scheckin" border="0" alt="4scheckin" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4scheckin_thumb.jpg" width="248" height="495" /></a> </p>
</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4scheckin2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4scheckin2" border="0" alt="4scheckin2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4scheckin2_thumb.jpg" width="248" height="496" /></a>&#160;</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4scheckinconf.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4scheckinconf" border="0" alt="4scheckinconf" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4scheckinconf_thumb.jpg" width="246" height="501" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sfriends.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sfriends" border="0" alt="4sfriends" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sfriends_thumb.jpg" width="246" height="493" /></a> </p>
<p>Now this is something that’s a little different from what you may have seen before. You can see where your nearby friends are on a map. I’ll be honest with you – it was till I was using the Foursquare app on Windows Phone 7 when I first got to Vegas that I new <a href="http://brettpetersel.com/">Brett Petersel</a> was in Vegas for CTIA. I happened to notice another pushpin on the map, clicked on it, and it was him. </p>
<p>Tonight he happens to be at the Benihana which is near the Hilton:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sfriends2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sfriends2" border="0" alt="4sfriends2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sfriends2_thumb.jpg" width="322" height="642" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sfrienddetail.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sfrienddetail" border="0" alt="4sfrienddetail" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sfrienddetail_thumb.jpg" width="226" height="448" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sdirections.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sdirections" border="0" alt="4sdirections" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sdirections_thumb.jpg" width="225" height="446" /></a> </p>
<p>At MIX, <a href="http://www.techflash.com/seattle/2010/03/windows_phone_7_series_apps_microsoft_rolls_out_basics.html">I’d put out a teaser about the ‘Society’ tab within the app</a>. Now, some time back, the Foursquare team told me about their firehose. I asked <a href="http://naveenium.com/">Naveen Selvadurai</a> about a practical use of the firehose within a mobile app, and his response: “that’s your job! ;)” So I thought to myself &#8211; when I’m at an event, like CTIA, what I want to know is <strong><em>where it’s going down right now</em></strong>. Where are people checking in right now? So here’s how we use the foursquare firehose within the WP7 Foursquare app. </p>
<p>Clicking on the Society tab, takes me to this screen:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sheatmap.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sheatmap" border="0" alt="4sheatmap" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sheatmap_thumb.jpg" width="321" height="646" /></a> </p>
<p>The number of checkins is a real-time view of checkins that have been accumulated in the past few minutes. Panning around on the map a little bit to see where the action is tonight:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sheatmap2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sheatmap2" border="0" alt="4sheatmap2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sheatmap2_thumb.jpg" width="315" height="624" /></a></p>
<p>Just a few minutes later, I refreshed the map again. I guess <a href="http://www.arialasvegas.com/">Aria</a>’s the place to be at tonight (at least right now):</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sheatmap3.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4sheatmap3" border="0" alt="4sheatmap3" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/DrinkingfromtheFoursquareFirehosefromWin_13C6F/4sheatmap3_thumb.jpg" width="320" height="645" /></a> </p>
<p>This application was written in C# and <a href="http://silverlight.net">Silverlight</a> and is an example of how we can push the boundaries of user experience and consuming real-time data within a Windows Phone 7 app. You like?</p>
<p><a href="http://twitter.com/ai"><strong>@ai</strong></a></p>
<p>PS: Talk about Foursquare exploding, I saw this <em>in</em> the Las Vegas Hilton:</p>
<p><a title="@foursquare your biz dev guy deserves a raise ;)" href="http://www.flickr.com/photos/81223141@N00/4458027729/"><img border="0" alt="@foursquare your biz dev guy deserves a raise ;)" src="http://farm5.static.flickr.com/4024/4458027729_3f3a831430.jpg" /></a></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-phone-7%2Fdrinking-from-the-foursquare-firehose-on-windows-phone-7%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/0kR-GY_dVMQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone-7/drinking-from-the-foursquare-firehose-on-windows-phone-7/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-phone-7/drinking-from-the-foursquare-firehose-on-windows-phone-7/</feedburner:origLink></item>
		<item>
		<title>The Startup Visa Organization</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/jOym-LZcfJA/</link>
		<comments>http://www.Artificialignorance.net/blog/startup-visa/the-startup-visa-organization/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 23:44:42 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Startup Visa]]></category>
		<category><![CDATA[2gov]]></category>
		<category><![CDATA[brad feld]]></category>
		<category><![CDATA[dave mcclure]]></category>
		<category><![CDATA[eric ries]]></category>
		<category><![CDATA[fred wilson]]></category>
		<category><![CDATA[manu kumar]]></category>
		<category><![CDATA[paul graham]]></category>
		<category><![CDATA[the white house]]></category>
		<category><![CDATA[vivek wadhwa]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/startup-visa/the-startup-visa-organization/</guid>
		<description><![CDATA[I had the privilege of traveling with a bunch of fellow technologists from the Valley to Washington DC a few weeks ago. The purpose was to meet with US government officials on the proposed “Startup/Founder’s Visa” – a visa that would enable entrepreneurs born outside the United States to come here and help create businesses, [...]]]></description>
			<content:encoded><![CDATA[<p>I had the privilege of traveling with a bunch of fellow technologists from the Valley to Washington DC a few weeks ago. The purpose was to meet with US government officials on the proposed “<a href="http://www.startupvisa.com/">Startup/Founder’s Visa</a>” – a visa that would enable entrepreneurs born outside the United States to come here and help create businesses, which would consequently create more jobs in the United States. This trip to DC happened a few weeks back, and I’ve been thinking about writing about it for a while. However, I haven’t been able to find the time to finish my thoughts. It was not till I met an entrepreneur in Austin at <a href="http://www.sxsw.com">SXSW</a> did I really feel the need to push this post through.</p>
<h4><strong>I believe in Dave McClure</strong><span id="more-186"></span></h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/15721v4max250x250.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="15721v4-max-250x250" border="0" alt="15721v4-max-250x250" align="left" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/15721v4max250x250_thumb.jpg" width="87" height="85" /></a>A slight tangent off the main topic… I feel the need to help you understand some of the champions behind this movement. Especially that of <a href="http://500hats.typepad.com/">Dave McClure</a>’s…</p>
<p>As many know, the interaction portion of SXSW is the ultimate event for a tech geek. If you’re involved in technology, you want to go to SXSW. The unfortunate part is that the event has grown ridiculously over the last few years. Apparently SXSW is one of the only tech events that is seeing substantial growth in terms of number of attendees year-over-year. That poses a problem for young and cash-strapped entrepreneurs this day in age. Affording to stay in Austin during SXSW isn’t exactly going to be cost-friendly. </p>
<p>When I was in Austin for SXSW, I met a couple of young entrepreneurs (I haven’t run this post by them, and so I feel it’s appropriate to conceal their names for now). They have a small but fast-growing startup. I was curious to know how these young kids who’re working on a startup that isn’t making money yet, could afford to come to Austin during SXSW. They said Dave McClure helped them – he pulled out his credit card and had them charge their passes (and/or airline tickets, can’t remember now) to his card. As far as I know, this company is <em>trying</em> to get Dave to be an advisor (and maybe an investor) but as of then, Dave wasn’t an investor or an advisor to the startup.</p>
<p>This is unsolicited &#8211; Dave would’ve never mentioned this to me. I’ve known one of the kids working on this startup for a little over a year. If he wasn’t comfortable, he wouldn’t have mentioned this to me. This is how much Dave believes in startups and this story warmed my heart. His calling is to help startups. </p>
<p>So he helped a startup – big deal, right? Yes, big deal. The man’s got a family and is <a href="http://www.crunchbase.com/person/dave-mcclure">involved in at least 19 startups that we know of</a> (if I remember correctly, he worked with over 40 startups last calendar year alone). He helps organize <a href="http://startup2startup.com">Startup2Startup</a>, a monthly event for entrepreneurs to learn from one another. He helps organize the <a href="http://geeksonaplane.com/">Geeks on a Plane</a> trips. I <strike>stalk</strike> follow <a href="http://foursquare.com/user/davemcclure">him on Foursquare</a> – almost every checkin has something to do with meeting a startup somewhere. <strong>Dave McClure believes in startups, and I believe in Dave McClure.</strong></p>
<p>There are some key “activists” who are a part of this organization. </p>
<h4>Brad Feld</h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/bradSm.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="bradSm" border="0" alt="bradSm" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/bradSm_thumb.jpg" width="76" height="76" /></a> <a href="http://www.feld.com">Brad</a> is an investor based in Boulder, CO. I first met Brad through <a href="http://www.techstars.org">TechStars</a>, a seed-stage investment program and startup accelerator based in Boulder. From Brad’s blog:</p>
<blockquote><p><em>from </em><a href="http://www.feld.com/wp/archives/2009/09/startupvisa-momentum.html"><em>StartupVisa Momentum</em></a></p>
<p><em>…</em></p>
<p><em>I have no idea how to address the entire immigration issue in the US.&#160; However, I strongly believe that we should make it easy for people to start new entrepreneurial ventures in the US.&#160; As a result, the </em><a href="http://en.wikipedia.org/wiki/EB-5_visa"><em>EB-5</em></a><em> is an interesting visa to consider.&#160; The simple version is that if a foreign national invests up to $1,000,000 in a US company that creates at least 10 jobs, the foreign national can apply for the visa.&#160; This seems backwards to me.&#160; Rather than grant the visa to an investor, let’s grant the visa to the entrepreneur.&#160; If we change the EB-5 so that foreign nationals starting US companies that are backed by qualified US investors can apply for the visa it seems like we can preserve the general construct of the EB-5 while applying it to a more compelling recipient (the entrepreneur).</em></p>
<p><em>…</em></p>
</blockquote>
<p>Other related posts on this topic by Brad:</p>
<ul>
<li><a href="http://www.feld.com/wp/archives/2009/10/startupvisa-video-and-congressman-jared-polis-comments.html">StartupVisa Video and Congressman Jared Polis Comments</a> </li>
<li><a href="http://www.feld.com/wp/archives/2007/04/i-dont-understand-our-us-immigration-policy.html">I Don’t Understand Our US Immigration Policy</a> </li>
<li><a href="http://www.feld.com/wp/archives/2008/08/solving-the-h-1b-visa-issue.html">Solving the H-1B Visa Issue</a> </li>
</ul>
<h4>Manu Kumar</h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/manu_small.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="manu_small" border="0" alt="manu_small" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/manu_small_thumb.jpg" width="71" height="83" /></a> <a href="http://www.k9ventures.com/people/">Manu</a> is an investor based in the Silicon Valley. Manu is an immigrant and has a great story of being a successful entrepreneur turned VC:</p>
<blockquote><p><em>from </em><a href="http://www.k9ventures.com/2009/09/my-story-and-support-for-the-founders-visa/"><em>My story and support for the Founders Visa</em></a></p>
<p><em>…</em></p>
<p><em>I have chatted first hand with founders of companies that are from Singapore, Ireland, India and various other countries who have to contend with visa issues. These visa issues often become one of the significant hurdles to pursuing their entrepreneurial dreams here in the United States. I am now a bonafide citizen of the United States and as a US citizen, I feel strongly that the best thing the United States can do is to attract and retain the smartest people from all over the world. Having a Founders Visa would not only encourage the formation of new ventures that would create jobs and prosperity in the United States, but would be one more way for the US to attract and retain top talent from all over the world. PG, Brad and others have already addressed how the vetting and qualification process can work to ensure that the right people are allowed into the US. Modifying the criteria for the </em><a href="http://en.wikipedia.org/wiki/EB-5_visa"><em>EB-5 visa</em></a><em> category such that the investment dollars can come from US-based venture capital firms seems to be the most efficient way to make a Founders Visa happen.</em></p>
<p><em>…</em></p>
</blockquote>
<h4>Paul Graham</h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/16021v4max250x250.png"><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="16021v4-max-250x250" border="0" alt="16021v4-max-250x250" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/16021v4max250x250_thumb.png" width="76" height="70" /></a> Paul is a partner at <a href="http://www.ycombinator.com/">Y Combinator</a>, a seed stage venture fund. Paul’s probably been one of the few people who has been vocal about this initiative from a very early time.</p>
<blockquote><p><em>from </em><a href="http://www.paulgraham.com/foundervisa.html"><em>The Founder Visa</em></a></p>
<p><em>…</em></p>
<p><em>Letting just 10,000 startup founders into the country each year could have a visible effect on the economy. If we assume 4 people per startup, which is probably an overestimate, that&#8217;s 2500 new companies. Each year. They wouldn&#8217;t all grow as big as Google, but out of 2500 some would come close.</em></p>
<p><em>…</em></p>
</blockquote>
<h4>Eric Reis</h4>
<p><a href="http://www.startuplessonslearned.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="46998v1-max-250x250" border="0" alt="46998v1-max-250x250" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/46998v1max250x250.jpg" width="85" height="65" /> Eric</a> is another strong proponent of the Startup Visa movement and helped lead our trip to DC.</p>
<blockquote>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:ca92d062-b722-4c11-9032-7fe8c4f8bf93" class="wlWriterEditableSmartContent">
<div id="1db1b20f-9070-4a58-b4a1-d36d07e5d4a1" style="margin: 0px; padding: 0px; display: inline;">
<div><a href="http://www.youtube.com/watch?v=PQ7PrqhRM5U&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" target="_new"><img src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/videoc14eef1a9c12.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('1db1b20f-9070-4a58-b4a1-d36d07e5d4a1'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/PQ7PrqhRM5U&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1&amp;hl=en\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/PQ7PrqhRM5U&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1&amp;hl=en\&quot; type=\&quot;application/x-shockwave-flash\&quot; width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt=""/></a></div>
</div>
</div>
</blockquote>
<h4>Fred Wilson</h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/11119v1max250x250.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="11119v1-max-250x250" border="0" alt="11119v1-max-250x250" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/11119v1max250x250_thumb.jpg" width="75" height="75" /></a> <a href="http://avc.com">Fred Wilson</a> is a popular VC and a prolific blogger. </p>
<blockquote><p><em>from </em><a href="http://www.avc.com/a_vc/2009/09/startup-visas.html"><em>Startup Visas</em></a></p>
<p><em>…</em></p>
<p><em>His risk taking and the innovations of him and his partners and team members are creating a business in the US and creating jobs and wealth that will largely stay in the US. And he cannot even get into our country right now.</em></p>
<p><em>This is nuts. I&#8217;ve got an issue with our immigration policies generally, but specifically we should modify our rules around Visas for founders and key team members of startups that are at least partially based in the US, particularly if they have been well financed by angels and VCs.</em></p>
<p><em>…</em></p>
</blockquote>
<p>Other related posts on this topic by Fred:</p>
<ul>
<li><a href="http://www.avc.com/a_vc/2010/02/lightweight-advocacy.html">Lightweight Advocacy</a> </li>
<li><a href="http://www.avc.com/a_vc/2010/02/the-startup-visa-update.html">The Startup Visa (update)</a> </li>
</ul>
<h4>Vivek Wadhwa</h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/61221v1max250x250.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="61221v1-max-250x250" border="0" alt="61221v1-max-250x250" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/61221v1max250x250_thumb.jpg" width="63" height="86" /></a> <a href="http://www.wadhwa.com/about.html">Vivek</a> is also a prolific blogger and has insightful posts about entrepreneurship.</p>
<blockquote><p><em>from </em><a href="http://techcrunch.com/2009/12/05/the-startup-visa-and-why-the-xenophobes-need-to-go-back-into-their-caves/"><em>The Startup Visa And Why The Xenophobes Need To Go Back Into Their Caves</em></a></p>
<p><em>…</em></p>
<p><em>After all, this visa is about creating American jobs and moving innovation here which would otherwise happen in other countries. We can boost the economy without any cost to taxpayers. It’s not about admitting H-1B visa holders who sometimes make Americans compete for high-paying jobs, but bringing in entrepreneurs who expand the pie for everyone. Not only do the Democrats support this, but so do the Republicans (their thought leader, <strong>Newt Gingrich</strong> </em><a href="http://blog.american.com/?p=4488"><em>blogged</em></a><em> about my previous </em><a href="http://techcrunch.com/2009/08/30/free-the-h-1bs-free-the-economy/"><em>TechCrunch post</em></a><em> on immigration and his staff told me that he was a supporter of the startup visa). So this seems like a no-brainer.</em></p>
<p><em>…</em></p>
</blockquote>
<h4>News Articles</h4>
<p>The movement has been all on the news wires. Here are a couple of recent pertinent posts:</p>
<ul>
<li>
<p>BusinessWeek : <a href="http://www.businessweek.com/technology/content/mar2010/tc2010033_186150.htm">VCs Push StartUp Visa Act</a></p>
</li>
<li>
<p>InformationWeek : <a href="http://www.informationweek.com/news/security/government/showArticle.jhtml?articleID=223101605">Startup Visa Act Proposed To Create US Jobs</a></p>
<ul></ul>
</li>
</ul>
<h4><strong>Current State of Affairs</strong></h4>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/kerrylugar.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="kerry-lugar" border="0" alt="kerry-lugar" align="left" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/kerrylugar_thumb.jpg" width="91" height="89" /></a> On February 24, 2010, Senators <a href="http://kerry.senate.gov/"><strong>John Kerry</strong></a> (D-MA) &amp; <a href="http://go2.wordpress.com/?id=725X1342&amp;site=startupvisa.wordpress.com&amp;url=http%3A%2F%2Flugar.senate.gov%2F"><strong>Richard Lugar</strong></a> (R-IN) introduced <a href="http://startupvisa.files.wordpress.com/2010/02/dc-startup-visa-act-2-24-10.pdf"><strong>The Startup Visa Act</strong></a> in Washington. The full text of the <a href="http://startupvisa.files.wordpress.com/2010/02/startup-visa-act_-final-final-1.pdf">proposed legislation is here</a>. This follows <a href="http://polis.house.gov/Biography/">US Representative <strong>Jared Polis</strong></a> (D, CO-2), who has introduced a similar bill as part of comprehensive immigration reform in the House &#8211; <a href="http://polis.house.gov/UploadedFiles/HR_4259_Employment_Benefit_Act_Summary.pdf">H.R. 4259, the Employment Benefit Act of 2009</a>. Later, HR 4259 was <a href="http://polis.house.gov/News/DocumentSingle.aspx?DocumentID=162532">included in the overall House Comprehensive Immigration Reform Bill</a>.</p>
<p>I’m told that it will take a monumental effort for a bill to become a law. There are bigger fish to fry, understandably so. But we’re much further along than we could’ve ever imagined being at this stage.</p>
<h4><strong>The White House is…</strong></h4>
<p>As I’d mentioned earlier in what’s turning out to be an epic blog post, McClure, Ries and Feld helped us get to DC and meet with senior leaders of several government entities such as the <a href="http://www.uscis.gov/portal/site/uscis"><strong>USCIS</strong></a>, <a href="http://www.commerce.gov/"><strong>Department of Commerce</strong></a>, <a href="http://sba.gov"><strong>Small Business Administration</strong></a> and many others. It was bad-ass enough that we actually met these folks <em><strong>in</strong></em> the White House. What was even more surprising to me was <em>how</em> they met with us…</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/IMAG0019.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IMAG0019" border="0" alt="IMAG0019" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/IMAG0019_thumb.jpg" width="305" height="185" /></a></p>
<p>&#160;<a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/IMAG0021.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IMAG0021" border="0" alt="IMAG0021" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/45015676942c_1254E/IMAG0021_thumb.jpg" width="180" height="298" /></a> </p>
<p>Fundamentally, everyone we spoke with, got <em>it</em>. This is an <strong>open and young government</strong>. Maybe more open than any other government out there (not that I have a lot of experience). From the get-go we were greeted by extremely friendly people and everyone took the time to meet us and know about each of us. It was very obvious that some of these were touchy areas that they couldn’t dive into more detail about. But it was so amazingly refreshing to hear directly from people working on some of the hottest areas that are in dire need of reform. Some of us noticed that a majority of the representatives we spoke with were probably in their mid to late 30s. I’m purposefully avoiding going into more detail as we were specifically asked to keep some things off the record and I want to respect their ask.</p>
<p>At some point during the conversation, one of the representatives leading the discussion told us about how we’ll soon read about this being one of the White House’s efforts to be more open and receptive to change (parapharsing) <em>(which made me wonder – were they doing this and being so nice and receptive because <u>they had to</u>? Only time will tell…) </em>But I want to believe that this is a sign that the government finally gets it – that when true change is needed, the government will ensure this law will go into effect without ‘baggage’ holding it back.</p>
<p><script src="http://twitter.2gov.org/w/src/?perspective_id=28" type="text/javascript"></script></p>
<p><a href="http://twitter.com/ai"><strong>@ai</strong></a></p>
<p><em>[Photo Credits: <a href="http://crunchbase.com">Crunchbase.com</a>, <a href="http://startupvisa.com">StartupVisa.com</a>]</em></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fstartup-visa%2Fthe-startup-visa-organization%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/jOym-LZcfJA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/startup-visa/the-startup-visa-organization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/startup-visa/the-startup-visa-organization/</feedburner:origLink></item>
		<item>
		<title>Developing for Windows Phone 7 Series</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/Rv3hgFZcpAs/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-phone-7/developing-for-windows-phone-7-series/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 17:02:00 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[dreamspark]]></category>
		<category><![CDATA[expression blend 4]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[push notifications]]></category>
		<category><![CDATA[visual studio 2010]]></category>
		<category><![CDATA[windows phone 7 series]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-phone-7/developing-for-windows-phone-7-series/</guid>
		<description><![CDATA[Some time back the team and I talked about our commitment to the Silverlight and XNA platforms on Windows Phone 7 Series as the primary developer platforms. We also promised to go into more detail about these platforms at MIX. Not to oversimplify things, but, you can think about creating an application using the following [...]]]></description>
			<content:encoded><![CDATA[<p>Some time back <a href="http://blogs.msdn.com/ckindel/archive/2010/03/04/different-means-better-with-the-new-windows-phone-developer-experience.aspx">the team</a> and <a href="http://www.artificialignorance.net/blog/windows-phone/windows-phone-7-series-developers-developers-developers/">I talked about</a> our commitment to the Silverlight and XNA platforms on Windows Phone 7 Series as the primary developer platforms. We also promised to go into more detail about these platforms at <a href="http://visitmix.com/events">MIX</a>.</p>
<p>Not to oversimplify things, but, you can think about creating an application using the following iterative process:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/Graphic1.jpg"><img style="display: inline; border-width: 0px;" title="Graphic1" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/Graphic1_thumb.jpg" border="0" alt="Graphic1" width="723" height="208" /></a></p>
<p>While I can’t help you a whole lot with the ideation, I want to drill into a little more detail about how you can <strong>Design, Develop</strong> <strong>and Test </strong>your app, and eventually <strong>Distribute and Monetize </strong>your Windows Phone 7 app. The easiest way to think about how to design and develop for Windows Phone 7 Series is to break it down in to <strong>the platform </strong>piece and <strong>the tools</strong> piece.<span id="more-182"></span></p>
<h3>The Platform</h3>
<h4>Silverlight and XNA</h4>
<p>As we’d mentioned earlier, 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>. The Silverlight platform will be a superset of Silverlight 3 with some specific APIs and features that cater to the phone. The .NET Compact Framework, as we know it today, will not be exposed in Windows Phone 7 Series.</p>
<h4>Location and Push Notification Services</h4>
<p>The need to get a device user’s current pinpoint location has become increasingly important to mobile application developers. We’ll be exposing APIs for developers to get a user’s current location. The API in turn will use a variety of techniques, including GPS, Cell Tower Information (where possible) and WiFi based lookup (where possible).</p>
<p>Developers also want to be able to asynchronously send information down to devices that have their applications installed. This is typically information pertinent to an application and the services they expose (like informing a user asynchronously that a friend may have posted something on their Facebook wall, for example). To enable this scenario easily, we have the Push Notification Service, a mechanism for sending information over HTTP directly to the phone, regardless of whether or not the application is running. This information in turn can be used to send notifications to the user in the form of a ‘toast’ or by updating a live tile on the start screen.</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/livetilexample.jpg"><img style="display: inline; border-width: 0px;" title="livetilexample" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/livetilexample_thumb.jpg" border="0" alt="livetilexample" width="252" height="279" /></a></p>
<p><em>Example of a Live Tile</em></p>
<h4>Hardware Design Specification</h4>
<p>One of the biggest questions I keep getting is about the <em>type</em> of Windows Phone 7 devices that will be hitting the market. This is obviously a sensitive area for developers – <em>the software looks great, what can I expect from the hardware?</em></p>
<p><strong>There is a <span style="text-decoration: underline;">single</span> Windows Phone 7 Series hardware specification &#8211; </strong>hardware manufacturers will use this specification as a baseline to build devices that will run Windows Phone Operating System 7.0<strong>.</strong> Developers can count on the fact that all Windows Phone 7 Series hardware will include</p>
<ul>
<li>a powerful processor,</li>
<li>256 MB of RAM with a minimum of 4 GB Flash,</li>
<li>802.11 b/g wireless,</li>
<li>capacitive only screen,</li>
<li>5 sensors – A-GPS, accelerometer, compass, proximity and light, and,</li>
<li>two options for kinds of screens; WVGA at launch and HVGA coming shortly thereafter.</li>
</ul>
<h3>The Tools</h3>
<p>With previous versions of Windows Mobile, there were a myriad of issues with trying to acquire the right tools including things like the cost of actually acquiring the tools itself, localization issues, performance (of the emulators) and many more. <a href="http://blogs.msdn.com/ckindel">Charlie Kindel</a>, the developer platform lead, and Drew Lytle, lead program manager on the developer platform, talk about how they wanted the tooling to be “friction free” – easy to acquire, easy to install, easy to get developing.</p>
<p>You can head over to the <a href="http://developer.windowsphone.com"><strong>http://developer.windowsphone.com</strong></a> portal and download a <strong><span style="text-decoration: underline;">free</span></strong> tool, called the Windows Phone Developer Tools Preview, that will bring down the requisite pieces for you to able to developer for Windows Phone 7 Series. This download is about 3MBs big. <strong>These requisite pieces are also <span style="text-decoration: underline;">free</span></strong> and will include:</p>
<ul>
<li>Preview of <strong>Visual Studio 2010 Express for Windows Phone</strong> if you do not have Visual Studio 2010 installed, <strong>Windows Phone 7 Series Add-in for Visual Studio 2010</strong> if you have Visual Studio 2010 installed</li>
<li><strong>XNA Game Studio 4.0 </strong></li>
<li><strong>Windows Phone 7 Series Emulator</strong></li>
</ul>
<p>Designers are a crucial piece to our application development story. Especially since Silverlight is one of the key developer platforms on board, we want to enable designers to be able to do their jobs well. <a href="http://microsoft.com/expression">Expression Blend</a> is a tool that helps designers design Silverlight based applications. Today, we have a preview of <strong>Expression Blend 4 for Windows Phone </strong>available which is also free. <a href="http://electricbeach.org/?page_id=2">Christian Schormann</a> is the authority on our team on Expression Blend – be sure to read <a href="http://electricbeach.org/?p=438">his blog post on Expression Blend 4</a>.</p>
<p>All that said, now imagine being able to use Expression Blend to design your applications, Visual Studio to complete the development and being able to create a sweet Windows Phone application that you can easily test on a highly performant emulator. <strong>*drool*</strong></p>
<p><strong><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/VS2010.jpg"><img style="display: inline; border-width: 0px;" title="VS2010" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/VS2010_thumb.jpg" border="0" alt="VS2010" width="653" height="460" /></a> </strong></p>
<p><em>Visual Studio 2010 Express for Windows Phone</em></p>
<p><strong><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/WP7Emulator.jpg"><img style="display: inline; border-width: 0px;" title="WP7Emulator" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/391f5e09dbed_5346/WP7Emulator_thumb.jpg" border="0" alt="WP7Emulator" width="328" height="575" /></a> </strong></p>
<p><em>Windows Phone 7 Emulator</em></p>
<h3>Distribute and Monetize</h3>
<p>Once you’re done designing, developing and testing, you want to be able to distribute your application and possibly monetize. There are two components to this piece, one is <strong>the developer portal </strong>where you can submit your applications, the other the <strong>Windows Phone Marketplace client</strong> that will help you acquire applications from your device and/or your computer. The Windows Phone Marketplace will be the exclusive way to download apps to your Windows Phone 7 Series device (we will provide avenues for developers to ‘unlock’ their phones for testing purposes). We will furnish information on submitting applications to the Marketplace at a later time.</p>
<p>On the device, the Windows Phone Marketplace is it’s own hub. The layout is beautiful, and it will help consumers discover apps and games easily. There are also hooks to <strong>discover</strong> relevant applications through other hubs, like being able to find a music application from the Music and Videos hub, for example.</p>
<p>One of the key features that have been added to this implementation has been the ability for developers to programmatically support a trial mode within their application. This way consumers have the option of <strong>trying before they buy </strong>an app. Developers will also be able to ‘<strong>deep link</strong>’ to the applications they have developed and furnished on the Marketplace from their own website, thereby making it easier for consumers to download apps.</p>
<p>And, <strong>students </strong>who are registered for <a href="http://dreamspark.com"><strong>Dreamspark</strong></a> can register on the <a href="http://developer.windowsphone.com/Marketplace.aspx">Windows Phone Marketplace</a> and submit up to two applications for <strong>free</strong>.</p>
<h3>Ideate, Design + Develop + Test <strong>Today</strong></h3>
<ul>
<li>We have a bunch of resources going live to help you get going. <strong>Your one stop shop to get all the required content is <a href="http://developer.windowsphone.com">http://developer.windowsphone.com</a></strong></li>
<li>Charlie Kindel&#8217;s post: <a href="http://windowsteamblog.com/blogs/wpdev/archive/2010/03/15/the-right-mix.aspx">The Right MIX</a></li>
<li><a href="http://charlespetzold.com/">Charles Petzold</a> is working on the first ever Windows Phone 7 Series development book, titled “<strong>Programming Windows Phone 7 Series</strong>”. An e-book will be made available shortly – stay tuned.</li>
<li>I want to constantly highlight applications that you are developing for Windows Phone 7 Series both on my blog as well as the <a href="http://windowsteamblog.com/blogs/wpdev/default.aspx">Windows Team Developer Blog</a>. So, let me know once you have an app cookin’.</li>
<li>Tim Heuer&#8217;s post: <a href="http://timheuer.com/blog/archive/2010/03/15/get-started-with-silverlight-for-windows-phone.aspx">Getting Started with Silverlight and Windows Phone 7 development</a></li>
<li>Michael Klucher&#8217;s post: <a href="http://klucher.com/blog/windows-phone-developer-tools-xna-game-studio-4-0-available-now/">Windows Phone Developer Tools + XNA Game Studio 4.0 Available Now!</a></li>
<li>Christian Schormann&#8217;s post: <a title="Introducing Blend 4 – For Silverlight, WPF and Windows Phone" rel="bookmark" href="http://electricbeach.org/?p=438">Introducing Blend 4 – For Silverlight, WPF and Windows Phone</a></li>
<li>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>) and <a href="http://electricbeach.org/">Christian Schormann</a> (@<a href="http://twitter.com/cschormann">cschormann</a>).</li>
</ul>
<p><a href="mailto:“@ai"><strong>@ai</strong></a></p>
<p><em>now playing in my head: Steve Ballmer screaming &#8220;Phone Developers&#8221; (a la the Marionette Windows Phone 7 Series app)</em></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-phone-7%2Fdeveloping-for-windows-phone-7-series%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/Rv3hgFZcpAs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone-7/developing-for-windows-phone-7-series/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-phone-7/developing-for-windows-phone-7-series/</feedburner:origLink></item>
		<item>
		<title>Windows Phone 7 Series – Developers, Developers, Developers</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/DPY4bmyBGYw/</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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/DPY4bmyBGYw" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-phone/windows-phone-7-series-developers-developers-developers/</feedburner:origLink></item>
		<item>
		<title>“Seven”</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/hsui7deTG3Y/</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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/hsui7deTG3Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-phone/seven/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>

		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-phone/seven/</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/artificialignorance/~5/MnUDXjw8s-0/wp7.wmv" length="294440319" type="video/x-ms-wmv" /><feedburner:origEnclosureLink>http://ecn.channel9.msdn.com/o9/ch9/wp7.wmv</feedburner:origEnclosureLink></item>
		<item>
		<title>WinMoSquare – Foursquare for Windows phone now in Beta</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/FaxIIMxUMnU/</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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/FaxIIMxUMnU" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/</feedburner:origLink></item>
		<item>
		<title>Exchange Business Cards on Twitter – @TwtMyCard</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/j4HgtJ-Jr5s/</link>
		<comments>http://www.Artificialignorance.net/blog/twtmycard/exchange-business-cards-on-twitter-twtmycard/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 17:00:00 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[twtmycard]]></category>
		<category><![CDATA[business cards]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[vards]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/twtmycard/exchange-business-cards-on-twitter-twtmycard/</guid>
		<description><![CDATA[[Update 2/21/2010: TwtMyCard has been deadpooled :( Both Kevin and I love the concept and the promise of what TwtMyCard can deliver, but the cost of hosting the app deters our from keeping the project alive. We still love you.] At SXSW this year, I noticed a few trends &#8211; everyone was exchanging business cards [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>[Update 2/21/2010: TwtMyCard has been deadpooled :( Both Kevin and I love the concept and the promise of what TwtMyCard can deliver, but the cost of hosting the app deters our from keeping the project alive. We still love you.]</strong></h3>
<p>At <a href="http://sxsw.com/">SXSW</a> this year, I noticed a few trends &#8211; <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="bizcards" border="0" alt="bizcards" align="right" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/bizcards.jpg" width="256" height="193" /></p>
<ul>
<li>everyone was exchanging business cards with everyone else, </li>
<li>by hour 2 of being at the event on any given day, people would run out of business cards, </li>
<li>by the end of each day, I’d have my pockets full of other people’s business cards, and, </li>
<li>almost everyone I met was on twitter. </li>
</ul>
<p>I make a conscious effort to convert physical business cards to contacts on Outlook. I <em>really really </em>do. But when you have over 150 business cards that you’ve collected over a week, you are limited in terms of what you can do with those cards.<span id="more-174"></span></p>
<h3>The problem</h3>
<p><em>(I’m going to try to use <a href="http://500hats.typepad.com/500blogs/2009/08/your-solution-is-not-my-problem.html">the “Dave McClure technique” of explaining the problem and the solution</a>. Granted, I don’t have any numbers to back up my claims at this time.)</em></p>
<p><strong>Business cards.</strong> </p>
<ol>
<li>It’s cumbersome to carry around 100s of business cards. </li>
<li>The cards you receive some times never make it in electronic fashion to your computer. </li>
<li>You’re wasting paper by using business cards. </li>
<li>Some times when you meet that really important person, you almost instantly want to acknowledge the fact that you met them. I’ve noticed this as a trend as well – every now and then at a conference someone would ask me what my twitter handle was, and would want to send me a message right then and there. I’ve done this myself, here’s a personal example:
<p><a href="http://twitter.com/anandiyer/statuses/2946724766"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="chamillionaire" border="0" alt="chamillionaire" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/chamillionaire.jpg" width="278" height="118" /></a> <a href="http://twitter.com/chamillionaire/statuses/2946828568"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="chamillionaire2" border="0" alt="chamillionaire2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/chamillionaire2.jpg" width="291" height="130" /></a> </li>
<li>Some <strong>existing</strong> business card <strong>solutions</strong> almost <strong>force</strong> you to exchange this information in an electronic fashion <strong>instantaneously</strong>. That doesn’t really translate to how business cards work in the real world today. When you exchange physical business cards with someone, you are not obligated to <em>electronically</em> exchange this information as well. You’re expected to go back home and <em><u>maybe</u></em> transfer this on to your computer. Some solutions require you to hand out your phone number – that’s way too personal. Twitter handles are not that personal. I was really impressed that <a href="http://www.shoeboxed.com">Shoeboxed</a> slipped me an envelope under my hotel room door at SXSW this year, and prompted me to send them my business cards (which they should’ve parsed and converted to electronic format). It’s been over 6 months and I still haven’t heard back from them about the business cards that I’d mailed to them. </li>
<li>In some instances you don’t know how you met this person. Some people are prudent enough to carry around a pen, and usually make a note behind a business card. </li>
</ol>
<h3>The solution</h3>
<p><a href="http://www.twtmycard.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="tmc_logo" border="0" alt="tmc_logo" align="right" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/tmc_logo.jpg" width="174" height="159" /></a>Announcing <a href="http://www.twtmycard.com"><strong>TwtMycard</strong></a> &#8211; exchange business cards over Twitter.&#160; </p>
<p>Here’s how it works :</p>
<ol>
<li>Sign on to <a href="http://twtmycard.com">http://twtmycard.com</a> using your Twitter credentials (we use OAuth). </li>
<li>Submit your profile information <em>or</em> upload a vCard, which we will parse for you. </li>
<li>You can set your profile to be public or private. If your profile is set to be private, your profile can only be seen by people you have explicitly sent your card to. </li>
<li>Follow @<a href="http://twitter.com/twtmycard">twtmycard</a> (the ‘bot’ will automatically follow you back). </li>
<li>When you meet someone who you want to share your profile information with
<ol>
<li>ask them for their twitter handle, </li>
<li>send a direct message to @twtmycard with their handle.
<p>For example. I’ve just @ksmarshall, and I want to share my card with him.           </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/DMtwtmycard.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DMtwtmycard" border="0" alt="DMtwtmycard" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/DMtwtmycard_thumb.jpg" width="612" height="209" /></a> </li>
<li>TwtMyCard will then send that person (ksmarshall in this example) a message with your profile information. The bot will act as a proxy, and send a tweet, @ message, to the recipient. That way this tweet doesn’t show up on YOUR twitter stream.
<p><a href="http://twitter.com/twtmycard/status/3752733747"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="twtmycard ksmarshall" border="0" alt="twtmycard ksmarshall" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/twtmycardksmarshall.jpg" width="405" height="263" /></a>           <br /><em>(note that tweet was sent by @twtmycard, not by me)            <br /></em></li>
<li>That’s it! Since my profile is public, visit <a href="http://twtmycard.com/anandiyer">http://twtmycard.com/anandiyer</a> and you will see this :
<p><a href="http://twtmycard.com/anandiyer"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="twtmycard anandiyer" border="0" alt="twtmycard anandiyer" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/AnnouncingTwtMyCard_456/twtmycardanandiyer.jpg" width="484" height="376" /></a> </li>
</ol>
</li>
</ol>
<h3>What’s under the hood?</h3>
<p><strong>First off, my friend </strong><a href="http://blogs.claritycon.com/blogs/kevin_marshall/default.aspx"><strong>Kevin Marshall</strong></a><strong> (@</strong><a href="http://twitter.com/ksmarshall"><strong>ksmarshall</strong></a><strong>) deserves a HUGE pat on the back for this</strong>. I first had this idea first at SxSW and had created an ugly-as-sin prototype several months later. I’d coded it using WebForms in ASP.NET and C# and hosted it on <a href="http://www.microsoft.com/azure/windowsazure.mspx">Windows Azure</a>. I shared the idea with Kevin, who basically threw away all my code and rewrote the ENTIRE thing in <a href="http://www.asp.net/mvc">ASP.NET MVC</a> and of course made it look ridiculously pretty.</p>
<p>There’s a front-end Windows Azure web role that you get to see, and a background worker role (we call it the ‘bot’) that wakes up every few minutes, reads all the direct messages (since the last time it read DMs), parses the message, and sends @ messages to the recipient with a link to the sender’s profile.</p>
<p>All the profile data is hosted on Azure Table Storage.</p>
<h3>Future</h3>
<p><strong>TwtMyCard is VERY much <strike>a beta</strike> an alpha project. </strong>There’s still a decent amount of work to be done.</p>
<ol>
<li>Add <a href="http://www.microsoft.com/tag">Microsoft Tag</a> Support. </li>
<li>Cancel your account. </li>
<li>Add EULA and information about user privacy. </li>
<li>Add context to your tweet (so that you can recollect how you met this person) </li>
<li>Support changes in Twitter uids </li>
</ol>
<p>Have ideas for us? Add it on <a href="http://twtmycard.uservoice.com/pages/24839-general">our uservoice page</a>.</p>
</p>
</p>
</p>
</p>
<h3>What does this mean for Kevin and I?</h3>
<p>Neither of us are quitting are day jobs. Period. This is purely a passion project. We’ll continue to work on it on the side. Maybe :)</p>
<p><em><strong>In all seriousness, this project has NOTHING to do with my employer, Microsoft Corp., or Kevin’s employer, Clarity Consulting. These companies should not be held liable for anything related to TwtMyCard. Please dont hold us liable for any data you store on TwtMyCard. While we <u>promise</u> to not use your information maliciously, we cannot be held liable if something goes wrong &#8211; this is very much an alpha product.</strong></em></p>
<h3>Start using it now!</h3>
<p><a href="http://www.twtmycard.com">http://www.twtmycard.com</a></p>
<p><em>-<strong>Kevin</strong> and “<strong>ai</strong>”</em></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Ftwtmycard%2Fexchange-business-cards-on-twitter-twtmycard%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/j4HgtJ-Jr5s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/twtmycard/exchange-business-cards-on-twitter-twtmycard/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/twtmycard/exchange-business-cards-on-twitter-twtmycard/</feedburner:origLink></item>
		<item>
		<title>Dan’l Lewin and Social Capital</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/8w7fvhwNUpY/</link>
		<comments>http://www.Artificialignorance.net/blog/microsoft/danl-lewin-and-social-capital/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 06:56:39 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[microsoft]]></category>
		<category><![CDATA[dan'l lewin]]></category>
		<category><![CDATA[guy kawasaki]]></category>
		<category><![CDATA[microsoft svc]]></category>
		<category><![CDATA[social capital]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/microsoft/danl-lewin-and-social-capital/</guid>
		<description><![CDATA[At a BarCamp a couple of years ago, I heard Tara Hunt speak about Social Capital (more about Tara and ‘Whuffie’ here). It was the first time I’d tried to associate and quantify social worthiness (in my sort of layman’s interpretation) or social standing or capital with a human being. Tara’s talk, and consequently being [...]]]></description>
			<content:encoded><![CDATA[<p>At a <a href="http://www.barcamp.org">BarCamp</a> a couple of years ago, I heard <a href="http://www.horsepigcow.com">Tara Hunt</a> speak about Social Capital (<a href="http://fastwonderblog.com/2009/03/15/making-whuffie-raising-social-capital-in-online-communities-tara-hunt/">more about Tara and ‘Whuffie’ here</a>). It was the first time I’d tried to associate and quantify social worthiness (in my sort of layman’s interpretation) or social standing or capital with a human being. Tara’s talk, and consequently being friends with her, helped me understand the concept a lot better.</p>
<p>Switching gears… I attended <a href="http://www.startup2startup.com">Startup2Startup</a> this evening, an event <a href="http://www.500hats.com">Dave McClure</a> puts together every month. The title of this month’s talk was <a href="http://startup2startup.com/2009/08/23/sept3-calacanis-kawasaki/">CeWebrity DeathMatch: Jason Calacanis vs Guy Kawasaki on “Is Apple Becoming Big Brother?”</a> This obviously interested me a lot, given <a href="http://www.artificialignorance.net/blog/windows-mobile/hello-im-a-windows-phone/">my new role on Windows Mobile</a>, the recent issues that have surfaced with <a href="http://www.techmeme.com/090821/p86#a090821p86">Google Voice on the iPhone</a> etc. The conversation this evening jumped around quite significantly, but a few things <a href="http://www.guykawasaki.com">Guy Kawsaaki</a> said, especially about <a href="http://www.microsoft.com/presspass/exec/lewin/default.mspx">Dan’l Lewin</a> and Microsoft, really stood out: </p>
<p><em>Disclosure : I used to (indirectly) work in Dan’l Lewin’s organization on <a href="http://www.microsoft.com/bizspark">BizSpark</a> till about 2 weeks ago.</em><span id="more-172"></span></p>
<p><em><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="Capture" border="0" alt="Capture" align="right" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/4afccc8b060c_135E4/Capture_thumb.jpg" width="282" height="241" /></em></p>
<blockquote><p>Dave McClure (@ 55:58) : How about Microsoft these days? I was actually surprised that there weren’t that many hands&#160; that were going up about Microsoft being evil, because, … I’d say they’ve had a little of the edge taken off lately. I don’t think they’re as on top of their evil as they used to be. </p>
<p>Guy Kawasaki (@ 56:12) : You know I think a lot of that is because … well, I think one of the smartest things that Microsoft has ever done is create the Mountain View campus. And at that Mountain View campus which they, you know, you can use that conference facility all the time, it’s really cheap and it’s really convenient [Dave McClure adds, “it’s a lovely facility”]. And so now, rather than think there’s these evil people in Washington, now there are these people in Mountain View, we’re going to a conference there, and they&#8217; only charging us for food, 20 bucks a head, so life is good.<strong> Dan’l Lewin single handedly is changing the impression of Microsoft in Silicon Valley</strong> because now they’re making sort of warm body contact, it’s not just, oh, Bill Gates is plotting the end of freedom. In Seattle.</p>
</blockquote>
<p>At some point this evening, Guy had made a comment that resonated very well with the table that I was sitting at. Guy said that he never consciously says anything bad about a product, a company or a person – it’s just not in his nature to do that. And that really showed this evening. While Calacanis and him were involved in somewhat serious banter, it never occurred to me that Guy was trying to talk anyone down. Even when <a href="http://ross.typepad.com/">Ross Mayfield</a> asked a question about what Google and Apple can do to be more open, Guy didn’t really talk either of those companies down – he simply responded by wishing they would be more open, more open like Microsoft:</p>
<blockquote><p>Guy Kawasaki (@ 01:02:38) : Maybe Dan’l Lewin is the only open guy at Microsoft, and it’s all an illusion, but my impression is that… I have to tell you that in all the dealings I’ve had with <strong>Microsoft people</strong>, I’ve never thought that they are evil. <strong>They were very friendly, they were efficient</strong>, more efficient than Apple people, and, <strong>they didn’t carry on with this air of superiority</strong>.</p>
</blockquote>
<p>Here’s the video from the event this evening.</p>
<blockquote><p><embed flashvars="autoplay=false" width="480" height="386" allowfullscreen="true" allowscriptaccess="always" src="http://www.ustream.tv/flash/video/2100521" type="application/x-shockwave-flash" /></p>
</blockquote>
<p>As a Microsoft employee and evangelist, I had a huge grin on my face when I heard these comments. I was surveying the room as Guy was speaking and saying these positive things about us, and I saw a lot of people nodding in agreement, including <a href="http://calacanis.com/">Jason Calacanis</a>. For the past few years that I’ve worked at Microsoft, I can’t remember when a week has gone by and someone here in the valley didn’t have something positive to say about Dan’l. This social capital that Dan’l has accrued over the years is obviously doing wonders for Microsoft and the way we’re being perceived here.</p>
<p><strong>Thank you, Guy.</strong></p>
<p>“<strong>ai</strong>”</p>
<p>PS: Some of you may recall that Guy had made similar comments when <a href="http://www.microsoft.com/presspass/exec/steve/2008/03-06MIX08.mspx">he interviewed Steve Ballmer at MIX a couple of years ago</a>:</p>
<blockquote><p><strong>GUY KAWASAKI:</strong> I will tell you, you know, Dan&#8217;l Lewin and his crew down in Mountain View, I think they&#8217;ve done wonders for your image in Silicon Valley. Just having that facility and basically anybody can rent that facility and use it, so now where Microsoft was this Evil Empire up in Washington, now it&#8217;s in Mountain View, and you use their facilities, and it&#8217;s got great food, cheap, fast, great A/V. It&#8217;s a really nice facility. I just hope you have more of those facilities around, because I really think that just letting people use the Microsoft facility and seeing Microsoft employees touching them, has done wonders for you in Silicon Valley. (Laughter.)</p>
</blockquote>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fmicrosoft%2Fdanl-lewin-and-social-capital%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/8w7fvhwNUpY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/microsoft/danl-lewin-and-social-capital/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/microsoft/danl-lewin-and-social-capital/</feedburner:origLink></item>
		<item>
		<title>Windows phones launching October 6, 2009</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/jPFauGRIz9g/</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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/jPFauGRIz9g" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-phone/windows-phones-launching-october-6-2009/</feedburner:origLink></item>
		<item>
		<title>Windows (Mobile) Phone is hiring in the Valley!</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/PoN8_bn6gv4/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-mobile/windows-mobile-phone-is-hiring-in-the-valley/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 23:25:06 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[hiring]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-mobile/windows-mobile-phone-is-hiring-in-the-valley/</guid>
		<description><![CDATA[As you may know, I recently joined the Windows Phone team. As the team prepares for 6.5 and our ongoing marketing plans, our team is looking to fill six positions with high caliber entrepreneurial marketing professionals who want to help blaze the trail for Microsoft in connecting mobile customers with cool apps. These positions offer [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, <a href="http://www.artificialignorance.net/blog/windows-mobile/hello-im-a-windows-phone/">I recently joined the Windows Phone team</a>. As the team prepares for <a href="http://www.microsoft.com/presspass/press/2009/feb09/02-16MWCPR.mspx">6.5</a> and our ongoing marketing plans, our team is looking to fill six positions with high caliber entrepreneurial marketing professionals who want to help blaze the trail for Microsoft in connecting mobile customers with cool apps. These positions offer a range of opportunities and include shaping the Marketplace user experience, executing strategic on device marketing and promotional initiatives, building high impact business and channel partnerships, driving financial returns, and cultivating ISV and mobile operator partner satisfaction.&#160; These positions are located in either Palo Alto, CA or in Redmond as indicated.&#160; </p>
<blockquote><p><span id="more-167"></span>
<p><strong>Windows<sup>®</sup> Marketplace for Mobile</strong> is Microsoft’s mobile application and games store that will be released with the launch of Windows Phones later this fall providing <strong>over 30M Windows phone customers</strong> with a convenient and confident way to discover and download the apps that make their phone theirs. </p>
<p>· <b>Senior Product Manager, Windows Marketplace.&#160; </b>This <a href="https://careers.microsoft.com/JobDetails.aspx?ss=&amp;pg=0&amp;so=&amp;rw=4&amp;jid=4884&amp;jlang=EN">senior product manager role</a> is responsible for driving strategy and execution of deployment and market development partnerships with Mobile Operators and other distribution partners in partnership with our field and business development to expand and grow the reach of Windows Marketplace worldwide.&#160; Redmond, WA<b></b></p>
<p><b></b></p>
<p>· <b>Regional Merchandising Manager (RMM), North America</b>. The <a href="https://careers.microsoft.com/JobDetails.aspx?ss=&amp;pg=0&amp;so=&amp;rw=2&amp;jid=6492&amp;jlang=EN">RMM, North America</a> will drive day-to-day Windows Marketplace merchandising strategy and execution in the North America region.&#160; Key responsibilities include planning &amp; executing the programming of all available Marketplace promotional inventory for the region, as well as driving strategic promotional initiatives with developer and mobile operator partners.&#160; Palo Alto, CA</p>
<p>· <b>Regional Merchandising Manager (RMM), Europe</b>. The RMM, Europe will own and drive day-to-day Windows Marketplace merchandising strategy and execution in the European region.&#160; Key responsibilities include planning &amp; executing the programming of all available Marketplace promotional inventory for the region, as well as driving strategic promotional initiatives with developer and mobile operator partners.&#160; The position, while focused on the European region, will be based locally in Palo Alto.&#160; Palo Alto, CA</p>
<p>· <b>Merchandising Manager, Affiliate Programs</b>. The Merchandising Manager, Affiliate Programs will define and lead a global program to enable regional Microsoft field teams to participate in Windows Marketplace merchandising to end users in their regions, as well as potential direct merchandising efforts in select markets or with key mobile operator partners.&#160; Key responsibilities will include 1) Providing Microsoft field teams with the necessary tools, processes and resources to influence or execute Marketplace merchandising to end users in their territories; and 2) Defining an growth strategy and operational plan for the program, including budget &amp; resource requirements, prioritization of markets and other phased approaches as necessary.&#160; Palo Alto, CA</p>
<p>· <b>Production Manager</b> – The Production Manager will develop and manage key publishing support services for the Windows Marketplace Merchandising team on a global basis.&#160; This key leadership role will own processes related to global publishing execution, asset production, localization and verification.&#160; Palo Alto, CA</p>
<p>· <b>Senior Product Manager, Sell-Through Services</b>. This senior product manager role will be responsible for growing Windows Marketplace downloads and sell-through on a global basis via research and analytics programs, new merchandising strategies, and coordination with promotional assets across Microsoft.&#160; Key responsibilities include: 1) Developing a centralized services function to provide market research, sales &amp; campaign data, and other relevant analytics to Regional Merchandising Managers to inform and measure the effectiveness of merchandising decisions on a market, regional and global basis; and 2) Designing and implementing strategies to improve the efficiency and reach of merchandising activities, such as business rules for targeting, rotation or merchandising to multiple markets simultaneously.&#160;&#160; Flexible.&#160; Redmond or Palo Alto</p>
</blockquote>
<p>Feel free to <a href="mailto:anand.iyer@microsoft.com">drop me a note with your résumé</a> if any of these openings catch your eye.</p>
<p>“<strong>ai</strong>”</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-mobile%2Fwindows-mobile-phone-is-hiring-in-the-valley%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/PoN8_bn6gv4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-mobile/windows-mobile-phone-is-hiring-in-the-valley/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-mobile/windows-mobile-phone-is-hiring-in-the-valley/</feedburner:origLink></item>
		<item>
		<title>Hello. I’m a Windows Phone</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/x4PMPrqRWgc/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-mobile/hello-im-a-windows-phone/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 15:00:00 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[new job]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-mobile/hello-im-a-windows-phone/</guid>
		<description><![CDATA[After four and a half years as in the field organization of Microsoft an Evangelist, I’ve decided to move jobs within the company. I’ll be moving to the Windows Mobile team as a Product Manager, helping shape the application development experience for our mobile platform among the startup and student audiences around the world. My [...]]]></description>
			<content:encoded><![CDATA[<p>After four and a half years as in the field organization of Microsoft an Evangelist, I’ve decided to move jobs within the company. I’ll be moving to <strong>the Windows Mobile team</strong> as a <strong>Product Manager</strong>, helping shape the <strong>application development experience</strong> for our mobile platform among the <strong>startup and student audiences</strong> around the world. My job will be to participate (or help people participate)&#160; in as many events as possible and expose people to the possibilities on these devices.</p>
<h4>Why now?</h4>
<p>While <a href="http://www.microsoft.com/bizspark">BizSpark</a> has been a roaring success, and I could do broad marketing and evangelism for as long as I live, for the last couple of years I have been wanting to move back to focus more on a single product. BizSpark served as the platform for me to spread my wings and really lead a program for the US subsidiary, and I learned a lot along the way. In fact, if it weren’t for the success that we’d seen there, my good friend <a href="http://blogs.msdn.com/lokeuei">Loke Uei Tan</a> would not have tapped me on the shoulder and referred me to the job.</p>
<p>It should be no surprise that mobile is a very hot area. My good friend, Kedric Van de Carr (now with <a href="http://www.smaato.com">Smaato</a>), who is very involved in the mobile community in the Valley, has been telling me for months about how hot the mobile industry is and how it’s going to grow. The numbers don’t lie.<span id="more-163"></span></p>
<p>If you recall my post about <a href="http://www.artificialignorance.net/blog/microsoft/the-microsoft-career-discussion/">the Microsoft Career Discussion</a>, Microsoft is extremely supportive of your career plans and how you want to progress. I burned into my career plan that at some point in the near future, I wanted to move into product management and that I would like to learn more about businesses worldwide. This is step 1 in realizing that career goal.</p>
<h4>Windows (Mobile) Phone? Really?</h4>
<p>Yes, really. <strong>I won’t be necessarily the first to admit that we have a big battle ahead of us</strong>. We <strong>have</strong> been quiet on what we’ve been working on, but I’ll do my best to change that and be transparent when and where we can. The iPhone is a phenomenal device, Android is hitting its stride with its second generation, Blackberry and Nokia have strong footholds with their loyal audiences and Palm is resurging. <a href="http://gigaom.com/2009/08/19/microsoft-mobile-strategy-fail/">Om is writing us off</a> because of <a href="http://gigaom.com/2008/10/15/why-windows-mobile-is-in-trouble/">discussions he’s had with a manufacturer</a>. But Microsoft is not one to sit back and just watch, and we have a kick-butt story with 6.5 and beyond. </p>
<h4>What would you do, if you were me?</h4>
<p>I know everyone’s got a ton of opinions in this area, and there’s seems to be <a href="http://www.techmeme.com/090819/p7#a090819p7">a fair amount of speculation</a>. I completely understand that we could be doing a better job of communicating about our strategy and the future, and I’ll work on that. But what is your take? What can we do to help you better leverage the Windows Phone experience from an application or a consumer perspective?</p>
<h4>Want my old job?</h4>
<p>Oh, and, do you know anyone who’d want my old job? You’ll get our program manage Startup oriented evangelism efforts (BizSpark). If you’re interested, and live in the SF Bay Area, <a href="mailto:anand.iyer@microsoft.com">drop me a note</a>.</p>
<p>I’m really excited about my new job. And if you’re a mobile app developer, hit me up!</p>
<p>“<strong>ai</strong>”</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-mobile%2Fhello-im-a-windows-phone%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/x4PMPrqRWgc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-mobile/hello-im-a-windows-phone/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-mobile/hello-im-a-windows-phone/</feedburner:origLink></item>
		<item>
		<title>Foursquare natively on Windows (Mobile) Phone? You betcha!</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/ftBj2GLh-ZE/</link>
		<comments>http://www.Artificialignorance.net/blog/windows-mobile/foursquare-natively-on-windows-mobile-phone-you-betcha/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 06:59:31 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[Location Based Services]]></category>
		<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[foursquare]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/windows-mobile/foursquare-natively-on-windows-mobile-phone-you-betcha/</guid>
		<description><![CDATA[[Update 1/29/2010 : Yes, several several months later, we now have a public beta for you to play with. Please see this blog post for more info: http://www.artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/] It was a few weeks ago, my friends and I got to Polkers, my favorite Ahi Tuna/Niçoise salad place, and I had found out in just a [...]]]></description>
			<content:encoded><![CDATA[<h6><em><strong></strong></em></h6>
<p> <em><strong><br />
<h5><em><strong></strong></em></h5>
<p>     <em><strong><br />
<h4><em><strong>[Update 1/29/2010 : Yes, several several months later, we now have a public beta for you to play with. Please see this blog post for more info: </strong></em></h4>
<p>         <em><strong><br />
<h4><em><strong></strong><a title="http://www.artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/" href="http://www.artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/"><strong>http://www.artificialignorance.net/blog/windows-mobile/winmosquare-foursquare-for-windows-phone-now-in-beta/</strong></a></em><em><strong>]</strong></em></h4>
<p>           </strong></em></strong></em></strong></em><span id="more-162"></span>
<p>It was a few weeks ago, my friends and I got to <a href="http://www.yelp.com/biz/polkers-gourmet-burgers-san-francisco">Polkers</a>, my favorite Ahi Tuna/Niçoise salad place, and I had found out in just a few seconds of being seated that I had just been “ousted as mayor” &#8211; that’s when it first occurred to me to build a Foursquare app for Windows Mobile. My friend <a href="http://www.greg-dean.com">Greg</a> had stolen “the mayorship” from me while I was sitting there still trying to just access <a href="http://m.playfoursquare.com">http://m.playfoursquare.com</a> on IE. I was starting to get really tired of being the odd one out (without an iPhone or the cool apps) &#8211; it was fun at first being different – I’d get the occasional, “and what apps can YOUR phone run?” It lasted a while, but the attention was undeserving. My friends <a href="http://www.jacobmullins.com">Jacob</a>, <a href="http://parislemon.com">MG</a> and <a href="http://www.greg-dean.com">Greg</a> had put Foursquare on a pedestal and had started becoming “mayors” of every hip venue in San Francisco. I was starting to feel underprivileged. So I sat down last Friday and decided to crank out a Foursqure Windows Mobile app. </p>
<p><a href="http://twitter.com/anandiyer/status/2916638944"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4squareWinMo" border="0" alt="4squareWinMo" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FoursquarenativelyonWindowsMobileyoubetc_134E8/4squareWinMo.jpg" width="346" height="185" /></a> </p>
<p>Yes, it’s true. It exists.</p>
<p><strong>What?</strong></p>
<p>So what I have is a VERY rudimentary first cut of Foursquare on Windows Mobile. First the caveats:</p>
<ol>
<li>I’m not a designer. My UX/UI skills, well, they don’t exist. I love plain text (over rich text/HTML) and I still use <a href="http://vim.org">vi</a> when I can. So please don’t judge the app based on its looks :( </li>
<li>I’m hardly a programmer. I have only been coding sporadically over the last few years, but I try to stay on top of programming trends. </li>
</ol>
<p>That said,</p>
<ul>
<li>This app is built on .NET Compact Framework 3.5 and written in C# (with some bits in unmanaged C++). </li>
<li>The app uses nearby cell towers (like Google Maps) to try to get a rough idea as to where you are – it doesn’t currently use GPS (see below for why). </li>
<li>It utilizes Foursquare’s APIs to to present you with a list of venues you can check into. </li>
<li>The app currently uses Basic Authentication for authorization (I know, frownie face). Trust me when I tell you that I built this app in about 4 days total. </li>
<li>You can search for venues in your city (or city area) if the venue you’re looking for doesn’t come up when you first run the app. </li>
<li>Here&#8217;s a demo of the app working on a prototype 6.5 Windows Phone: </li>
</ul>
<blockquote></blockquote>
<blockquote><div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:{7D7E1B1B-BB15-44b5-AC22-DF49F6B00FD3}:845fe727-ebfb-4c40-a334-d50a5f70e21e" class="wlWriterEditableSmartContent">   <iframe src="http://silverlight.services.live.com/invoke/10723/Foursquare on Windows Phone/iframe.html" scrolling="no" frameborder="0" style="width:619px;height:474px" width="619" height="474"></iframe> </div>
<p><em>PS: In the video, I don’t show you the login screen. I had the “remember me” option checked the last time I’d logged in so I didn’t have to enter my credentials again. </em></p></blockquote>
<p><strong>What doesn’t it do?</strong></p>
<ul>
<li>The app doesn’t use GPS to locate you, today. This is a simple fix and I’ll add it soon. I wanted to take on the challenge of geolocating my position using cell towers first (and the GPS in certain Windows Mobile devices is, well, crap). The app currently waits to locate you before it does anything at all, and if it takes five minutes to locate you, well that’s just unacceptable. I’ll add the option to use GPS in the background and locate you in the near future. </li>
<li>It doesn’t currently tell you where your friends are. Teh suck – I know. </li>
<li>It can’t currently switch cities for you. Also teh suck. </li>
<li>It doesn’t support push notifications (big beast). </li>
<li>It doesn’t currently do OAuth. Trying to Base64 encode HMAC-SHA1 in .NET CF is not a trivial thing (at this time). </li>
</ul>
<p>It’s my goal to support every API that Foursquare makes available. Honest.</p>
<p><strong>When?</strong></p>
<p>If you’d like to use the app, please <a href="mailto:anand.iyer@microsoft.com">send me an email</a> for now, and I’ll email you the CAB file some time in the next week. I’m just not comfortable throwing this out there yet – it’s just too early. I don’t want to leave you with a bad experience. I want some of my closest ‘softie friends to test it out first on some of the major carriers and I want to ensure that the app just plain works for you.</p>
<p><a href="http://twitter.com/anandiyer/statuses/1346636244"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="foursquare" border="0" alt="foursquare" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FoursquarenativelyonWindowsMobileyoubetc_134E8/foursquare.jpg" width="316" height="164" /></a> <a href="http://twitter.com/jacobmullins/statuses/1346646909"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="4square4life" border="0" alt="4square4life" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FoursquarenativelyonWindowsMobileyoubetc_134E8/4square4life.jpg" width="368" height="157" /></a></p>
<p>And not to forget, once again, I was wrong (and Jake was right). I thought Foursquare would disappear into the ether after <a href="http://www.sxsw.com">SXSW</a>. <strong>I was wrong</strong> &#8211; <strong>Foursquare’s a killer app and is here to stay</strong>.</p>
<p>I’m happy to host it and take care of it for now. This is probably the first time the Foursquare folks are hearing of this, so after a conversation with them we’ll figure out how this app needs to be managed.</p>
<p><strong>Disclaimer(s)</strong></p>
<p>This is <strong><u>*NOT*</u></strong> a Microsoft sanctioned project or product. My employer has nothing to do with this app and should not be held liable for anything, ever.</p>
<p><strong>“ai”</strong></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwindows-mobile%2Ffoursquare-natively-on-windows-mobile-phone-you-betcha%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/ftBj2GLh-ZE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/windows-mobile/foursquare-natively-on-windows-mobile-phone-you-betcha/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/windows-mobile/foursquare-natively-on-windows-mobile-phone-you-betcha/</feedburner:origLink></item>
		<item>
		<title>Are Facebook’s privacy settings working?</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/918Q9X-Fwbk/</link>
		<comments>http://www.Artificialignorance.net/blog/facebook/are-facebooks-privacy-settings-working/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 23:52:10 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/facebook/are-facebooks-privacy-settings-working/</guid>
		<description><![CDATA[A couple of weeks ago I had an incident with someone I friended on Facebook. I usually just accept any facebook friend requests that come my way. But one person I added as a friend, found my sister on Facebook, befriended her (my sister accepted because she noticed this person was my friend) and from [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago I had an incident with someone I friended on Facebook. I usually just accept any facebook friend requests that come my way. But one person I added as a friend, found my sister on Facebook, befriended her (my sister accepted because she noticed this person was my friend) and from there, it got a little creepy. Apparently this person started asking some pretty pointed questions about my niece. My sister, who would trust my friends, gracefully answered these questions. Later on, my sister casually mentioned this friend’s inquisitiveness to me and the fact that this person had asked about my niece. This made me extremely suspicious. I immediately blocked this new friend and asked my sister to do the same, but I believe the damage had been done at that point. This person probably has pictures of my family in her (or his) possession now.</p>
<p>Soon after that incident, I decided to create a “notfriends” facebook list. I’m <em><u>not</u></em> one of those egotistical people – I generally add everyone as a friend, and don’t think about who can see what on my profile. But since this incident, I realized I <strong>should control</strong> who sees what on my profile. Today, after going through a few more friend requests, I decided to ensure that my <strong>privacy settings were in fact working</strong> and to my surprise, I find out <strong>they are not</strong>.<span id="more-160"></span></p>
<p>1 – I created a new list called “<strong>notfriends</strong>”</p>
<p>&#160;<a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb1.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb1" border="0" alt="fb1" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb1_thumb.jpg" width="197" height="244" /></a> </p>
<p>2 – I edited <a href="http://www.facebook.com/home.php#/privacy/?ref=mb">Facebook’s privacy settings</a> and added people who I didn’t know at all to the list “<strong>notfriends</strong>”. I edited my privacy settings to block ‘notfriends’ from seeing photos, videos and personal information.</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb2" border="0" alt="fb2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb2_thumb.jpg" width="524" height="693" /></a> </p>
<p>3 – I <strong>impersonated</strong> a member of the “<strong>notfriends</strong>” list to see what they can see (used the <strong>“View Profile As”</strong> feature). And guess what, the privacy setting didn’t take. Maybe the impersonation setting was not working? <em>(I’ve deleted the name of the person who I’m impersonating in the image below)</em></p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb3.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb3" border="0" alt="fb3" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb3_thumb.jpg" width="533" height="375" /></a> </p>
<p>4 – So, I created a new <strong>dummy profile</strong> called “<strong>Art Ignor</strong>” and added this “friend” to my “<strong>notfriends</strong>” list. This friend is NOT in any of the Facebook networks I’m in. I also used another computer to test this (to ensure there were no IP caveats or browser cache issues that could tamper with the settings).</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb4.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb4" border="0" alt="fb4" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb4_thumb.jpg" width="529" height="164" /></a> </p>
<p>5 – Logged in as “Art Ignor” and viewed <a href="http://facebook.com/anandiyer">http://facebook.com/anandiyer</a>. Guess what, Art Ignor can see all of my profile in spite of being in the “notfriends” list.</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb51.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb5-1" border="0" alt="fb5-1" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb51_thumb.jpg" width="543" height="231" /></a> </p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb52.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb5-2" border="0" alt="fb5-2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb52_thumb.jpg" width="544" height="440" /></a> </p>
<p>6 – I edited the privacy settings and <strong>explicitly denied “Art Ignor”</strong> permission to see my videos.</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb6.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb6" border="0" alt="fb6" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb6_thumb.jpg" width="323" height="465" /></a> </p>
<p>7 &#8211; Logged in as “Art Ignor” and checked out my videos. And, guess what:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb7.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fb7" border="0" alt="fb7" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fb7_thumb.jpg" width="507" height="406" /></a> </p>
<p>I even waited several minutes (to ensure that the setting has ‘propagated’). No luck.</p>
<p><strong>Facebook, what am I doing wrong</strong>? I’ve edited complicated <a href="http://www.petri.co.il/csc_how_to_use_cisco_ios_access_lists_01.htm">ACLs using Cisco’s IOS CLI</a>, and maybe that’s part of the problem that I don’t know how to use your UI. I don’t want to be an ass and “delete” friends I’ve met on Facebook (although I may not know them). As an evangelist I want to keep my channels of communication open (<a href="http://www.davemorin.com">Dave Morin</a> would empathize), but I want to restrict what some people can see. Please, please, tell me I’m doing something wrong and that your privacy settings aren’t actually broken. </p>
</p>
</p>
</p>
</p>
</p>
<p><strong>ai</strong></p>
<p>PS: I’d twittered about this possible hole in Facebook time back when I was first tinkering with the privacy setting:</p>
<p><a href="http://twitter.com/anandiyer/status/2056541588"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="fbtwitter" border="0" alt="fbtwitter" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/FacebookPrivacyFAIL_DA70/fbtwitter.jpg" width="313" height="224" /></a></p>
<p>[ad]</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Ffacebook%2Fare-facebooks-privacy-settings-working%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/918Q9X-Fwbk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/facebook/are-facebooks-privacy-settings-working/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/facebook/are-facebooks-privacy-settings-working/</feedburner:origLink></item>
		<item>
		<title>Startups – Want Windows for your Mac?</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/uvNWqJWKdxE/</link>
		<comments>http://www.Artificialignorance.net/blog/bizspark/startups-want-windows-for-your-mac/#comments</comments>
		<pubDate>Wed, 20 May 2009 18:56:57 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[bizspark]]></category>
		<category><![CDATA[msdn]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[msdn download]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/bizspark/startups-want-windows-for-your-mac/</guid>
		<description><![CDATA[Since we launched BizSpark last year, we’ve gotten a tremendous amount of interest from startups to join the program. As you may recall, we recently announced that 12,000 startups are now enrolled in the program worldwide. We’ve heard from startups who exclusively use the Mac platform, but occasionally need access to Windows for development or [...]]]></description>
			<content:encoded><![CDATA[<p>Since we launched <a href="http://www.microsoft.com/bizspark/"><strong>BizSpark</strong></a> last year, we’ve gotten a tremendous amount of interest from startups to join the program. As you may recall, we recently announced that <a href="http://www.techflash.com/BizSpark_nears_12000_44492822.html"><strong>12,000</strong> startups</a> are now enrolled in the program worldwide.</p>
<p>We’ve heard from startups who exclusively use the <strong>Mac</strong> platform, but occasionally need access to Windows for development or test, having trouble downloading software in spite of being enrolled in BizSpark. While startups who are eligible to join BizSpark can access <a href="http://msdn.microsoft.com"><strong>MSDN (our online software portal)</strong></a>, the ability to <em>download</em> software from a browser that isn’t Internet Explorer hasn’t been an option unfortunately. Until now…</p>
<p>Now startups who are <strong>enrolled in BizSpark</strong> and <strong>use Macs</strong> (<em>or non-Internet Explorer browsers in general</em>) can get <strong>Windows</strong> through the ‘<a href="https://msdn.microsoft.com/en-us/subscriptions/securedownloads/bb608344.aspx"><strong>Top Downloads</strong></a>’ page on MSDN: <a href="https://msdn.microsoft.com/en-us/subscriptions/securedownloads/bb608344.aspx"><strong>https://msdn.microsoft.com/en-us/subscriptions/securedownloads/bb608344.aspx</strong></a>&#160;<em>(you’ll need an MSDN account to access the contents on that page)</em><span id="more-157"></span></p>
<p>Here’s what you will get to see today (I’ve logged on to MSDN’s Secure Downloads from <strong>Safari</strong> on a <strong>Mac</strong> using credentials through a <strong>BizSpark</strong> account):</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupsGetVistaforyourMac_9755/BizSparkSafari1n.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="BizSpark-Safari-1n" border="0" alt="BizSpark-Safari-1n" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupsGetVistaforyourMac_9755/BizSparkSafari1n_thumb.jpg" width="705" height="577" /></a> </p>
<p>Once you click on one of those active links, and the download will kick off:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupsGetVistaforyourMac_9755/BizSparkSafari2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="BizSpark-Safari-2" border="0" alt="BizSpark-Safari-2" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupsGetVistaforyourMac_9755/BizSparkSafari2_thumb.jpg" width="601" height="356" /></a> </p>
</p>
<p>You can then use the virtualization software of your choice to install Windows in a VM (or using <a href="http://www.apple.com/macosx/bootcamp/">Bootcamp</a>).</p>
<p>Excited about all the buzz <strong><a href="http://blogs.msdn.com/e7/">Windows 7</a></strong> has been generating – guess what, <strong>Windows 7 Release Candidate</strong> is also available through MSDN for BizSpark accounts:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupsGetVistaforyourMac_9755/Win7MSDN.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Win7-MSDN" border="0" alt="Win7-MSDN" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupsGetVistaforyourMac_9755/Win7MSDN_thumb.jpg" width="693" height="515" /></a> </p>
<p>The BizSpark portal just got a nice facelift as well, so head on over and <a href="http://www.microsoft.com/bizspark"><strong>join BizSpark today</strong></a>.</p>
<p>“<strong>ai</strong>”</p>
<p><em>PS: Special thanks to <a href="http://www.microsoftstartupzone.com/blogs/cliff_reeves/default.aspx"><strong>Cliff Reeves</strong></a> and <a href="http://blogs.msdn.com/somasegar/"><strong>Soma</strong></a> for their help in getting this solution together so expeditiously.</em></p>
<p>[ad]</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fbizspark%2Fstartups-want-windows-for-your-mac%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/uvNWqJWKdxE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/bizspark/startups-want-windows-for-your-mac/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/bizspark/startups-want-windows-for-your-mac/</feedburner:origLink></item>
		<item>
		<title>Loic Le Meur of Seesmic at StartupSF</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/pVkHkR3lDs4/</link>
		<comments>http://www.Artificialignorance.net/blog/startup/loic-le-meur-of-seesmic-at-startupsf/#comments</comments>
		<pubDate>Tue, 12 May 2009 17:48:41 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[startup]]></category>
		<category><![CDATA[bizspark]]></category>
		<category><![CDATA[loi le meur]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[seesmic]]></category>
		<category><![CDATA[startupsf]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/startup/loic-le-meur-of-seesmic-at-startupsf/</guid>
		<description><![CDATA[After a small hiatus, the popular event StartupSF is now back! I’m pleased to announce that BizSpark is now a proud sponsor of this event series. We’re all about supporting the startup ecosystem in the Silicon Valley, and through this event entrepreneurs will have a great opportunity to connect with and learn from other entrepreneurs. [...]]]></description>
			<content:encoded><![CDATA[<p>After a small hiatus, the popular event <a href="http://www.startupsf.com"><strong>StartupSF</strong></a> is now back! I’m pleased to announce that <a href="http://www.microsoftstartupzone.com/BizSpark/Pages/At_a_Glance.aspx"><strong>BizSpark</strong></a> is now a proud sponsor of this event series. We’re all about supporting the startup ecosystem in the Silicon Valley, and through this event entrepreneurs will have a great opportunity to connect with and learn from other entrepreneurs.</p>
<h3><strong>StartupSF</strong></h3>
<p>StartupSF will debut at its new location in Microsoft SF on <strong>June 4, 2009 </strong>from <strong>6-9pm</strong>. And our guest speaker for this opening event is <strong>Loic Le Meur</strong>, Founder and CEO of <a href="http://www.seesmic.com"><strong>Seesmic</strong></a>. Loic’s presentation is titled “<strong>How to Launch a Product with your Community</strong>” &#8211; learn first hand how to use various community building techniques to build your product, service or brand from the ground up.</p>
<blockquote><p><span id="more-156"></span>
<p><strong>Date</strong>: June 4th, 2009 (Thursday)</p>
<p><strong>Time</strong>: 6-9pm</p>
<p><strong>Location</strong>: Microsoft, 835 Market St, Suite 700, San Francisco, CA 94103</p>
<p><strong>Registration Link</strong>: <a title="http://startupsf0609.eventbrite.com/" href="http://startupsf0609.eventbrite.com/"><strong>http://startupsf0609.eventbrite.com/</strong></a> (see below for a chance to win free passes)</p>
<p><strong>Price</strong>: $10 online in advance / $20 at the door (<em>StartUpSF is a not-for-profit event with all proceeds going to charity. All proceeds from this event will be going to </em><strong><a href="http://www.greenpeace.org/usa/"><em>GreenPeace</em></a>)</strong></p>
<p><strong>Note</strong>: Food &amp; Drink included</p>
</blockquote>
<h4><strong>Open Mic for Startups</strong></h4>
<p>A few startups will have the opportunity to utilize 5 minutes of “open mic” time to give their company’s elevator pitch, as well utilize demo tables where they can showcase their product or service. We are currently accepting applications for Demo Companies for this event and those interested should fill out the <a href="http://www.startupsf.com/contact/">Contact Form</a> over on <strong>StartUpSF.com</strong>.</p>
<h3>Free Passes?</h3>
<p>Would you like a free pass to StartupSF? I have a handful of passes, if you’d like one please email me: <a href="mailto:anand.iyer@microsoft.com">anand.iyer@microsoft.com</a>. First come, first serve.</p>
<h3><strong>Follow us</strong></h3>
<p>To keep track of StartupSF updates:</p>
<ul>
<li><a href="http://www.startupsf.com/">the StartupSF blog</a></li>
<li><a href="http://twitter.com/startupsf">StartupSF on Twitter</a></li>
<li><a href="http://twitter.com/bizspark">BizSpark on Twitter</a></li>
</ul>
<p>“<strong>ai</strong>”</p>
<p>[ad]</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fstartup%2Floic-le-meur-of-seesmic-at-startupsf%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/pVkHkR3lDs4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/startup/loic-le-meur-of-seesmic-at-startupsf/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/startup/loic-le-meur-of-seesmic-at-startupsf/</feedburner:origLink></item>
		<item>
		<title>FUD 101</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/KWwXDp08cec/</link>
		<comments>http://www.Artificialignorance.net/blog/oss/fud-101/#comments</comments>
		<pubDate>Fri, 08 May 2009 19:22:30 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[oss]]></category>
		<category><![CDATA[fud]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/oss/fud-101/</guid>
		<description><![CDATA[I woke up this morning, and as I usually do, I fired up Techmeme and found this article by Matt Asay titled “Microsoft search to be powered by open source”. Matt’s a good journalist, but as I’ve done before (How to get TechMeme’d – write about something bashing Vista), I want to comment on some [...]]]></description>
			<content:encoded><![CDATA[<p>I woke up this morning, and as I usually do, I fired up Techmeme and found this article by Matt Asay titled “<a href="http://news.cnet.com/8301-13505_3-10235400-16.html">Microsoft search to be powered by open source</a>”. Matt’s a good journalist, but as I’ve done before (<a href="http://www.artificialignorance.net/blog/windows/how-to-get-techmemed-write-about-something-bashing-vista/"><em>How to get TechMeme’d – write about something bashing Vista</em></a>), I want to comment on some of Asay’s points.</p>
<blockquote><p>It looks like Microsoft&#8217;s anti-open-source bubble really has burst.</p>
</blockquote>
<p>Our <em>anti-open-source bubble</em>, Matt? For a writer who has written about our Open Source strategies a few times, I’m surprised to read that Asay thinks we have an “anti-open-source bubble”. And to quote Asay himself from an article titled “<a href="http://news.cnet.com/8301-13505_3-10172150-16.html">Muglia: Open Source to permeate Microsoft</a>” he’d written in February ‘09 (about 3 months ago):</p>
<blockquote><p><span id="more-150"></span>
<p><strong>The reality is that more and more of Microsoft&#8217;s products </strong><a href="http://news.cnet.com/8301-13505_3-9807341-16.html"><strong>already do include open-source software</strong></a> (including MSN Messenger and Visual Studio), but it&#8217;s still refreshing to hear <a href="http://news.cnet.com/8301-13505_3-10054440-16.html">Microsoft acknowledge</a> what most enterprise software companies&#8211;including proprietary software companies with much to lose from open source&#8211;already know: open source is mainstream. </p>
<p>In 2006, <a href="http://asay.blogspot.com/2006/09/gartner-promotes-code-reuse-and-open.html">Gartner talked about the importance of code reuse</a>, a phenomenon perfectly suited for open source. Microsoft, by acknowledging that it would rather borrow some open-source code than reinvent every software wheel, <strong>is simply being pragmatic</strong>. </p>
<p>Open source is not the <a href="http://www.theregister.co.uk/2001/06/02/ballmer_linux_is_a_cancer/">&quot;cancer&quot; that Microsoft used to call it</a>. It&#8217;s just a great, efficient way to develop and distribute software. </p>
<p><strong>Welcome to reality, Microsoft. We&#8217;ve been patiently waiting for you to arrive.</strong> </p>
</blockquote>
<p>While <a href="http://www.powerset.com">Powerset</a> (and NLP capabilities) are definitely an important portion of our search offerings, it’d be a stretch to deduce from the <a href="Microsoft's new search - Built on open-source">Register’s original article</a> on Powerset using <a href="http://hadoop.apache.org/">Hadoop</a> (which is a phenomenal framework for data intensive apps, I might add) that “open-source software appears to be the default choice”. I honestly don’t know what the default choice is, but as several of our senior leaders have said before, you should use the tools that help you do your job best. And I want to reiterate, Microsoft is not against Open Source technologies (see my post “<a href="http://www.artificialignorance.net/blog/oss/microsoft-software-and-open-source-not-mutually-exclusive/">Microsoft Software and Open Source &#8211; not mutually exclusive</a>”).</p>
<p>And somehow in between all this, Asay refers to CIO.com’s article about “Microsoft losing its focus” not really clarifying how or what this has to do with Powerset using Hadoop.</p>
<p>I’ve seen FUD like this being spread before – there was this article back in 2005: “<a href="http://www.linuxworld.com.au/article/143519/it_unofficial_microsoft_bets_business_linux?fp=2&amp;fpid=1">It&#8217;s unofficial: Microsoft bets business on Linux</a>”. I was excited when I learned that we’d added Powerset to the Microsoft family, and it so happens that <a href="http://www.powerset.com/blog/articles/2007/10/16/powerset-empowered-by-hadoop">Powerset had chosen to use Open Source technologies</a> as they built out their product. Microsoft’s focus is to do what it takes to build out a good online business, of which search is a core part.</p>
<p>Oh, and as for “prime rival Google embraces open source unreservedly”, I happened to notice that <a href="http://twitter.com/davemcclure/statuses/1728966875">Dave McClure’s tweet</a> seems to have gotten retweeted quite a bit:</p>
<p><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/HowtospreadFUD101_9552/GoogleOSS.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="GoogleOSS" border="0" alt="GoogleOSS" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/HowtospreadFUD101_9552/GoogleOSS_thumb.jpg" width="472" height="689" /></a></p>
<p><em><strong>Update </strong>(5/8/09, 2pm PDT)</em>: According to Asay’s tweets, it appears that Asay was in fact looking to write an article that would be “inaccurate” and “not boring”:</p>
<p><a href="http://twitter.com/mjasay/status/1740109827"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="mjasay" border="0" alt="mjasay" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/HowtospreadFUD101_9552/mjasay.jpg" width="389" height="208" /></a> </p>
<p>And it appears that tweet was in response to this one by <a href="http://twitter.com/offwhitemke/">@offwhitemke</a>:</p>
<p><a href="http://twitter.com/offwhitemke/status/1739321308"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="offwhitemke" border="0" alt="offwhitemke" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/HowtospreadFUD101_9552/offwhitemke.jpg" width="403" height="212" /></a></p>
<p> “<strong>ai</strong>”</p>
<p>[ad]</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Foss%2Ffud-101%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/KWwXDp08cec" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/oss/fud-101/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/oss/fud-101/</feedburner:origLink></item>
		<item>
		<title>StackOverflow and the power of WISC</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/0PVYH49DqjI/</link>
		<comments>http://www.Artificialignorance.net/blog/wisc/stackoverflow-and-the-power-of-wisc/#comments</comments>
		<pubDate>Thu, 07 May 2009 18:07:54 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[wisc]]></category>
		<category><![CDATA[bizspark]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/wisc/stackoverflow-and-the-power-of-wisc/</guid>
		<description><![CDATA[I’ve been a fan of Joel Spolsky’s for a while. Even today, I tell potential Microsoft recruits stories from the article Spolsky wrote back in 2000 about his time at Microsoft (which was actually what convinced me to interview at Microsoft when I was still in school, and then join Microsoft years later): At Microsoft, [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been a fan of <a href="http://www.joelonsoftware.com/">Joel Spolsky</a>’s for a while. Even today, I tell potential Microsoft recruits stories from the article <a href="http://www.joelonsoftware.com/articles/TwoStories.html">Spolsky wrote back in 2000</a> about his time at Microsoft (which was actually what convinced me to interview at Microsoft when I was still in school, and then join Microsoft years later):</p>
<blockquote><p>At Microsoft, if you&#8217;re the Program Manager working on the Excel macro strategy, even if you&#8217;ve been at the company for less than six months, it doesn&#8217;t matter – you are the GOD of the Excel macro strategy, and nobody, not even employee number 6, is allowed to get in your way. Period.</p>
</blockquote>
<p><span id="more-147"></span>
<p>I’ve also previously confessed my <a href="http://www.urbandictionary.com/define.php?term=bromance"><em>bro-mance</em></a> for <a href="http://www.codinghorror.com">Jeff Atwood</a>. Smart, witty, great writer &#8211; love the guy. Anyhow, I digress… </p>
<p>It is no surprise to anyone that <a href="http://www.stackoverflow.com">StackOverflow</a> is a roaring success due to the combined efforts of Jeff and Joel. As many of you may know, <strong>StackOverflow</strong> is built using the <strong>WISC</strong> (Windows, IIS, SQL Server, C#) stack and StackOverflow is also a <a href="http://www.microsoftstartupzone.com/BizSpark/Pages/At_a_Glance.aspx"><strong>BizSpark</strong> startup</a>. It’s always comforting when someone praises your products, especially when it’s unsolicited. So when my good friend, <a href="http://greg-dean.com/">Greg</a>, sent me a link to this video of Spolsky speaking at Google about StackOverflow, I was really intrigued. In the video, Joel talks about StackOverflow and it got really interesting starting at <a href="http://www.youtube.com/watch?v=NWHfY_lvKIQ#t=24m56s">around 24:56 in to the video</a> (<em>(I did my best to transcribe what Joel was saying)</em>:</p>
<blockquote><p>“We were really obsessed about performance – we knew that getting fast answers and the site being “snippy” and “snappy” and quick and stuff like that was important. So here’s the technology stack that we actually used – [we] built on the Microsoft stack. The performance, I know you guys don’t use it that much here, but <strong>the performance of C#, which is a compiled language is just ridiculously good</strong>. This entire site is serving <strong>16million pages a month</strong> and we’re doing it off of <strong>2 servers</strong>, <strong>which are almost completely unloaded</strong>. So we’ve got a <strong>ton of headroom</strong> on those 2 servers – one server is a webserver, the other server is running Microsoft SQL Server 2008 and they’re both 8 core Xeons. But, there were a lot of oppositions that went in there but no matter what people say this is a pretty good stack. And one of the things that I’ve always been concerned about is if you start building a technology like this using the Microsoft stack you are going to pay for a Windows Server license, lots of SQL Server licenses, which are 5000 bucks for every box that you put out. And the idea that you could possibly use a larger number of cheaper computers and use Open Source products which are free certainly occurred to us. On the other hand <strong>when I compare our performance to similar sites that are running on the open source stack, we are using about 1/10th of the hardware that they are</strong>, unfortunately, and maybe that’s because they are not good programmers.&#160; But just in terms of the types of queries we are doing and stuff, <strong>the Microsoft stack is actually, appears to be paying for itself</strong> &#8211; in terms of reduced hardware.”<a href="http://blog.stackoverflow.com/2009/05/joel-talks-about-stack-overflow-at-google/"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="StackOverflow" border="0" alt="StackOverflow" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/6ad34596c9b7_8546/StackOverflow.jpg" width="503" height="390" /></a></p>
</blockquote>
<p>Since StackOverflow is in the BizSpark program, they are entitled to all kinds of software, including <strong>Windows Server 2008</strong> and <strong>SQL Server 2008</strong> (specifically what Joel calls out the costs for) to use in production <strong>for pretty much no cost</strong> (<em>companies pay $100 when they exit the program</em>) <strong>for 3 years</strong>. Can you beat phenomenal performance, reduced CPU usage and great productivity which now comes at no cost up-front?</p>
<p>“<strong>ai</strong>”</p>
<p><em>[Update: Corrected a broken link]</em></p>
<p>[ad]</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fwisc%2Fstackoverflow-and-the-power-of-wisc%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/0PVYH49DqjI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/wisc/stackoverflow-and-the-power-of-wisc/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/wisc/stackoverflow-and-the-power-of-wisc/</feedburner:origLink></item>
		<item>
		<title>The Azure Services Platform Challenge – new CloudApp()</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/Y6Q-YPmqC_I/</link>
		<comments>http://www.Artificialignorance.net/blog/azure/the-azure-services-platform-challenge-new-cloudapp/#comments</comments>
		<pubDate>Mon, 04 May 2009 20:56:32 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[azure]]></category>
		<category><![CDATA[bizspark]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[challenge]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/azure/the-azure-services-platform-challenge-new-cloudapp/</guid>
		<description><![CDATA[Today we are launching “new CloudApp()” a US-based developer challenge to promote applications running on the Azure Services Platform. This contest will have three categories of winners for applications running on the Azure Services Platform – a best .NET application, a top PHP application, and, a community winner. What could a contestant win? The winning [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are launching “<a href="http://www.newcloudapp.com"><strong>new CloudApp()</strong></a><strong>” </strong>a US-based developer challenge to promote applications running on the <a href="http://www.azure.com"><strong>Azure Services Platform</strong></a>. This contest will have three categories of winners for applications running on the <a href="http://www.azure.com">Azure Services Platform</a> – </p>
<ul>
<li>a best .NET application, </li>
<li>a top PHP application, and, </li>
<li>a community winner. </li>
</ul>
<h3>What could a contestant win?</h3>
<p>The winning submissions will: </p>
<ul>
<li>Be featured on <a href="http://www.azure.com">www.azure.com</a> as well as at major Microsoft events </li>
<li>Be featured in a video interview on <a href="http://channel9.msdn.com/">Channel 9</a> with the application author </li>
<li>Winners will be announced at <a href="http://events.gigaom.com/structure/09/">Structure 09</a> </li>
<li>Receive cash ($):
<ul>
<li>.NET Applications Category winner: $5,000 Visa gift card </li>
<li>PHP Applications Category winner: $5,000 Visa gift card </li>
<li>Community winner: $2,500 Visa gift card </li>
<p>     <span id="more-144"></span></ul>
</li>
</ul>
<h3>Who are the judges?</h3>
<p>The .NET and PHP category of applications will be judged by industry leaders, <a href="http://gigaom.com/author/om/">Om Malik</a> and <a href="http://www.redmonk.com/cote/">Michael Cote</a>. We are inviting the community of web and software developers to decide the third overall community winner via online voting.</p>
<ul>
<li><strong>Michael Cote</strong> is an analyst at <a href="http://redmonk.com/">RedMonk</a> covering primarily enterprise software, specializing in open source, IT management, software development, collaborative, the web, and social/collaborative software. He is RedMonk&#8217;s IT Management Lead. Read more about him on his <a href="http://www.redmonk.com/cote/">blog</a>. </li>
<li><strong>Om Malik</strong> is the founder and senior writer for the <a href="http://gigaom.com/">GigaOM Network</a>. Prior to that venture, Om was a senior writer for Business 2.0 magazine in San Francisco writing telecom and broadband related stories. Visit <a href="http://omis.me/">Om&#8217;s blog</a>. </li>
<li><strong>You</strong> are also critically important and will decide the overall Community winner. Community voting will end on June 29, 2009 and the winners of the community voting will be announced on June 30, 2009. Recruit your friends and fellow developers to vote for your application and spread the word by sharing your experiences during the contest through your blog or use &quot;#newCloudApp&quot; as a hashtag on Twitter. </li>
</ul>
<h3>How will the winners be judged?</h3>
<p>Entries will be evaluated based on </p>
<ul>
<li>user experience and user interface, </li>
<li>innovation and creativity of the application, </li>
<li>applicability to cloud computing, and, </li>
<li>real-world applicability of the application. </li>
</ul>
<p><em>From <a href="http://blogs.msdn.com/stevemar/archive/2009/05/04/azure-developer-challenge-judged-by-om-malik-and-michael-cote.aspx">Steve Martin’s blog</a>:</em> </p>
<blockquote><p>For the .NET application category, we want to see a great <a href="http://www.microsoft.com/net/">.NET</a> application running on Windows Azure using <a href="http://www.asp.net/get-started/">ASP.NET</a> or <a href="http://silverlight.net/GetStarted/">Silverlight</a> to incorporate additional <a href="http://www.azure.com/">Azure</a> services such as <a href="http://www.microsoft.com/azure/netservices.mspx">.NET Services</a> and <a href="http://dev.live.com/">Live Services</a>.&#160; Incorporate other Microsoft, 3rd party services, or other cloud services and author a unique web, mobile, or desktop application.&#160; </p>
<p>For the PHP contest category running on Windows Azure, we want to see a PHP application taking interoperability to the next level by integrating with other Azure services, 3<sup>rd</sup> party web services and APIs, and services provided by other cloud providers.</p>
</blockquote>
<h3>What are the contest dates?</h3>
<li>Monday, May 4: Contest Open </li>
<li>Thursday, June 18: Submission deadline </li>
<li>Friday, June 19: Community voting starts </li>
<li>Thursday, June 25: .NET &amp; PHP category winners announced at <a href="http://events.gigaom.com/structure/09/">Structure 09</a> </li>
<li>Monday, June 29: Community voting ends </li>
<li>Tuesday, June 30: Community winner announced<br />
<h3>How do I get started?</h3>
<ol>
<li>Join <a href="http://www.microsoft.com/BizSpark/Startup/Signup.aspx"><strong>BizSpark</strong></a> if you’re a startup or an entrepreneur, to get access to tools for development and test (<a href="mailto:anand.iyer@microsoft.com">email me</a> if you need a invite code) </li>
<li><a href="http://www.newcloudapp.com/register.php">Register</a> to join the contest </li>
<li><a href="http://www.microsoft.com/azure/register.mspx">Sign up</a> for the Azure Services </li>
<li><a href="http://www.microsoft.com/azure/resources.mspx">Download the SDKs and Tools</a> </li>
</ol>
<h3>What are the rules?</h3>
<ul>
<li>Valid submissions are limited to residents 18 years and older of the 50 United States and District of Columbia. </li>
<li>Contestants may only submit one entry for either the .NET or PHP applications category. </li>
<li>Microsoft employees are not eligible to participate in this contest. </li>
<li>Azure applications that have already been built can be submitted for the contest. However the contestant cannot have previously submitted or publicly released the application or service. In addition, the application cannot have won any previous awards or been submitted in any other competitions. </li>
<li>Voting is restricted to one (1) vote per person, per email address and per household per day. </li>
<li>Please read the full <a href="http://www.newcloudapp.com/official-rules.php">list of official rules</a>. </li>
</ul>
<p>Also, learn more about Azure services:</p>
<ul>
<li><a href="http://www.microsoft.com/azure/resources.mspx">Azure Services</a> </li>
<li><a href="http://www.microsoft.com/azure/videos.mspx">Tutorial videos</a> </li>
<li><a href="http://blogs.msdn.com/windowsazure/archive/2009/03/18/using-3rd-party-programming-languages-via-fastcgi.aspx">Deploying PHP applications</a> on Windows Azure </li>
</ul>
<p>Check out <a href="http://www.newcloudapp.com/faq.php">the FAQ</a> for more details.</p>
<p>“<strong>ai</strong>”</p>
</p>
</p>
</p>
<p>[ad]</p>
</p>
</li>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fazure%2Fthe-azure-services-platform-challenge-new-cloudapp%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/Y6Q-YPmqC_I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/azure/the-azure-services-platform-challenge-new-cloudapp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/azure/the-azure-services-platform-challenge-new-cloudapp/</feedburner:origLink></item>
		<item>
		<title>StartupWeekendSF produces a record 23 startups</title>
		<link>http://feedproxy.google.com/~r/artificialignorance/~3/68rUn47HX7Q/</link>
		<comments>http://www.Artificialignorance.net/blog/startupweekend/startupweekendsf-produces-a-record-23-startups/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:27:52 +0000</pubDate>
		<dc:creator>Anand Iyer</dc:creator>
				<category><![CDATA[startupweekend]]></category>

		<guid isPermaLink="false">http://www.artificialignorance.net/blog/startupweekend/startupweekendsf-produces-a-record-23-startups/</guid>
		<description><![CDATA[StartupWeekend brought together around 200 of the most talented people from the San Francisco Bay Area together at Microsoft&#8217;s offices in SF this past weekend &#8211; all with the common goal of building a startup in a 54 hour time span. Andrew Hyde, the founder of StartupWeekend, kicked off the event at 7pm on Friday [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Startup Weekend 2: San Francisco" href="http://www.flickr.com/photos/7336367@N02/3415209621/"><img border="0" alt="Startup Weekend 2: San Francisco" align="right" src="http://farm4.static.flickr.com/3361/3415209621_ac645f68ba.jpg" width="138" height="91"/></a></p>
<p>StartupWeekend brought together around 200 of the most talented people from the San Francisco Bay Area together at Microsoft&#8217;s offices in SF this past weekend &#8211; all with the common goal of building a startup in a 54 hour time span. <a href="http://andrewhyde.net/">Andrew Hyde</a>, the founder of <a href="http://www.startupweekend.com">StartupWeekend</a>, kicked off the event at 7pm on Friday which was followed by an introductory discussion by a set of <a href="http://sf2.startupweekend.com/speakers/">speakers</a>, some very familiar and popular names in the valley &#8211; <a href="http://www.elevation.com/EP_IT.asp?id=157">Connie Chan</a>, <a href="http://davemcclure.com/">Dave McClure</a>, <a href="http://www.mdv.com/team_bio.html?id=27">Katherine Barr</a>, <a href="http://www.oatv.com/team/">Mark Jacobsen</a> and <a href="http://www.christine.net/">Christine Herron</a>. <a href="http://www.tylerwillis.net">Tyler Willis</a>, one of the main organizers of this event, did a great job of moderating this discussion.</p>
<p align="left"><a title="Opening night: Startup Weekend San Francisco 2009" href="http://www.flickr.com/photos/46266356@N00/3415893054/"><img border="0" alt="Opening night: Startup Weekend San Francisco 2009" src="http://farm4.static.flickr.com/3654/3415893054_551f26d42b.jpg" width="300" height="200"/></a><a title="Opening night: Startup Weekend San Francisco 2009" href="http://www.flickr.com/photos/46266356@N00/3415875486/"><img border="0" alt="Opening night: Startup Weekend San Francisco 2009" src="http://farm4.static.flickr.com/3303/3415875486_63ecb977ef.jpg" width="300" height="200"/></a><a title="Opening night: Startup Weekend San Francisco 2009" href="http://www.flickr.com/photos/46266356@N00/3415893054/"><br /></a><a title="Startup Weekend 2: San Francisco" href="http://www.flickr.com/photos/7336367@N02/3410633867/"><img border="0" alt="Startup Weekend 2: San Francisco" src="http://farm4.static.flickr.com/3625/3410633867_d243721e43.jpg" width="300" height="200"/></a><a title="Startup Weekend 2: San Francisco" href="http://www.flickr.com/photos/7336367@N02/3410644913/"><img border="0" alt="Startup Weekend 2: San Francisco" src="http://farm4.static.flickr.com/3409/3410644913_44169d0ff0.jpg" width="300" height="200"/></a><em><br />[photo credit: </em><a href="http://www.flickr.com/photos/barefootexpeditions/"><em>antoniocapo</em></a><em>, </em><a href="http://www.flickr.com/photos/kyeung808/"><em>kyeung808</em></a><em>]</em><span id="more-138"></span></p>
<p align="left">Following the discussion, Hyde moderated a series of lightning pitches from the audience &#8211; essentially anyone who had an idea for a startup got the opportunity to propose their idea to the audience in a short 30-60 second pitch. There was absolutely no shortage of ideas (there were probably around 30 pitches). What made this lightning pitch session exciting however was the real time feedback the expert speakers provided to those pitching. There was some great learning to be had here. For example, <a href="http://sf2.startupweekend.com/uncategorized/what-do-vcs-ponzi-schemes-and-beer-have-in-common/">Antonio Altamirano describes</a> McClure&#8217;s style of an ideal pitch: &#8220;Take 80% of the time to describe the problem and 20% describing the solution.&#8221; Once the ideas had been pitched, the originators of each of the ideas went around seeking team members to work on these ideas with over the weekend. This was a stark contrast from StartupWeekend last year, where everyone voted on <em>one</em> idea to implement over the weekend and split up in to groups of development, project management, marketing, biz dev etc. This go around, there were several teams working on several startups.</p>
<p><a title="Startup Weekend 2: San Francisco" href="http://www.flickr.com/photos/7336367@N02/3415447367/"><img border="0" alt="Startup Weekend 2: San Francisco" src="http://farm4.static.flickr.com/3638/3415447367_2cd58a8547.jpg" width="300" height="199"/></a><a title="Startup Weekend San Francisco 2009" href="http://www.flickr.com/photos/46266356@N00/3414969997/"><img border="0" alt="Startup Weekend San Francisco 2009" src="http://farm4.static.flickr.com/3593/3414969997_bc0c659d43.jpg" width="300" height="200"/></a><br /><em>[photo credit: </em><a href="http://www.flickr.com/photos/barefootexpeditions/"><em>antoniocapo</em></a><em>, </em><a href="http://www.flickr.com/photos/kyeung808/"><em>kyeung808</em></a><em>]</em></p>
<p>About 50 or so hours and several cups of coffee and later, the teams pitched their ideas to another full house. There were 23 pitches in all, and honestly, I&#8217;m in complete awe with the number of ideas that were implemented this weekend. This is truly the startup capital of the world.</p>
<table border="0" cellspacing="0" cellpadding="2" width="642">
<tbody>
<tr>
<td valign="top" width="534"><a href="http://www.foundershack.com"><strong>FounderShack</strong></a> is a website that helps you find co-founders. It’s for people who are passionate about solving a common business problem. The website looks trivial to use – users submitting ideas have to short videos of their pitch and to be matched the other party has to do the same thing. Hopefully the next StartupWeekend will use FounderShack to connect people at the event. <a href="http://foundershack.com">http://foundershack.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534">
<p>“Digg for Deals” (working title) is making bargain hunting easy. The site helps you narrow down on the deal you love. The opening page shows you deals, with an initial filter. Then you click on either “Warmer” or “Cooler” and you get two more products that are similar in nature, but are probably more like deals you may be looking for. When you click on an actual link for a product, a little built-in toolbar appears on the top of the webpage (like the new Digg toolbar). </p>
</td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.bigponzi.com"><strong>BigPonzi</strong></a>– this was more of a demo for the sake of a demo. Huge shout out to Dylan Field and Daniel Brusilovsky, a couple of teenagers for putting the demo together. </td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/bigponzi.png"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="bigponzi" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/bigponzi_thumb.png" width="108" height="89"/></a> </td>
</tr>
<tr>
<td valign="top" width="534">
<p><a href="http://democlarity.com"><strong>DemoClarity</strong></a> helps bring clarity to the process of ‘democracy’. The site offers a summary of different legislations, media relevant to the legislation, discussions relevant to the legislation etc. At the bottom of the page are two buttons using which you can either Support or Oppose the proposed legislation. You can also sign a petition and spread the word with your friends. The site also lets you stay informed, and see more issues that are related to the legislation you are perusing. The site provides real value by serving public interest and educating the public. <a href="http://democlarity.com">http://democlarity.com</a></p>
</td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://hubb.me"><strong>Hubb.Me</strong></a> is like bit.ly or tr.im, but it lets you share more than just one link. You can create a ‘hubb’ on the site, and share it via twitter. When users click on the’hubb’ link they can then check out each of the links in that hub. Hubb also provides an easy tab navigation bar as you start visiting each of the sites in the Hubb so that you know the next site you need to visit. The site integrates with Google Analytics, and you can create a ‘Hubb’ in seconds. <a href="http://hubb.me">http://hubb.me</a></td>
<td valign="top" width="107"><a href="http://hubb.me"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="logo" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/logo.png" width="127" height="69"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.twitfitlog.com/"><strong>TwitFitLog</strong></a> lets you use twitter to send fitness logs using pseudo tweets (&#8220;<i>@fitlog #run 3 miles</i>” for example). Twitfitlog then records your tweets and presents it to you on a website in a clean manner. FitLog will eventually introduce some game elements, like challenging yourself or challenging someone else, which I believe will draw users to the site as well as retain current users. <a href="http://fitlog.pbwiki.com">http://fitlog.pbwiki.com</a> has a lot of what the team has thought about. <a href="http://twitfitlog.com">http://twitfitlog.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/twitfitlog.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="twitfitlog" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/twitfitlog_thumb.jpg" width="131" height="62"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><strong><a href="http://gosnoozemail.com/">SnoozeMail</a></strong> lets you “snooze on your email”. Users can go to snoozemail.com, register on the site, authenticate (IMAP is a requirement at the moment). Emails that you have snoozed will re-pop up in your inbox (via another email) thereby sending it to the top your inbox. I seem to be the only one in this boat, but this is a service that I don’t see myself using any time soon and that may be because I have (unfortunately) found the most efficient way to work through my email. I think services like these, while very clever, are still band-aids on top of this very broken problem called ‘email’. The presenters mentioned that they may look at a ‘freemium’ model for monetization in the future. <a href="http://gosnoozemail.com">http://gosnoozemail.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><strong>OurBlockTV</strong> provides a crowdsourced approach to “neighborhood watch”. The idea seems to have cropped up when one of the founders tried this himself by setting up a webcam outside of his apartment window. The hope is that a community based network of webcams will empower citizens to help fight crime and save lives. Users of the service can upload their videos, which will go in to a moderation queue and eventually get published on to the site. Apparently users can get weatherproof cameras for fairly cheap ($49). I can see some legal problems cropping up here, but apparently the initial feedback seems to have been really good. <a href="http://adamsblock.com">http://adamsblock.com</a> </td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/ourblocktv.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="ourblocktv" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/ourblocktv_thumb.jpg" width="122" height="31"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://twitter.com/imggr"><strong>Img.gr</strong></a> is a photo tagging tool for twitter. It is very similar to facebook photo tagging, but you tag users in their photos using their twitter handles. Once on the img.gr website, you can draw a rectangle around what you want to tag, which brings up a drop-down of your twitter friends so you can tag them. Here is their presentation: <a href="http://www.slideshare.net/driveafastercar/imggr-san-francisco-startup-weekend">http://www.slideshare.net/driveafastercar/imggr-san-francisco-startup-weekend</a> While questions around untagging and some other concerns arise, regardless, I can see myself using this service in the very near future. <a href="http://twitter.com/imggr">http://twitter.com/imggr</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/imggr.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="imggr" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/imggr_thumb.jpg" width="93" height="93"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.livecut.com"><strong>LiveCut</strong></a> is an ambitious project that helps you get legal downloads of music from the concerts that you see. Let’s say a group of friends go to a concert, on either side of the stage will be a song number or a ‘performance id’ that you can then text message to LiveCut. LiveCut will then respond with a viable way to acquire the song. The model has been well fleshed out with monetization capabilities (and therefore incentives) for artists to want to use it. LiveCut wasn’t developed this weekend, the founder was simply pitching it this evening. <a href="http://livecut.com">http://livecut.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.feedthechef.com"><strong>FeedTheChef</strong></a> is an RSS reader for an average internet user. The interface looks nifty, with an inbox feel in the left pane, and a view based on “importance”. There isn’t a requirement to know about feeds or RSS – you simply key in the URL on the website, and it automatically brings in the feed for you. FeedTheChef is basically bringing together an online version of a personalized newspaper. If the UI is done right (and I think we got a sneak peek of a very slick horizontally scrolling UI), I think they can easily attract users. <a href="http://feedthechef.com">http://feedthechef.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.monkeycalling.com"><strong>MonkeyCalling</strong></a> lets you ask questions and get answers instantly by calling phones of people you want to survey thereby helping you get ‘fresh responses’. MonkeyCalling works on the basic premise that the phone is still very much the most immediate form of communication. The founders described the service as a “personalized call center in the cloud”. MonkeyCalling has used @twilio for the voice integration, and as creepy as the text to speech sounds I can’t wait to start spam-calling my friends through this service. <a href="http://monkeycalling.com">http://monkeycalling.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/callmonkey_logo.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="callmonkey_logo" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/callmonkey_logo_thumb.jpg" width="139" height="32"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><strong>RadioKi </strong>shows you radio stations online that are currently playing the music that you want to tune into. Once on the site, you can simply type the name of an artist or a band, and the site automagically sifts through several radio stations to show you which radio station (online or not) is currently playing that artist’s song. The founders are using Yahoo Pipes underneath to exercise a giant workflow to sift through all the different channels. Eventually, they want to pull in information from other sources like Wikipedia etc. to show content relevant to the music being played. My big question is, if you know the name of the artist or the song you want to listen to, why not use imeem? <a href="http://radioki.com">http://radioki.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://gabinow.com"><strong>Gabi</strong></a> is a native desktop application that is about “Greater Access, Broader Independence”. Gabi provides technology for aging independents. Gabi plans on selling subscription services to care providers which provides basic video conferencing, mobile components (to help track via GPS), a video assistance center that contacts care providers in case of emergencies and much more. Gabi was another company that wasn’t developed this weekend and was simply pitching. They are looking for $300K in seed financing. <a href="http://Gabinow.com">http://Gabinow.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.cheapparkingapp.com"><strong>CheapParking</strong></a> is a mobile application for finding low cost parking using location based services on your mobile phone. The application provides mobile applications to find real time parking information. There are solutions out there help you find garages, but not necessarily the cheapest garage. Using the app, you can find the cheapest one based on proximity, with the list always sorted by the cheapest match first. Their first cut is an Android based app. It is likely for large events (like ballgames) that cheap garages are sold out, but the founders tell me that they plan on incorporating capacity information as well soon enough. The app will sell for $1.99, and $4.99 for “multiple” cities. <a href="http://cheapparkingapp.com">http://cheapparkingapp.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/cheapparkingjpg.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="cheapparkingjpg" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/cheapparkingjpg_thumb.jpg" width="140" height="76"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://kivaiphoneapp.com"><strong>KivaiPhoneApp</strong></a> does exactly as the name sounds. The application allows anyone with an iPhone to become a social investor. The app gives existing kiva users a cool way to stay in touch with their investees. <a href="http://kivaiphoneapp.com">http://kivaiphoneapp.com</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://prodnv.com"><strong>ProdNv</strong></a> lets you give better gifts, and get better deals. Their first implementation is using BestBuy’s APIs and a Facebook application where you can track products you want to either get or give. Using the application, you can navigate to bestbuy.com, and add a product to your “envylist” for example. This will add the item to your Facebook productenvy page, which you can share with your facebook friends. The founders also demonstrated a twitter based app, whereby you can send a tweet to the twitter bot, @prnv which processes your pseudo-tweet. <a href="http://prodnv.com">http://prodnv.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/ProdNV_bigger.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="ProdNV_bigger" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/ProdNV_bigger_thumb.jpg" width="73" height="73"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.encritter.com"><strong>Encritter</strong></a> tries to solve the twitter privacy problem – wouldn’t you like to twitter something to just a subset of your friends? Encritter tries to introduce layered privacy on top of twitter (the founder calls it ‘EaaS’ – encryption as a service). Using the web app, you can encrypt (using 128 bit AES) a message that will look something like this: “?encritter_XXX” that you can tweet to the twitterverse. Your friends would have to know the key that was used to encrypt the message to decrypt and read it. The real question is, how do you share the key (or password) with your friends? Or more importantly, what happens when twitter introduces “groups”? <a href="http://encritter.com">http://encritter.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/encritter.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="encritter" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/encritter_thumb.jpg" width="121" height="94"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://beer2peer.net"><strong>Beer2Peer</strong></a> – ugh, I spilled my coffee and totally missed this demo L I heard a lot of cheering and rara from the kitchen though. <a href="http://beer2peer.net">http://beer2peer.net</a></td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.tinyupc.com"><strong>TinyUPC</strong></a> lets you register every UPC for every product you make or use or distribute so consumers can easily find out all information about that product. The site lets you generate a Tinyupc.com/UPC. I didn’t quite gather the practical application of this or why producers out there would want to use something like this however. <a href="http://tinyupc.com">http://tinyupc.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/barcodenavlogo.png"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="barcodenav-logo" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/barcodenavlogo_thumb.png" width="104" height="13"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><a href="http://www.indinero.com"><strong>indinero</strong></a> is Mint.com for businesses. That’s it. I couldn’t tell what was unique about the service for businesses per se, but the founders tell us that ‘cash flow analysis’ for example is something that Mint.com cannot provide you with today. <a href="http://indinero.com">http://indinero.com</a></td>
<td valign="top" width="107"><a href="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/indinero.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="indinero" src="http://www.artificialignorance.net/blog/wp-content/uploads/images/StartupWeekendSFEntrepreneursbringthewee_EBCA/indinero_thumb.jpg" width="130" height="54"/></a> </td>
</tr>
<tr>
<td valign="top" width="534"><strong>Yoola</strong> is Yelp for EULAs. The founders of Yoola claim that you’ve probably accepted over 1000 EULAs not having read them entirely. Yoola gives you the facts of a EULA in 0.03 second. All you would have to do is copy-paste the EULA from a site on to Yoola.com and click on ‘Get Facts’. If the site has a similar EULA in its repository, it will tell you what the pros and cons of the EULA are. The refreshing fact about Yoola is that the information about the EULAs is crowdsourced. I’m very transparent about my favorable bias towards Yelp, so when the founders mentioned that they were a Yelp for EULAs, I was immediately sold. If a certain EULA is not already on the site, you can create the thread. </td>
<td valign="top" width="107">&nbsp;</td>
</tr>
<tr>
<td valign="top" width="534"><strong>Spelunkr</strong> (working title) lets you get detailed information about your twitter friends. It lets you analyze your followers and more detailed analytics will be provided in future releases. </td>
<td valign="top" width="107">&nbsp;</td>
</tr>
</tbody>
</table>
<p>So there you have it &#8211; approximately 200 people, 23 (or so) startups, one weekend. </p>
<p>&#8220;<strong>ai</strong>&#8220;</p>
<p>PS: Maybe the event should be called &#8220;Startup<strong>s</strong>Weekend&#8221;?</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.Artificialignorance.net%2Fblog%2Fstartupweekend%2Fstartupweekendsf-produces-a-record-23-startups%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>
<img src="http://feeds.feedburner.com/~r/artificialignorance/~4/68rUn47HX7Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.Artificialignorance.net/blog/startupweekend/startupweekendsf-produces-a-record-23-startups/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://www.Artificialignorance.net/blog/startupweekend/startupweekendsf-produces-a-record-23-startups/</feedburner:origLink></item>
	</channel>
</rss>
