<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Architecture + Strategy</title><subtitle type="html">Musings from David Chou - Architect, Microsoft</subtitle><id>http://blogs.msdn.com/dachou/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/dachou/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2009-03-13T11:24:30Z</updated><entry><title>Embedded Database Engine for Silverlight Applications</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/07/11/embedded-database-engine-for-silverlight-applications.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/07/11/embedded-database-engine-for-silverlight-applications.aspx</id><published>2009-07-11T08:44:21Z</published><updated>2009-07-11T08:44:21Z</updated><content type="html">&lt;p&gt;So far, rich Internet applications (RIA) don’t have to be concerned with data management on the client side, as most connected implementations are designed to be simply a visualization and interaction layer to data and services on the server side. In these cases, data is retrieved from the server as JSON or XML data types (or serialized binary objects for some platforms), then cached in-memory as objects and collections, part of the application, and eventually discarded as part of the application lifecycle.&lt;/p&gt;  &lt;p&gt;But for relatively more complex applications that require larger and more distributed data sets, lower application latency, reduced chattiness, data relationships (even basic ones), the implementation starts to get a little complicated, and becomes more difficult with procedural languages like JavaScript. In that case, a simple and light-weight in-memory embedded database may become quite useful.&lt;/p&gt;  &lt;h3&gt;Perst for .NET&lt;/h3&gt;  &lt;p&gt;&lt;a href="http://www.mcobject.com/"&gt;&lt;img style="margin: 10px; display: inline" border="0" alt="McObject" align="right" src="http://www.mcobject.com/Userfiles/Image/logo.gif" /&gt;&lt;/a&gt;&lt;a href="http://www.mcobject.com/perst"&gt;McObject’s Perst&lt;/a&gt; is an open source, object-oriented embedded database system. Perst has been available in Java (SE, ME, and EE) and in .NET and .NET Compact Framework, and Mono. But recently McObjects ported Perst to Silverlight as well. Its small library size (~1MB including support for generics; ~5,000 lines of code) and small in-memory footprint is packed with a very sophisticated set of features, such as:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Support for direct and transparent object persistence &lt;/li&gt;    &lt;li&gt;Full text search with indexing support &lt;/li&gt;    &lt;li&gt;Full-ACID transactions support &lt;/li&gt;    &lt;li&gt;SQL-based interface &lt;/li&gt;    &lt;li&gt;XML import/export &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Perst inherited much of its heritage from McObject’s eXtremeDB embedded database product, which has been used in devices such as MP3 players, WiMAX base stations, digital TV set top boxes, military and aerospace applications, etc. Yes, even embedded applications and firmware can use databases.&lt;/p&gt;  &lt;p&gt;Interestingly, the C# code tree was initially produced from the Java version using the Java-to-C# converted in Visual Studio, then some additional changes to enable specific C# features. While not all Java applications can be converted this easily, this shows that some can. And this also means how similar C# and Java are.&lt;/p&gt;  &lt;p&gt;As an embedded database engine, Perst presents a very viable in-memory data management solution to Silverlight applications. It can be instantiated and used directly as part of the application, instead of something that runs in a separate process and memory space, or over the network on the back-end server for most RIA’s. Perst can also use Silverlight’s isolated storage to manage additional data that can be cached in a persistent manner. This enables many more complex scenarios than simply storing JSON, XML, CSV, or plain text data in isolated storage.&lt;/p&gt;  &lt;h3&gt;Silverlight 3 Out-Of-Browser&lt;/h3&gt;  &lt;p&gt;One can argue that the “connected client” design (as described above) works best for RIA’s, as they’re rich Web applications intended to enhance the user experience when connected to the cloud, to begin with. Or essentially, everyone can assume ubiquitous connectivity anytime and everywhere, so applications only need to live in the cloud, then all we need is a browser.&lt;/p&gt;  &lt;p&gt;But we’re also starting to see very valid scenarios emerge to access the cloud outside of the browser. And applications in these scenarios are often more refined/specialized than their HTML-based counterparts. For example, iPhone apps, iTunes, Wii, Adobe AIR, Google Gears, Google Desktop, Apple Dashboard Widgets, Yahoo! Gadgets, Windows Gadgets, FireFox extensions and plug-ins, Internet Explorer 8 WebSlices, SideBars, and ToolBars, etc. These out-of-browser application models are very valid because it has been observed that users tend to spend more time with them, than the websites behind those clients.&lt;/p&gt;  &lt;p&gt;There are many potential reasons for this observation, with some more prevalent in some scenarios. For example, local content is more visible to users and easier to access, without having to open a browser and then finding the website (sometimes needing to re-authenticate) and downloading the content. And of course, content and data can be stored locally for off-line access.&lt;/p&gt;  &lt;p&gt;Now that Silverlight 3 also supports installation of applications locally on the desktop, we can add the option of caching some data locally, in addition to being a locally installed visualization and interaction layer to cloud-based services, or a rich disconnected gadget. And McObject’s Perst embedded database would again be a really compelling solution to help with managing the data.&lt;/p&gt;  &lt;p&gt;This is especially important for out-of-browser and locally installed applications, as one of their primary benefits is to support off-line usage. Having a database management solution such as Perst can help increase the overall robustness of the user experience, by ensuring work continuity regardless of connection state.&lt;/p&gt;  &lt;h3&gt;&lt;b&gt;About McObject&lt;/b&gt;&lt;/h3&gt;  &lt;p&gt;Founded by embedded database and real-time systems experts, McObject offers proven data management technology that makes applications and devices smarter, more reliable and more cost-effective to develop and maintain. McObject counts among its customers industry leaders such as Chrysler, Maximizer Software, Siemens, Phillips, EADS, JVC, Tyco Thermal Controls, F5 Networks, DIRECTV, CA, Motorola and Boeing.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.mcobject.com"&gt;www.mcobject.com&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9829401" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /><category term="Customer" scheme="http://blogs.msdn.com/dachou/archive/tags/Customer/default.aspx" /></entry><entry><title>Silverlight 3 Released!</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/07/10/silverlight-3-released.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/07/10/silverlight-3-released.aspx</id><published>2009-07-10T18:43:42Z</published><updated>2009-07-10T18:43:42Z</updated><content type="html">&lt;p&gt;&lt;img style="border-right-width: 0px; margin: 10px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Silverlight logo" border="0" alt="Silverlight logo" align="right" src="http://s3.amazonaws.com:80/storage.timheuer.com/timsl3mock.png" /&gt;Silverlight 3 is officially released into production today!&lt;/p&gt;  &lt;p&gt;Silverlight has come a long way in the short time since its V1 launch in September 2007 and V2 release in October 2008. Each version brought very significant enhancements to the platform. My &lt;a href="http://blogs.msdn.com/dachou/archive/2009/03/20/silverlight-3-beta.aspx"&gt;earlier post on the Silverlight 3 Beta&lt;/a&gt; has details on new features, adoption statistics to date, and a small list of interesting Silverlight applications.&lt;/p&gt;  &lt;p&gt;To summarize though, some significant changes in this release are:&lt;/p&gt;  &lt;h3&gt;&lt;strong&gt;Out-of-Browser&lt;/strong&gt;&lt;/h3&gt;  &lt;p&gt;Silverlight 3 offers a new set of features for building safe, secure, sandboxed companion experiences for the Web through a single coherent platform, that run on user desktops. Out-of-browser support allows Silverlight applications to run on Windows or Mac desktops and deliver online, offline, or intermittently connected access to applications and content—without having to rebuild applications on another platform. Silverlight application can be easily found on the desktop or start menu, and launched with a single click—eliminating the requirement for privileges to run. In addition, it can test if the network is connected, update itself with newer versions, and have access to isolated storage. &lt;/p&gt;  &lt;p&gt;This works very similar to Adobe AIR, but Silverlight does not need a separate platform/runtime download in order to install applications and run them. If an application is enabled to run from the desktop, all a user has to do is right-mouse click on the application directly on the web page, which will have an option to “Install to Desktop”.&lt;/p&gt;  &lt;h3&gt;Smooth Streaming&lt;/h3&gt;  &lt;p&gt;Smooth Streaming technology is the union of online player experiences delivered through Silverlight and the streaming capabilities provided through Windows Server + IIS, that enables adaptive streaming of media so users with high bandwidth connections can experience HD-quality streaming while others with lower bandwidth receive the appropriate stream for their connectivity.&lt;/p&gt;  &lt;p&gt;This is the technology first used for the 2008 Beijing Olympics event by NBC to deliver live and on-demand programs over the Internet, then used at many other places such as Netflix, NCAA March Madness 2009 for CBS, the 2009 Presidential Inauguration, and most recently for the Michael Jackson’s memorial service.&lt;/p&gt;  &lt;p&gt;What’s significant about Smooth Streaming is that to deliver long-form content, along with all types of advertising scenarios (pre/post-roll, interstitial, overlay, etc.), can be delivered from Microsoft’s Internet Information Server (IIS) over the ubiquitous HTTP protocol, without requiring use of traditional streaming servers. Short-form content can still leverage out-of-the-box progressive download feature as well. Furthermore, this means it is much simpler to scale out the back-end infrastructure to serve the content to any amount of online audience, as an operation can add IIS servers quickly, plus leveraging web caches from CDN’s to further improve the scale and reach of any content.&lt;/p&gt;  &lt;h3&gt;Prototyping with SketchFlow&lt;/h3&gt;  &lt;p&gt;SketchFlow, the dynamic prototyping feature in Expression Blend 3, demonstrates the flow, layout, and transitions of an application through interactive “sketches” to convey initial concepts. And concurrent workflows between design, user experience, and development ensure that the visuals, interaction model, and the underlying architecture of an application can be simultaneously evolved and delivered as a completed project.&lt;/p&gt;  &lt;p&gt;SketchFlow ehances the speed and efficiency to prototype a vision for an application. Rapidly demonstrate and iterate on ideas, application flows, screen layout, and functionality of an application using a SketchFlow prototype.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/Silverlight3Released_A4E9/WebAd_240b.jpg"&gt;&lt;img style="border-right-width: 0px; margin: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Web Ad_240b" border="0" alt="Web Ad_240b" align="right" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/Silverlight3Released_A4E9/WebAd_240b_thumb.jpg" width="120" height="240" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Lastly, visit these resources for more information:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://seethelight.com"&gt;“See the Light” virtual launch event&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://team.silverlight.net/"&gt;Silverlight team blog&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2009/07/10/silverlight-3-released.aspx"&gt;Scott Guthrie’s blog&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://timheuer.com/blog/archive/2009/07/10/silverlight-3-released-what-is-new-and-changed.aspx"&gt;Tim Heuer’s blog&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;As well as a few of the projects my team and I worked on this year:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Kelley Blue Book &lt;a href="http://www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx"&gt;Perfect Car Finder&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Photobucket &lt;a href="http://www.photobucket.com/visualsearch"&gt;Visual Search&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Stargate Universe &lt;a href="http://stargate.mgm.com/photosynth/index.html"&gt;Photosynth&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;NewEgg.com &lt;a href="http://promotions.newegg.com/silverlight/DC/index.html"&gt;Digital Camera Promotions&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Grubb &amp;amp; Ellis &lt;a href="http://blogs.msdn.com/dachou/archive/2009/07/07/silverlight-and-bing-maps-used-at-grubb-ellis.aspx"&gt;Spotlight&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;LA Fitness &lt;a href="http://www.lafitness.com/Pages/findclub.aspx"&gt;Find a Club&lt;/a&gt; and &lt;a href="http://www.lafitness.com/Pages/photosynth.aspx"&gt;Club Tour&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;InXile &lt;a href="http://linerider.com/silverlight.aspx"&gt;Line Rider&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9828981" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /></entry><entry><title>Silverlight and Bing Maps Used at Grubb and Ellis</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/07/07/silverlight-and-bing-maps-used-at-grubb-ellis.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/07/07/silverlight-and-bing-maps-used-at-grubb-ellis.aspx</id><published>2009-07-07T10:04:00Z</published><updated>2009-07-07T10:04:00Z</updated><content type="html">&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_14.png" mce_href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_14.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; MARGIN: 10px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image align=right src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_6.png" width=250 height=67 mce_src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_6.png"&gt;&lt;/A&gt; Today is a time in history where there are more economic factors disrupting the real estate market and operations than ever before. To mitigate this trend and ensure real estate and financial professionals have all the information necessary to make critical decisions, more and more data is being provided to help improve business intelligence. However, this resulted in creating mountains of charts, graphs and documents that need to be reviewed from multiple systems, in order to present a clear perspective of assets, locations, and their operations. This sheer volume of information adds significant overhead to the users and professionals that depend on them.&lt;/P&gt;
&lt;P&gt;To address this issue, Grubb &amp;amp; Ellis Company worked with Microsoft and speakTECH, a Microsoft Gold Certified Partner, leveraging Microsoft Silverlight and Bing Maps for Enterprise, to create a new tool called Spotlight.&lt;/P&gt;
&lt;P&gt;Spotlight is a real estate and research mapping tool which provides a rich data visualization and interaction environment for an array of property, location, operations and research information. The layering of a massive amount of data at Grubb &amp;amp; Ellis, over a rich interface, allows clients and professionals at Grubb &amp;amp; Ellis to search, review and collaborate regarding real estates across the globe, in a streamlined and easily accessible manner.&lt;/P&gt;
&lt;P&gt;Examples of this type of intelligent data layering are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Property Level Statistics and Analysis &lt;/LI&gt;
&lt;LI&gt;Aerial Mapping Tool &lt;/LI&gt;
&lt;LI&gt;Market / Sub-Market Analytics &lt;/LI&gt;
&lt;LI&gt;Competitive / Market Analysis &lt;/LI&gt;
&lt;LI&gt;Parcel and Other Associated Statistics &lt;/LI&gt;
&lt;LI&gt;Demographic Statistics &lt;/LI&gt;
&lt;LI&gt;Economic Development Zones &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;High definition video of transaction professionals and virtual building tours using Microsoft Photosynth, where available, are also accessible through a single click of the mouse, providing users with unparalleled insight into the information.&lt;/P&gt;
&lt;P&gt;A few screen shots of the Spotlight application are shown here: &lt;/P&gt;
&lt;P&gt;Main Search and Summary Screen&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_8.png" mce_href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_8.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_3.png" width=458 height=269 mce_src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_3.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Property Detail and Business Intelligence Details &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_10.png" mce_href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_10.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_4.png" width=460 height=256 mce_src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_4.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Broker Profiles and Property Tours in High Definition&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_12.png" mce_href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_12.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_5.png" width=460 height=241 mce_src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/SilverlightandBingMapsUsedatGrubbEllis_2A39/image_thumb_5.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;The Spotlight application was completed in just 12 weeks, including significant work on the back-end to integrate data sources and providing them as services.&lt;/P&gt;
&lt;P&gt;“The combination of Bing Maps and Sliverlight, has enabled speakTECH to merge the large volumes of structured data with rich interactive maps to create an entirely new generation of applications. These capabilities have enabled Grubb &amp;amp; Ellis to combine time consuming research and analysis tasks that used to spread across many applications, into an single user experience.&amp;nbsp;&amp;nbsp; Enabling rapid decision support, supports the accelerating needs of today’s sales and marketing teams” Aaron Sloman, CEO, speakTech.&lt;/P&gt;
&lt;P&gt;Components from the Microsoft platform used in this project include:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Silverlight SDK &lt;/LI&gt;
&lt;LI&gt;Photosynth Silverlight Control &lt;/LI&gt;
&lt;LI&gt;Bing Maps (Virtual Earth) Silverlight Map Control &lt;/LI&gt;
&lt;LI&gt;Bing Maps for Enterprise &lt;/LI&gt;
&lt;LI&gt;Expression Studio &lt;/LI&gt;
&lt;LI&gt;Visual Studio 2008 &lt;/LI&gt;
&lt;LI&gt;.NET Framework 3.5 SP1, Windows Communication Foundation (WCF), ASP.NET &lt;/LI&gt;
&lt;LI&gt;Internet Information Services 7.0 (IIS) &lt;/LI&gt;
&lt;LI&gt;SQL Server 2005 &lt;/LI&gt;
&lt;LI&gt;Windows Server 2008 &lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;About Grubb &amp;amp; Ellis&lt;/H3&gt;
&lt;P&gt;Grubb &amp;amp; Ellis Company (NYSE: GBE) is one of the largest and most respected commercial real estate services and investment companies in the world. Over 6,000 professionals in more than 130 company-owned and affiliate offices draw from a unique platform of real estate services, practice groups and investment products to deliver comprehensive, integrated solutions to real estate owners, tenants and investors. The firm’s transaction, management, consulting and investment services are supported by highly regarded proprietary market research and extensive local expertise.&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.grubb-ellis.com/ href="http://www.grubb-ellis.com/" mce_href="http://www.grubb-ellis.com/"&gt;http://www.grubb-ellis.com/&lt;/A&gt;&lt;/P&gt;
&lt;H3&gt;About speakTECH&lt;/H3&gt;
&lt;P&gt;speakTECH is an interactive design and solution integration firm delivering innovative solutions in the areas of Web-Based, Enterprise wide collaboration and Social Computing. We specialize in uniting technology, riveting design and interactive experience into powerful, world-class business solutions. Established in 2005, speakTECH has grown to become a Microsoft Gold Certified Partner, National Systems Integrator, and has been honored with numerous design awards.&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.speaktech.com/ href="http://www.speaktech.com/" mce_href="http://www.speaktech.com/"&gt;http://www.speaktech.com/&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9822148" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /><category term="Live Services" scheme="http://blogs.msdn.com/dachou/archive/tags/Live+Services/default.aspx" /><category term="Customer" scheme="http://blogs.msdn.com/dachou/archive/tags/Customer/default.aspx" /></entry><entry><title>Michael Jackson’s Memorial Service Available Via Silverlight and IIS Smooth Streaming</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/07/06/michael-jackson-s-memorial-service-available-via-silverlight-and-iis-smooth-streaming.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/07/06/michael-jackson-s-memorial-service-available-via-silverlight-and-iis-smooth-streaming.aspx</id><published>2009-07-07T06:13:26Z</published><updated>2009-07-07T06:13:26Z</updated><content type="html">&lt;p&gt;&lt;a href="http://entertainment.uk.msn.com/music/michael-jackson.aspx"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="Michael Jackson - � PA" src="http://estb.msn.com/i/9B/22E18A4E3B3D638FF98F917E2832AB.jpg" width="640" height="86" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;On July 7th, 10AM PT/1PM ET, Microsoft will be broadcasting the Michael Jackson memorial, live in HD from the Staples Center in Los Angeles using &lt;a href="http://silverlight.net"&gt;Silverlight&lt;/a&gt; and &lt;a href="http://iis.net/media"&gt;IIS Smooth Streaming&lt;/a&gt; (the technologies used for the 2008 Beijing Olympics, 2009 NCAA March Madness, Netflix, etc.). And this event will be available worldwide to anyone who has an internet connection.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Memorial Service Live Streaming&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Visit the Sympatico / MSN inMusic website, at &lt;a title="http://inmusic.ca/news_and_features/Michael_Jackson" href="http://inmusic.ca/news_and_features/Michael_Jackson"&gt;http://inmusic.ca/news_and_features/Michael_Jackson&lt;/a&gt;, for up-to-date content, and special tributes to the King of Pop. The Silverlight player providing the live streaming service will become available at the time of the event (2009.07.07 10AM Pacific Time / 1PM Eastern Time).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;MSN Special Coverage&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Also visit MSN for additional information and special coverage on Michael Jackson, at &lt;a title="http://entertainment.uk.msn.com/music/michael-jackson.aspx" href="http://entertainment.uk.msn.com/music/michael-jackson.aspx"&gt;http://entertainment.uk.msn.com/music/michael-jackson.aspx&lt;/a&gt;. And visit a DeepZoom (also in Silverlight) collage of hundreds of Michael Jackson’s pictures, at &lt;a title="http://www.msn.michaeljackson.shoothill.com/" href="http://www.msn.michaeljackson.shoothill.com/"&gt;http://www.msn.michaeljackson.shoothill.com/&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9821674" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /></entry><entry><title>Microsoft at the 2009 CMA Music Festival</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/06/09/microsoft-at-the-2009-cma-music-festival.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/06/09/microsoft-at-the-2009-cma-music-festival.aspx</id><published>2009-06-09T07:59:04Z</published><updated>2009-06-09T07:59:04Z</updated><content type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/Microsoftatthe2009CMAMusicFestival_140B5/Fest09_300_X_250%5B1%5D_2.gif"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="" border="0" alt="" align="right" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/Microsoftatthe2009CMAMusicFestival_140B5/Fest09_300_X_250%5B1%5D_thumb.gif" width="244" height="204" /&gt;&lt;/a&gt; Microsoft and the Country Music Association are partnering on bridging the cultural divide between the country music world and the world of technology, this week at the 2009 Country Music Association (CMA) Music Festival. Microsoft will be showcasing cutting edge technology few outside the tech industry have seen – including Silverlight with DeepZoom technology and Microsoft Tag.&lt;/p&gt;  &lt;p&gt;This is one of the places where Microsoft Tag is being used in a large scale application of digitally “enhanced reality” where the physical world in tied to online assets in meaningful and significant ways. For more information on Tag, see my previous blog post - &lt;a title="http://blogs.msdn.com/dachou/archive/2009/01/08/microsoft-tag-interactive-mobile-bar-codes.aspx" href="http://blogs.msdn.com/dachou/archive/2009/01/08/microsoft-tag-interactive-mobile-bar-codes.aspx"&gt;http://blogs.msdn.com/dachou/archive/2009/01/08/microsoft-tag-interactive-mobile-bar-codes.aspx&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;At the festival in Nashville:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;“Cell Journalists” using Windows Mobile&lt;/strong&gt; - Attendees can participate in the event by acting as cell journalists. Using Windows mobile or other cell phone cameras, pictures taken from the event are automatically uploaded to a shared server hosted by ASP.NET and displayed throughout the event – including the Jumbotron.&amp;#160; Windows Mobile users will have a customized, high-end experience &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;“Where am I” using Microsoft Tag and Virtual Earth&lt;/strong&gt; - Attendees will be able to scan signs located throughout the venues to learn more about the physical environment and what’s happening around them.&amp;#160; Their location will also be mapped via Virtual Earth (Bing Maps) making the task of navigating the enormous number of venues easy and convenient for festival attendees &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;“Tag Hunter” using Microsoft Tag&lt;/strong&gt; - an event wide contest which will be distributed event wide by a legion CMA “Fun Squad” members. Attendees can scan these Tag Hunter cards and find out immediately if have a winning tag! &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;“Technology Booths” showcasing Microsoft Surface, Xbox 360, and IE8&lt;/strong&gt; – Attendees can drop by Microsoft booths available onsite at the festival, to check email, browse the web, and to check the festival schedule and venue information, etc. In addition, to test drive two Surface tables with a jukebox application, and in-person visits by performing artists. And of course, play the Xbox 360 RockBand Country Track Pack from MTV! &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;And online:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;“Be This Close” using Silverlight DeepZoom&lt;/strong&gt; - interactive search game (available on 6/11) &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;“Cell Journalists” ASP.NET&lt;/strong&gt; photo sharing website &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Links:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Main Site: &lt;a href="http://cmafest.com/2009/"&gt;http://cmafest.com/2009/&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;IE 8 Web slice : &lt;a href="http://ieaddons.com/en/details/music/CMA_Music_Festival_2009/"&gt;http://ieaddons.com/en/details/music/CMA_Music_Festival_2009/&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;“Be This Close” interactive Silverlight game - &lt;a href="http://www.cmafest.com/2009/videophotos/games/bethisclose/"&gt;http://www.cmafest.com/2009/videophotos/games/bethisclose/&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Microsoft page on CMA Site: &lt;a href="http://www.cmafest.com/2009/microsoft"&gt;http://www.cmafest.com/2009/microsoft&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Tags and Metadata:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Twitter Tag: #MSCMA09 &lt;/li&gt;    &lt;li&gt;Twitter: @MsftAtCMA &lt;/li&gt;    &lt;li&gt;Blog Tags: CMA Music Fest 2009, Microsoft at CMA 2009 &lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9713709" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /><category term="Live Services" scheme="http://blogs.msdn.com/dachou/archive/tags/Live+Services/default.aspx" /><category term="Customer" scheme="http://blogs.msdn.com/dachou/archive/tags/Customer/default.aspx" /><category term="Tag" scheme="http://blogs.msdn.com/dachou/archive/tags/Tag/default.aspx" /></entry><entry><title>Architect Council | Pragmatic Patterns for Architects</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/05/26/architect-council-pragmatic-patterns-for-architects.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/05/26/architect-council-pragmatic-patterns-for-architects.aspx</id><published>2009-05-27T03:03:43Z</published><updated>2009-05-27T03:03:43Z</updated><content type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/ArchitectCouncilPragmaticPatternsforArch_11A1D/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/ArchitectCouncilPragmaticPatternsforArch_11A1D/image_thumb.png" width="368" height="191" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;“Cloud computing will supersede traditional IT”, “SOA will enable business agility”, “my way or the highway”, etc. We’ve all heard this type of proclamations before, as many look to the “next big things” in technology to exact sweeping changes and solve many issues; truth is, &lt;b&gt;technologies and tools aren’t as instrumental in influencing progress, as the design and discipline in applying them to specific issues&lt;/b&gt;. When used appropriately, technologies and tools can be powerful enablers that bring about change.&lt;/p&gt;  &lt;p&gt;To address this, and trying to be a bit more green, our team is hosting a &lt;strong&gt;series of live webcasts&lt;/strong&gt; at noon PST on &lt;strong&gt;June 9th – 11th, 2009&lt;/strong&gt;, which will focus on guidance and patterns for some of today’s hottest topics. Just another excuse to have lunch at your desk (if your time zone is nearby)! :)&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Patterns for Moving to the Cloud – &lt;b&gt;June 9&lt;/b&gt;&lt;/b&gt;     &lt;br /&gt;&lt;i&gt;Larry Clarkin &amp;amp; Wade Wegner&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Building Silverlight &amp;amp; WPF Applications with Prism – June 10&lt;/b&gt;     &lt;br /&gt;&lt;i&gt;David Hill&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Patterns for Parallel Computing – June 11&lt;/b&gt;     &lt;br /&gt;&lt;i&gt;David Chou&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;For more details and registration, please visit &lt;a title="http://blogs.msdn.com/sac/pages/council-2009q2.aspx" href="http://blogs.msdn.com/sac/pages/council-2009q2.aspx"&gt;http://blogs.msdn.com/sac/pages/council-2009q2.aspx&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9643229" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Architecture" scheme="http://blogs.msdn.com/dachou/archive/tags/Architecture/default.aspx" /><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /><category term=".NET" scheme="http://blogs.msdn.com/dachou/archive/tags/.NET/default.aspx" /><category term="Cloud Computing" scheme="http://blogs.msdn.com/dachou/archive/tags/Cloud+Computing/default.aspx" /><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /></entry><entry><title>Free WPF Training in Los Angeles on 4/24-25 and Phoenix on 6/26-27</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/04/03/free-wpf-training-in-los-angeles-on-4-24-25-and-phoenix-on-6-26-27.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/04/03/free-wpf-training-in-los-angeles-on-4-24-25-and-phoenix-on-6-26-27.aspx</id><published>2009-04-03T23:14:42Z</published><updated>2009-04-03T23:14:42Z</updated><content type="html">&lt;h1&gt;Overview &lt;/h1&gt;  &lt;br /&gt;  &lt;p&gt;This two day training is designed to teach developers how to create Line of Business (LOB) applications using Windows Presentation Foundation (WPF).&amp;#160;&amp;#160; &lt;/p&gt;  &lt;p&gt;Day One is an introduction to the WPF graphics subsystem, the tools used to build WPF applications, and the core UI services: styling, data binding, templating, layout and input-    &lt;br /&gt;The second day begins with interop (Windows Forms and Win32)&amp;#160; and then quickly dives into LOB topics, including building applications using the Model-View-ViewModel pattern, creating unit testable applications,&amp;#160; implementing data validation, and error handling.&amp;#160;&amp;#160; &lt;br /&gt;After completion, attendees will have a solid understanding of WPF, its advantages over other Microsoft UI platforms, and how to use the M-V-VM pattern to create great WPF LOB applications. &lt;/p&gt;  &lt;h1&gt;Dates, Locations, and Logistics &lt;/h1&gt;  &lt;p&gt;&lt;strong&gt;Los Angeles, CA | 4/24-25&lt;/strong&gt; | To register: &lt;a href="http://www.msregistration.com/wpflobLA"&gt;www.msregistration.com/wpflobLA&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Phoenix, AZ | 6/26-27&lt;/strong&gt; | To register: &lt;a href="http://www.msregistration.com/wpflobAZ"&gt;www.msregistration.com/wpflobAZ&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Registration tips:      &lt;br /&gt;&lt;/strong&gt;If you are not a partner or don't know if you are:     &lt;br /&gt;When asked &amp;quot;are you registered&amp;quot; select No.&amp;#160; Select &amp;quot;Visiting partner&amp;quot; under Partner Level.     &lt;br /&gt;Get creative on the Partner Type;&amp;#160; if in doubt, we are all &amp;quot;System builders&amp;quot;     &lt;br /&gt;Note that registration links with * are not active today (4/2). Sorry for inconvenience, they will all be active in next few days. We blogged all at once to avoid people flying from say St. Louis to LA when they could have driven to Chicago.&amp;#160; We wanted you to know what was coming.&amp;#160;&amp;#160; &lt;/p&gt;  &lt;h1&gt;Format&lt;/h1&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;Instructor-led training from 9 AM to 5:30 PM.&amp;#160;&amp;#160; 15 minute breaks every couple hours. 45 minutes lunch around mid-day.     &lt;br /&gt;Food: Breakfast, lunch and afternoon snacks are provided. &lt;/p&gt;  &lt;h1&gt;Cost &lt;/h1&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;The training is &lt;strong&gt;FREE&lt;/strong&gt;! You do need to register prior to the event, but there is no cost.&amp;#160; You can register for one or two days. Registration is first-come-first serve, sign-up as early as possible to reserve your spot! &lt;/p&gt;  &lt;h1&gt;Agenda &lt;/h1&gt;  &lt;p&gt;&lt;strong&gt;Day One: &lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Lap Around WPF &lt;/li&gt;    &lt;li&gt;WPF Tools ( Blend, Visual Studio 2008) &lt;/li&gt;    &lt;li&gt;Graphics Subsystem &lt;/li&gt;    &lt;li&gt;Layout &lt;/li&gt;    &lt;li&gt;WPF Fundamentals and new concepts      &lt;ul&gt;       &lt;li&gt;Application Model &lt;/li&gt;        &lt;li&gt;Dependency Properties &lt;/li&gt;        &lt;li&gt;Trees (logical &amp;amp; visual) &lt;/li&gt;        &lt;li&gt;Events &lt;/li&gt;        &lt;li&gt;Threading &lt;/li&gt;        &lt;li&gt;Resources &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;Controls &lt;/li&gt;    &lt;li&gt;Styling &lt;/li&gt;    &lt;li&gt;Templating &lt;/li&gt;    &lt;li&gt;Q&amp;amp;A with instructors at end of day &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Day Two: &lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;WPF integration with Win32 and Windows Forms &lt;/li&gt;    &lt;li&gt;Data binding &lt;/li&gt;    &lt;li&gt;Introduction to Model-View-ViewModel &lt;/li&gt;    &lt;li&gt;Commanding in M-V-VM &lt;/li&gt;    &lt;li&gt;Views, Navigation and Transitions &lt;/li&gt;    &lt;li&gt;Data Validation &lt;/li&gt;    &lt;li&gt;Error handling, Model dialogs, Logging &lt;/li&gt;    &lt;li&gt;Unit Testing &lt;/li&gt;    &lt;li&gt;MVVM &amp;amp; LOB tips and tricks &lt;/li&gt;    &lt;li&gt;Q&amp;amp;A with the instructors &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;About the instructors&lt;/strong&gt;     &lt;br /&gt;&lt;strong&gt;Karl Shifflett&lt;/strong&gt; is a software architect, former Microsoft MVP, current Code Project MVP and MCAD from Bellevue, Washington. He is currently working for Microsoft on the Cider Team as a Program Manager II. He has been designing &amp;amp; developing business applications since 1989 and transitioned to .NET in March of 2003. In April of 2007 he joined the list of WPF and Microsoft Expression fanatics &amp;amp; evangelists. He is a member of Team Mole that delivered Mole Visualizer For Visual Studio to the world. He is the author to XAML Power Toys and loves WPF LOB.&amp;#160; Karl’s Blog: &lt;a href="http://karlshifflett.wordpress.com/"&gt;http://karlshifflett.wordpress.com/&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Jaime Rodriguez&lt;/strong&gt; is a Senior Technical Evangelist at Microsoft. He focuses on WPF and Silverlight.&amp;#160;&amp;#160; For the last four years, he has helped a lot of enterprises and ISVs adopt WPF in large scale, mission critical, projects.&amp;#160; &lt;br /&gt;Jaime has been doing software development for fifteen years. Prior to Microsoft, he worked at Xerox, HP, Cerner and GeoAccess.&amp;#160;&amp;#160; He joined Microsoft 9 years ago, he spent the first four years as an Enterprise Architect Consultant in Microsoft Services, and the last five he has been a client evangelist covering Windows Forms, WPF and Silverlight.&amp;#160; Jaime’s blog is at &lt;a href="http://blogs.msdn.com/jaimer"&gt;http://blogs.msdn.com/jaimer&lt;/a&gt;.&amp;#160; &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9531056" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term=".NET" scheme="http://blogs.msdn.com/dachou/archive/tags/.NET/default.aspx" /><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /></entry><entry><title>AJAX, HTTP, and SOAP access to Cloud-based Microsoft Translator</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/21/ajax-http-and-soap-access-to-microsoft-translator.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/21/ajax-http-and-soap-access-to-microsoft-translator.aspx</id><published>2009-03-22T05:39:00Z</published><updated>2009-03-22T05:39:00Z</updated><content type="html">&lt;p&gt;Many new and interesting developments on the Microsoft Web platform were unveiled at the &lt;a href="http://www.visitmix.com" mce_href="http://www.visitmix.com"&gt;MIX09&lt;/a&gt; conference last week, such as &lt;a href="http://www.silverlight.net" mce_href="http://www.silverlight.net"&gt;Silverlight 3&lt;/a&gt;, &lt;a href="http://www.eclipse4sl.org/mac/" mce_href="http://www.eclipse4sl.org/mac/"&gt;Eclipse Tools for Silverlight&lt;/a&gt;, &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce&amp;amp;displaylang=en"&gt;.NET RIA Services&lt;/a&gt;, &lt;a href="http://www.asp.net/mvc/" title="ASP.NET MVC" mce_href="http://www.asp.net/mvc/"&gt;ASP.NET MVC&lt;/a&gt;, &lt;a href="http://www.microsoft.com/web/downloads/platform.aspx" mce_href="http://www.microsoft.com/web/downloads/platform.aspx"&gt;Web Platform Installer&lt;/a&gt;, &lt;a href="http://www.iis.net/extensions/SmoothStreaming" mce_href="http://www.iis.net/extensions/SmoothStreaming"&gt;IIS Smooth Streaming&lt;/a&gt;, &lt;a href="http://www.microsoft.com/web/gallery/" mce_href="http://www.microsoft.com/web/gallery/"&gt;Windows Web Applications Gallery&lt;/a&gt;, &lt;a href="http://www.azure.com" mce_href="http://www.azure.com"&gt;Windows Azure enhancements&lt;/a&gt;, &lt;a href="http://blogs.msdn.com/expression/archive/2009/03/18/a-look-at-sketchflow.aspx" mce_href="http://blogs.msdn.com/expression/archive/2009/03/18/a-look-at-sketchflow.aspx"&gt;Expression Blend SketchFlow&lt;/a&gt;, &lt;a href="http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx" mce_href="http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx"&gt;Expression Web SuperPreview&lt;/a&gt;, &lt;a href="http://www.microsoft.com/ie" mce_href="http://www.microsoft.com/ie"&gt;Internet Explorer 8&lt;/a&gt;, etc. Here’s an innovative service that was not highlighted during the keynote presentations.&lt;/p&gt;  &lt;h1&gt;Microsoft Translator&lt;/h1&gt;  &lt;p&gt;&lt;a href="http://www.microsofttranslator.com" mce_href="http://www.microsofttranslator.com"&gt;Microsoft Translator&lt;/a&gt;, also branded as &lt;a href="http://www.windowslivetranslator.com/" mce_href="http://www.windowslivetranslator.com/"&gt;Live Search Translator&lt;/a&gt;, is a free language translation service that can take any text-based content (text strings, HTML pages, XML, etc.) as input, and translate it from one language to another, such as Arabic, Chinese (both simplified and traditional), French, German, Japanese, Spanish, etc. The service has been around for a while, and is very similar to the &lt;a href="http://translate.google.com/" mce_href="http://translate.google.com/"&gt;Google Translate&lt;/a&gt; offering.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://blogs.msdn.com/blogfiles/translation/WindowsLiveWriter/AnnouncingtheMicrosoftTranslatorwebpagew_468A/image_14.png" style="display: inline; margin-left: 0px; margin-right: 0px;" title="image" alt="image" mce_src="http://blogs.msdn.com/blogfiles/translation/WindowsLiveWriter/AnnouncingtheMicrosoftTranslatorwebpagew_468A/image_14.png" width="208" align="right" border="0" height="87"&gt;At MIX09, the &lt;a href="http://blogs.msdn.com/translation/archive/2009/03/18/announcing-the-microsoft-translator-web-page-widget.aspx" mce_href="http://blogs.msdn.com/translation/archive/2009/03/18/announcing-the-microsoft-translator-web-page-widget.aspx"&gt;Microsoft Research Machine Translation (MSR-MT) team&lt;/a&gt; unveiled the &lt;a href="http://go.microsoft.com/?linkid=9656123" mce_href="http://go.microsoft.com/?linkid=9656123"&gt;web page widget&lt;/a&gt; (see the picture on the right), which is a fully customizable widget that anyone can be embedded into any website, and gain the ability to allow international visitors to utilize Microsoft Translator to translate web pages into their languages. I have installed it on this blog as well, and you can find it in the column on the right. Give it a try! :)&lt;/p&gt;  &lt;p&gt;To people familiar with the Google Translate service, this may not be anything new (such as hovering on a translated sentence and seeing the original content popup). As Google Translate also provides a widget for people to embed into their websites, and it at this point has a higher number of supported languages. But the user experience in the Microsoft Translator widget is pretty nice. It does not bring the viewer to a new page, but instead, just parses and translates the content in document.body in-line and dynamically. And allows viewers to switch back to the original content by removing the “layer” of translated content.&lt;/p&gt;  &lt;p&gt;On longer pages, the running progress of translation is also displayed in a fixed layer added to the top of the page. Closing this “header” layer also flips the view back to the original content. This is a little different from the Google Translate widget’s behavior, where it points the viewer to a new page with an HTML frame at the top. Ultimately they do very similar things, though the newer Microsoft Translator widget seems to have applied a little more user experience design.&lt;/p&gt;  &lt;h1&gt;SDK Support&lt;/h1&gt;  &lt;p&gt;Now this is one thing that Google Translate doesn’t seem to support at this moment. Microsoft Translator provides a set of HTTP, AJAX, and SOAP interfaces for anyone to interact with via code. This means any application, whether it’s client-side using JavaScript (which the widget itself uses), Silverlight (C# implementation), WPF, Win32, mobile applications, etc., or server-side (C# using WCF) integration, can now leverage the Microsoft Translator service to translate any text-based content.&lt;/p&gt;  &lt;p&gt;The MSR-MT team has provided a live SDK for people to play with, built in Windows Azure, at &lt;a href="http://translatorsdk.cloudapp.net/" title="http://translatorsdk.cloudapp.net/" mce_href="http://translatorsdk.cloudapp.net/"&gt;http://translatorsdk.cloudapp.net/&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;A couple of interesting functional features or scenarios with the service API’s:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Translating individual elements on a web page (instead of the entire page) &lt;/li&gt;    &lt;li&gt;Performing in-line translation asynchronously (thus not impacting page rendering time) &lt;/li&gt;    &lt;li&gt;Performing translation by excluding individual elements, which can be quite useful too if we want to translate the entire page except a few elements &lt;/li&gt;    &lt;li&gt;Parsing and interpreting the language of the input content &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;This open and accessible services API has allowed Microsoft to provide a number of clients to the Translator service:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.microsofttranslator.com" mce_href="http://www.microsofttranslator.com"&gt;Translator website&lt;/a&gt; – enter text or URL to translate and presents side-by-side comparisons of input and result &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsofttranslator.com/Widget/" mce_href="http://www.microsofttranslator.com/Widget/"&gt;Web widget&lt;/a&gt; – embeddable widget (one used now on this blog) &lt;/li&gt;    &lt;li&gt;&lt;a href="http://gallery.live.com/liveItemDetail.aspx?li=9ca66480-2d87-4341-87f6-86875d9a0908" mce_href="http://gallery.live.com/liveItemDetail.aspx?li=9ca66480-2d87-4341-87f6-86875d9a0908"&gt;Windows Live Toolbar&lt;/a&gt; – a button on the toolbar to translate viewed content &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsofttranslator.com/AddIn.aspx" mce_href="http://www.microsofttranslator.com/AddIn.aspx"&gt;Windows Live Add-In&lt;/a&gt; – another embeddable widget &lt;/li&gt;    &lt;li&gt;&lt;a href="http://wltbot.spaces.live.com/" title="http://wltbot.spaces.live.com/" mce_href="http://wltbot.spaces.live.com/"&gt;Windows Live Messenger Bot&lt;/a&gt; – translate via IM’s in Windows Live Messenger &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.ieaddons.com/en/details/205/Windows_Live_Translator/" mce_href="http://www.ieaddons.com/en/details/205/Windows_Live_Translator/"&gt;Internet Explorer 8 Activity&lt;/a&gt; – highlight any content on the web page and translate &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The quality of translation is very comparable to Google Translate. I didn’t do an exhaustive study of the results, but just comparing a few pages translated to Chinese, I found things that were better on both services.&lt;/p&gt;  &lt;p&gt;And of course, this is not all. The MSR-MT team is busy working on a number of enhancements and new features. Read their &lt;a href="http://blogs.msdn.com/translation/archive/2009/03/18/announcing-the-microsoft-translator-web-page-widget.aspx" mce_href="http://blogs.msdn.com/translation/archive/2009/03/18/announcing-the-microsoft-translator-web-page-widget.aspx"&gt;blog&lt;/a&gt; at blogs.msdn.com/translation for more details, and new announcements as they become available.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9497507" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Live Services" scheme="http://blogs.msdn.com/dachou/archive/tags/Live+Services/default.aspx" /><category term="Cloud Computing" scheme="http://blogs.msdn.com/dachou/archive/tags/Cloud+Computing/default.aspx" /></entry><entry><title>Silverlight 3 Beta</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/20/silverlight-3-beta.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/20/silverlight-3-beta.aspx</id><published>2009-03-21T00:40:00Z</published><updated>2009-03-21T00:40:00Z</updated><content type="html">
&lt;SCRIPT type=text/javascript src="http://gaze.live.net/GazeScript.js"&gt;&lt;/SCRIPT&gt;

