<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Coding the Elastic Cloud</title>
	<atom:link href="http://garyrusso.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://garyrusso.wordpress.com</link>
	<description>Writing code for the digital lifestyle while living in NYC.</description>
	<lastBuildDate>Tue, 03 Jan 2012 06:53:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='garyrusso.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1e125cd4e2944a2aa5d972e9a7589434?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Coding the Elastic Cloud</title>
		<link>http://garyrusso.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://garyrusso.wordpress.com/osd.xml" title="Coding the Elastic Cloud" />
	<atom:link rel='hub' href='http://garyrusso.wordpress.com/?pushpress=hub'/>
		<item>
		<title>A C# Interface for Dependency Injection</title>
		<link>http://garyrusso.wordpress.com/2010/05/27/c-interface-for-dependency-injection/</link>
		<comments>http://garyrusso.wordpress.com/2010/05/27/c-interface-for-dependency-injection/#comments</comments>
		<pubDate>Thu, 27 May 2010 06:24:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2010/05/27/using-c-interfaces-for-dependency-injection/</guid>
		<description><![CDATA[This is a follow-up to Jesse Liberty’s Answering A C# Question blog post which compares two equivalent code examples to illustrate the value of interfaces: No interface example Interface with Dependency Injection (DI) example Both examples use fictitious Notepad functionality with File and Twitter capability. Example #1 does not use an interface and the line [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=199&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a follow-up to Jesse Liberty’s <a href="http://jesseliberty.com/2010/02/08/answering-a-c-question/" target="_blank">Answering A C# Question</a> blog post which compares two equivalent code examples to illustrate the value of interfaces:</p>
<ol>
<li>No interface example</li>
<li>Interface with <a href="http://en.wikipedia.org/wiki/Dependency_injection" target="_blank">Dependency Injection (DI)</a> example</li>
</ol>
<p>Both examples use fictitious Notepad functionality with File and Twitter capability.</p>
<p>Example #1 does not use an interface and the line of code (<strong>LOC</strong>) count is <strong>49</strong>.</p>
<p>Example #2 uses a Writer interface with Parameter Dependency Injection. The Notepad’s dependent objects (e.g., FileManager and TwitterManager) are passed as parameters (aka injected) to the worker method. In this case, the LOC count is <strong>57</strong>.</p>
<p>It’s interesting to note that the interface example has slightly more code. The big win is <strong>less coupling</strong> which is much easier to maintain and more <strong>testable</strong>. I’ll have more about the testability in a future post.</p>
<hr /><strong>Example 1</strong> – No Interface</p>
<pre>using System.IO;
using System;

namespace Interfaces
{
   class Program
   {
      static void Main( string[] args )
      {
         var np = new NotePad();
         np.NotePadMainMethod();
      }
   }

   class NotePad
   {
      private string text = "Hello world";

      public void NotePadMainMethod()
      {
         Console.WriteLine("Notepad interacts with user.");
         Console.WriteLine("Provides text writing surface.");
         Console.WriteLine("User pushes a print button.");
         Console.WriteLine("Notepad responds by asking ");
         Console.WriteLine("FileManager to print file...");
         Console.WriteLine("");

         var fm = new FileManager();
         fm.Print(text);

         var tm = new TwitterManager();
         tm.Tweet(text);
      }
   }

   class FileManager
   {
      public void Print(string text)
      {
         Console.WriteLine("Pretends to backup old version file." );
         Console.WriteLine("Then prints text sent to me." );
         Console.WriteLine("printing {0}" , text );

         var writer = new StreamWriter( @"HelloWorld.txt", true );

         writer.WriteLine( text );
         writer.Close();
      }
   }

   class TwitterManager
   {
      public void Tweet( string text )
      {
         <span style="color:#008000;">// write to twitter</span>
         Console.WriteLine("TwitterManager: " + text);
      }
   }
}</pre>
<hr /><strong>Example 2</strong> – Writer Interface with Parameter Dependency Injection</p>
<pre>using System.IO;
using System;

namespace Interfaces
{
   class Program
   {
      static void Main( string[] args )
      {
         var np = new NotePad();

         var fm = new FileManager();
         var tm = new TwitterManager();

         np.NotePadMainMethod(fm); <span style="color:#008000;">// parameter injection</span>
         np.NotePadMainMethod(tm); <span style="color:#008000;">// parameter injection</span>
      }
   }

   class NotePad
   {
      private string text = "Hello world";

      public void NotePadMainMethod(Writer w)
      {
         Console.WriteLine("Notepad interacts with user.");
         Console.WriteLine("Provides text writing surface.");
         Console.WriteLine("User pushes a print button.");
         Console.WriteLine("Notepad responds by asking ");
         Console.WriteLine("FileManager to print file...");
         Console.WriteLine("");

         w.Write(text);
      }
   }

   <span style="color:#008000;">// Writer Interface</span>
   interface Writer
   {
      void Write(string whatToWrite);
   }

   class FileManager : Writer  <span style="color:#008000;">// Inherits Writer Interface</span>
   {
      <span style="color:#008000;">// Implements Write Interface Method</span>
      public void Write(string text)
      {
         <span style="color:#008000;">// write to a file</span>
         Console.WriteLine("FileManager: " + text);
      }

      public void Print(string text)
      {
         Console.WriteLine("Pretends to backup old version file." );
         Console.WriteLine("Then prints text sent to me." );
         Console.WriteLine("printing {0}" , text );

         var writer = new StreamWriter(@"HelloWorld.txt", true);

         writer.WriteLine(text);
         writer.Close();
      }
   }

   class TwitterManager : Writer  <span style="color:#008000;">// Inherits Writer Interface</span>
   {
      <span style="color:#008000;">// Implements Write Interface Method</span>
      public void Write( string text )
      {
         <span style="color:#008000;">// write to Twitter stream</span>
         Console.WriteLine("TwitterManager: " + text);
      }
   }
}</pre>
<hr />
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=199&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2010/05/27/c-interface-for-dependency-injection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>40.740830 -73.998518</georss:point>
		<geo:lat>40.740830</geo:lat>
		<geo:long>-73.998518</geo:long>
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloud Computing is an Overused Buzz-phrase</title>
		<link>http://garyrusso.wordpress.com/2010/05/21/cloud-computing-as-an-overused-buzz-phrase/</link>
		<comments>http://garyrusso.wordpress.com/2010/05/21/cloud-computing-as-an-overused-buzz-phrase/#comments</comments>
		<pubDate>Fri, 21 May 2010 20:07:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[Elastic Cloud]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2010/05/21/cloud-computing-as-an-overused-buzz-word/</guid>
		<description><![CDATA[There are many meteorological pun&#8217;s associated with the term &#8220;cloud computing&#8221;. The term represents a huge paradigm shift in the way backend software services are delivered. This article covers much of the confusion associated with this ambiguous and overused phrase. From a software developer perspective, the deployment model and elasticity are the key differentiators for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=13&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are many meteorological pun&#8217;s associated with the term &#8220;cloud computing&#8221;. The term represents a huge paradigm shift in the way backend software services are delivered.</p>
<p>This <a href="http://www.theregister.co.uk/2010/05/13/cloud_definitions/" target="_blank">article</a> covers much of the confusion associated with this ambiguous and overused phrase.</p>
<p>From a software developer perspective, the deployment model and elasticity are the key differentiators for cloud services.</p>
<p>I consider a cloud service to be a system that can host my software and hide the complexity of the server farm (e.g., routers, load balancers, SSL accelerators, etc.).</p>
<p>Amazon popularized the term &#8220;Elastic Cloud&#8221; when they launched their core cloud component called EC2 back in <a href="http://aws.typepad.com/aws/2006/08/amazon_ec2_beta.html" target="_blank">August 2006</a>. EC2 stands for <a href="http://aws.amazon.com/ec2/" target="_blank">Elastic Compute Cloud (EC2)</a>. Elasticity is the infrastructure’s ability to automatically scale up and scale down as needed.</p>
<p>Elasticity is a big deal. It dramatically simplifies the deployment and administration process. It means that software developers don&#8217;t need to worry much about infrastructure as much and can focus on coding the business process.</p>
<p>I consider Amazon, Google and Microsoft to be the big 3 cloud vendors. They have the elasticity expertise and server farms to support high volume cloud apps.</p>
<p>There&#8217;s Oracle, Salesforce.com, Rackspace and others but IMO are not generic cloud platforms.</p>
<p>For more about the non-developer cloud computing perspective, this <a href="http://en.wikipedia.org/wiki/Cloud_computing" target="_blank">Wikipedia article</a> is a great reference.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=13&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2010/05/21/cloud-computing-as-an-overused-buzz-phrase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>40.740830 -73.998518</georss:point>
		<geo:lat>40.740830</geo:lat>
		<geo:long>-73.998518</geo:long>
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>2010: The Year and Decade for 4 Screens and a Cloud</title>
		<link>http://garyrusso.wordpress.com/2010/01/04/2010-the-year-and-decade-for-4-screens-and-a-cloud/</link>
		<comments>http://garyrusso.wordpress.com/2010/01/04/2010-the-year-and-decade-for-4-screens-and-a-cloud/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 17:37:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Dallas]]></category>
		<category><![CDATA[Data.gov]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2010/01/04/2010-the-year-and-decade-for-4-screens-and-a-cloud/</guid>
		<description><![CDATA[Rob Enderle’s blog post has it right. 2010 will be the year and start of the cloud decade. 

I’d like to take it a step further. The coming wave of ubiquitous ‘democratized’ data services with eager clients waiting to consume will take the internet to a dramatic new level. Microsoft’s three screens and a cloud vision speaks to it but I believe its more about “4 screens with data services”. I consider the data services to be more relevant. The cloud is the engine but the 24/7 data services it provides will be life changing/business transforming. 

Thanks to 3G, pending 4G and whatever comes after, the data services will come from highly reliable mobile data pipes that can be consumed while driving a car, riding a bicycle, at the doctor’s office or exercising at the gym. 

The data services are democratized because the data being provided was once only available to a select few. Opening up the data to software developers and entrepreneurs can be a catalyst for positive change. The democratization of data trend is an unstoppable force that has the power to accelerate innovation to help solve some of the world’s problems and improve the quality of life for all. 

The US Chief Information Officer, Vivek Kundra, understands the power of democratized data. He spearheaded a new web site for this called Data.gov. Another great example is the City of New York’s recent NYC Big Apps Contest. Microsoft is also getting involved with their new Dallas service. 

Regarding the 4 screens, not 3, I expect the data services to be designed to support the following clients.

1. Large Screen 10 foot away living room experience.  2. Desktop/Tablet Screen Multi-touch Tablet and PC monitor experience.  3. Small Screen Smartphone (e.g., Blackberry, Palm, iPhone, iPod Touch, Android, Win Mobile 7, ZuneHD, etc.)  4. Car Dashboard Screen This is the Ford Sync, Fiat Blue&#38;Me, Kia UVO and General Motors OnStar systems. 



Listing the Car Dashboard may be a bit premature but I expect to see at least 25 million "connected" cars sold during this coming decade. In less than a year, the Microsoft Ford Sync system has already exceeded 1 million in US only sales. These systems are just starting to go global with Kia’s UVO and Fiat’s Blue&#38;Me systems. I expect “Connected Cars” consuming mission critical data services to become the norm within 5 years. 

Examples of the mission critical and revenue generating data services are the real-time location-aware contextual ads or electronic billboards. Some of this is already available in the Ford Sync system. I consider it the first commercially viable Augmented Reality solution. I expect Car Dashboard solutions to eventually provide windshield “heads up display” driving directions that can also show the nearest movie listings, nearest Thai restaurants, closest hospitals, etc. 

Aside from the Car Dashboard services, data services will come in many flavors. The more popular services will be the entertainment and news services: 

Video - Netflix, Hulu, Youtube, Boxee 
Music - iTunes, Pandora, Zune 
Games - Xbox Live, SONY Playstation Network 
Books - Amazon Kindle, Nook, PDF, Audible 
News - NY Times, CNN, MSNBC, ABC, CBS and all of the Radio News Feeds 
Sports - ESPN

There will be Quality of Life services such as: 

Health medical record services – HealthVault 
Real-time Traffic - Calculate Quickest Travel Time 
Air/Pollen Quality – What will the air/pollen be like on December 31st at 5:30 PM. 
Population Growth versus Food Supply – Expected food supply in Somalia over the next 3 years. 
Malaria Cases/Birth Rates/Life Expectancies by Region 
Violence Levels in Iraq and by Region 
Airport Security Wait Times – Security Check Wait Time at Gate #4 in LAX, etc. 
Crime Stats by Region 
High School Education Quality by Region

The list of potential services is endless.

Much of this data is already available but is not in a format that can be easily used or consumed by the 4 screens mentioned.

I’ll leave it to the developers and entrepreneurs to pioneer.

Ten years from now, I am confident that we’ll all be grateful for this new cloud computing/data services era.



Technorati Tags: Dallas,Azure,Cloud,Ford Sync,UVO,Blue&#38;Me,Data.gov<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=77&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Rob Enderle’s <a href="http://itmanagement.earthweb.com/features/article.php/3855916/2010-The-Year-and-Decade-of-the-Cloud.htm" target="_blank">blog post</a> has it right. 2010 will be the year and start of the cloud decade. </p>
<p>I’d like to take it a step further. The coming wave of ubiquitous ‘democratized’ data services with eager clients waiting to consume will take the internet to a dramatic new level. Microsoft’s <a href="http://www.microsoft.com/presspass/exec/ozzie/06-04-09ChurchillClub.mspx" target="_blank">three screens and a cloud vision</a> speaks to it but I believe its more about “4 screens with data services”. I consider the data services to be more relevant. The cloud is the engine but the 24/7 data services it provides will be life changing/business transforming. </p>
<p>Thanks to 3G, <a href="http://en.wikipedia.org/wiki/4G" target="_blank">pending 4G</a> and whatever comes after, the data services will come from highly reliable mobile data pipes that can be consumed while driving a car, riding a bicycle, at the doctor’s office or exercising at the gym. </p>
<p>The data services are democratized because the data being provided was once only available to a select few. Opening up the data to software developers and entrepreneurs can be a catalyst for positive change. The <a href="http://googleblog.blogspot.com/2008/09/democratization-of-data.html" target="_blank">democratization of data</a> trend is an unstoppable force that has the power to accelerate innovation to help solve some of the world’s problems and improve the quality of life for all. </p>
<p>The US Chief Information Officer, <a href="http://en.wikipedia.org/wiki/Vivek_Kundra" target="_blank">Vivek Kundra</a>, understands the power of democratized data. He spearheaded a new web site for this called <a href="http://www.data.gov/">Data.gov</a>. Another great example is the City of New York’s recent <a href="http://www.nycbigapps.com/" target="_blank">NYC Big Apps Contest</a>. Microsoft is also getting involved with their new <a href="http://www.microsoft.com/windowsazure/dallas/" target="_blank">Dallas service</a>. </p>
<p>Regarding the 4 screens, not 3, I expect the data services to be designed to support the following clients.</p>
<p>&#160;</p>
<table border="1" cellspacing="2" cellpadding="2" width="446">
<tbody>
<tr>
<td valign="top" width="23" align="center">1.</td>
<td valign="top" width="160">Large Screen</td>
<td valign="top">10 foot away living room experience.          </p>
</td>
</tr>
<tr>
<td valign="top" width="23" align="center">2.</td>
<td valign="top" width="160">Desktop/Tablet Screen</td>
<td valign="top">Multi-touch Tablet and PC monitor          <br />experience.           </td>
</tr>
<tr>
<td valign="top" width="23" align="center">3.</td>
<td valign="top" width="160">Small Screen</td>
<td valign="top">Smartphone          <br />(e.g., Blackberry, Palm,           <br />iPhone, iPod Touch, Android,           <br />Win Phone 7, ZuneHD, etc.)           </td>
</tr>
<tr>
<td valign="top" width="23" align="center">4.</td>
<td valign="top" width="160">Car Dashboard Screen</td>
<td valign="top">This is the <a href="http://www.engadget.com/2009/12/21/next-gen-ford-sync-adding-wifi-hotspot-capabilities-you-provide/" target="_blank">Ford Sync</a>, <a href="http://www.fiat.co.uk/blueandme/" target="_blank">Fiat Blue&amp;Me</a>,           <br /><a href="http://www.engadget.com/2009/12/30/microsoft-and-kia-formalize-partnership-uvo-is-born/" target="_blank">Kia UVO</a> and <a href="http://www.onstar.com/" target="_blank">General Motors OnStar</a>.           </td>
</tr>
</tbody>
</table>
<p> Listing the Car Dashboard may be a bit premature but I expect to see at least 25 million &quot;connected&quot; cars sold during this coming decade. In less than a year, the Microsoft Ford Sync system has already exceeded 1 million in US only sales. These systems are just starting to go global with Kia’s UVO and <a href="http://www.fiat.co.uk/blueandme/" target="_blank">Fiat’s Blue&amp;Me</a> systems. I expect “Connected Cars” consuming mission critical data services to become the norm within 5 years.   </p>
<p>Examples of the mission critical and revenue generating data services are the real-time location-aware contextual ads or electronic billboards. Some of this is already available in the Ford Sync system. I consider it the first commercially viable <a href="http://en.wikipedia.org/wiki/Augmented_reality" target="_blank">Augmented Reality</a> solution. I expect Car Dashboard solutions to eventually provide windshield “heads up display” driving directions that can also show the nearest movie listings, nearest Thai restaurants, closest hospitals, etc.   </p>
<p>Aside from the Car Dashboard services, data services will come in many flavors. The more popular services will be the entertainment and news services:   </p>
<p> <br />
<table border="1" cellspacing="2" cellpadding="2" width="440">
<tbody>
<tr>
<td valign="top" width="55"><strong>Video</strong></td>
<td valign="top" width="345">Netflix, Hulu, Youtube, Boxee</td>
</tr>
<tr>
<td valign="top" width="55"><strong>Music</strong></td>
<td valign="top" width="345">iTunes, Pandora, Zune</td>
</tr>
<tr>
<td valign="top" width="55"><strong>Games</strong></td>
<td valign="top" width="345">Xbox Live, SONY Playstation Network</td>
</tr>
<tr>
<td valign="top" width="55"><strong>Books</strong></td>
<td valign="top" width="345">Amazon Kindle, Nook, PDF, Audible</td>
</tr>
<tr>
<td valign="top" width="55"><strong>News</strong></td>
<td valign="top" width="345">NY Times, CNN, MSNBC, ABC, CBS and all of the Radio News Feeds</td>
</tr>
<tr>
<td valign="top" width="55"><strong>Sports</strong></td>
<td valign="top" width="345">ESPN</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>There will be Quality of Life services such as:    </p>
<ol>
<li>Health medical record services – HealthVault </li>
<li>Real-time Traffic &#8211; Calculate Quickest Travel Time </li>
<li>Air/Pollen Quality – What will the air/pollen be like on December 31st at 5:30 PM. </li>
<li>Population Growth versus Food Supply – Expected food supply in Somalia over the next 3 years. </li>
<li>Malaria Cases/Birth Rates/Life Expectancies by Region </li>
<li>Violence Levels in Iraq and by Region </li>
<li>Airport Security Wait Times – Security Check Wait Time at Gate #4 in LAX, etc. </li>
<li>Crime Stats by Region </li>
<li>High School Education Quality by Region </li>
</ol>
<p>&#160;</p>
<p>The list of potential services is endless.    </p>
<p>Much of this data is already available but is not in a format that can be easily used or consumed by the 4 screens mentioned.     </p>
<p>I’ll leave it to the developers and entrepreneurs to pioneer.     </p>
<p>Ten years from now, I am confident that we’ll all be grateful for this new cloud computing/data services era.</p>
<p>&#160;</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a308375b-d518-4565-9308-233dc62eee91" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Dallas" rel="tag">Dallas</a>,<a href="http://technorati.com/tags/Azure" rel="tag">Azure</a>,<a href="http://technorati.com/tags/Cloud" rel="tag">Cloud</a>,<a href="http://technorati.com/tags/Ford+Sync" rel="tag">Ford Sync</a>,<a href="http://technorati.com/tags/UVO" rel="tag">UVO</a>,<a href="http://technorati.com/tags/Blue%26Me" rel="tag">Blue&amp;Me</a>,<a href="http://technorati.com/tags/Data.gov" rel="tag">Data.gov</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=77&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2010/01/04/2010-the-year-and-decade-for-4-screens-and-a-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft PDC09 Connected Show Podcast #21</title>
		<link>http://garyrusso.wordpress.com/2009/12/31/microsoft-pdc09-connected-show-podcast-21/</link>
		<comments>http://garyrusso.wordpress.com/2009/12/31/microsoft-pdc09-connected-show-podcast-21/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 17:52:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[BigTable]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Connected Show]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PDC09]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/12/31/microsoft-pdc09-connected-show-podcast-21/</guid>
		<description><![CDATA[Wanted to thank Peter Laudati and Dmitry Lyalin for having me on Connected Show Podcast #21 with Sara Chipps recently.

We covered a lot of ground during the podcast and Peter posted all of the relevant links.

There was a lot of great news at PDC09 but I was most fascinated by Microsoft’s support for building Java Apps with Windows Azure.

For the Java Developers out there, here’s the “Building Java Apps with Windows Azure” session.

Technorati Tags: PDC09,Java,Cloud,BigTable,Azure<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=85&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wanted to thank <a href="http://blogs.msdn.com/peterlau/">Peter Laudati</a> and <a href="http://www.lyalin.com/blog/">Dmitry Lyalin</a> for having me on <a href="http://www.connectedshow.com/default.aspx?Episode=21">Connected Show Podcast #21</a> with <a href="http://girldeveloper.com/">Sara Chipps</a> recently.</p>
<p>We covered a lot of ground during the podcast and Peter posted all of the relevant links.</p>
<p>There was a lot of great news at <a href="http://microsoftpdc.com">PDC09</a> but I was most fascinated by Microsoft’s support for building Java Apps with Windows Azure.</p>
<p>For the Java Developers out there, here’s the “<a href="http://microsoftpdc.com/Sessions/SVC50">Building Java Apps with Windows Azure”</a> session.</p>
<p>&#160;</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:25e45219-20b3-4e5c-a7ec-f7313b8a25c2" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/PDC09" rel="tag">PDC09</a>,<a href="http://technorati.com/tags/Java" rel="tag">Java</a>,<a href="http://technorati.com/tags/Cloud" rel="tag">Cloud</a>,<a href="http://technorati.com/tags/BigTable" rel="tag">BigTable</a>,<a href="http://technorati.com/tags/Azure" rel="tag">Azure</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=85&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/12/31/microsoft-pdc09-connected-show-podcast-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>PDC09 Predictions/Expectations</title>
		<link>http://garyrusso.wordpress.com/2009/11/17/pdc09-predictionsexpectations/</link>
		<comments>http://garyrusso.wordpress.com/2009/11/17/pdc09-predictionsexpectations/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 17:56:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PDC09]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/11/17/pdc09-predictionsexpectations/</guid>
		<description><![CDATA[In a few hours the 2009 PDC will officially kick off. For software developers, every PDC keynote has its share of surprise announcements. There was a rumor this morning about some Windows Mobile 7 related announcements coming this week but I doubt it.

I think Microsoft is not ready to discuss Windows Mobile 7 (WM7) publicly yet. My guess is they’re shooting to make WM7 announcements on January 6th, 2010 at the CES 2010 keynote event.

NeoWin sometimes gets the inside scoop and they say Microsoft will discuss plans for IE9 and Silverlight 4 in the morning.

Regardless of surprise, the big news is the Dawn of Microsoft's Cloud Era. It also sets a tone for Google and Amazon. Microsoft will disclose all details on their cloud strategy in the morning. Financial analysts will be listening in carefully so they can tweak their MSFT revenue forecast models.

I predict/expect Ray Ozzie to rock the house in the morning.

It’ll be a busy 3 days. I’m expecting deep dives in the following areas:

IE9 
Silverlight 4 
Office Web 2010 - Is it better than Google Docs? 
Microsoft Web Platform - http://www.microsoft.com/web/ 
Multi-Touch Everywhere – desktops, tablets, surface computers, phones, cars, TVs, game consoles 
Facebook/Twitter Everywhere – desktops, tablets, surface computers, phones, cars, TVs, game consoles 
Visual Studio 2010 – Intellitrace, Coded UI Tests/Silverlight Test Automation 
Language Futures – Parallelism, Dynamic and Procedural, Dependency Injection/IOC 
Security Services – Windows Identity Foundation (formerly Geneva) 
Cloud Computing Architectures – Hybrid, Service Bus, Big Table 
ASP.Net MVC 2 and 2.5 
IIS7 and beyond - http://www.iis.net/

For more info, follow this live blog in the morning.

Technorati Tags: PDC09,Microsoft,Azure<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=86&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In a few hours the 2009 PDC will officially kick off. For software developers, every PDC keynote has its share of surprise announcements. There was a rumor this morning about some Windows Mobile 7 related announcements coming this week but I doubt it.</p>
<p>I think Microsoft is not ready to discuss <a href="http://www.windowsmobile7.com/windows-mobile-7-release-date/">Windows Phone 7 (WP7)</a> publicly yet. My guess is they’re shooting to make WM7 announcements on January 6th, 2010 at the <a href="http://www.cesweb.org/sessions/keynotes.asp">CES 2010 keynote event</a>.</p>
<p><a href="http://www.neowin.net/news/main/09/11/12/neowin-live-blog-microsoft-pdc-2009-november-17-19">NeoWin</a> sometimes gets the inside scoop and they say Microsoft will discuss plans for IE9 and Silverlight 4 in the morning.</p>
<p>Regardless of surprise, the big news is the <a href="http://news.yahoo.com/s/ibd/20091116/bs_ibd_ibd/20091116tech">Dawn of Microsoft&#8217;s Cloud Era</a>. It also sets a tone for Google and Amazon. Microsoft will disclose all details on their cloud strategy in the morning. Financial analysts will be listening in carefully so they can tweak their MSFT revenue forecast models.</p>
<p>I predict/expect Ray Ozzie to <a href="http://news.cnet.com/8301-13860_3-10397444-56.html?part=rss&amp;subj=news&amp;tag=2547-1_3-0-5" target="_blank">rock the house</a> in the morning.</p>
<p>It’ll be a busy 3 days. I’m expecting deep dives in the following areas.</p>
<ol>
<li>IE9 </li>
<li>Silverlight 4 </li>
<li><a href="http://www.microsoft.com/video/en/us/details/8ec069ad-64b2-4eae-80f3-ad4db50b1e37" target="_blank">Office Web 2010</a> &#8211; Is it better than Google Docs? </li>
<li>Microsoft Web Platform &#8211; <a title="http://www.microsoft.com/web/" href="http://www.microsoft.com/web/">http://www.microsoft.com/web/</a> </li>
<li>Multi-Touch Everywhere – desktops, tablets, surface computers, phones, cars, TVs, game consoles </li>
<li>Facebook/Twitter Everywhere – desktops, tablets, surface computers, phones, cars, TVs, game consoles </li>
<li>Visual Studio 2010 – Intellitrace, Coded UI Tests/Silverlight Test Automation </li>
<li>Language Futures – Parallelism, Dynamic and Procedural, Dependency Injection/IOC </li>
<li>Security Services – Windows Identity Foundation (formerly Geneva) </li>
<li>Cloud Computing Architectures – Hybrid, Service Bus, Big Table </li>
<li>ASP.Net MVC 2 and 2.5 </li>
<li>IIS7 and beyond &#8211; <a title="http://www.iis.net/" href="http://www.iis.net/">http://www.iis.net/</a> </li>
</ol>
<p>For more info, follow this <a href="http://www.winsupersite.com/pdc/#16">live blog</a> in the morning.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=86&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/11/17/pdc09-predictionsexpectations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft&#8217;s Azure Cloud Full Court Press starts November 17</title>
		<link>http://garyrusso.wordpress.com/2009/10/31/microsofts-azure-cloud-full-court-press-starts-november-17/</link>
		<comments>http://garyrusso.wordpress.com/2009/10/31/microsofts-azure-cloud-full-court-press-starts-november-17/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:59:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[GAE]]></category>
		<category><![CDATA[PDC09]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/10/31/microsofts-azure-cloud-full-court-press-starts-november-17/</guid>
		<description><![CDATA[Technorati Tags: PDC09,Azure,GAE



The full court press to get developer’s onto the Microsoft Azure Cloud starts Tuesday, November 17th at 8:30 AM PST at the Microsoft Professional Developer Conference. I’ll be there and will be blogging as it unfolds.

I believe it’ll take at least 2 years for Azure to get the sales and usage momentum needed to be successful. As you may know, the 3 big cloud vendors; Amazon, Google and Microsoft are getting their stakes in the ground (er… cloud).

This month’s Forbes Magazine covers Microsoft’s efforts here. 

It’s interesting to note that Azure will be half the cost of Amazon but Google App Engine beats them all. 

The cloud computing transition is going to be big. The success of Microsoft’s Azure as well as Google and Amazon is inevitable. 

I wonder how old school data center companies like AboveNet and Equinix will survive.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=87&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The full court press to get developer’s onto the <a href="http://www.microsoft.com/windowsazure/">Microsoft Azure Cloud</a> starts <a href="http://microsoftpdc.com/Schedule#/Tuesday">Tuesday, November 17th at 8:30 AM PST</a> at the <a href="http://microsoftpdc.com/">Microsoft Professional Developer Conference</a>. I’ll be there and will be blogging as it unfolds.</p>
<p>I believe it’ll take at least 2 years for Azure to get the sales and usage momentum needed to be successful. As you may know, the 3 big cloud vendors; <a href="http://aws.amazon.com/ec2/">Amazon</a>, <a href="http://code.google.com/appengine/">Google</a> and Microsoft are getting their stakes in the ground (er… cloud).</p>
<p>This month’s Forbes Magazine covers Microsoft’s efforts <a href="http://www.forbes.com/forbes/2009/1116/outfront-ibm-cloud-microsoft-new-cloud-computing.html">here</a>. </p>
<p>It’s interesting to note that Azure will be half the cost of Amazon but <a href="http://oakleafblog.blogspot.com/2009/07/comparison-of-azure-and-google-app.html">Google App Engine</a> beats them all. </p>
<p>The cloud computing transition is going to be big. The success of Microsoft’s Azure as well as Google and Amazon is inevitable. </p>
<p>I wonder how old school data center companies like <a href="http://abovenet.com/">AboveNet</a> and <a href="http://www.equinix.com/">Equinix</a> will survive. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=87&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/10/31/microsofts-azure-cloud-full-court-press-starts-november-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>2009 Mobile App Development Contests</title>
		<link>http://garyrusso.wordpress.com/2009/08/11/2009-mobile-app-development-contests/</link>
		<comments>http://garyrusso.wordpress.com/2009/08/11/2009-mobile-app-development-contests/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 18:06:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/08/11/2009-mobile-app-development-contests/</guid>
		<description><![CDATA[The next 20 years of software development is all about Fat Client / Fat Cloud Mobile Apps. 

For the software developers, I’m restating the obvious. Let’s face it, the days of thin client / fat server are over. We quickly moved to a new world of ubiquitous mobile computing everywhere (e.g., in the car, on the train, at a baseball game, in a plane). I have software running in my watch, my sneakers, my bicycle, toaster, refrigerator and bathroom scale. The devices communicate peer to peer or device to cloud. 

Thanks to the iPhone and iPod Touch, the buzz for the foreseeable future is the new small screen computing devices. I started working on some mobile apps recently and was surprised to see the level of developer interest.

I’m a big fan of Google’s Android largely for the development community and the great development tools. Google and Microsoft understand that the success of the platform depends on a healthy and vibrant development community. In an effort to measure the current ‘success’ of a platform’s development community, I compared the annual developer contests of the 6 major mobile phone vendors.

If you rank the 6 vendors by cash prize award, Android, Win Mobile and Blackberry come out on top. The following table has the details.

2009 Mobile App Developer Contests



#

Mobile
Phone Contest  

Submission
Date



Award
Date



1st Prize



2nd Prize



3rd Prize



1

Android Android Developer Challenge



Aug 31, 2009



Nov 2009



$150,000



$50,000



$25,000



2

Win Mobile Windows Mobile Developer Contest


Sept 30, 2009



Oct 2009



$100,000



$50,000



$20,000





3

Blackberry Blackberry Developer Challenge


Sept 25, 2009



Nov 10, 2009



$100,000



$20,000



$5,000 to 16 finalists



4

iPhone Apple Design Awards  

May 4, 2009



Jun 12, 2009



$10,000 in hardware and other perks



-



-



5

Palm Pre preDevCamp Developer Challenge


Aug 9, 2009



Aug 2009



Devices and $200 Gift Card



-



-



6

Nokia Nokia Developer Programs


-



-



-



-



-<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=88&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> 
<p>The next 20 years of software development is all about Fat Client / Fat Cloud Mobile Apps. </p>
<p>For the software developers, I’m restating the obvious. Let’s face it, the days of thin client / fat server are over. We quickly moved to a new world of ubiquitous mobile computing everywhere (e.g., in the car, on the train, at a baseball game, in a plane). I have software running in my watch, my sneakers, my bicycle, <a href="http://www.williams-sonoma.com/products/5219902/index.cfm?clg=19&amp;bnrid=3180501&amp;cm_ven=FRO&amp;cm_cat=Shopping&amp;cm_pla=elttsttst&amp;cm_ite=Breville Die-Cast Toaster, 2-Slice" target="_blank">toaster</a>, refrigerator and <a href="http://bodytrace.com/product.html" target="_blank">bathroom scale</a>. The devices communicate peer to peer or device to cloud. </p>
<p>Thanks to the <a href="http://www.apple.com/iphone/" target="_blank">iPhone</a> and <a href="http://www.apple.com/ipodtouch/" target="_blank">iPod Touch</a>, the buzz for the foreseeable future is the new small screen computing devices. I started working on some mobile apps recently and was surprised to see the level of developer interest.</p>
<p>I’m a big fan of <a href="http://developer.android.com" target="_blank">Google’s Android</a> largely for the development community and the great development tools. Google and Microsoft understand that the success of the platform depends on a healthy and vibrant development community. In an effort to measure the current ‘success’ of a platform’s development community, I compared the annual developer contests of the 6 major mobile phone vendors.</p>
<p>If you rank the 6 vendors by cash prize award, Android, Win Mobile and Blackberry come out on top. The following table has the details.</p>
<p><strong>2009 Mobile App Developer Contests</strong></p>
<table border="1" cellspacing="0" cellpadding="2" width="601">
<tbody>
<tr>
<td valign="top" width="21">
<p align="center"><strong>#</strong></p>
</td>
<td valign="top" width="82"><strong>Mobile            <br />Phone</strong></td>
<td valign="top" width="95"><strong>Contest</strong></td>
<td valign="top" width="56">
<p align="center"><strong>Submission              <br />Date</strong></p>
</td>
<td valign="top" width="64">
<p align="center"><strong>Award              <br />Date</strong></p>
</td>
<td valign="top" width="108">
<p align="center"><strong>1st Prize</strong></p>
</td>
<td valign="top" width="86">
<p align="center"><strong>2nd Prize</strong></p>
</td>
<td valign="top" width="87">
<p align="center"><strong>3rd Prize</strong></p>
</td>
</tr>
<tr>
<td valign="top" width="21">
<p align="center">1</p>
</td>
<td valign="top" width="82">Android</td>
<td valign="top" width="95">
<p align="left"><a href="http://code.google.com/android/adc/">Android Developer Challenge</a>             </p>
</td>
<td valign="top" width="56">
<p align="center">8/31/2009</p>
</td>
<td valign="top" width="64">
<p align="center">Nov 2009</p>
</td>
<td valign="top" width="108">
<p align="center">$150,000</p>
</td>
<td valign="top" width="86">
<p align="center">$50,000</p>
</td>
<td valign="top" width="87">
<p align="center">$25,000</p>
</td>
</tr>
<tr>
<td valign="top" width="21">
<p align="center">2</p>
</td>
<td valign="top" width="82">Win Mobile</td>
<td valign="top" width="95">
<p align="left"><a href="http://www.msdncontest.com/mobile/">Windows Mobile Developer Contest</a>             </p>
</td>
<td valign="top" width="56">
<p align="center">9/30/2009</p>
</td>
<td valign="top" width="64">
<p align="center">Oct 2009</p>
</td>
<td valign="top" width="108">
<p align="center">$100,000</p>
</td>
<td valign="top" width="86">
<p align="center">$50,000</p>
</td>
<td valign="top" width="87">
<p align="center">$20,000</p>
<p align="center">&#160;</p>
</td>
</tr>
<tr>
<td valign="top" width="21">
<p align="center">3</p>
</td>
<td valign="top" width="82">Blackberry</td>
<td valign="top" width="95">
<p align="left"><a href="http://www.blackberrypartnersfund.com/09contest" target="_blank">Blackberry Developer Challenge</a>             </p>
</td>
<td valign="top" width="56">
<p align="center">9/25/2009</p>
</td>
<td valign="top" width="64">
<p align="center">Nov 10, 2009</p>
</td>
<td valign="top" width="108">
<p align="center">$100,000</p>
</td>
<td valign="top" width="86">
<p align="center">$20,000</p>
</td>
<td valign="top" width="87">
<p align="center">$5,000 to 16 finalists</p>
</td>
</tr>
<tr>
<td valign="top" width="21">
<p align="center">4</p>
</td>
<td valign="top" width="82">iPhone</td>
<td valign="top" width="95">
<p align="left"><a href="http://developer.apple.com/wwdc/ada/rules.html">Apple Design Awards</a></p>
</td>
<td valign="top" width="56">
<p align="center">5/4/2009</p>
</td>
<td valign="top" width="64">
<p align="center">Jun 12, 2009</p>
</td>
<td valign="top" width="108">
<p align="center">$10,000 in hardware and other perks</p>
</td>
<td valign="top" width="86">
<p align="center">-</p>
</td>
<td valign="top" width="87">
<p align="center">-</p>
</td>
</tr>
<tr>
<td valign="top" width="21">
<p align="center">5</p>
</td>
<td valign="top" width="82">Palm Pre</td>
<td valign="top" width="95"><a href="http://www.precentral.net/predevcamp-prepare-app-splosion">preDevCamp Developer Challenge</a>           </td>
<td valign="top" width="56">
<p align="center">8/9/2009</p>
</td>
<td valign="top" width="64">
<p align="center">Aug 2009</p>
</td>
<td valign="top" width="108">
<p align="center">Devices and $200 Gift Card</p>
</td>
<td valign="top" width="86">
<p align="center">-</p>
</td>
<td valign="top" width="87">
<p align="center">-</p>
</td>
</tr>
<tr>
<td valign="top" width="21">
<p align="center">6</p>
</td>
<td valign="top" width="82">Nokia</td>
<td valign="top" width="95">
<p align="left"><a href="http://www.forum.nokia.com/Premium_Services/" target="_blank">Nokia Developer Programs              <br /></a></p>
</td>
<td valign="top" width="56">
<p align="center">-</p>
</td>
<td valign="top" width="64">
<p align="center">-</p>
</td>
<td valign="top" width="108">
<p align="center">-</p>
</td>
<td valign="top" width="86">
<p align="center">-</p>
</td>
<td valign="top" width="87">
<p align="center">-</p>
<p align="center">&#160;</p>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=88&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/08/11/2009-mobile-app-development-contests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell Latitude XT2 Tablet PC Unboxing</title>
		<link>http://garyrusso.wordpress.com/2009/05/09/dell-latitude-xt2-tablet-pc-unboxing/</link>
		<comments>http://garyrusso.wordpress.com/2009/05/09/dell-latitude-xt2-tablet-pc-unboxing/#comments</comments>
		<pubDate>Sat, 09 May 2009 18:09:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Latitude XT2]]></category>
		<category><![CDATA[Multitouch]]></category>
		<category><![CDATA[Win7]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/05/09/dell-latitude-xt2-tablet-pc-unboxing/</guid>
		<description><![CDATA[My 64 bit Dell Latitude XT2 arrived this week.

It came pre-installed with Vista 64 Business Edition. I have since reinstalled the OS to use the latest 64 bit Windows 7 Ultimate RC with new 64 bit N-Trig drivers and so far so good. I need more time with it but the pen stylus and multitouch are surprisingly very responsive.

It looks like the processor horsepower is very good. It should be good enough for my software development needs. I'm going to install Visual Studio 2008 Team Suite and Android/Eclipse later this week. I'll let you know how it goes.

In the mean time, here's the unboxing photos.

1. Main Box



2. Inside Main Box



3. Inside Accessory Box



4. Secondary Box containing the XT2 Tablet PC



5. Contents of Secondary Box with the XT2 Tablet PC pulled out



6. XT2 Tablet PC Box Opened



7. First view of XT2 Tablet PC



8. XT2 Tablet PC Unwrapped



9. XT2 Tablet PC next to older HP zd7000<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=89&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My 64 bit <a href="http://pocketxp.spaces.live.com/blog/cns!75810CFE740B6130!4563.entry" target="_blank">Dell Latitude XT2</a> arrived this week.   </p>
<p>It came pre-installed with Vista 64 Business Edition. I have since reinstalled the OS to use the latest <a href="http://www.microsoft.com/windows/windows-7/download.aspx" target="_blank">64 bit Windows 7 Ultimate RC</a> with new <a href="http://n-trig.com/Content.aspx?PageId=942" target="_blank">64 bit N-Trig drivers</a> and so far so good. I need more time with it but the pen stylus and multitouch are surprisingly very responsive.   </p>
<p>It looks like the processor horsepower is very good. It should be good enough for my software development needs. I&#8217;m going to install <a href="http://www.microsoft.com/visualstudio/en-us/products/teamsystem/default.mspx" target="_blank">Visual Studio 2008 Team Suite</a> and <a href="http://developer.android.com/" target="_blank">Android/Eclipse</a> later this week. I&#8217;ll let you know how it goes.   </p>
<p>In the mean time, here&#8217;s the unboxing photos.   </p>
<p>1. Main Box   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1mKIBeQfqCkITFiKyfbNgmVxyrQF3DqsC_s5aIR0ZYZK0mkhWZ2mTLIJzJqkgcRGDlMHR-tRLSFb314yTAXPI1XJoo-Y_1h9JV4CP-k8RThbDqOx_bLxXmw_fDix0nJLJw0oacBhPNeQtwmAg8ops7dw/IMAG0126[2].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0126" border="0" alt="IMAG0126" src="https://ofty3a.bay.livefilestore.com/y1m6bVH8-EO1kP0Caao9g2Aesu-uy0aSCpSgPe-dL0dtny5Z7BOqVN_DIKJ9PH-MjUrhWlcAGtnAhfzqnExE-HI7lobeDhLW3o-e_og2XekYgE-hMB0xya4uJUPOK0_CQTo5C-frUYH5Q3ZIxV6jMW6iA/IMAG0126_thumb.jpg" width="244" height="184" /></a>   </p>
<p>2. Inside Main Box   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1m6B9pIEX8kOOKe-FDy4ZCstcOXE5k7yQmczcB_NDZsyUTug95_OdhIJNMOYGjemleU88kJuOdYS2izO52tyHZtmrV6Pt93no2cVwP5d5y8zYPTyBJfALPXRfkIqan2L-IhP1rNUalsiMTozLxbwQUvg/IMAG0127[2].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0127" border="0" alt="IMAG0127" src="https://ofty3a.bay.livefilestore.com/y1mVomV9JCm3CVNqXOm4JOYTcu5ovrVLjtLDJDG6M6yx4WGlhWeGPkbWkfayFpwehiutnVAGBBIaXYR7fBEs8G26Y9zY-ggoC6Tl1y3ioKc-auZMtpRxu4mKNHrkSBIY-7RdY8-9VEWckL24UjCZTNTRw/IMAG0127_thumb.jpg" width="244" height="184" /></a>   </p>
<p>3. Inside Accessory Box   </p>
<p><a href="$IMAG01295.jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0129" border="0" alt="IMAG0129" src="https://ofty3a.bay.livefilestore.com/y1mPnCW8GEaYlUSOHBQFrwxipajevBK8a39pyYaPQOQmY0SmLwyqXVFuamuClvRdw0iujgJOZRzqdn_08VGtFQty6gTj7V2ST7AoKfmlOSkQV8sI7WuDG9FWwctug9KsVjwCzwuF4znadamJgBMr6tidQ/IMAG0129_thumb[1].jpg" width="244" height="184" /></a>   </p>
<p>4. Secondary Box containing the XT2 Tablet PC   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1mko3RMwjXu_u826_m9_g5kAqIkvnk1XrMSC5R1GCL3n83pqTGv4_CzHozbau6td245VUQeolASlSpp1uRU6jCP7dGWVyQSZPDOxdkG4ZydxSbe0gN-mSIwWjml8K4qEpXtPuSvPZ4X3uTmG4lsjeLPw/IMAG0134[5].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0134" border="0" alt="IMAG0134" src="https://ofty3a.bay.livefilestore.com/y1mVdPPx5DqQXddtZdUFQ6fZkdum6DnjnpiMU39wPjCvxVD97_m5KVGZabgupB5-Fh2lykaf_w5c0Ln06z24jmbk9e50EHA1K4NDyeK_Q_c8Mmvdo3TQK-z2-pSbr_0-AnGv0Da_yKOcwsvhxT53VlhhQ/IMAG0134_thumb[1].jpg" width="244" height="184" /></a>   </p>
<p>5. Contents of Secondary Box with the XT2 Tablet PC pulled out   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1m_a1Aq9YemlYMNULN7m-1NV248IysVc0YgKTFbGA3YR2lsavA4rfhq5Df5Jva6DqxsQeJaS6V4Qn1uFxvhsLR-ExmueTIXiUx2IDl4ZGoJmobbs8_kRWX8qAlml_Gxz1tM632-AwDXCmCLLnK5nEw3Q/IMAG0135[5].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0135" border="0" alt="IMAG0135" src="https://ofty3a.bay.livefilestore.com/y1mrg4dRVJn9qFJBIIS7O9dsMYFB_W0FPIjG_Yy3k2CeOa4JaUux8ZA4bRsAgA-_iMgdcTbjsuj7nN1pqYQSBkEz8Tk1nGmuboHoTIZ4b-q7o9ZE9vCUsdbwKdMhwdddV0aQA-CPZSbgwIadDMXbQt5Og/IMAG0135_thumb[1].jpg" width="244" height="184" /></a>   </p>
<p>6. XT2 Tablet PC Box Opened   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1mv0BrVfuL4wYkNQjJ4-2h0mbIbk5rh8GFyUVa2rP6LCxsJFiS5QIP6kj9eGo-DykGsPlviNavoA4OY0TeM6h0G7jp5pdHyMgKluObuNFAKpYt711jm3uchjEF1hsjq1voOKKscTNBrvftMFaJag_ZHA/IMAG0131[5].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0131" border="0" alt="IMAG0131" src="https://ofty3a.bay.livefilestore.com/y1mblxn3L_Z2CjN8SPVJUOM9Tf1zAWyK36gSdNydKLS9w-bb678i4Gib4ttDpd_PfLEmo-dhWaAtWEFx_1DQP72ziB5Q-1zXjPmI99XVg8hK-4N3GwQtr1ZkWptBS9FyQA5fOqt2YJP3cTv-wwnE-HAjQ/IMAG0131_thumb[1].jpg" width="244" height="184" /></a>   </p>
<p>7. First view of XT2 Tablet PC   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1mqwYG_BTNyElsoO-p4sOwzDlWTegrstxceXQTsEQHE8Iq0UxYNtaycehrrm6okJ-dIo-sY-4sx6-PqRrFQSbzBaopFDflOgD3VkpJUJX5o1X8CmqZn6jyirjCYJha3BybqcHJi4nAQDOUdnp-KDvNLA/IMAG0136[5].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="IMAG0136" border="0" alt="IMAG0136" src="https://ofty3a.bay.livefilestore.com/y1mkeO6SMhkx9NbxPnbdyUAkoovP345CKweuzMgkusdkho5jyWfOs7-WjdnFd6HQ8aQJjgRmhLFeIiFkaX5BoKD13Dut4k1lQ0shh0_HrANissGfH7D67UTEUSwacxnpVSpwYnnz5WzXVNvEIBaeq3QIQ/IMAG0136_thumb[1].jpg" width="244" height="184" /></a>   </p>
<p>8. XT2 Tablet PC Unwrapped   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1mwdKLvjqxlLAX52Upl-Xj0EoudzGq22YbzDK40yxcgZuFbB302t4P7br3I7OWsjl4iAYctgnOgWhDVkfOU7ww4Ns9InK3aSn7eFE1Ioptu9quCp0i1ss7dpzxpbOA9HdoOhxnqg4r1GzljnJo89WQNA/Dell-Latitude-XT2_2[5].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="Dell-Latitude-XT2_2" border="0" alt="Dell-Latitude-XT2_2" src="https://ofty3a.bay.livefilestore.com/y1m4_vn787-SANg1pdwRBz55CSmLz-fryWgSCDD2Yfma-XjrGP-UWWzBZPxo5WeAeaAvEHQYNhJqINnsmZs67MSUEkIk9adLAUhc7BFnyPAR02IioY77Cw_o0zm8Kiwqo3Kn_revixgYmZrysmuFufTVg/Dell-Latitude-XT2_2_thumb[1].jpg" width="244" height="184" /></a>   </p>
<p>9. XT2 Tablet PC next to older <a href="http://reviews.cnet.com/laptops/hp-pavilion-zd7000/4505-3121_7-30557633.html" target="_blank">HP zd7000</a>   </p>
<p><a href="https://ofty3a.bay.livefilestore.com/y1mPe9OMpeTMKTQHXdBtLTRzr11gRDIaMiY5iwTv1zYapAH6ABBMoPWKYDWHabGFOimDYZ-iheqzYzFgrKESC5rJPdgNicfEROL0BwimqCzMmRfGrzyA68WHBpRbz8CDtbFQc1p5GrzbKeR6Z3Ob3OM9g/Dell-Latitude-XT2[5].jpg" rel="WLPP"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="Dell-Latitude-XT2" border="0" alt="Dell-Latitude-XT2" src="https://ofty3a.bay.livefilestore.com/y1m7K0tvnklYwFBClF-ZE7Cou5F8yAhQ9P90n8lFSwAsg2JrJWPPj-gOTILfnqPHXpRJpxw2Qoa0YRvBu4cusEyxi8KE3-XupD0cEP6wPu1bmhtb719QZqKKRnrrOrt61idx2Yt1bMxprfonyKkwkHtwg/Dell-Latitude-XT2_thumb[1].jpg" width="244" height="184" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=89&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/05/09/dell-latitude-xt2-tablet-pc-unboxing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1m6bVH8-EO1kP0Caao9g2Aesu-uy0aSCpSgPe-dL0dtny5Z7BOqVN_DIKJ9PH-MjUrhWlcAGtnAhfzqnExE-HI7lobeDhLW3o-e_og2XekYgE-hMB0xya4uJUPOK0_CQTo5C-frUYH5Q3ZIxV6jMW6iA/IMAG0126_thumb.jpg" medium="image">
			<media:title type="html">IMAG0126</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1mVomV9JCm3CVNqXOm4JOYTcu5ovrVLjtLDJDG6M6yx4WGlhWeGPkbWkfayFpwehiutnVAGBBIaXYR7fBEs8G26Y9zY-ggoC6Tl1y3ioKc-auZMtpRxu4mKNHrkSBIY-7RdY8-9VEWckL24UjCZTNTRw/IMAG0127_thumb.jpg" medium="image">
			<media:title type="html">IMAG0127</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1mPnCW8GEaYlUSOHBQFrwxipajevBK8a39pyYaPQOQmY0SmLwyqXVFuamuClvRdw0iujgJOZRzqdn_08VGtFQty6gTj7V2ST7AoKfmlOSkQV8sI7WuDG9FWwctug9KsVjwCzwuF4znadamJgBMr6tidQ/IMAG0129_thumb1.jpg" medium="image">
			<media:title type="html">IMAG0129</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1mVdPPx5DqQXddtZdUFQ6fZkdum6DnjnpiMU39wPjCvxVD97_m5KVGZabgupB5-Fh2lykaf_w5c0Ln06z24jmbk9e50EHA1K4NDyeK_Q_c8Mmvdo3TQK-z2-pSbr_0-AnGv0Da_yKOcwsvhxT53VlhhQ/IMAG0134_thumb1.jpg" medium="image">
			<media:title type="html">IMAG0134</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1mrg4dRVJn9qFJBIIS7O9dsMYFB_W0FPIjG_Yy3k2CeOa4JaUux8ZA4bRsAgA-_iMgdcTbjsuj7nN1pqYQSBkEz8Tk1nGmuboHoTIZ4b-q7o9ZE9vCUsdbwKdMhwdddV0aQA-CPZSbgwIadDMXbQt5Og/IMAG0135_thumb1.jpg" medium="image">
			<media:title type="html">IMAG0135</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1mblxn3L_Z2CjN8SPVJUOM9Tf1zAWyK36gSdNydKLS9w-bb678i4Gib4ttDpd_PfLEmo-dhWaAtWEFx_1DQP72ziB5Q-1zXjPmI99XVg8hK-4N3GwQtr1ZkWptBS9FyQA5fOqt2YJP3cTv-wwnE-HAjQ/IMAG0131_thumb1.jpg" medium="image">
			<media:title type="html">IMAG0131</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1mkeO6SMhkx9NbxPnbdyUAkoovP345CKweuzMgkusdkho5jyWfOs7-WjdnFd6HQ8aQJjgRmhLFeIiFkaX5BoKD13Dut4k1lQ0shh0_HrANissGfH7D67UTEUSwacxnpVSpwYnnz5WzXVNvEIBaeq3QIQ/IMAG0136_thumb1.jpg" medium="image">
			<media:title type="html">IMAG0136</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1m4_vn787-SANg1pdwRBz55CSmLz-fryWgSCDD2Yfma-XjrGP-UWWzBZPxo5WeAeaAvEHQYNhJqINnsmZs67MSUEkIk9adLAUhc7BFnyPAR02IioY77Cw_o0zm8Kiwqo3Kn_revixgYmZrysmuFufTVg/Dell-Latitude-XT2_2_thumb1.jpg" medium="image">
			<media:title type="html">Dell-Latitude-XT2_2</media:title>
		</media:content>

		<media:content url="https://ofty3a.bay.livefilestore.com/y1m7K0tvnklYwFBClF-ZE7Cou5F8yAhQ9P90n8lFSwAsg2JrJWPPj-gOTILfnqPHXpRJpxw2Qoa0YRvBu4cusEyxi8KE3-XupD0cEP6wPu1bmhtb719QZqKKRnrrOrt61idx2Yt1bMxprfonyKkwkHtwg/Dell-Latitude-XT2_thumb1.jpg" medium="image">
			<media:title type="html">Dell-Latitude-XT2</media:title>
		</media:content>
	</item>
		<item>
		<title>Invoice for 64 bit Dell Latitude XT2 ordered on Friday &#8211; April 10th, 2009</title>
		<link>http://garyrusso.wordpress.com/2009/04/22/invoice-for-64-bit-dell-latitude-xt2-ordered-on-friday-april-10th-2009/</link>
		<comments>http://garyrusso.wordpress.com/2009/04/22/invoice-for-64-bit-dell-latitude-xt2-ordered-on-friday-april-10th-2009/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 18:12:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Latitude XT2]]></category>
		<category><![CDATA[Multitouch]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/04/22/invoice-for-64-bit-dell-latitude-xt2-ordered-on-friday-april-10th-2009/</guid>
		<description><![CDATA[Technorati Tags: Multi-touch,XT2,Latitude,Dell


I placed an order for the 64 bit Dell Latitude XT2 on Friday, April 10th.

It looks like there's a 5 week turnaround as the estimated delivery date is May 18th.
I'll have the un-boxing as soon as it arrives.

Here's the invoice. It includes the 24 inch UltraSharp monitor.

# Item Description Price  1 224-3594 Latitude XT2 Non-TAA Base $4,099.00  2 311-9873 Latitude XT2, Intel Core 2 DuoSU9400, 1.40GHz, 800MHz, 3M L2 Cache, LED LCD $0.00  3 311-9884 5.0GB DDR3, SDRAM, 2 Dimms (1GB Integrated) Latitude XT2 $0.00  4 330-2802 Internal English Keyboard for Latitude XT2 Notebooks $0.00  5 320-6270 Dell UltraSharp 2408WFP,Wide Flat Panel w/Height AdjustableStand,24.0 Inch VIS,OptiPlex Precision and Latitude $0.00  6 320-7678 Intel Integrated Graphics Media Accelerator 4500MHD Latitude XT2 $0.00  7 341-8949 128GB Dell Mobility Solid State Drive for Latitude XT2 $0.00  8 468-2071 Vista Business 64-BIT Service Pack 1, with media, English Latitude $0.00  9 430-3364 Dell Wireless 365 Bluetooth Module, Latitude XT2 $0.00  10 330-2840 90W , 3-Pin,AC Adapter for Latitude XT2 $0.00  11 330-0879 US - 3-FT, 3-Pin Flat E-FamilyPower Cord for Latitude E-Family $0.00  12 330-2831 MediaBase with 8X DVD+/-RW for Latitude XT2 $0.00  13 420-9184 Cyberlink Power DVD 8.1,with Media,Dell Latitude/Mobile Precision $0.00  14 420-8010 Roxio Creator Dell Edition,9.0Dell Latitude/Mobile Precision $0.00  15 430-3086 Dell WLAN 1510 (802.11a/b/g/n 2X3) 1/2 MiniCard for LatitudeE/Mobile Precision $0.00  16 330-0884 No Intel vPro Technologys advanced management features for Latitude, Mobile Precision $0.00  17 330-2843 Resource DVD with Diagnostics and Drivers for Vista LatitudeXT2 Notebook $0.00  18 312-0852 6-Cell/42 WHr Primary Battery for Dell Latitude XT2 $0.00  19 467-6457 Energy Star 4.0 Enabled, EPEATGOLD, Latitude XT2 $0.00  20 993-4248 Dell Hardware Limited Warranty Plus Onsite Service Extended Year(s) $0.00  21 993-4247 Dell Hardware Limited Warranty Plus Onsite Service Initial Year $0.00  22 989-3449 Thank you choosing Dell ProSupport. For tech support, visit http://support.dell.com/ProSupport or call 1-866-516-3115 $0.00  23 992-2102 ProSupport for End Users: Next Business Day Parts and Labor Onsite Response 2 Year Extended $0.00  24 992-5740 ProSupport for End Users: Next Business Day Parts and Labor Onsite Response Initial Year $0.00  25 983-7572 ProSupport for End Users: 7x24 Technical Support and assistance for end-users, 2 Year Extended $0.00  26 984-3980 ProSupport for End Users: 7x24 Technical Support and assistance for end-users, Initial $0.00  27 900-9987 Standard On-Site Installation Declined $0.00  28 310-8319 Intel Core 2 Duo Processor $0.00  29 310-8758 You have chosen a Windows Vista Premium System $0.00  30 310-8977 Info SKU-Software and Peripherals products and solutions catalog included in system boxes $0.00    Sub-total: $4,099.00    Shipping: $0.00    Tax: $343.29    Order Total: $4,442.29<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=90&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I placed an order for the 64 bit <a href="http://www.dell.com/content/products/productdetails.aspx/laptop-latitude-xt2" target="_blank">Dell Latitude XT2</a> on Friday, April 10th.     </p>
<p>It looks like there&#8217;s a 5 week turnaround as the estimated delivery date is May 18th.</p>
<p>I&#8217;ll have the un-boxing as soon as it arrives.    </p>
<p>Here&#8217;s the invoice. It includes the <a href="http://reviews.cnet.com/lcd-monitors/dell-ultrasharp-2408wfp/4505-3174_7-32886455.html?tag=prod" target="_blank">24 inch UltraSharp monitor</a>.</p>
<table border="1" cellspacing="1" cellpadding="2" width="470">
<tbody>
<tr>
<td valign="top" width="25" align="center"><b>#</b> </td>
<td valign="top" width="75" align="center"><b>Item</b> </td>
<td valign="top" width="260" align="left"><b>Description</b> </td>
<td valign="top" width="103" align="center"><b>Price</b> </td>
</tr>
<tr>
<td valign="top" align="center">1 </td>
<td valign="top" align="center">224-3594 </td>
<td valign="top" width="260">Latitude XT2 Non-TAA Base </td>
<td valign="top" width="103" align="right">$4,099.00 </td>
</tr>
<tr>
<td valign="top" align="center">2 </td>
<td valign="top" align="center">311-9873 </td>
<td valign="top" width="260">Latitude XT2, Intel Core 2 DuoSU9400, 1.40GHz, 800MHz, 3M L2 Cache, LED LCD </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">3 </td>
<td valign="top" align="center">311-9884 </td>
<td valign="top" width="260">5.0GB DDR3, SDRAM, 2 Dimms (1GB Integrated) Latitude XT2</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">4 </td>
<td valign="top" align="center">330-2802 </td>
<td valign="top" width="260">Internal English Keyboard for Latitude XT2 Notebooks</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">5 </td>
<td valign="top" align="center">320-6270 </td>
<td valign="top" width="260">Dell UltraSharp 2408WFP,Wide Flat Panel w/Height AdjustableStand,24.0 Inch VIS,OptiPlex Precision and Latitude</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">6 </td>
<td valign="top" align="center">320-7678 </td>
<td valign="top" width="260">Intel Integrated Graphics Media Accelerator 4500MHD Latitude XT2</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">7 </td>
<td valign="top" align="center">341-8949 </td>
<td valign="top" width="260">128GB Dell Mobility Solid State Drive for Latitude XT2</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">8 </td>
<td valign="top" align="center">468-2071 </td>
<td valign="top" width="260">Vista Business 64-BIT Service Pack 1, with media, English Latitude</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">9 </td>
<td valign="top" align="center">430-3364 </td>
<td valign="top" width="260">Dell Wireless 365 Bluetooth Module, Latitude XT2</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">10 </td>
<td valign="top" align="center">330-2840 </td>
<td valign="top" width="260">90W , 3-Pin,AC Adapter for Latitude XT2</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">11 </td>
<td valign="top" align="center">330-0879 </td>
<td valign="top" width="260"> US &#8211; 3-FT, 3-Pin Flat E-FamilyPower Cord for Latitude E-Family       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">12 </td>
<td valign="top" align="center">330-2831 </td>
<td valign="top" width="260"> MediaBase with 8X DVD+/-RW for Latitude XT2       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">13 </td>
<td valign="top" align="center">420-9184 </td>
<td valign="top" width="260"> Cyberlink Power DVD 8.1,with Media,Dell Latitude/Mobile Precision       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">14 </td>
<td valign="top" align="center">420-8010 </td>
<td valign="top" width="260"> Roxio Creator Dell Edition,9.0Dell Latitude/Mobile Precision       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">15 </td>
<td valign="top" align="center">430-3086 </td>
<td valign="top" width="260"> Dell WLAN 1510 (802.11a/b/g/n 2X3) 1/2 MiniCard for LatitudeE/Mobile Precision       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">16 </td>
<td valign="top" align="center">330-0884 </td>
<td valign="top" width="260"> No Intel vPro Technologys advanced management features for Latitude, Mobile Precision       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">17 </td>
<td valign="top" align="center">330-2843 </td>
<td valign="top" width="260"> Resource DVD with Diagnostics and Drivers for Vista LatitudeXT2 Notebook       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">18 </td>
<td valign="top" align="center">312-0852 </td>
<td valign="top" width="260">6-Cell/42 WHr Primary Battery for Dell Latitude XT2 </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">19 </td>
<td valign="top" align="center">467-6457 </td>
<td valign="top" width="260">Energy Star 4.0 Enabled, EPEATGOLD, Latitude XT2 </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">20 </td>
<td valign="top" align="center">993-4248 </td>
<td valign="top" width="260">Dell Hardware Limited Warranty Plus Onsite Service Extended Year(s) </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">21 </td>
<td valign="top" align="center">993-4247 </td>
<td valign="top" width="260">Dell Hardware Limited Warranty Plus Onsite Service Initial Year </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">22 </td>
<td valign="top" align="center">989-3449 </td>
<td valign="top" align="left" width="260">Thank you choosing Dell ProSupport. For tech support, visit <a href="http://support.dell.com/ProSupport" target="_blank">http://support.dell.com/ProSupport</a> or call 1-866-516-3115</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">23 </td>
<td valign="top" align="center">992-2102 </td>
<td valign="top" width="260">ProSupport for End Users: Next Business Day Parts and Labor Onsite Response 2 Year Extended</td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">24 </td>
<td valign="top" align="center">992-5740 </td>
<td valign="top" width="260"> ProSupport for End Users: Next Business Day Parts and Labor Onsite Response Initial Year       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">25 </td>
<td valign="top" align="center">983-7572 </td>
<td valign="top" width="260">ProSupport for End Users: 7&#215;24 Technical Support and assistance for end-users, 2 Year Extended </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">26 </td>
<td valign="top" align="center">984-3980 </td>
<td valign="top" width="260"> ProSupport for End Users: 7&#215;24 Technical Support and assistance for end-users, Initial       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">27 </td>
<td valign="top" align="center">900-9987 </td>
<td valign="top" width="260">Standard On-Site Installation Declined </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">28 </td>
<td valign="top" align="center">310-8319 </td>
<td valign="top" width="260">Intel Core 2 Duo Processor </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">29 </td>
<td valign="top" align="center">310-8758 </td>
<td valign="top" width="260"> You have chosen a Windows Vista Premium System       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">30 </td>
<td valign="top" align="center">310-8977 </td>
<td valign="top" width="260"> Info SKU-Software and Peripherals products and solutions catalog included in system boxes       </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">&#160; </td>
<td valign="top" align="center">&#160; </td>
<td valign="top" width="260" align="right"><b>Sub-total:</b> </td>
<td valign="top" width="103" align="right">$4,099.00 </td>
</tr>
<tr>
<td valign="top" align="center">&#160; </td>
<td valign="top" align="center">&#160; </td>
<td valign="top" width="260" align="right"><b>Shipping:</b> </td>
<td valign="top" width="103" align="right">$0.00 </td>
</tr>
<tr>
<td valign="top" align="center">&#160; </td>
<td valign="top" align="center">&#160; </td>
<td valign="top" width="260" align="right"><b>Tax:</b> </td>
<td valign="top" width="103" align="right">$343.29 </td>
</tr>
<tr>
<td valign="top" align="center">&#160; </td>
<td valign="top" align="center">&#160; </td>
<td valign="top" width="260" align="right"><b>Order Total:</b> </td>
<td valign="top" width="103" align="right">$4,442.29 </td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=90&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/04/22/invoice-for-64-bit-dell-latitude-xt2-ordered-on-friday-april-10th-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>
	</item>
		<item>
		<title>Is there a &#8220;Windows Cloud Home Server&#8221; coming soon?</title>
		<link>http://garyrusso.wordpress.com/2009/02/06/is-there-a-windows-cloud-home-server-coming-soon/</link>
		<comments>http://garyrusso.wordpress.com/2009/02/06/is-there-a-windows-cloud-home-server-coming-soon/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 18:48:00 +0000</pubDate>
		<dc:creator>Gary Russo</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Home Server]]></category>
		<category><![CDATA[WHS]]></category>

		<guid isPermaLink="false">https://garyrusso.wordpress.com/2009/02/06/is-there-a-windows-cloud-home-server-coming-soon/</guid>
		<description><![CDATA[I bought this Windows Home Server (WHS) recently.



I consider it a necessity for the home office.

The key features are:
1. Centralized Backup
2. File Sharing - NAS device
3. Remote Access Gateway - remote access to any connected PC on your home network via Internet.
4. Printer Sharing - Centralized print server.
5. Shadow Copy - “Point in time” snapshots to recover older versions of files.
6. Headless Operation - No monitor or keyboard. Use remote desktop or remote admin client tool.
7. Media Streaming - Can stream media to Xbox 360 or other devices using Windows Media Connect.
8. Data redundancy - Data is stored across multiple drives.
9. Expandable Storage – has 4 drive bays. Two drive bays are in use, two are empty.
10. Extensibility through Add-Ins – can host IIS web apps.
11. Health Monitoring - Track health of all PCs on the home network (e.g., antivirus, firewall, etc.)
12. Server Backup – backup the backup.

Some Positives: 

Fully automated. Minimal maintenance required except for the Server backup. 
Quiet enough for the bedroom/living room. 
Easy to use backup and restore process. 

Some Negatives: 

No RAID. The system uses proprietary Windows Home Server Drive Extender technology. There's a good post on why it does not support RAID here. 
High ease of use for technologists but still too complicated for low tech folks. 
HP's unwanted extensions. HP included two Add-Ins to WHS, PVConnect and McAffee Anti-virus. I don't use either. 
McAffee annoyingly prompts to buy full service. 
Need easy and low cost way to back up server to a cloud service such as Amazon S3. 

Overall, I consider this product to be an important milestone for home computing.

However, I don't think it will ever become mainstream until there's zero config / zero maintenance.

I also believe that as cloud computing becomes pervasive and as costs drop, WHS will eventually be offered as a full blown cloud service with no onsite backend hardware required.

If so then Microsoft may call it Windows Cloud Home Server or even Windows Live Home Server.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=98&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I bought this <a href="http://www.amazon.com/EX475-MediaSmart-Server-Windows-Drive/dp/B000UXZUZC/ref=pd_bbs_sr_1?ie=UTF8&amp;s=electronics&amp;qid=1228254585&amp;sr=8-1">Windows Home Server</a> (WHS) recently.     </p>
<p><img style="display:block;float:none;margin-left:auto;margin-right:auto;" border="0" src="http://images.amazon.com/images/G/01/electronics/detail-page/hp-mediasmart-coffee.jpg" />     </p>
<p>I consider it a necessity for the home office.     </p>
<p>The key features are:</p>
<ol>
<li>Centralized Backup </li>
<li>File Sharing &#8211; NAS device </li>
<li>Remote Access Gateway &#8211; remote access to any connected PC on your home network via Internet. </li>
<li>Printer Sharing &#8211; Centralized print server. </li>
<li>Shadow Copy &#8211; “Point in time” snapshots to recover older versions of files. </li>
<li>Headless Operation &#8211; No monitor or keyboard. Use remote desktop or remote admin client tool. </li>
<li>Media Streaming &#8211; Can stream media to Xbox 360 or other devices using Windows Media Connect. </li>
<li>Data redundancy &#8211; Data is stored across multiple drives. </li>
<li>Expandable Storage – has 4 drive bays. Two drive bays are in use, two are empty. </li>
<li>Extensibility through Add-Ins – can host IIS web apps. </li>
<li>Health Monitoring &#8211; Track health of all PCs on the home network (e.g., antivirus, firewall, etc.) </li>
<li>Server Backup – backup the backup. </li>
</ol>
<p>&#160; <br /><strong>Some Positives:</strong> </p>
<table border="0" cellspacing="2" cellpadding="2" width="453">
<tbody>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="104">Fully Automated</td>
<td valign="top" width="317">Minimal maintenance required except for the Server backup.</td>
</tr>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="104">Quiet</td>
<td valign="top" width="317">Quiet enough for the bedroom/living room.</td>
</tr>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="104">Ease of Use</td>
<td valign="top" width="317">Easy to use backup and restore process.</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p><strong>Some Negatives:</strong> </p>
<table border="0" cellspacing="2" cellpadding="2" width="453">
<tbody>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="105">No RAID</td>
<td valign="top" width="316">The system uses proprietary <a href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/grow.mspx">Windows Home Server Drive Extender</a> technology. There&#8217;s a good post on why it does not support RAID <a href="http://blogs.technet.com/homeserver/archive/2008/08/11/why-raid-is-not-a-consumer-technology.aspx">here</a>.</td>
</tr>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="105">Complicated</td>
<td valign="top" width="316">High ease of use for technologists but still too complicated for low tech folks.</td>
</tr>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="105">Unwanted extensions</td>
<td valign="top" width="316">HP included two <a href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/add-ins.mspx">Add-Ins</a> to WHS, <a href="http://mswhs.com/2008/07/21/hp-mediasmart-server-update-release-notes/">PVConnect and McAffee Anti-virus</a>. I don&#8217;t use either.</td>
</tr>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="105">Annoying Prompts</td>
<td valign="top" width="316">McAffee annoyingly prompts to buy full service.</td>
</tr>
<tr>
<td valign="top" width="22" align="center"><font face="Symbol">·</font></td>
<td valign="top" width="105">Cloud Backup</td>
<td valign="top" width="316">Need easy and low cost way to back up server to a cloud service such as <a href="http://aws.amazon.com/s3/">Amazon S3</a>.</td>
</tr>
</tbody>
</table>
<p>Overall, I consider this product to be an important milestone for home computing.    </p>
<p>However, I don&#8217;t think it will ever become mainstream until there&#8217;s zero config / zero maintenance.</p>
<p>I also believe that as cloud computing becomes pervasive and as costs drop, WHS will eventually be offered as a full blown cloud service with no onsite backend hardware required.    </p>
<p>If so then Microsoft may call it <strong>Windows Cloud Home Server</strong> or even <strong>Windows Live Home Server</strong>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/garyrusso.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/garyrusso.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/garyrusso.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/garyrusso.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/garyrusso.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/garyrusso.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/garyrusso.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/garyrusso.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=garyrusso.wordpress.com&amp;blog=13001743&amp;post=98&amp;subd=garyrusso&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://garyrusso.wordpress.com/2009/02/06/is-there-a-windows-cloud-home-server-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b9742bc22890cfb42677338a026e93b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">garyrusso</media:title>
		</media:content>

		<media:content url="http://images.amazon.com/images/G/01/electronics/detail-page/hp-mediasmart-coffee.jpg" medium="image" />
	</item>
	</channel>
</rss>