&lt;DIV id=D00609b02836664cfb8a34a1caa49458d3&gt;
&lt;P&gt;You may have already heard about the many announcements made at Microsoft’s MIX09 conference this week in Las Vegas. One of the major announcements is the Beta availability of Silverlight 3 (and it does look like three’s the charm).&lt;/P&gt;
&lt;H1&gt;Customer adoption to date&lt;/H1&gt;
&lt;P&gt;Scott Guthrie during his keynote at MIX09 shared some encouraging statistics:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Silverlight launched 18 months ago, shipped Silverlight 2 six months ago&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;350+ million installations&lt;/B&gt; globally&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;300,000+ designers and developers&lt;/B&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;200+ partners in 30 countries&lt;/B&gt; contributing to the ecosystem&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;10,000+ applications&lt;/B&gt; globally&lt;/LI&gt;
&lt;LI&gt;Microsoft has 200+ of its own websites built using Silverlight&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;A few major customer adoption announcements were also made:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Netflix &lt;/B&gt;standardizing on Silverlight to deliver its online on-demand video instant watch service across PCs, Macs, and devices; leveraging PlayReady DRM and smooth/adaptive streaming capabilities&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;2010 Winter Olympics at Vancouver&lt;/B&gt; – NBC announced that the event will again be delivered online using Silverlight, similar to the 2008 Beijing Olympics event&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;NCAA “March Madness”&lt;/B&gt; Men’s Basketball Championship – CBS Sports Online coverage of all tournament games delivered using Silverlight at &lt;A href="http://mmod.ncaa.com/" mce_href="http://mmod.ncaa.com/"&gt;mmod.ncaa.com&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;2008 Presidential Inauguration&lt;/B&gt; – the Presidential Inauguration Committee selected Silverlight to enable online video streaming of President Obama’s official swear-in and Whistle Stop Tour events&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Bondi Publishing &lt;/B&gt;(who owns the Playboy Archives above) – working to deliver their set of magazines including the New Yorker, Rolling Stones, and Playboy online using Silverlight. Playboy Archives is now live with with search, navigation, and DeepZoom at &lt;A href="http://playboy.covertocover.com/" mce_href="http://playboy.covertocover.com"&gt;playboy.covertocover.com&lt;/A&gt; (best to visit at home)&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;KEXP&lt;/B&gt; – a Seattle-based radio station showed off an out-of-browser version (that works when off-line) of their content browser and player&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Kelley Blue Book &lt;/B&gt;– Perfect Car Finder application using Silverlight at &lt;A title=http://www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx href="http://www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx" mce_href="http://www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx"&gt;www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;SAP&lt;/B&gt; – working to deliver Silverlight controls to be used in Netweaver and Web DynPro&lt;/LI&gt;
&lt;LI&gt;Microsoft &lt;B&gt;Worldwide Telescope &lt;/B&gt;– now Silverlight enabled at &lt;A title=http://www.worldwidetelescope.org/webclient/ href="http://www.worldwidetelescope.org/webclient/" mce_href="http://www.worldwidetelescope.org/webclient/"&gt;www.worldwidetelescope.org/webclient&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Microsoft &lt;B&gt;Virtual Earth&lt;/B&gt; – Silverlight Map Control for any website to use for enhanced visualization of geo-location and mapping capabilities &lt;A href="http://blogs.gotdotnet.com/veplatform/archive/2009/03/18/learn-about-the-virtual-earth-silverlight-map-control-ctp-at-mix09.aspx" mce_href="http://blogs.gotdotnet.com/veplatform/archive/2009/03/18/learn-about-the-virtual-earth-silverlight-map-control-ctp-at-mix09.aspx"&gt;CTP now available&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Other mentions including &lt;B&gt;Yahoo! Japan&lt;/B&gt;, &lt;B&gt;CareerBuilder&lt;/B&gt;, 10 Cent &lt;B&gt;QQ&lt;/B&gt;, &lt;B&gt;BSkyB&lt;/B&gt;, &lt;B&gt;ITV&lt;/B&gt;, &lt;B&gt;Intuit&lt;/B&gt;, etc.&lt;/LI&gt;&lt;/UL&gt;
&lt;H1&gt;Interesting Silverlight applications to see&lt;/H1&gt;
&lt;P&gt;Some of the most compelling Silverlight applications I have seen (many are registered on &lt;A href="http://silverlight.net/Showcase/" mce_href="http://silverlight.net/Showcase/"&gt;Silverlight Showcase&lt;/A&gt;) are listed below.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;General Info:&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.silverlight.net/" mce_href="http://www.silverlight.net/"&gt;Silverlight&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.live.com/" mce_href="http://silverlight.live.com/"&gt;Silverlight Streaming by Windows Live&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.net/GetStarted/silverlight3/default.aspx" mce_href="http://silverlight.net/GetStarted/silverlight3/default.aspx"&gt;Silverlight 3 Beta tools and runtime&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;Media sites/demos:&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://mmod.ncaa.com/" target=_blank mce_href="http://mmod.ncaa.com/"&gt;NCAA 2009 March Madness&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.2008.nbcolympics.com/video/" target=_blank mce_href="http://www.2008.nbcolympics.com/video/"&gt;NBC Olympics 2008&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://playboy.covertocover.com/" target=_blank mce_href="http://playboy.covertocover.com"&gt;Playboy Archives&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://memorabilia.hardrock.com/" mce_href="http://memorabilia.hardrock.com/"&gt;Hard Rock Memorabilia&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://nymag.com/rogan/" target=_blank mce_href="http://nymag.com/rogan/"&gt;New York Magazine “Where’s Rogan”&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.laguna-coupe.com/silverlight" mce_href="http://www.laguna-coupe.com/silverlight"&gt;Renault Laguna Couple&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://deepzoompix.com/" mce_href="http://deepzoompix.com/"&gt;DeepZoom Pix&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.deepzoom.com/" mce_href="http://www.deepzoom.com/"&gt;DeepZoom.com&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.suboost.com/" mce_href="http://www.suboost.com/"&gt;Suboost.com&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.media-toaster.com/videolibrary/hdsessions/" mce_href="http://www.media-toaster.com/videolibrary/hdsessions/"&gt;Akamai Music Talents&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://origin.etonline.com/emmys/" mce_href="http://origin.etonline.com/emmys/"&gt;Entertainment Tonight at the 2008 Emmy’s Awards&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.etonline.com/silverlight/oscars80/" mce_href="http://www.etonline.com/silverlight/oscars80/"&gt;Entertainment Tonight at the 2008 Oscar’s Academy Awards&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.visitmix.co.kr/" mce_href="http://www.visitmix.co.kr/"&gt;REMIX08 (Korea)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.event-information.jp/events/remixj07/default.htm" mce_href="http://www.event-information.jp/events/remixj07/default.htm"&gt;REMIX07 (Japan)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.shinystuff.eu/" mce_href="http://www.shinystuff.eu/"&gt;In2Media (Denmark)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://slportal.webryalbum.biglobe.ne.jp/" target=_blank mce_href="http://slportal.webryalbum.biglobe.ne.jp/"&gt;Biglobe Picture Gallery (Japan)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.gyao.jp/newarrival/" mce_href="http://www.gyao.jp/newarrival/"&gt;Gyao (Japan)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.iis.net/media/experiencesmoothstreaming" mce_href="http://www.iis.net/media/experiencesmoothstreaming"&gt;Microsoft IIS Smooth Streaming&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/learningspace/default.aspx" target=_blank mce_href="http://www.microsoft.com/learningspace/default.aspx"&gt;Microsoft Learning Space&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://my.liveatedu.com/" mce_href="http://my.liveatedu.com/"&gt;Microsoft Live@Edu&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://preview.microsoft.com/video/" mce_href="http://preview.microsoft.com/video/"&gt;Microsoft Videos&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.hsn.tv/" mce_href="http://www.hsn.tv/"&gt;Home Shopping Network (HSN) TV&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.wwe.com/inside/silverlight/launch/" mce_href="http://www.wwe.com/inside/silverlight/launch/"&gt;World Wrestling Entertainment (WWE)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.net/fox/" mce_href="http://silverlight.net/fox/"&gt;Fox Movies Trailers&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/silverlight/trailers/x-files/default.htm" mce_href="http://www.microsoft.com/silverlight/trailers/x-files/default.htm"&gt;"The X-Files - I Want to Believe" Trailers&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.fr.msn.com/cinema/age-de-glace-3/film.aspx" mce_href="http://silverlight.fr.msn.com/cinema/age-de-glace-3/film.aspx"&gt;"Ice Age 3" Trailers&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/silverlight/trailers/vegas/" mce_href="http://www.microsoft.com/silverlight/trailers/vegas/"&gt;"What Happens in Vegas" Trailers&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/silverlight/trailers/jumper.html" mce_href="http://www.microsoft.com/silverlight/trailers/jumper.html"&gt;"Jumper" Trailers&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://halo.msn.com/videosHD.aspx" mce_href="http://halo.msn.com/videosHD.aspx"&gt;"Halo 3" Trailers&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;Rich application sites/demos:&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.worldwidetelescope.org/webclient/" target=_blank mce_href="http://www.worldwidetelescope.org/webclient/"&gt;Microsoft Worldwide Telescope&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.mscui.net/PatientJourneyDemonstrator/" mce_href="http://www.mscui.net/PatientJourneyDemonstrator/"&gt;Microsoft Health Patient Journey Demonstrator&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.cookingwithxaml.com/meals/financials/default.html" mce_href="http://www.cookingwithxaml.com/meals/financials/default.html"&gt;Woodgrove Financial Online Banking&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.net/samples/2b2/silverlightairlines/run/default.html" mce_href="http://silverlight.net/samples/2b2/silverlightairlines/run/default.html"&gt;Silverlight Airlines&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://promotions.newegg.com/silverlight/DC/index.html" target=_blank mce_href="http://promotions.newegg.com/silverlight/DC/index.html"&gt;NewEgg Digital Camera Promotions&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx" target=_blank mce_href="http://www.kbb.com/kbb/PerfectCarFinder/PhotoEdition.aspx"&gt;Kelley Blue Book Perfect Car Finder&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://firelocator.net/" mce_href="http://firelocator.net/"&gt;Pitney Bowes Fire Locator&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://myprocess.com/" mce_href="http://myprocess.com/"&gt;SnapFlow&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://ultralearn.com/Ultralearn/MashupStudio.aspx" mce_href="http://ultralearn.com/Ultralearn/MashupStudio.aspx"&gt;UltraLearn Mashup Studio&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.dbschemaeditor.com/OnlineDB.aspx" mce_href="http://www.dbschemaeditor.com/OnlineDB.aspx"&gt;DB Schema Editor&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.vadimv.com/" mce_href="http://www.vadimv.com/"&gt;Silverlight Stock Chart&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.bestfreecharts.com/" mce_href="http://www.bestfreecharts.com/"&gt;BestFreeCharts Stock Chart&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.visitmix.com/Lab/Descry" mce_href="http://www.visitmix.com/Lab/Descry"&gt;Project Descry Data and Information Visualization&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://quince.infragistics.com/#/Search" mce_href="http://quince.infragistics.com/#/Search"&gt;Quince UX Patterns Explorer&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.retouchgenie.com/Content/Gallery.aspx" mce_href="http://www.retouchgenie.com/Content/Gallery.aspx"&gt;Retouch Genie (UK)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.mixupdigital.com/home.aspx" mce_href="http://www.mixupdigital.com/home.aspx"&gt;Mixup Digital (Mexico)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.bodurov.com/VectorVisualizer/" mce_href="http://www.bodurov.com/VectorVisualizer/"&gt;Vector Visualizer (Canada)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.medhas09.com/SilverlightApplication3TestPage.html" mce_href="http://www.medhas09.com/SilverlightApplication3TestPage.html"&gt;College Fest Website (India)&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://ryanallen.com/gooncity/city.htm" mce_href="http://ryanallen.com/gooncity/city.htm"&gt;Gooncity Pixel Art City Project&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.palmsoft.com/webscheduler/" mce_href="http://www.palmsoft.com/webscheduler/"&gt;Calendar Scheduler&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.idvsolutions.com/" mce_href="http://silverlight.idvsolutions.com/"&gt;Virtual Earth Draw Tools&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://blueprintnow.labs.solidworks.com/Editor.aspx" mce_href="http://blueprintnow.labs.solidworks.com/Editor.aspx"&gt;BluePrint Now&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.interknowlogy.com/wish43/" mce_href="http://silverlight.interknowlogy.com/wish43/"&gt;Wish 43&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.serverunleashed.com/" mce_href="http://www.serverunleashed.com/"&gt;Microsoft Windows Server 2008 Unleashed&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/communicationsserver/r2-virtual-launch/event/ocs.aspx?langid=1000000" mce_href="http://www.microsoft.com/communicationsserver/r2-virtual-launch/event/ocs.aspx?langid=1000000"&gt;Microsoft Office Communication Server 2007 R2 Virtual Launch Event&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/beta/downloads/Default.aspx" mce_href="http://www.microsoft.com/beta/downloads/Default.aspx"&gt;Microsoft Download Center&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://tafiti.mslivelabs.com/" mce_href="http://tafiti.mslivelabs.com/"&gt;Tafiti&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.windowsvista.si/main.htm?lang=1033" mce_href="http://www.windowsvista.si/main.htm?lang=1033"&gt;Windows Vista Simulator&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.picturespice.com/PS/Polyhedra/ClientBin/TestPage.html" mce_href="http://www.picturespice.com/PS/Polyhedra/ClientBin/TestPage.html"&gt;Polyhedron 3D Simulation&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://widgets-gadgets.com/2009/02/silverlight-slideshow-widget.html" mce_href="http://widgets-gadgets.com/2009/02/silverlight-slideshow-widget.html"&gt;Widgets for Web 2.0: Slideshow Widget&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.net/samples/1.0/Page-Turn/default.html" mce_href="http://silverlight.net/samples/1.0/Page-Turn/default.html"&gt;Page Turn&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;Casual Games:&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.linerider.com/" mce_href="http://www.linerider.com/"&gt;Line Rider&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A title="Server Quest II" href="http://www.microsoft.com/click/serverquest" mce_href="http://www.microsoft.com/click/serverquest"&gt;Server Quest II&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.ltbennett.com/" mce_href="http://www.ltbennett.com/"&gt;Terralever Zero Gravity&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.mahjonged.com/mahjonged.html" mce_href="http://www.mahjonged.com/mahjonged.html"&gt;Mahjong Solitaire&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.farseergames.com/Games/Diver/Diver.aspx" mce_href="http://www.farseergames.com/Games/Diver/Diver.aspx"&gt;Diver&lt;/A&gt;, &lt;A href="http://www.farseergames.com/Games/TireStorm/TireStorm.aspx" mce_href="http://www.farseergames.com/Games/TireStorm/TireStorm.aspx"&gt;Tire Storm&lt;/A&gt;, &lt;A href="http://www.farseergames.com/Games/wearebugs/wearebugs.aspx" mce_href="http://www.farseergames.com/Games/wearebugs/wearebugs.aspx"&gt;We are Bugs!&lt;/A&gt;, &lt;A href="http://www.farseergames.com/Games/WaterDemo/WaterDemo.aspx" mce_href="http://www.farseergames.com/Games/WaterDemo/WaterDemo.aspx"&gt;Water Demo&lt;/A&gt; (Farseer)&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.averagegames.com/games/bridgebasher/" mce_href="http://www.averagegames.com/games/bridgebasher/"&gt;Bridge Basher&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.miniclip.com/games/zombomatic/en/" mce_href="http://www.miniclip.com/games/zombomatic/en/"&gt;Zombomatic&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.miniclip.com/games/tunnel-trouble/en/" mce_href="http://www.miniclip.com/games/tunnel-trouble/en/"&gt;Tunnel Trouble&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.phy.hr/~nikola/klotski/" mce_href="http://www.phy.hr/~nikola/klotski/"&gt;Klotski&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.bluerosegames.com/brg/free-web-games/bubble-breaker.aspx" mce_href="http://www.bluerosegames.com/brg/free-web-games/bubble-breaker.aspx"&gt;Dr. Popper&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.shidonni.com/preview.html" mce_href="http://www.shidonni.com/preview.html"&gt;Shidonni&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://fragmenti.milliflora.com/Fragmenti_Play.aspx" mce_href="http://fragmenti.milliflora.com/Fragmenti_Play.aspx"&gt;Fragmenti&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.nokola.com/shock/" mce_href="http://www.nokola.com/shock/"&gt;Shock&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://silverlight.net/samples/1.0/Sprawl/default.html" mce_href="http://silverlight.net/samples/1.0/Sprawl/default.html"&gt;Sprawl&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.ddtmm.com/vs0/" mce_href="http://www.ddtmm.com/vs0/"&gt;Vector Space: ZERO&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;Reusable Controls Libraries (for enterprise applications):&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.componentart.com/soaui/" mce_href="http://www.componentart.com/soaui/"&gt;ComponentArt Web.UI for Silverlight&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.componentone.com/SuperProducts/StudioSilverlight/Live+Examples/" mce_href="http://www.componentone.com/SuperProducts/StudioSilverlight/Live+Examples/"&gt;ComponentOne Studio for Silverlight&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://labs.infragistics.com/silverlight/lobsamples/" target=_blank mce_href="http://labs.infragistics.com/silverlight/lobsamples/"&gt;Infragistics NetAdvantage Web Client&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://labs.infragistics.com/silverlightdv/2009.1/" target=_blank mce_href="http://labs.infragistics.com/silverlightdv/2009.1/"&gt;Infragistics NetAdvantage Data Visualization&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://sirius2.intersoftpt.com/presenter/" mce_href="http://sirius2.intersoftpt.com/presenter/"&gt;Intersoft Presenter&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://community.netikatech.com/demos/" mce_href="http://community.netikatech.com/demos/"&gt;Netika Tech GOA Toolkit&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://demo.softwarefx.com/Silverlight/Chart/CfxSilverlightDemoWeb/CfxSilverlightDemoPage.aspx" mce_href="http://demo.softwarefx.com/Silverlight/Chart/CfxSilverlightDemoWeb/CfxSilverlightDemoPage.aspx"&gt;SoftwareFX ChartFX Silverlight Add-On&lt;/A&gt;&lt;BR&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://demos.telerik.com/silverlight/default.aspx" mce_href="http://demos.telerik.com/silverlight/default.aspx"&gt;Telerik RadControls for Silverlight&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Now these are just some of my favorites. But with the pace of developers building cool Silverlight applications, this list may need to be updated very frequently (last updated 3/20/09).&lt;/P&gt;
&lt;H1&gt;What’s new in Silverlight 3?&lt;/H1&gt;
&lt;P&gt;Fully supported by Visual Studio and Expression Blend, highlights of new features and functionality of Silverlight 3 include: major media enhancements, out of browser support allowing Web applications to work on the desktop; significant graphics improvements including 3D graphics support, GPU acceleration and H.264 video support; and many features to improve RIA development productivity.&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Enhanced media support &lt;/I&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Live and on-demand true HD (720p+) Smooth Streaming&lt;/B&gt;. IIS Media Services (formerly IIS Media Pack), an integrated HTTP media delivery platform, features Smooth Streaming which dynamically detects and seamlessly switches, in real time, the video quality of a media file delivered to Silverlight based on local bandwidth and CPU conditions.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Hardware accelerated HD playback&lt;/B&gt;. Leveraging graphics processor unit (GPU) hardware acceleration, Silverlight experiences can now be delivered in true full-screen HD (720p, 1080p, etc.). &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Extensible media format support&lt;/B&gt;. In addition to VC-1/WMA, Silverlight 3 now supports MPEG-4-based H.264/AAC Audio. Also with the new extensible Raw AV pipeline, audio and video can be decoded outside the runtime and rendered in Silverlight, extending format support beyond the native codecs.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Digital rights management&lt;/B&gt;. Full and built-in support for DRM, powered by PlayReady Content Protection enables protected in-browser experiences using AES encryption or Windows Media DRM. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;I&gt;Enhanced graphics support&lt;/I&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Perspective 3D Graphics&lt;/B&gt;. Content can now be applied to a 3D plane without writing any code. Live content can be rotated or scaled live content in space.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Pixel Shader effects&lt;/B&gt;. Image manipulation effects such as blur and drop shadow, using software-based rendering. Custom effects can also be created, and applied to any graphical content.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Bitmap Caching&lt;/B&gt;. Vector content, text, and controls can now be cached as bitmaps. This improves the rendering performance of applications and is useful for background content and for content which needs to scale without making changes to its internal appearance.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;New Bitmap API&lt;/B&gt;. Support for writing pixels to bitmaps directly.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Themed application support&lt;/B&gt;. Runtime support for application theme updates driven by templates, and cascading style sheets.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Animation Effects&lt;/B&gt;. New effects such as spring and bounce. Developers can also now develop their own mathematical functions to describe an animation&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Enhanced control skinning&lt;/B&gt;. Simplified skinning capabilities by keeping a common set of controls external from an application. This allows the sharing of styles and control skins between different applications. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Improved text rendering &amp;amp; font support&lt;/B&gt;. Enhanced rendering and rapid animation of text. Applications also load faster by enabling the use of local fonts. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;I&gt;Enhanced rich internet application (RIA) support&lt;/I&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Out-of-Browser capabilities&lt;/B&gt;&lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Run outside of browser&lt;/B&gt;. Light-weight, sandboxed companion experiences for the Web that run on the desktop. Enabled without any additional download of runtime or the need to write applications in a different way.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Consumer friendly non-administrator install&lt;/B&gt;. Applications are hosted in a cache and do not require any privileges to run.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Safer, more secure, sandboxed&lt;/B&gt;. An application can be trusted without security warnings. All assets are stored in an isolated storage.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Built in auto-update&lt;/B&gt;. An application will check for new versions on the server and update on launch.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Connectivity detection (on-line/off-line)&lt;/B&gt;. Can detect a loss of connection (or react to event notifications), then choose to cache data locally until a network connection is restored.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Desktop integration&lt;/B&gt;. On Windows and Macs, applications can be saved as short-cuts on the desktop and be one click away from your customer. On Windows 7, support will be provided for superbar integration, multi-touch, and location awareness services such as GPS support so that your application can react to the users location.&lt;/LI&gt;&lt;/UL&gt;
&lt;LI&gt;&lt;B&gt;Deep Linking&lt;/B&gt;. Support for deep linking, which enables bookmarking a page within a RIA. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Search Engine Optimization (SEO)&lt;/B&gt;. By utilizing business objects on the server, together with ASP.NET controls and site maps, users can automatically mirror database-driven RIA content into HTML that is easily indexed by the leading search engines.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;60+ default controls with source code&lt;/B&gt;. Over 60 fully skinnable and customizable out-of-the-box controls such as charting and media, new layout containers such as dock and viewbox, and controls such as autocomplete, treeview and datagrid. The controls come with nine professional designed themes and the source code can be modified/recompiled or utilized as-is. Other additions include multiple selection in listbox controls, file save dialog, and support for multiple page applications with navigation.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Enhanced data support&lt;/B&gt; &lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Element-to-element binding&lt;/B&gt;. Enables property binding to CLR objects and other UI components via XAML, for instance binding a slider value to the volume control of a media player.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Data forms&lt;/B&gt;. Provides support for layout of fields, validation, updating and paging through data.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Data validation&lt;/B&gt;. Automatically catch incorrect input and warn the user with built-in validation controls. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Support for business objects&lt;/B&gt; on both client and server with n-Tier data support. Easily load, sort, filter and page data with added support for working with data. Includes a new built-in CollectionView to perform a set of complex operations against server side data. A new set of .NET RIA services supports these features on the server.&lt;/LI&gt;&lt;/UL&gt;
&lt;LI&gt;&lt;B&gt;Improved performance&lt;/B&gt; &lt;/LI&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Application library caching&lt;/B&gt;. Reduced the size of applications by caching framework on the client which helps improve rendering performance.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Enhanced DeepZoom&lt;/B&gt;. Allows users to fluidly navigate through larger image collections by zooming. &lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Binary XML&lt;/B&gt;. Allows communication with the server to be compressed, greatly increasing the speed at which data can be exchanged.&lt;/LI&gt;
&lt;LI&gt;&lt;B&gt;Local Connection&lt;/B&gt;. This feature allows communication between multiple Silverlight applications on the client-side without incurring a server roundtrip.&lt;/LI&gt;&lt;/UL&gt;
&lt;LI&gt;&lt;B&gt;Enhanced Accessibility Features&lt;/B&gt;. Provides access to all system colors, allowing partially-sighted people to make changes such as high contrast color schemes for ease of readability by re-using familiar operating system controls.&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9494075" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/dachou/archive/tags/Silverlight/default.aspx" /></entry><entry><title>Best practices for development using Visual Studio – free events</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/20/best-practices-for-development-using-visual-studio-free-events.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/20/best-practices-for-development-using-visual-studio-free-events.aspx</id><published>2009-03-20T16:50:21Z</published><updated>2009-03-20T16:50:21Z</updated><content type="html">&lt;h4&gt;Team System “Big Event”&lt;/h4&gt;  &lt;table border="0" cellspacing="0" cellpadding="0" width="660"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="438"&gt;         &lt;p&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;          &lt;p&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;          &lt;p&gt;&lt;i&gt;How do you take an idea from conception to completion? How can you truly do more with less? &lt;/i&gt;&lt;/p&gt;          &lt;p&gt;Please join us for this unique, invitation-only event to discover how both product and processes help your organization succeed in today’s environment. We will explore how Team System assists teams across the board to be successful in today’s tough times. This “break through” event will not only provide you with best practices around development and testing, but will demonstrate key capabilities of both Visual Studio Team System 2008 and the upcoming 2010 release. It’s a day that promises to have something for everyone!&lt;/p&gt;          &lt;h4&gt;SESSIONS&lt;/h4&gt;          &lt;p&gt;&lt;strong&gt;&lt;em&gt;Test Driven Development: Improving .NET Application Performance &amp;amp; Scalability&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;This session will demonstrate how to leverage Test Driven Development in Team System. We’ll highlight both writing unit tests up front as well as creating test stubs for existing code.&lt;/p&gt;          &lt;p&gt;&lt;strong&gt;&lt;em&gt;&amp;quot;It Works on My Machine!&amp;quot; Closing the Loop Between Development &amp;amp; Testing&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;In this session, we will examine the traditional barriers between the developer and tester; and how Team System can help remove those walls.&lt;/p&gt;          &lt;p&gt;&lt;strong&gt;&lt;em&gt;Treating Databases as First-Class Citizens in Development&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;Team System Database Edition elevates database development to the same level as code development. See how Database Edition enables database change management, automation, comparison, and deployment.&lt;/p&gt;          &lt;p&gt;&lt;strong&gt;&lt;em&gt;Architecture without Big Design Up Front &lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;Microsoft Visual Studio Team System 2010 Architecture Edition, introduces new UML designers, use cases, activity diagrams, sequence diagrams that can visualize existing code, layering to enforce dependency rules, and physical designers to visualize, analyze, and refactor your software. See how VSTS extends UML logical views into physical views of your code. Learn how to create relationships from these views to work items and project metrics, how to extend these designers, and how to programmatically transform models into patterns for other domains and disciplines.&lt;/p&gt;          &lt;p&gt;&lt;strong&gt;&lt;em&gt;Development Best Practices &amp;amp; How Microsoft Helps&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;Sometimes development teams get too bogged down with the details. Take a deep breath, step back, and re-acquaint yourself with a review of current development best practice trends, including continuous integration, automation, and requirements analysis; and see how Microsoft tools map to those practices.&lt;/p&gt;          &lt;p&gt;&lt;strong&gt;&lt;em&gt;&amp;quot;Bang for Your Buck&amp;quot; Getting the Most out of Team Foundation Server&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;Today’s IT budgets are forcing teams to do as much as they can with as little as possible. Why not leverage Team Foundation Server to its full potential? In this session we’ll highlight some capabilities of TFS that you may or may not already know about to help you maximize productivity.&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="220"&gt;         &lt;h4&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/BestpracticesfordevelopmentusingVisualSt_8A53/clip_image002%5B4%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="clip_image002[4]" border="0" alt="clip_image002[4]" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/BestpracticesfordevelopmentusingVisualSt_8A53/clip_image002%5B4%5D_thumb.jpg" width="178" height="101" /&gt;&lt;/a&gt;&lt;/h4&gt;          &lt;h4&gt;REGISTRATION&lt;/h4&gt;          &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;Register &lt;/b&gt;for a date &amp;amp; location near you!&lt;/p&gt;          &lt;p&gt;Welcome: 8:00 AM&lt;/p&gt;          &lt;p&gt;Seminar: 8:30 AM-5:00 PM&lt;/p&gt;          &lt;p&gt;&lt;b&gt;April 22, 2009 - Denver, CO&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=B3-17-E7-0F-3D-A9-CF-93-D5-46-14-B9-D3-7C-38-D5&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=B3-17-E7-0F-3D-A9-CF-93-D5-46-14-B9-D3-7C-38-D5&amp;amp;Culture=en-US"&gt;DD1A7F&lt;/a&gt;.&lt;/p&gt;          &lt;p&gt;&amp;#160;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;April 28, 2009 - Mountain View, CA&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-29-81-DA-38-74-DD-AC-92&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-29-81-DA-38-74-DD-AC-92&amp;amp;Culture=en-US"&gt;80D459&lt;/a&gt;.&lt;/p&gt;          &lt;p&gt;&amp;#160;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;April 30, 2009 - Irvine, CA &lt;/b&gt;&lt;/p&gt;          &lt;p&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-DB-CC-81-EA-88-C6-4F-AB&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-DB-CC-81-EA-88-C6-4F-AB&amp;amp;Culture=en-US"&gt;A86389&lt;/a&gt;.&lt;/p&gt;          &lt;p&gt;&amp;#160;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;May 5, 2009 - Portland, OR&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-09-F0-F4-7A-CA-9E-8E-67&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-09-F0-F4-7A-CA-9E-8E-67&amp;amp;Culture=en-US"&gt;2DC0A9&lt;/a&gt;.&lt;/p&gt;          &lt;p&gt;&amp;#160;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;May 7, 2009 - Phoenix, AZ&lt;/b&gt;&lt;/p&gt;          &lt;p&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-D5-BB-15-AE-35-CB-41-14&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=74-21-6B-AF-11-28-B7-87-D5-BB-15-AE-35-CB-41-14&amp;amp;Culture=en-US"&gt;90BC47&lt;/a&gt;.&lt;/p&gt;          &lt;p&gt;&amp;#160;&lt;/p&gt;          &lt;p&gt;&lt;b&gt;To Register by Phone – &lt;/b&gt;Call 1.877.MSEVENT (1.877.673.8368) with invitation code.&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9492811" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /><category term="VSTS" scheme="http://blogs.msdn.com/dachou/archive/tags/VSTS/default.aspx" /></entry><entry><title>Agile development with Scrum – free events</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/20/agile-development-with-scrum-free-events.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/20/agile-development-with-scrum-free-events.aspx</id><published>2009-03-20T16:36:43Z</published><updated>2009-03-20T16:36:43Z</updated><content type="html">&lt;h1&gt;A Day in the Life of Scrum with Visual Studio Team System 2008 and Team Foundation Server&lt;/h1&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/AgiledevelopmentwithScrumfreeevents_86F0/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/AgiledevelopmentwithScrumfreeevents_86F0/image_thumb.png" width="168" height="84" /&gt;&lt;/a&gt; Please join Microsoft and &lt;a href="http://www.neudesic.com"&gt;Neudesic&lt;/a&gt; for a day in the life of Scrum with Visual Studio Team System 2008 and Team Foundation Server!&amp;#160; Agile methods are a set of development processes intended to create software in a lighter, faster, more people-centric way. Many development teams have adopted &amp;quot;agile&amp;quot; methodologies to manage change and to improve software quality. These methodologies promote continuous integration as a practice to build and test software products incrementally as new features are included, bugs are fixed, and code is re-factored. &lt;/p&gt;  &lt;p&gt;If you missed the first series of Agile &amp;amp; Scrum Essentials last fall; here’s your chance to attend the follow-on event where we’ll briefly revisit the basics of Agile and Scrum and provide a walkthrough of how to configure Visual Studio Team System 2008 and Team Foundation Server for Scrum.&amp;#160; Participants will be familiarized with how key artifacts are managed within this popular process template for enacting Scrum in organizations.&amp;#160;&amp;#160; &lt;/p&gt;  &lt;p&gt;Join us for this interactive event as we explore a “day in the life of a Sprint,” that will give you a practical perspective of how Scrum teams leverage Visual Studio Team System for end to end management of the planning, execution and control of Scrum projects. The day will end with an overview of what’s coming in Visual Studio Team System 2010! &lt;/p&gt;  &lt;h1&gt;Register for a date &amp;amp; location near you &lt;/h1&gt;  &lt;br /&gt;  &lt;p&gt;Welcome: 8:30 AM   &lt;br /&gt;Seminar: 9:00 AM-4:30 PM &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;To Register by Phone –      &lt;br /&gt;&lt;/strong&gt;Call 1.877.MSEVENT (1.877.673.8368) with invitation code. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;April 2, 2009 - Bellevue, WA     &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=9A-21-56-92-69-0C-AE-00-BE-A0-93-DA-09-AE-12-71&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=9A-21-56-92-69-0C-AE-00-BE-A0-93-DA-09-AE-12-71&amp;amp;Culture=en-US"&gt;46F263&lt;/a&gt;.&lt;/p&gt; &lt;strong&gt;June 4, 2009 - Denver, CO   &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=9A-21-56-92-69-0C-AE-00-D0-A6-97-0B-83-CB-C2-08&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=9A-21-56-92-69-0C-AE-00-D0-A6-97-0B-83-CB-C2-08&amp;amp;Culture=en-US"&gt;02B7F8&lt;/a&gt;.  &lt;p&gt;&lt;strong&gt;April 9, 2009 - Portland, OR     &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-A3-17-89-AD-4D-E3-85-9C&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-A3-17-89-AD-4D-E3-85-9C&amp;amp;Culture=en-US"&gt;ED7794&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;April 7, 2009 - Salt Lake City, UT     &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-BD-81-DB-98-4C-27-8D-9F&amp;amp;Culture=en-US"&gt;here&lt;/a&gt;&amp;#160; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-BD-81-DB-98-4C-27-8D-9F&amp;amp;Culture=en-US"&gt;FF5466&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;April 14, 2009 - San Diego, CA     &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-84-8E-48-39-5B-77-E4-64&amp;amp;Culture=en-US"&gt;here&lt;/a&gt;&amp;#160; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-84-8E-48-39-5B-77-E4-64&amp;amp;Culture=en-US"&gt;1A8639&lt;/a&gt;. &lt;/p&gt; &lt;strong&gt;April 15, 2009 - Irvine, CA    &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-42-1A-D2-B5-B7-E6-5E-AA&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-42-1A-D2-B5-B7-E6-5E-AA&amp;amp;Culture=en-US"&gt;808B1B&lt;/a&gt;.   &lt;p&gt;&lt;strong&gt;April 16, 2009 - Los Angeles, CA      &lt;br /&gt;&lt;/strong&gt;Click &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-01-3D-88-2F-B9-66-9F-04&amp;amp;Culture=en-US"&gt;here&lt;/a&gt; to register with invitation code: &lt;a href="http://msevents.microsoft.com/CUI/InviteOnly.aspx?EventID=C0-4A-DF-AC-89-28-E0-FE-01-3D-88-2F-B9-66-9F-04&amp;amp;Culture=en-US"&gt;A61EB4&lt;/a&gt;. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9492785" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /><category term="VSTS" scheme="http://blogs.msdn.com/dachou/archive/tags/VSTS/default.aspx" /></entry><entry><title>Microsoft Enterprise Developer and Industry Solutions Conference 2009 (May 5 and 6: NYC)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/17/microsoft-enterprise-developer-and-industry-solutions-conference-2009-may-5-and-6-nyc.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/17/microsoft-enterprise-developer-and-industry-solutions-conference-2009-may-5-and-6-nyc.aspx</id><published>2009-03-18T06:50:00Z</published><updated>2009-03-18T06:50:00Z</updated><content type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/image_9.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/image_thumb_3.png" width="582" height="123" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="665"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="489"&gt;         &lt;p&gt;Please join us for the 7th annual Microsoft Enterprise Developer and Industry Solutions Conference 2009 where you will learn about solutions in Microsoft technologies relevant to the Financial Services and Health &amp;amp; Life Sciences industries, as well&amp;#160; as hear about the latest advancements in major industries. This two day event will be held in New York City on May 5th and 6th. &lt;/p&gt;          &lt;p&gt;The content is tailored for developers, architects,&amp;#160; business decision makers, and technology decision makers&amp;#160; in large enterprise organizations a clear roadmap of the Microsoft development platform. We will&amp;#160; give specific examples of real world solutions using the best of breed technology to bring you from where you are today, to where you will be tomorrow. This is the only conference that will show case enterprise customer solutions directly from the mouth of developers that work in the enterprise industry space as well hear from Microsoft and their partners on topics such as Cloud Computing, Application Lifecycle Management and User Experience. &lt;/p&gt;          &lt;h1&gt;Who Should Attend?&lt;/h1&gt;          &lt;p&gt;Developers, Architects, Business Decision Makers, CIOs, CTOs, Development Managers and Technical Decision Makers.&lt;/p&gt;          &lt;h1&gt;Registration&lt;/h1&gt;          &lt;p&gt;Register today - &lt;a title="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032402510&amp;amp;Culture=en-US" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032402510&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032402510&amp;amp;Culture=en-US&lt;/a&gt;. &lt;/p&gt;          &lt;h1&gt;Accommodations: &lt;/h1&gt;          &lt;p&gt;For your convenience, a block of rooms has been reserved at the Marriott Marquis at a rate of $299. You are responsible for your own reservations which can be made by calling (212) 398-1900 or 1-800-843-4898 to receive the discounted rate. Be sure to reference the Microsoft Enterprise Developer &amp;amp; Industry Solution Conference&lt;/p&gt;          &lt;p&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="174"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/clip_image004%5B6%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image004[6]" border="0" alt="clip_image004[6]" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/clip_image004%5B6%5D_thumb.jpg" width="125" height="42" /&gt;&lt;/a&gt;&amp;#160; &lt;br /&gt;          &lt;p&gt;&lt;strong&gt;Marriott Marquis Hotel &lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;&lt;strong&gt;New York, NY &lt;/strong&gt;&lt;/p&gt;          &lt;p&gt;Conference attendance is FREE. Breakfast and lunch for both days is provided as well as a welcome reception on the first night of the event. You are responsible for all other travel and hotel expenses&lt;i&gt;.&lt;/i&gt; &lt;a href="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/image_2.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/image_thumb.png" width="129" height="64" /&gt;&lt;/a&gt;             &lt;br /&gt;            &lt;br /&gt;&lt;b&gt;Click on the picture below to see a live demonstration of Microsoft Surface&lt;/b&gt;             &lt;br /&gt;            &lt;br /&gt;&lt;a href="http://www.on10.net/blogs/laura/Surface-The-Bankin"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/dachou/WindowsLiveWriter/MicrosoftEnterpriseDeveloperandIndustryS_14F10/image_5.png" width="119" height="94" /&gt;&lt;/a&gt;             &lt;br /&gt;            &lt;br /&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9486136" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /></entry><entry><title>Silverlight 3, Windows 7, Touch and Gesture Computing, etc. – Values of Software Clients (Live Events and Webcast)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/14/silverlight-3-windows-7-touch-gesture-computing-etc-values-of-software-clients-live-events-webcast.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/14/silverlight-3-windows-7-touch-gesture-computing-etc-values-of-software-clients-live-events-webcast.aspx</id><published>2009-03-14T17:22:00Z</published><updated>2009-03-14T17:22:00Z</updated><content type="html">&lt;H1&gt;Architect Council&amp;nbsp; | The Importance of the Client&lt;/H1&gt;
&lt;P&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Over the last couple of years, there has been a lot of innovation around technologies that make it easier for the end user of an application to interact with systems.&amp;nbsp; These innovations have been a boon for the end user because it has provided them a more natural interface with systems that span the web, computer, and phone.&amp;nbsp; However, this has caused the complexity of systems architecture and development to increase.&amp;nbsp; The focus of this session will be on how to prepare and manage this complexity within your organization.&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Facilitated by Microsoft, the premise of this event is to provide an open forum where architects can meet to discuss technologies with their peers.&amp;nbsp; This forum will provide first-hand experience and best practices that will enable its members to learn from each other and transfer knowledge. Please join us for this great opportunity to learn, share and network with your peers and other company leaders.&lt;/P&gt;
&lt;H3&gt;&lt;/H3&gt;
&lt;H1&gt;EVENT SUMMARY &lt;/H1&gt;
&lt;P&gt;&lt;B&gt;The Value of the Client&lt;/B&gt; – In the past, the choice of how an end user interacts with an application has been dictated by IT and often without regards to the usage.&amp;nbsp; Recently, as the population has become more tech savvy and are experiencing interactions on the web, computer, and the phone their expectations have increased tremendously.&amp;nbsp; Many organizations now have to support multiple standards and technologies to accommodate their user base.&amp;nbsp; We will discuss the opportunities and challenges this presents.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;The Changing Face of the Web – &lt;/B&gt;The web has changed from a static collection of data to an application platform.&amp;nbsp; In many cases, JavaScript and AJAX have enhanced the experience to enable more advance application scenarios.&amp;nbsp; In other cases, the Rich Internet Application using technologies such as Silverlight and Flash can bring the experience to a new level.&amp;nbsp; In this session we will discuss the web and in particular the investments Microsoft is making in this technology.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Creating Powerful Applications on Computers and Devices – &lt;/B&gt;The web has been a boon to application development and deployment, but it doesn’t always fit every scenario.&amp;nbsp; There are certain classes of applications which provide a better experience when running on a device and utilizing local hardware.&amp;nbsp; The ubiquity of the mobile device has also extended the expectations of users with anytime/anywhere access.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;B&gt;The Future of the Client – &lt;/B&gt;The pace of change in client technologies over the past few years has been tremendous and is expected to continue to evolve.&amp;nbsp; From support of new device types such as tables and walls, to continued improvements in interactions on the web, client, and the phone the client will become more and more important from a technology perspective and more strategic to the organization.&lt;/P&gt;
&lt;H1&gt;AGENDA&lt;/H1&gt;
&lt;P&gt;12:45 PM&amp;nbsp; Open for Dial-in &amp;amp; Announcements&lt;/P&gt;
&lt;P&gt;01:00 PM&amp;nbsp; The Value of the Client&lt;/P&gt;
&lt;P&gt;01:45 PM&amp;nbsp; The Changing Face of the Web&lt;/P&gt;
&lt;P&gt;02:45 PM&amp;nbsp; Creating Powerful Applications on Computers and Devices&lt;/P&gt;
&lt;P&gt;03:45 PM&amp;nbsp; The Future of the Client&lt;/P&gt;
&lt;P&gt;04:15 PM&amp;nbsp; Raffle and Close&lt;/P&gt;
&lt;H1&gt;REGISTER &lt;/H1&gt;
&lt;H3&gt;&lt;/H3&gt;
&lt;P&gt;To register, please select a date/venue below. &lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;March 31, 2009 | Online Webcast&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Registration Link: &lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032408787&amp;amp;Culture=en-US" mce_href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032408787&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032408787&amp;amp;Culture=en-US&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Event ID: 1032408787&amp;nbsp; *Referral code not required to register.*&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;April 1, 2009 | Irvine, CA&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Microsoft Corporation&lt;/P&gt;
&lt;P&gt;3 Park Plaza, Suite 1600&lt;/P&gt;
&lt;P&gt;Irvine California 92614&lt;/P&gt;
&lt;P&gt;Registration Link&lt;STRONG&gt;:&lt;/STRONG&gt; &lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032399665&amp;amp;Culture=en-US" mce_href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032399665&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032399665&amp;amp;Culture=en-US&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Event ID: 1032399665&amp;nbsp; *Referral code not required to register.*&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;April 2, 2009 | Los Angeles, CA&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Microsoft Corporation&lt;/P&gt;
&lt;P&gt;333 S. Grand Ave, 33rd Floor&lt;/P&gt;
&lt;P&gt;Los Angeles California 90071&lt;/P&gt;
&lt;P&gt;Registration Link: &lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032404032&amp;amp;Culture=en-US" mce_href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032404032&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032404032&amp;amp;Culture=en-US&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Event ID: 1032404032&amp;nbsp; *Referral code not required to register.*&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9476285" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /></entry><entry><title>Internet Explorer 8 “FireStarter” Event | Mar 26th 2009</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/13/internet-explorer-8-firestarter-event-mar-29th-2009.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/13/internet-explorer-8-firestarter-event-mar-29th-2009.aspx</id><published>2009-03-14T01:02:00Z</published><updated>2009-03-14T01:02:00Z</updated><content type="html">&lt;P&gt;On Thursday, March 26, 2009 - Microsoft is hosting a day long free training event for all Developers and IT Pro’s interested in learning more about Internet Explorer 8. You can read about the speaker line up, sessions and get a feel for the agenda by registering for the event.&lt;/P&gt;
&lt;P&gt;Note that this event will be broadcasted online as well. So, if you are not in Redmond, you can watch the entire event online via Live Meeting. Be sure to register for the Online version. All the sessions will be recorded and made available post event.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Register to &lt;U&gt;Attend In-Person (Redmond, WA)&lt;/U&gt;: &lt;/B&gt;&lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032406308&amp;amp;Culture=en-US" mce_href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032406308&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032406308&amp;amp;Culture=en-US&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;OR&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Register to &lt;U&gt;Watch the event online&lt;/U&gt;:&lt;/B&gt; &lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032408665&amp;amp;Culture=en-US" mce_href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032408665&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032408665&amp;amp;Culture=en-US&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For more details, you can contact &lt;A href="http://blogs.msdn.com/mithund" mce_href="http://blogs.msdn.com/mithund"&gt;Mithun Dhar&lt;/A&gt; (Developer Evangelist)&lt;/P&gt;
&lt;P&gt;We look forward to seeing you at the event!&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9474082" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /></entry><entry><title>Cloud Computing and Azure Presentation at South Bay .NET User Group</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/dachou/archive/2009/03/13/cloud-computing-and-azure-presentation-at-south-bay-net-user-group.aspx" /><id>http://blogs.msdn.com/dachou/archive/2009/03/13/cloud-computing-and-azure-presentation-at-south-bay-net-user-group.aspx</id><published>2009-03-13T18:24:30Z</published><updated>2009-03-13T18:24:30Z</updated><content type="html">&lt;p&gt;I had the privilege of speaking to the community at the South Bay .NET User Group again, on March 12, 2009; onsite at the Honda campus in Torrance, California. Thanks to everyone who made the time to attend!&lt;/p&gt;  &lt;p&gt;For those who are interested, the slide decks I used can be found via the links below.&lt;/p&gt;  &lt;p&gt;&lt;iframe style="border-bottom: #dde5e9 1px solid; border-left: #dde5e9 1px solid; padding-bottom: 0px; background-color: #ffffff; margin: 3px; padding-left: 0px; width: 240px; padding-right: 0px; height: 66px; border-top: #dde5e9 1px solid; border-right: #dde5e9 1px solid; padding-top: 0px" marginheight="0" src="http://cid-e8cb707cdd38130b.skydrive.live.com/embedrowdetail.aspx/Presentations/20090312%20-%20Microsoft%20and%20Cloud%20Computing.pptx" frameborder="0" marginwidth="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;/p&gt;  &lt;p&gt;&lt;iframe style="border-bottom: #dde5e9 1px solid; border-left: #dde5e9 1px solid; padding-bottom: 0px; background-color: #ffffff; margin: 3px; padding-left: 0px; width: 240px; padding-right: 0px; height: 66px; border-top: #dde5e9 1px solid; border-right: #dde5e9 1px solid; padding-top: 0px" marginheight="0" src="http://cid-e8cb707cdd38130b.skydrive.live.com/embedrowdetail.aspx/Presentations/20090312%20-%20Azure%20Services%20Platform.pptx" frameborder="0" marginwidth="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9473491" width="1" height="1"&gt;</content><author><name>dachou</name><uri>http://blogs.msdn.com/members/dachou.aspx</uri></author><category term="Architecture" scheme="http://blogs.msdn.com/dachou/archive/tags/Architecture/default.aspx" /><category term="S+S" scheme="http://blogs.msdn.com/dachou/archive/tags/S_2B00_S/default.aspx" /><category term="Cloud Computing" scheme="http://blogs.msdn.com/dachou/archive/tags/Cloud+Computing/default.aspx" /><category term="Events" scheme="http://blogs.msdn.com/dachou/archive/tags/Events/default.aspx" /><category term="Azure" scheme="http://blogs.msdn.com/dachou/archive/tags/Azure/default.aspx" /></entry></feed>