<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>MSDN Blogs</title><link>http://blogs.msdn.com/default.aspx</link><description>The Blogs of MSDN</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>How do I determine the processor's cache line size?</title><link>http://blogs.msdn.com/oldnewthing/archive/2009/12/08/9933836.aspx</link><pubDate>Tue, 08 Dec 2009 15:00:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933836</guid><dc:creator>oldnewthing</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;
When doing high-performance computing, you need to worry
about the CPU cache line size in order to avoid issues
like &lt;I&gt;false sharing&lt;/I&gt;.
But how can you determine the processor's cache size?
&lt;/P&gt;
&lt;P&gt;
The &lt;CODE&gt;GetLogicalProcessorInformation&lt;/CODE&gt; function
will give you characteristics of the logical processors
in use by the system.
You can
&lt;A HREF="http://msdn.microsoft.com/en-us/library/ms683194(VS.85).aspx"&gt;
walk the &lt;CODE&gt;SYSTEM_LOGICAL_PROCESSOR_INFORMATION&lt;/CODE&gt;&lt;/A&gt;
returned by the function looking for entries of type
&lt;CODE&gt;RelationCache&lt;/CODE&gt;.
Each such entry contains a &lt;CODE&gt;ProcessorMask&lt;/CODE&gt; which tells
you which processor(s) the entry applies to,
and in the
&lt;A HREF="http://msdn.microsoft.com/en-us/library/ms681979(VS.85).aspx"&gt;
&lt;CODE&gt;CACHE_DESCRIPTOR&lt;/CODE&gt;&lt;/A&gt;,
it tells you what type of cache is being described
and how big the cache line is for that cache.
&lt;/P&gt;
&lt;P&gt;
Windows&amp;nbsp;7 adds the function
&lt;A HREF="http://msdn.microsoft.com/en-us/library/dd405488(VS.85).aspx"&gt;
&lt;CODE&gt;GetLogicalProcessorInformationEx&lt;/CODE&gt;&lt;/A&gt;
which does the &lt;CODE&gt;RelationCache&lt;/CODE&gt; filtering for you.
&lt;/P&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933836" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/oldnewthing/archive/tags/Code/default.aspx">Code</category></item><item><title>Things I've written that have amused other people: Episode 6</title><link>http://blogs.msdn.com/oldnewthing/archive/2009/12/08/9933835.aspx</link><pubDate>Tue, 08 Dec 2009 15:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933835</guid><dc:creator>oldnewthing</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;
On an internal discussion group,
somebody decided to quote one of my blog entries.
&lt;/P&gt;
&lt;P&gt;
&lt;A HREF="http://jim.medding.net/"&gt;
Jim Medding&lt;/A&gt;
was amused by my response:
&lt;A HREF="http://jim.medding.net/blog/2008/06/20/raymond-speaks/"&gt;
Bloggers are just idiots with a Web site&lt;/A&gt;.
&lt;/P&gt;
&lt;P&gt;
(My blog was dug up in order to refute a claim,
even though the blog entry applied to a situation different from
the one under discussion.)
&lt;/P&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933835" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/oldnewthing/archive/tags/Non-Computer/default.aspx">Non-Computer</category><category domain="http://blogs.msdn.com/oldnewthing/archive/tags/Things+I_2700_ve+written+that+have+amused+other+people/default.aspx">Things I've written that have amused other people</category></item><item><title>How To: Turn off Strong Name Validation</title><link>http://blogs.msdn.com/syedab/archive/2009/12/08/how-to-turn-off-strong-name-validation.aspx</link><pubDate>Tue, 08 Dec 2009 14:59:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934057</guid><dc:creator>syedab</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Syed Aslam Basha here. I am a tester on the Information Security Tools team.&lt;/p&gt;  &lt;p&gt;In one of my application testing I faced issue of “strong name validation failed” for a assembly, had to figure out a way to turn off strong name validation so that I can carryout testing on the given assembly while I get appropriate assembly.&lt;/p&gt;  &lt;p&gt;The actual error is&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;“Unhandled exception: System.IO.FileLoadException: Could not load file or assembly ‘application name, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a’ or one of its dependencies. Strong name validation failed.&amp;lt;Exception from HRESULT: 0x8013141A&amp;gt;”&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;strong&gt;Steps to turn off strong name validation:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Launch visual studio command prompt in admin mode and run the following command&lt;/p&gt;  &lt;p&gt;sn –Vr *,b03f5f7f11d50a3a&lt;/p&gt;  &lt;p&gt; -Vr &amp;lt;assembly&amp;gt; [&amp;lt;userlist&amp;gt;] [&amp;lt;infile&amp;gt;]   &lt;br /&gt;&amp;#160;&amp;#160; Register &amp;lt;assembly&amp;gt; for verification skipping (with an optional, comma separated list of usernames for which this will take effect and an optional test public key in &amp;lt;infile&amp;gt;).    &lt;br /&gt;&amp;lt;assembly&amp;gt;&amp;#160;&amp;#160;&amp;#160; can be specified as * to indicate all assemblies or *,&amp;lt;public key token&amp;gt; to indicate that all assemblies with the given public key token. Public key tokens should be specified as a string of hex digits.&lt;/p&gt;  &lt;p&gt;Similarly you can remove verification skipping entries,&lt;/p&gt;  &lt;p&gt;sn –Vu *,b03f5f7f11d50a3a   &lt;br /&gt; -Vu &amp;lt;assembly&amp;gt;    &lt;br /&gt;&amp;#160;&amp;#160; Unregister &amp;lt;assembly&amp;gt; for verification skipping. The same rules for &amp;lt;assembly&amp;gt; naming are followed as for -Vr.&lt;/p&gt;  &lt;p&gt;sn -Vx   &lt;br /&gt; -Vx    &lt;br /&gt;&amp;#160;&amp;#160; Remove all verification skipping entries.&lt;/p&gt;  &lt;p&gt;- Syed&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934057" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/syedab/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/syedab/archive/tags/Software+Testing/default.aspx">Software Testing</category></item><item><title>Fast Forward Testing – Part 1 – The magic w(b)and.</title><link>http://blogs.msdn.com/pradeepn/archive/2009/12/08/fast-forward-testing-part-1-the-magic-w-b-and.aspx</link><pubDate>Tue, 08 Dec 2009 14:58:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934056</guid><dc:creator>pradeepn</dc:creator><slash:comments>0</slash:comments><description>&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;I mentioned in my previous blog that I will be mainly concentrating on the Test Runner which is used for executing manual tests. While there is a lot to discuss around this, I will straight away jump into a feature that will help testers fast forward their testing. Basically, the tester can automate portions of test that can be played back next time the test is executed. The good thing is that the tester does not have to do a lot to make this happen. &lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;In this blog, I will go over a simple test case where I test addition on a calculator app. When you &lt;A href="http://msdn.microsoft.com/en-us/library/dd293545(VS.100).aspx" mce_href="http://msdn.microsoft.com/en-us/library/dd293545(VS.100).aspx"&gt;run the test from MTLM&lt;/A&gt;, you will get to the Test Runner UI. &lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;You will have to check the &lt;STRONG insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;“Create action recording”&lt;/STRONG&gt; check box before clicking on “Start test”. This ensures that the actions that you perform on your application (calculator in this case) gets recorded. I have also modified the UI layout some bit to explain some things here. This is how it looks just before starting the test.&lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;&lt;A href="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_4.png" mce_href="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_4.png" insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&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/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_thumb_1.png" width=246 height=377 insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1" mce_src="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;I perform the actions on the calculator as mentioned in the test case and then &lt;STRONG insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;&lt;U insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;mark&lt;/U&gt;&lt;/STRONG&gt; Step 4('”Click on 3”) as “Passed”. &lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;&lt;A href="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_12.png" mce_href="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/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/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_thumb_5.png" width=424 height=387 mce_src="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_thumb_5.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;Two things to notice here:'&lt;/P&gt;
&lt;UL __vsttTracked="1"&gt;
&lt;LI __vsttTracked="1"&gt;
&lt;DIV __vsttTracked="1"&gt;A blue color band next to steps on the right.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI __vsttTracked="1"&gt;
&lt;DIV __vsttTracked="1"&gt;Actions recorded on the bottom. This view is collapsed by default. I have expanded this for illustration.&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P __vsttTracked="1"&gt;What this means is the actions that I have performed until “Step 4” is associated with the steps 1 to 4 as an action recording region. When I mark a step (Step 4 in this case), a region is created. You can also see the list of actions recorded in the lower part of the UI.&lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;Does a tester needs to be aware of all these when the only goal is to manually test the application. Definitely not. The tester has to just go about testing the application while the recording happens in background. In order to get a more resilient action recording, the user may have to look into some of these aspects.&lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;Perform other actions and end the test. Notice that after this, the band color has become orange. That means the tester can play this action recording. Save the test and proceed. More on how to use this recording in my next blog.&lt;/P&gt;
&lt;P insertadjacenthtml="function (loc, code)&amp;#13;&amp;#10;                    {&amp;#13;&amp;#10;                        // HTML Content changing..&amp;#13;&amp;#10;                        _baseInsertFunction(loc, code);&amp;#13;&amp;#10;&amp;#13;&amp;#10;                        try&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                            vsttTrackHover.NodeAddition();&amp;#13;&amp;#10;                            vsttTrackHover.OverrideNodes(domElement.parentNode.all, 0);&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                        catch (ex)&amp;#13;&amp;#10;                        {&amp;#13;&amp;#10;                        }&amp;#13;&amp;#10;                    }" __vsttTracked="1"&gt;&lt;A href="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_14.png" mce_href="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_14.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/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_thumb_6.png" width=444 height=402 mce_src="http://blogs.msdn.com/blogfiles/pradeepn/WindowsLiveWriter/FastForwardManualTesting_113FF/image_thumb_6.png"&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934056" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/pradeepn/archive/tags/Test+Runner/default.aspx">Test Runner</category></item><item><title>Windows Azure Training from PDC 09</title><link>http://blogs.msdn.com/mscantraining/archive/2009/12/08/9934055.aspx</link><pubDate>Tue, 08 Dec 2009 14:57:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934055</guid><dc:creator>airleeg</dc:creator><slash:comments>0</slash:comments><description>Check out these recorded sessions on Windows Azure from pdc09: Lap Around the Windows Azure Platform Windows Azure: Present and Future SQL Azure Database: Present and Future Lessons Learned: Migrating Applications to the Windows Azure Platform Introduction to Building Applications with Windows Azure Building Java Applications with Windows Azure Developing PHP and MySQL Applications with Windows Azure For additional training resources on Windows Azure click here...(&lt;a href="http://blogs.msdn.com/mscantraining/archive/2009/12/08/9934055.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934055" width="1" height="1"&gt;</description></item><item><title>Windows Azure Tools for Microsoft Visual Studio (November 2009 Update)</title><link>http://blogs.msdn.com/architectsrule/archive/2009/12/08/windows-azure-tools-for-microsoft-visual-studio-november-2009-update.aspx</link><pubDate>Tue, 08 Dec 2009 14:56:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934054</guid><dc:creator>bartvagh</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Just in case anyone missed this. A new set of tools for Windows Azure has been made available and can be downloaded at: &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6967ff37-813e-47c7-b987-889124b43abd&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=6967ff37-813e-47c7-b987-889124b43abd&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;  &lt;h4&gt;Overview&lt;/h4&gt;  &lt;p&gt;&lt;a name="Description"&gt;&lt;/a&gt;Windows Azure Tools for Microsoft Visual Studio extend Visual Studio 2008 and Visual Studio 2010 Beta 2 to enable the creation, configuration, building, debugging, running and packaging of scalable web applications and services on Windows Azure.    &lt;br /&gt;New for the November 2009 release: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Service Model UI: A redesigned and significantly more complete interface for manipulating Role configuration information. To access, double-click on a role node in the Solution Explorer.&lt;/li&gt;    &lt;li&gt;Additional role templates: Support for ASP.NET MVC 2 (2010 only), F# worker roles (2010 only), and WCF Service Application web roles.&lt;/li&gt;    &lt;li&gt;VS2010 Beta2 Support: Support for Visual Studio 2010 Beta 2 and VWD Express 2010 Beta 2.&lt;/li&gt;    &lt;li&gt;Support for dynamically creating tables: The Create Tables functionality is now performed automatically; there is no longer a need to right-click and select Create Tables… on the project after your table definitions have changed.&lt;/li&gt;    &lt;li&gt;Full support for and installation of the November Windows Azure SDK release:&lt;/li&gt;    &lt;ul&gt;     &lt;li&gt;The sample storage client has been replaced by a new production quality library.&lt;/li&gt;      &lt;li&gt;New Diagnostics library enables logging using .NET APIs and enables the collection of diagnostic information from the service.&lt;/li&gt;      &lt;li&gt;Service Runtime library updated to support inter-role communication and notification of configuration changes . &lt;/li&gt;      &lt;li&gt;Support for input endpoints on Worker Roles. &lt;/li&gt;      &lt;li&gt;Higher fidelity simulation of Development Storage: supports all current cloud storage features, including dynamically creating tables. &lt;/li&gt;      &lt;li&gt;Ability to choose the size of the VM for a role instance. &lt;/li&gt;      &lt;li&gt;Ability to persist data in local storage even after the role is recycled. &lt;/li&gt;      &lt;li&gt;Ability to manage certificates to install to the role VMs. &lt;/li&gt;   &lt;/ul&gt; &lt;/ul&gt;  &lt;p&gt;Windows Azure Tools for Microsoft Visual Studio includes:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;C# and VB Project creation support for creating a Windows Azure Cloud Service solution with multiple roles.&lt;/li&gt;    &lt;li&gt;Tools to add and remove roles from the Cloud Service.&lt;/li&gt;    &lt;li&gt;Tools to configure each Role.&lt;/li&gt;    &lt;li&gt;Integrated local development via the Development Fabric and Development Storage services.&lt;/li&gt;    &lt;li&gt;Running and Debugging a Cloud Service in the Development Fabric.&lt;/li&gt;    &lt;li&gt;Building and packaging of Cloud Service Packages.&lt;/li&gt;    &lt;li&gt;Browsing to the Windows Azure Developer Portal.&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934054" width="1" height="1"&gt;</description></item><item><title>Innovation Academy / Taller para emprededores</title><link>http://blogs.msdn.com/oaviles/archive/2009/12/08/innovation-academy-taller-para-emprededores.aspx</link><pubDate>Tue, 08 Dec 2009 14:52:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934050</guid><dc:creator>Omar Aviles</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;En esta ocasión contaremos con la presencia de Malcolm Fraser, consultor internacional, quien nos impartirá un taller de 2 días, dirigido al manejo, operación, búsqueda de mercados y todo lo referente al manejo de tu empresa de software. &lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032437062&amp;amp;Culture=es-MX"&gt;Registrate&lt;/a&gt;&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="532"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;1. &lt;/b&gt;&lt;b&gt;Fecha y hora:&lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;14 y 15 de Diciembre de 2009 9 am a 17:15 pm.&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;2. &lt;/b&gt;&lt;b&gt;Lugar del evento:&lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;Centro de Innovación ANIEI: Tecnológico de Monterrey Campus Estado de México&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;3. &lt;/b&gt;&lt;b&gt;Dirección&lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;         &lt;p&gt;Carr. Lago de Guadalupe km 3.5, Col Margarita Maza de Juárez, 52916 Atizapan Edo mex&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;4. &lt;/b&gt;&lt;b&gt;Audiencia:&lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;Emprendedores con iniciativas de empresas de Software. Sea Software Empaquetado o Software mas Servicios.&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;5. &lt;/b&gt;&lt;b&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032437062&amp;amp;Culture=es-MX"&gt;Asistencia presencial&lt;/a&gt;:&lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;Contamos con cupo limitado. Les suplicamos que reserven su lugar registrándose previamente. Para confirmar su asistencia, por favor regístrense &lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032437062&amp;amp;Culture=es-MX"&gt;AQUÍ&lt;/a&gt;.&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;6. &lt;/b&gt;&lt;b&gt;Costo: &lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;El evento no tiene costo.&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;7. &lt;/b&gt;&lt;b&gt;Lenguaje de impartición: &lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;Ingles.&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="157"&gt;&lt;b&gt;8. &lt;/b&gt;&lt;b&gt;Constancia:&lt;/b&gt;&lt;/td&gt;        &lt;td valign="top" width="373"&gt;Se impartirá constancia de asistencia emitida por Microsoft a aquellos emprendedores que cumplan con los 2 días del taller en forma presencial.&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;&lt;b&gt;9. &lt;/b&gt;&lt;b&gt;Agenda&lt;/b&gt;&lt;/p&gt;  &lt;h4&gt;Workshop Agenda: Primer Día&lt;/h4&gt;  &lt;table border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;&lt;b&gt;Timing&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;&lt;b&gt;Content&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;9.00am – 9.15am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Introduction, Meet the Group, Workshop Objectives&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;9.15am – 10.30am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Introduction to the software industry: How it’s the same, why it’s different &lt;/p&gt;          &lt;p&gt;The Market Environment and its Analysis: Managing change and ambiguity&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;10.30am -11:00 am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Morning Tea and Group Discussions&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;11.00am – 12.30am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Building Customer Value and Loyalty: Which Software Business Model?&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;12.30pm – 1.15pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Lunch&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;1.15pm – 3.00pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Leadership and Culture: An introduction for Software CEOs&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;3.00pm – 3.30pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Afternoon Tea&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;3.30pm – 5.00pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Agile Enterprises: The Software Business Strategic Framework&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="142"&gt;         &lt;p&gt;5.00 – 5:15pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="482"&gt;         &lt;p&gt;Close&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;h4&gt;Workshop Agenda: Segundo Día&lt;/h4&gt;  &lt;table border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;&lt;b&gt;Timing&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;&lt;b&gt;Content&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;9.00am – 9.15am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Re-Cap on Day One&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;9.15am – 10.30am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Software Services Marketing and Management&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;10.30am -11:00 am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Morning Tea and Group Discussions&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;11.00am – 12.30am&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Solutions Selling and Managing the Complex Sale&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;12.30pm – 1.15pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Lunch&lt;b&gt;&lt;/b&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;1.15pm – 3.00pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Software Operations: Introduction Application Life Cycle Management&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;3.00pm – 3.30pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Afternoon Tea&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;3.30pm – 4:15pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Benchmarking and Performance Management for both product and Services based Software Business. &lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;4:15pm – 5:00pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Collaboration and Partnering for Success&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="151"&gt;         &lt;p&gt;5.00 – 5:15pm&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="473"&gt;         &lt;p&gt;Close and Evaluation Forms and Survey &lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032437062&amp;amp;Culture=es-MX"&gt;No dejes pasar esta oportunidad y reserva tu lugar.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934050" width="1" height="1"&gt;</description></item><item><title>Looking at Virtual Memory Usage</title><link>http://blogs.msdn.com/bharry/archive/2009/12/08/looking-at-virtual-memory-usage.aspx</link><pubDate>Tue, 08 Dec 2009 14:51:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934048</guid><dc:creator>bharry</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;One of the big problems that I’ve talked about is virtual memory exhaustion and the resulting VS instability.&amp;#160; Today, VS is a 32-bit process – I’m sure that’s going to change (become 64-bit) at some point but it won’t for 2010.&amp;#160; A 32-bit process has 2GB of address space on a 32-bit OS.&amp;#160; You can throw the 3GB switch and get another GB at the cost of taking a GB away from the OS – it works OK but the OS doesn’t always like it – particularly if you are running server components on your machine (like IIS).&amp;#160; If you are on a 64-bit OS, 32-bit processes get a full 4GB of virtual address space without any penalty to the OS – handy eh?&lt;/p&gt;  &lt;p&gt;In the end, many customers are still running on 32-bit OSes and asking them to go change boot parameters (the 3GB switch) just isn’t an appropriate thing for us to do, so we’re focusing on making sure VM works well in the 2GB of address space that many customers have available.&lt;/p&gt;  &lt;p&gt;This can be complicated by Virtual Address space fragmentation.&amp;#160; This is caused by smallish gaps between other virtual address space allocation.&amp;#160; You can reach the point where there’s enough virtual address space left but there’s not enough contiguous space to satisfy allocations.&amp;#160; So saying everything is OK as long as virtual memory allocation stays below 2GB really isn’t realistic.&amp;#160; The app will become unstable well before that.&lt;/p&gt;  &lt;p&gt;Further, any test we do has to take into account that users will always do some things we didn’t expect so running VM all the way up to the threshold and saying “good enough” just isn’t acceptable either.&lt;/p&gt;  &lt;p&gt;So what do you do?&lt;/p&gt;  &lt;p&gt;We’ve started by gathering some “real world apps”.&amp;#160; By this I mean some of you, our customers, have actually given us copies of your large apps.&amp;#160; We’re incredibly grateful for this because they are great tools to ensure that we are staying in touch with the kinds of apps our customers are building and how VS is working for them.&amp;#160; Oh, and we’re using a couple of internal MS apps as well.&amp;#160; We’ve chosen 6 of them (apps of various types: web, WPF, Sharepoint, etc) that are all large and we believe characterize a large portion of our customer base.&lt;/p&gt;  &lt;p&gt;We then choose a set of operations – load the solution, edit some code, design some forms, debug, checkin some changes, etc, etc that represent a realistic end user interaction with each application.&lt;/p&gt;  &lt;p&gt;And lastly, we’ve chosen a threshold or 1.5GB of VM.&amp;#160; We will not consider it acceptable until all 6 of the scenarios are able to execute without ever going over 1.5GB of VM.&amp;#160; We believe this will allow adequate room for users to do things we didn’t anticipate and still have a buffer before getting near the instability threshold.&lt;/p&gt;  &lt;p&gt;Here’s a picture of where we currently stand with the 6 apps (btw, I’ve changed the names of the apps to protect the identity of people we are working with).&amp;#160; Most of these apps were RED when we started the VM effort a couple of months ago.&amp;#160; As you can see we’ve made some good progress but we aren’t done yet.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_thumb_1.png" width="644" height="379" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;Let’s take a look at some detail on one of the “bad ones”.&amp;#160; Here you can see the way we are tracking this.&amp;#160; You can see the “steps” in the scenario, the virtual memory after each step and the comparison to VS 2008 SP1 (for all steps where there is an equivalence).&amp;#160; You’ll see there are more bars here than steps listed, I think that’s an artifact of the slideware (not all steps are listed).&amp;#160; We use this to look for any places where VM jumps significantly or varies substantially from VS 2008 to focus investigations.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_8.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_thumb_3.png" width="644" height="415" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We also plot the VM growth from different builds against each other.&amp;#160; In this case, you can see that in the Nov 11th build (21111) the CB died halfway through the scenario because it ran out of VM and you can see that by Nov 25th (21125) we had improved it so that that not only did it complete but it is generally better than VS 2008 (let us remember that VS 2008 isn’t flawless so we don’t blindly take parity with it as success).&amp;#160; As you can see we still have a bit of work left to do to hit out 1.5GB goal.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_10.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_thumb_4.png" width="644" height="425" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We also track improvements over time from build to build in more of a trend fashion:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_12.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_thumb_5.png" width="644" height="482" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;And lastly we use a “ledger” format for tracking fine grained progress.&amp;#160; This is the best way I’ve found to track this kind of thing: Identify the goal and current status against it.&amp;#160; Identify the fixed currently in progress and the expected improvements (generally an informed guess) and identify the areas that are under investigation (the things that just don’t look right) and best wild ass guess you can make about how much improvement “ought” to be available based on what it is vs what you think it should be.&amp;#160; This gives you a way to see things moving through the pipeline, understand progress towards the goal and make priority trade-offs.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_16.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/bharry/WindowsLiveWriter/LookingatVirtualMemoryUsage_8607/image_thumb_7.png" width="644" height="476" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Hopefully that gives you some insight into how we are thinking about the VM issue and the progress we are making.&lt;/p&gt;  &lt;p&gt;Brian&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934048" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/bharry/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item><item><title>SQL112AL: How to position SQL Server consolidation to your customers Live Meeting on Dec 10, 11:00 am – 12:00 pm EST</title><link>http://blogs.msdn.com/sqlserver2008trainingcanada/archive/2009/12/08/sql112al-how-to-position-sql-server-consolidation-to-your-customers-live-meeting-on-dec-10-11-00-am-12-00-pm-est.aspx</link><pubDate>Tue, 08 Dec 2009 14:47:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934044</guid><dc:creator>mariyi</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;SQL Server consolidation is a key industry trend that enables IT organizations to reduce expenses and carbon footprint. However, not all organizations have adopted consolidation whole heartedly. A clear articulation of the benefits of consolidation and the associated SQL Server features that enable these benefits may help customers to warm up to the idea of SQL Server consolidation. In this session we will attempt to create such a positioning for SQL Server consolidation. Presenter: Sambit Samal - Senior Product Manager&lt;/p&gt;  &lt;p&gt;&lt;a href="https://training.partner.microsoft.com/learning/app/management/registrationex/LMS_Registration.aspx?UserMode=0&amp;amp;Mode=0&amp;amp;ActivityID=565576"&gt;&lt;strong&gt;Click here to register for the training&lt;/strong&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoftlearningplans.com/"&gt;For additional training resources click here&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/sqlserver2008trainingcanada/archive/2009/03/27/sales-training-resources-on-sql-server-2008.aspx"&gt;For sales training resources on SQL Server 2008 click here&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/sqlserver2008trainingcanada/archive/2009/03/27/implementer-training-resources-on-sql-server-2008.aspx"&gt;For implementer training resources on SQL Server 2008 click here&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/sqlserver2008trainingcanada/archive/2009/03/27/architect-training-resources-on-sql-server-2008.aspx"&gt;For architect training resources on SQL Server 2008 click here&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/sqlserver2008trainingcanada/archive/2009/03/27/developer-training-resources-on-sql-server-2008.aspx"&gt;For developer training resources on SQL Server 2008 click here&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934044" width="1" height="1"&gt;</description></item><item><title>Microsoft Dynamics Partner Leadership Workshops</title><link>http://blogs.msdn.com/dynpartnercommunity/archive/2009/12/08/microsoft-dynamics-partner-leadership-workshops.aspx</link><pubDate>Tue, 08 Dec 2009 14:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934046</guid><dc:creator>kmachayy</dc:creator><slash:comments>0</slash:comments><description>Microsoft is pleased to offer the Partner Leadership Workshop led by Salesworks, Inc. Register Now, and position yourself and your practice for a successful future! Many partner practices provide their owners with a good living, but fall far short of their potential in terms of achieving maximum growth, creating significant ongoing financial returns, and meaningful financial rewards when it comes time for the owners to exit the business. This one-and-a-half day offering is designed to help you build...(&lt;a href="http://blogs.msdn.com/dynpartnercommunity/archive/2009/12/08/microsoft-dynamics-partner-leadership-workshops.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934046" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Dynamics/default.aspx">Dynamics</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Training/default.aspx">Training</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Sales/default.aspx">Sales</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Marketing/default.aspx">Marketing</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Tools/default.aspx">Tools</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Industry/default.aspx">Industry</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Services/default.aspx">Services</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/Competition/default.aspx">Competition</category><category domain="http://blogs.msdn.com/dynpartnercommunity/archive/tags/ROI/default.aspx">ROI</category></item><item><title>William Stanek: Fun with Windows Media Player 12 and Windows 7</title><link>http://blogs.msdn.com/microsoft_press/archive/2009/12/08/william-stanek-fun-with-windows-media-player-12-and-windows-7.aspx</link><pubDate>Tue, 08 Dec 2009 14:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9931203</guid><dc:creator>devonm</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;William here. Have you tried Windows Media Player 12 yet? If you haven’t, I think you should! 
&lt;P&gt;WMP 12 is the version that ships with Windows 7. Besides a cool new look, shown in the figure below, what I love most about this player is that is plays all of my favorite media formats. Finally—and I do mean all of my favorites. 
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image001_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image001_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image001 border=0 alt=clip_image001 src="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image001_thumb.jpg" width=550 height=416 mce_src="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image001_thumb.jpg"&gt;&lt;/A&gt; 
&lt;P&gt;That means not only does it play WMV, WMA, MP3, AVI, and MOV, but it also plays 3GP, AAC, AVCHD, MPEG-4, DivX, and Xvid files. IMHO, support for Advanced Audio Coding (AAC) and MPEG-4 (MP4) is a HUGE improvement. Why? 
&lt;P&gt;Although MP3 is the audio format most everyone recognizes, AAC actually is nearly as widely used because AAC is/was the default format for the Apple iPod. AAC is one of several audio coding formats defined by the International Standards Organization (ISO) for MPEG. AAC was first specified as MPEG-2 AAC, and then enhanced and extended within MPEG-4. Apple’s popular iTunes music service uses the AAC format. 
&lt;P&gt;AAC uses a perceptual coding technique to compress digital audio files. AAC is similar to MP3, but offers a number of advantages designed to improve audio quality, including higher-efficiency compression, better handling of audio frequencies above 16 kHz, and support for higher resolution audio at up to 96 kHz. The improved efficiency of AAC files makes it a better choice than MP3. 
&lt;P&gt;&lt;B&gt;Note: &lt;/B&gt;Essentially, AAC is MPEG-4, but to be fully and technically accurate I must state that AAC is at the core of MPEG-4 and is the codec of choice for Internet and digital audio encoded to comply with MPEG-4. (AAC is also at the core of 3GPP and 3GPP2.) 
&lt;P&gt;In addition to the enhanced media support, I also like the new look for Now Playing, shown in the figure below. This new less-is-more approach allows you to quickly see what’s playing, navigate and control the current album or playlist and return to the library if you want to. You also can keep Now Playing on top of other windows if you want to. 
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image002_2.gif" mce_href="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image002_2.gif"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image002_thumb.gif" width=307 height=333 mce_src="http://blogs.msdn.com/blogfiles/microsoft_press/WindowsLiveWriter/WilliamStanekFunwithWindowsMediaPlayer12_FBD1/clip_image002_thumb.gif"&gt;&lt;/A&gt; 
&lt;P&gt;If you’re using Windows Media Player 12, I hope you’ll post a comment or send me an email telling me about your favorite feature. 
&lt;P&gt;Thanks for reading! Tune in next time, when I talk about importing music and other media. 
&lt;P&gt;William R. Stanek 
&lt;P&gt;williamstanek at aol dot com 
&lt;P&gt;&lt;A href="http://www.twitter.com/WilliamStanek" mce_href="http://www.twitter.com/WilliamStanek"&gt;http://www.twitter.com/WilliamStanek&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9931203" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/microsoft_press/archive/tags/Windows+7/default.aspx">Windows 7</category><category domain="http://blogs.msdn.com/microsoft_press/archive/tags/Home+_2600_amp_3B00_+Office+Users/default.aspx">Home &amp;amp; Office Users</category><category domain="http://blogs.msdn.com/microsoft_press/archive/tags/William+Stanek/default.aspx">William Stanek</category></item><item><title>SQL112AL: How to position SQL Server consolidation to your customers Live Meeting on Dec 10, 11:00 am – 12:00 pm EST</title><link>http://blogs.msdn.com/mscantraining/archive/2009/12/08/9934041.aspx</link><pubDate>Tue, 08 Dec 2009 14:40:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934041</guid><dc:creator>airleeg</dc:creator><slash:comments>0</slash:comments><description>SQL Server consolidation is a key industry trend that enables IT organizations to reduce expenses and carbon footprint. However, not all organizations have adopted consolidation whole heartedly. A clear articulation of the benefits of consolidation and the associated SQL Server features that enable these benefits may help customers to warm up to the idea of SQL Server consolidation. In this session we will attempt to create such a positioning for SQL Server consolidation. Presenter: Sambit Samal...(&lt;a href="http://blogs.msdn.com/mscantraining/archive/2009/12/08/9934041.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934041" width="1" height="1"&gt;</description></item><item><title>Innovation Showcase Headlines – 12/07/2009</title><link>http://blogs.msdn.com/kenjones/archive/2009/12/08/innovation-showcase-headlines-12-07-2009.aspx</link><pubDate>Tue, 08 Dec 2009 14:33:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934037</guid><dc:creator>kenjon13</dc:creator><slash:comments>0</slash:comments><description>&lt;h4&gt;&amp;#160;&lt;/h4&gt;  &lt;h4&gt;&lt;a href="http://blogs.msdn.com/innov8showcase"&gt;&lt;img title="InnovationShowcaseBadge3" border="0" alt="InnovationShowcaseBadge3" src="http://blogs.msdn.com/blogfiles/bobfamiliar/WindowsLiveWriter/InnovationShowcaseHeadlines12072009_121D7/InnovationShowcaseBadge3_1.png" width="440" height="104" /&gt;&lt;/a&gt;&lt;/h4&gt;  &lt;p&gt;This weeks Innovation Showcase Headlines features news from the PDC09, the latest ARCast episode, a “Dallas” deep dive from Jim O’Neil, a Silverlight 4 overview from Jeff Barnes and Azure pricing info detailed by Allan Da Costa Pinto. &lt;/p&gt; &lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/01/azure-data-as-a-service-jim-o-neil-details-dallas.aspx"&gt;&lt;/a&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/01/azure-data-as-a-service-jim-o-neil-details-dallas.aspx"&gt;&lt;/a&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/01/azure-data-as-a-service-jim-o-neil-details-dallas.aspx"&gt;&lt;/a&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/01/azure-data-as-a-service-jim-o-neil-details-dallas.aspx"&gt;   &lt;h6&gt;&lt;/h6&gt;    &lt;ul&gt;     &lt;li&gt;&lt;/li&gt;     &lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/01/azure-data-as-a-service-jim-o-neil-details-dallas.aspx"&gt;&lt;font color="#008000" size="3"&gt;Azure Data as a Service – Jim O’Neil details Dallas&lt;/font&gt;&lt;/a&gt;&lt;/a&gt;&lt;/ul&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/06/arcast-tv-vishwas-lele-cto-of-applied-information-sciences-on-cloud-architecture-patterns.aspx"&gt;&lt;font color="#008000" size="3"&gt;ARCast.TV - Vishwas Lele, CTO of Applied Information Sciences, on Cloud Architecture Patterns&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/06/pluralsight-launches-net-podcast-series.aspx"&gt;&lt;font color="#008000" size="3"&gt;Pluralsight launches .NET Podcast Series&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/06/developing-better-user-experiences-with-internet-explorer-8.aspx"&gt;&lt;font color="#008000" size="3"&gt;Developing Better User Experiences with Internet Explorer 8&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/updated-msdn-parallel-computing-developer-center.aspx"&gt;&lt;font color="#008000" size="3"&gt;Updated MSDN Parallel Computing Developer Center&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/office-2010-workshop-materials.aspx"&gt;&lt;font color="#008000" size="3"&gt;Office 2010 Workshop Materials&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/top-5-reasons-for-it-pros-to-deploy-ie8.aspx"&gt;&lt;font color="#008000" size="3"&gt;Top 5 reasons for IT Pros to deploy IE8&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/tap-into-the-power-of-the-windows-7-taskbar.aspx"&gt;&lt;font color="#008000" size="3"&gt;Tap into the Power of the Windows 7 Taskbar&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/silverlight-3-4-advanced-performance-profiling-techniques.aspx"&gt;&lt;font color="#008000" size="3"&gt;Silverlight 3/4: Advanced Performance / Profiling Techniques&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/silverlight-4-feature-montage-via-code-samples-presentation-deck.aspx"&gt;&lt;font color="#008000" size="3"&gt;Silverlight 4 – Feature Montage via Code Samples &amp;amp; Presentation Deck&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/windows-azure-platform-patterns-pricing-and-promotions.aspx"&gt;&lt;font color="#008000" size="3"&gt;Windows Azure Platform Patterns, Pricing and Promotions&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/multitouch-capabilities-in-windows-7.aspx"&gt;&lt;font color="#008000" size="3"&gt;MultiTouch Capabilities in Windows 7&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/windows-azure-present-and-future.aspx"&gt;&lt;font color="#008000" size="3"&gt;Windows Azure Present and Future&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;     &lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/leverage-microsoft-net-wcf-for-your-enterprise-soa-webcast.aspx"&gt;&lt;/a&gt;      &lt;li&gt;&lt;/li&gt;     &lt;a href="http://blogs.msdn.com/innov8showcase/archive/2009/12/07/leverage-microsoft-net-wcf-for-your-enterprise-soa-webcast.aspx"&gt;&lt;font color="#008000" size="3"&gt;Leverage Microsoft .Net and WCF for Your Enterprise SOA - WebCast&lt;/font&gt;&lt;/a&gt;&lt;/a&gt;&lt;/li&gt; &lt;/a&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/innov8showcase"&gt;&lt;img title="InnovationShowcaseIcon" border="0" alt="InnovationShowcaseIcon" src="http://blogs.msdn.com/blogfiles/bobfamiliar/WindowsLiveWriter/InnovationShowcaseHeadlines12072009_121D7/InnovationShowcaseIcon_1.png" width="36" height="31" /&gt;&lt;/a&gt;&amp;#160; &lt;a href="http://blogs.msdn.com/innov8showcase"&gt;Visit&lt;/a&gt; the Innovation Showcase Site&lt;/p&gt;  &lt;p&gt;&lt;a href="http://feeds.feedburner.com/InnovationShowcase"&gt;&lt;img title="rss-icon" border="0" alt="rss-icon" src="http://blogs.msdn.com/blogfiles/bobfamiliar/WindowsLiveWriter/InnovationShowcaseHeadlines12072009_121D7/rss-icon_3.jpg" width="36" height="36" /&gt;&lt;/a&gt;&amp;#160; &lt;a href="http://feeds.feedburner.com/InnovationShowcase"&gt;Subscribe&lt;/a&gt; the Innovation Showcase RSS Feed&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.twitter.com/innov8showcase"&gt;&lt;img title="TwitterLogo2" border="0" alt="TwitterLogo2" src="http://blogs.msdn.com/blogfiles/bobfamiliar/WindowsLiveWriter/InnovationShowcaseHeadlines12072009_121D7/TwitterLogo2_1.png" width="36" height="37" /&gt;&lt;/a&gt;&amp;#160; &lt;a href="http://www.twitter.com/innov8showcase"&gt;Follow&lt;/a&gt; Innovation Showcase on Twitter&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934037" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/kenjones/archive/tags/Windows+7/default.aspx">Windows 7</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/Windows+Azure/default.aspx">Windows Azure</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/Visual+Studio+2010/default.aspx">Visual Studio 2010</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/Internet+Explorer+8/default.aspx">Internet Explorer 8</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/ARCast/default.aspx">ARCast</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/Silverlight+4/default.aspx">Silverlight 4</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/Azure+AppFabric/default.aspx">Azure AppFabric</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/Office+2010/default.aspx">Office 2010</category><category domain="http://blogs.msdn.com/kenjones/archive/tags/WCF/default.aspx">WCF</category></item><item><title>aplicação para Surface é premiada :)</title><link>http://blogs.msdn.com/renedepaula/archive/2009/12/08/aplica-o-para-surface-premiada.aspx</link><pubDate>Tue, 08 Dec 2009 14:33:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934035</guid><dc:creator>rene</dc:creator><slash:comments>0</slash:comments><description>acabo de receber um email do meu colega na Alemanha com a seguinte notícia: Munich based UX agency designaffairs ( www.designaffairs.de ) has been prized for the DATEV surface application with the red dot award 2009: communication ( http://www.red-dot.de/?area=article&amp;amp;article=38 ). The application was developed to enable tax consultants to show their clients interactive tabular reports and analysis in a very convenient and vivid figure on a surface table. vejam o vídeo: muito bacana a aplicação.&amp;#160;...(&lt;a href="http://blogs.msdn.com/renedepaula/archive/2009/12/08/aplica-o-para-surface-premiada.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934035" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/renedepaula/archive/tags/video/default.aspx">video</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/design/default.aspx">design</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/ria/default.aspx">ria</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/premio/default.aspx">premio</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/surface/default.aspx">surface</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/rich+interactive+application/default.aspx">rich interactive application</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/UAU/default.aspx">UAU</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/wow/default.aspx">wow</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/natural+user+interface/default.aspx">natural user interface</category><category domain="http://blogs.msdn.com/renedepaula/archive/tags/LOB/default.aspx">LOB</category></item><item><title>Template du Jour: CD &amp; DVD gift labels</title><link>http://blogs.msdn.com/inside_office_online/archive/2009/12/08/template-du-jour-cd-dvd-gift-labels.aspx</link><pubDate>Tue, 08 Dec 2009 14:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933504</guid><dc:creator>OfficeOnline</dc:creator><slash:comments>0</slash:comments><description>This week’s template is a CD &amp;amp; DVD gift label submitted by one of our top contributors, INGTERNET , who offers many creative templates. You can download this template now , or get more free templates or free clip art &amp;amp; photos from Office.com. Find more top templates at the Templates team blog . Have you designed a special template? Share you own creative templates here . You never know when we might feature yours! tweetmeme_url = 'http://blogs.msdn.com/inside_office_online/archive/2009/12/08/template-du-jour-cd-dvd-gift-labels.aspx';tweetmeme_style...(&lt;a href="http://blogs.msdn.com/inside_office_online/archive/2009/12/08/template-du-jour-cd-dvd-gift-labels.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933504" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/inside_office_online/archive/tags/template+du+jour/default.aspx">template du jour</category><category domain="http://blogs.msdn.com/inside_office_online/archive/tags/Top+Templates/default.aspx">Top Templates</category><category domain="http://blogs.msdn.com/inside_office_online/archive/tags/CD+label/default.aspx">CD label</category></item><item><title>Eneta kutsub Visual Studio 2010 seminaridele</title><link>http://blogs.msdn.com/evangelism/archive/2009/12/08/eneta-kutsub-visual-studio-2010-seminaridele.aspx</link><pubDate>Tue, 08 Dec 2009 14:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934026</guid><dc:creator>asirel</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;A title="Eneta esitleb: Visual Studio 2010 seminaride seeria" href="http://www.eneta.ee/" mce_href="http://www.eneta.ee"&gt;&lt;IMG style="MARGIN: 0px 0px 10px 10px; DISPLAY: inline" class=blog_img_suur title="Eneta esitleb: Visual Studio 2010 seminaride seeria" alt="Eneta esitleb: Visual Studio 2010 seminaride seeria" align=right src="http://blogs.msdn.com/blogfiles/evangelism/WindowsLiveWriter/EnetakutsubVisualStudio2010seminarile_C9D5/image_439b270e-5c71-4d97-87b4-9a54afb876fa.png" width=260 height=149 mce_src="http://blogs.msdn.com/blogfiles/evangelism/WindowsLiveWriter/EnetakutsubVisualStudio2010seminarile_C9D5/image_439b270e-5c71-4d97-87b4-9a54afb876fa.png"&gt;&lt;/A&gt;Eneta saab järgmisest nädalast portaalile lisaks uue mõõtme, nimelt leiab aset esimene üritus Visual Studio 2010 arendusseminaride seeriast. Kokku on tulemas 5 sündmust ja lisan avaürituse kutse:&lt;/P&gt;
&lt;P&gt;Gunnar Peipmani (&lt;A href="http://www.dt.ee/" mce_href="http://www.dt.ee"&gt;Developers Team, DT&lt;/A&gt;) esinemisel toimub juba järgmisel nädal Visual Studio 2010 arendusseminaride seeria avaloeng. Tutvustame uut Visual Studio 2010 kasutajaliidest, mis pakub välja palju uut ja põnevat. Seminari raames teeme ülevaate uuest Visual Studiost ja heidame näidete varal pilgu peale olulisematele uuendustele. Ühtlasi tutvustame järgmiseid Visual Studio 2010 seeriasse kuuluvaid sündmuseid. Seminar on ülevaatlik ning suunatud kõikidele huvilistele, kelle jaoks Visual Studio on oluline töövahend.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;16. detsember, kolmapäev &lt;/LI&gt;
&lt;LI&gt;kell 18:00 – 19:30 &lt;/LI&gt;
&lt;LI&gt;IT Kolledž, Raja 4c, ruum 314 (&lt;A href="http://kaart.otsing.delfi.ee/index.php?id=1&amp;amp;bbox=537172.481242149,6583770.69825402,538523.067179649,6584983.58887902&amp;amp;e=537736.4460859&amp;amp;n=6584353.70606652&amp;amp;name=IT%20Kolled%C5%BE&amp;amp;symbol=smiley&amp;amp;color=0077ff&amp;amp;alpha=80&amp;amp;search=%7B%22page%22:0,%22query%22:%7B%22text%22:%22raja%204c%22,%22provider%22:%22address%22%7D,%22object%22:%7B%22e%22:537737.9109296495,%22n%22:6584350.043957149,%22ttip%22:%22Raja%204C,%20Tallinn%20linn,%20Harju%20maakond%22%7D%7D#tc3" mce_href="http://kaart.otsing.delfi.ee/index.php?id=1&amp;amp;bbox=537172.481242149,6583770.69825402,538523.067179649,6584983.58887902&amp;amp;e=537736.4460859&amp;amp;n=6584353.70606652&amp;amp;name=IT%20Kolled%C5%BE&amp;amp;symbol=smiley&amp;amp;color=0077ff&amp;amp;alpha=80&amp;amp;search=%7B%22page%22:0,%22query%22:%7B%22text%22:%22raja%204c%22,%22provider%22:%22address%22%7D,%22object%22:%7B%22e%22:537737.9109296495,%22n%22:6584350.043957149,%22ttip%22:%22Raja%204C,%20Tallinn%20linn,%20Harju%20maakond%22%7D%7D#tc3"&gt;kaart&lt;/A&gt;) &lt;/LI&gt;
&lt;LI&gt;sihtgrupp: arendajad &lt;/LI&gt;
&lt;LI&gt;tehniline tase: 100-200 &lt;/LI&gt;
&lt;LI&gt;slaidid vs. demo: 50/50 &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;B&gt;Registreeri &lt;/B&gt;end osavõtjaks hiljemalt 14.12 aadressil&amp;nbsp;&lt;A href="mailto:estinfo@microsoft.com" mce_href="mailto:estinfo@microsoft.com"&gt;estinfo@microsoft.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Kogu Visual Studio seminaride seeriat puudutav arutelu toimub Eneta portaali foorumis &lt;A title="Eneta foorum: Visual Studio 2010 seminaride seeria" href="http://www.eneta.ee/foorum/Lehed/default.aspx?control=ViewMessages&amp;amp;topic=95" mce_href="http://www.eneta.ee/foorum/Lehed/default.aspx?control=ViewMessages&amp;amp;topic=95"&gt;www.eneta.ee/foorum&lt;/A&gt;, kust leiad lisainfot ka järgmiste sündmuste kohta.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934026" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/evangelism/archive/tags/arendus/default.aspx">arendus</category><category domain="http://blogs.msdn.com/evangelism/archive/tags/_26002300_252_3B00_ritus/default.aspx">&amp;#252;ritus</category><category domain="http://blogs.msdn.com/evangelism/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/evangelism/archive/tags/.NET+raamistik/default.aspx">.NET raamistik</category><category domain="http://blogs.msdn.com/evangelism/archive/tags/Eneta/default.aspx">Eneta</category></item><item><title>Innovation Days – Evento Microsoft em São Paulo</title><link>http://blogs.msdn.com/jpclementi/archive/2009/12/08/innovation-days-evento-microsoft-em-s-o-paulo.aspx</link><pubDate>Tue, 08 Dec 2009 13:43:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934014</guid><dc:creator>JP Clementi</dc:creator><slash:comments>0</slash:comments><description>Venha conhecer e aprender sobre os novos produtos da Microsoft com palestras gratuitas de profissionais da própria Microsoft e MVPs. O Innovation Days é também uma grande oportunidade para discutir sobre tecnologia e fazer networking com outros membros da comunidade que atuam em empresas de desenvolvimento e também com os integrantes da equipe da Microsoft. Inscrições limitadas através do link : http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032437050&amp;amp;Culture=pt-BR Data : Sexta-feira,...(&lt;a href="http://blogs.msdn.com/jpclementi/archive/2009/12/08/innovation-days-evento-microsoft-em-s-o-paulo.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934014" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jpclementi/archive/tags/Eventos+Microsoft/default.aspx">Eventos Microsoft</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/MSDN+_2600_amp_3B00_+TechNet/default.aspx">MSDN &amp;amp; TechNet</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/Channel+9/default.aspx">Channel 9</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/Tecnologia/default.aspx">Tecnologia</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/Visual+Studio+2010/default.aspx">Visual Studio 2010</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/SharePoint+2010/default.aspx">SharePoint 2010</category><category domain="http://blogs.msdn.com/jpclementi/archive/tags/.NET+Framework+4.0/default.aspx">.NET Framework 4.0</category></item><item><title>Connected Show #21 – PDC 2009 Pizza Party</title><link>http://blogs.msdn.com/peterlau/archive/2009/12/08/connected-show-21-pdc-2009-pizza-party.aspx</link><pubDate>Tue, 08 Dec 2009 13:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933901</guid><dc:creator>peterlau</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;a href="http://dominos.com"&gt;&lt;img style="border-right-width: 0px; margin: 3px 3px 3px 5px; 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/peterlau/WindowsLiveWriter/ConnectedShow21PDC2009PizzaParty_645/image_3.png" width="199" height="198" /&gt;&lt;/a&gt; In this episode guests &lt;a href="http://blogs.msdn.com/interoperability"&gt;Sumit Chawla&lt;/a&gt; (Microsoft Interop Team) &amp;amp; Tim Wise (Dominos Pizza) join Peter to discuss offloading a Java/Tomcat server infrastructure to Windows Azure to save Dominos money (Interview starts at 40:31).&amp;#160; Sumit also covers the latest Azure interoperability announcements from Web 2 Expo in NYC. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.garyrusso.org"&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/peterlau/WindowsLiveWriter/ConnectedShow21PDC2009PizzaParty_645/image_8.png" width="218" height="164" /&gt;&lt;/a&gt; &lt;a href="http://girldeveloper.com"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/peterlau/WindowsLiveWriter/ConnectedShow21PDC2009PizzaParty_645/image_9.png" width="134" height="164" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Guest hosts &lt;a href="http://www.garyrusso.org"&gt;Gary Russo&lt;/a&gt; and &lt;a href="http://girldeveloper.com"&gt;Sara Chipps&lt;/a&gt; also join Peter for a wrap up of PDC 2009, including Azure, Silverlight 4, MEF on Mono, and Dallas.&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;h2&gt;&lt;a href="http://bit.ly/8jrSHW"&gt;CLICK HERE TO LISTEN!&lt;/a&gt;&lt;/h2&gt;  &lt;p&gt;&lt;strong&gt;Show Notes &amp;amp; Resources:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Gary’s Blog: &lt;a href="http://pocketxp.spaces.live.com/"&gt;http://pocketxp.spaces.live.com/&lt;/a&gt;     &lt;br /&gt;Sara’s Blog: &lt;a href="http://girldeveloper.com"&gt;http://girldeveloper.com&lt;/a&gt;     &lt;br /&gt;Sara’s New URL aggregator: &lt;a href="http://bundl.it"&gt;http://bundl.it&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Join the WAN Parties!      &lt;br /&gt;&lt;/b&gt;Sara hosts a WAN party each Wednesday at 7:30 PM Eastern where they discuss and debate current development topics and issues. For more info join us at &lt;a href="http://TinyChat.com/wanparty"&gt;http://TinyChat.com/wanparty&lt;/a&gt; every Wednesday. &lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Items Discussed during the PDC 09 Wrap-up with Gary &amp;amp; Sara:&lt;/b&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Check out the PDC website for recordings of all the keynotes and breakout sessions: &lt;a href="http://microsoftpdc.com/"&gt;http://microsoftpdc.com/&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Microsoft Web PI &amp;amp; Application Gallery:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Microsoft Web PI: &lt;a href="http://www.microsoft.com/web"&gt;http://www.microsoft.com/web&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Microsoft Web Gallery: &lt;a href="http://www.microsoft.com/web/gallery/"&gt;http://www.microsoft.com/web/gallery/&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Java deployment on Windows Azure:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Steve Marx: &lt;a href="http://blog.smarx.com/"&gt;http://blog.smarx.com/&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Steve’s Sessions @ PDC: &lt;a href="http://blog.smarx.com/posts/windows-azure-at-pdc-2009"&gt;http://blog.smarx.com/posts/windows-azure-at-pdc-2009&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Managed Extensibility Framework:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Glenn Block on MEF + Mono @ PDC: &lt;a href="http://microsoftpdc.com/Sessions/FT24"&gt;http://microsoftpdc.com/Sessions/FT24&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Glenn talks to Tim Heuer about MEF + Silverlight: &lt;a href="http://timheuer.com/blog/archive/2009/11/30/glenn-block-on-mef-in-silverlight.aspx"&gt;http://timheuer.com/blog/archive/2009/11/30/glenn-block-on-mef-in-silverlight.aspx&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Silverlight 4 Stuff:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Tim Heuer’s monster post on Silverlight 4 Features: &lt;a href="http://timheuer.com/blog/archive/2009/11/18/whats-new-in-silverlight-4-complete-guide-new-features.aspx"&gt;http://timheuer.com/blog/archive/2009/11/18/whats-new-in-silverlight-4-complete-guide-new-features.aspx&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Tim Heuer’s list of Silverlight 4 links: &lt;a href="http://timheuer.com/blog/archive/2009/11/22/pdc-silverlight-resources-link-dump-learn-silverlight.aspx"&gt;http://timheuer.com/blog/archive/2009/11/22/pdc-silverlight-resources-link-dump-learn-silverlight.aspx&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;VS 2010 Coded UI Test Videos:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;&lt;a href="http://blogs.msdn.com/dannawi/archive/2009/05/06/visual-studio-2010-function-ui-testing.aspx"&gt;http://blogs.msdn.com/dannawi/archive/2009/05/06/visual-studio-2010-function-ui-testing.aspx&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;&lt;a href="http://channel9.msdn.com/posts/TheOliver/Visual-Studio-Team-System-2010-Manual-Test-To-Coded-UI-Test/"&gt;http://channel9.msdn.com/posts/TheOliver/Visual-Studio-Team-System-2010-Manual-Test-To-Coded-UI-Test/&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;&lt;a href="http://channel9.msdn.com/posts/Charles_Sterling/UI-Automation-Testing-with-Visual-Studio-2010/"&gt;http://channel9.msdn.com/posts/Charles_Sterling/UI-Automation-Testing-with-Visual-Studio-2010/&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;WCF RIA Services:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Brad Abrams Blog: &lt;a href="http://blogs.msdn.com/BradA/"&gt;http://blogs.msdn.com/BradA/&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Brad Abrams PDC Sesssion on SL4 + RIA Services: &lt;a href="http://microsoftpdc.com/Sessions/CL21"&gt;http://microsoftpdc.com/Sessions/CL21&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Brad’s Blog ‘monster’ post detailing his PDC talk: &lt;a href="http://blogs.msdn.com/brada/archive/2009/11/27/pdc09-talk-building-amazing-business-applications-with-silverlight-4-ria-services-and-visual-studio-2010-now-in-visual-basic.aspx"&gt;http://blogs.msdn.com/brada/archive/2009/11/27/pdc09-talk-building-amazing-business-applications-with-silverlight-4-ria-services-and-visual-studio-2010-now-in-visual-basic.aspx&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Microsoft + Open Source Birds of A Feather @ PDC: &lt;a href="http://microsoftpdc.com/Sessions/BOF109"&gt;http://microsoftpdc.com/Sessions/BOF109&lt;/a&gt; (no content)&lt;/p&gt;    &lt;p&gt;Microsoft Codename “Dallas”:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;&lt;a href="http://pinpoint.microsoft.com/en-US/Dallas"&gt;http://pinpoint.microsoft.com/en-US/Dallas&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;&lt;a href="http://www.microsoft.com/windowsazure/developers/dallas/"&gt;http://www.microsoft.com/windowsazure/developers/dallas/&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;&lt;a href="http://www.microsoft.com/WindowsAzure/dallas/"&gt;http://www.microsoft.com/WindowsAzure/dallas/&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;NYC Big Apps Contest: &lt;a href="http://www.nycbigapps.com/"&gt;http://www.nycbigapps.com/&lt;/a&gt;       &lt;br /&gt;Open Government NYC Meetup: &lt;a href="http://www.meetup.com/opengovnyc/"&gt;http://www.meetup.com/opengovnyc/&lt;/a&gt;       &lt;br /&gt;NYC.Gov: &lt;a href="http://www.nyc.gov"&gt;http://www.nyc.gov&lt;/a&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;b&gt;Items discussed during Sumit &amp;amp; Tim’s Interview:&lt;/b&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Interoperability @ Microsoft Team Sites:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;&lt;a href="http://www.interoperabilitybridges.com"&gt;http://www.interoperabilitybridges.com&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;&lt;a href="http://blogs.msdn.com/interoperability"&gt;http://blogs.msdn.com/interoperability&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Interoperability News @ PDC 09 - Recap: &lt;a href="http://blogs.msdn.com/interoperability/archive/2009/11/20/interoperability-at-pdc09-azure-php-java-ruby-mysql.aspx"&gt;http://blogs.msdn.com/interoperability/archive/2009/11/20/interoperability-at-pdc09-azure-php-java-ruby-mysql.aspx&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Sumit Chawla &amp;amp; Tim Wise @ Web 2 Expo NYC:&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;&lt;a href="http://www.web2expo.com/webexny2009/public/schedule/detail/10924"&gt;http://www.web2expo.com/webexny2009/public/schedule/detail/10924&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;&lt;a href="http://blogs.msdn.com/interoperability/archive/2009/11/18/php-developers-get-more-choices-with-windows-azure-bing-and-sql-azure.aspx"&gt;http://blogs.msdn.com/interoperability/archive/2009/11/18/php-developers-get-more-choices-with-windows-azure-bing-and-sql-azure.aspx&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Domino’s Demonstrates Tomcat Site on Windows Azure: &lt;a href="http://blogs.msdn.com/jonbox/archive/2009/11/17/domino-s-demonstrates-tomcat-site-on-windows-azure.aspx"&gt;http://blogs.msdn.com/jonbox/archive/2009/11/17/domino-s-demonstrates-tomcat-site-on-windows-azure.aspx&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Windows Azure platform AppFabric SDK for PHP: &lt;a href="http://blogs.msdn.com/interoperability/archive/2009/11/18/php-developers-get-an-sdk-for-the-windows-azure-platform-appfabric.aspx"&gt;http://blogs.msdn.com/interoperability/archive/2009/11/18/php-developers-get-an-sdk-for-the-windows-azure-platform-appfabric.aspx&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Bing 404 Web Page Error Toolkit for PHP: &lt;a href="http://blogs.msdn.com/interoperability/archive/2009/11/18/bing-search-helps-php-developers-remedy-404-error-pages.aspx"&gt;http://blogs.msdn.com/interoperability/archive/2009/11/18/bing-search-helps-php-developers-remedy-404-error-pages.aspx&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;SQL CRUD Application Wizard for PHP: &lt;a href="http://blogs.msdn.com/interoperability/archive/2009/11/18/building-php-simple-database-applications-for-sql-server-windows-azure-storage-and-sql-azure.aspx"&gt;http://blogs.msdn.com/interoperability/archive/2009/11/18/building-php-simple-database-applications-for-sql-server-windows-azure-storage-and-sql-azure.aspx&lt;/a&gt;&lt;/p&gt; &lt;/blockquote&gt; &lt;img src="http://www.myworldmaps.net/map.ashx/31241c92-b1f5-4fbb-a1c0-25b70c921fc4/ping" width="1" height="1" /&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933901" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/peterlau/archive/tags/Announcements/default.aspx">Announcements</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/PHP/default.aspx">PHP</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Tech+Interop/default.aspx">Tech Interop</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Java/default.aspx">Java</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/F_2300_/default.aspx">F#</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Windows+Azure/default.aspx">Windows Azure</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Cloud+Computing/default.aspx">Cloud Computing</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Connected+Show/default.aspx">Connected Show</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Mono/default.aspx">Mono</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/SQL+Azure/default.aspx">SQL Azure</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/CodePlex+Foundation/default.aspx">CodePlex Foundation</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/Open+Source/default.aspx">Open Source</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/PDC+2009/default.aspx">PDC 2009</category><category domain="http://blogs.msdn.com/peterlau/archive/tags/PDC/default.aspx">PDC</category></item><item><title>Семинар «Microsoft Windows Embedded: будущее устройств уже сегодня!»</title><link>http://blogs.msdn.com/rudevnews/archive/2009/12/08/microsoft-windows-embedded.aspx</link><pubDate>Tue, 08 Dec 2009 13:25:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934011</guid><dc:creator>Daniel Kornev [MSFT]</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Компания «Кварта Технологии» приглашает принять участие в бесплатном семинаре «Microsoft Windows Embedded: будущее устройств уже сегодня!». Семинар пройдет 15 декабря в Санкт-Петербурге.&lt;/p&gt;  &lt;p&gt;Мероприятие организовано для производителей интеллектуальных устройств и сборщиков аппаратных платформ на базе встраиваемых операционных систем и представляет интерес как для бизнес-руководителей: директоров компаний, директоров по развитию бизнеса, менеджеров проектов, продакт менеджеров, так и для технических специалистов: ведущих инженеров и разработчиков, начальников производств, главных технологов, технических директоров.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.quarta.ru/company/events/view/36101"&gt;Подробнее…&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934011" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/rudevnews/archive/tags/_1C04350440043E043F04400438044F04420438044F04_/default.aspx">Мероприятия</category><category domain="http://blogs.msdn.com/rudevnews/archive/tags/News/default.aspx">News</category><category domain="http://blogs.msdn.com/rudevnews/archive/tags/Developer+News/default.aspx">Developer News</category><category domain="http://blogs.msdn.com/rudevnews/archive/tags/Windows+Embedded/default.aspx">Windows Embedded</category></item><item><title>Kompletna biblioteka graficzna oparta na WriteableBitmap w SL</title><link>http://blogs.msdn.com/danieb/archive/2009/12/08/kompletna-biblioteka-graficzna-oparta-na-writeablebitmap-w-sl.aspx</link><pubDate>Tue, 08 Dec 2009 13:23:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934010</guid><dc:creator>danieb</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/danieb/WindowsLiveWriter/KompletnabibliotekagraficznaopartanaWrit_CA6C/image_3.png" width="233" height="233" /&gt;     &lt;br /&gt;W poprzednim wpisie wspomniałem o swoich eksperymentach w rysowaniem bezpośrednio na tablicy pixeli w &lt;strong&gt;WriteableBitmap&lt;/strong&gt;.    &lt;br /&gt;    &lt;br /&gt;Tęgi głowy entuzjastów Silverlight na całym świecie nie śpią. Na Codeplex pojawił się nowy projekt:    &lt;br /&gt;    &lt;br /&gt;&lt;a title="http://writeablebitmapex.codeplex.com/" href="http://writeablebitmapex.codeplex.com/"&gt;http://writeablebitmapex.codeplex.com/&lt;/a&gt;&amp;#160; &lt;br /&gt;    &lt;br /&gt;Projekt ten zawiera gotową bibliotekę z bogatą funkcjonalnością.    &lt;br /&gt;Więcej szczegółów na blogu autora:    &lt;br /&gt;    &lt;br /&gt;&lt;a title="http://kodierer.blogspot.com/2009/12/writeablebitmapex-writeablebitmap.html" href="http://kodierer.blogspot.com/2009/12/writeablebitmapex-writeablebitmap.html"&gt;http://kodierer.blogspot.com/2009/12/writeablebitmapex-writeablebitmap.html&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934010" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/danieb/archive/tags/Polish+posts/default.aspx">Polish posts</category><category domain="http://blogs.msdn.com/danieb/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/danieb/archive/tags/coding/default.aspx">coding</category></item><item><title>Issues while doing TFS merge operation after renaming folder</title><link>http://blogs.msdn.com/nitishn/archive/2009/12/08/issues-while-doing-tfs-merge-operation-after-renaming-folder.aspx</link><pubDate>Tue, 08 Dec 2009 13:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934006</guid><dc:creator>nitishn</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;When trying to merge some changesets in TFS 2008 we get the error message&amp;nbsp; &lt;BR&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Title When trying to merge some changesets in TFS 2008 we get the following error message:&amp;nbsp;&amp;nbsp; &lt;BR&gt;Language en-US &lt;/P&gt;
&lt;P&gt;&lt;BR&gt;Symptoms&lt;BR&gt;When trying to merge some changesets we get the following error message:&lt;/P&gt;
&lt;P&gt;-----------------&lt;/P&gt;
&lt;P&gt;Error&lt;/P&gt;
&lt;P&gt;No matching items found in $/THOR/Tags/COLA_Beta_20090320_C47800 at the specified version&lt;/P&gt;
&lt;P&gt;Cause&lt;BR&gt;This issue happens when we rename the middle folder. For an example, we created a folder A with a file X and then created a branch of Folder A with the name B.&lt;/P&gt;
&lt;P&gt;After that, we create a branch of branch B with the name C and we&amp;nbsp; make a change in file X in folder and check the file in. After checking we&amp;nbsp; merge the changes into branch B and once we rename branch B to any other name(say, for an instance BRenamed), the issue get reproduced and we get the above mentioned error message.&lt;/P&gt;
&lt;P&gt;Resolution&lt;BR&gt;&amp;nbsp; &lt;BR&gt;&amp;nbsp; To resolve above mentioned scenario, we need to use the tf merge command from command line with /recursive keyword, as there is no way to specify the old name of the source branch from the UI, but we can from the TF merge command line.&lt;/P&gt;
&lt;P&gt;For an example:&lt;/P&gt;
&lt;P&gt;tf merge /version:C54288~C54288 $/THOR/Tags/COLA_Alpha_20090320_C47800 $/THOR/Tags/COLA_Gamma_20091009_C47800 /recursive&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;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934006" width="1" height="1"&gt;</description></item><item><title>Visual Studio-tuoteperheen tuoterakenne uudistuu ja yksinkertaistuu. </title><link>http://blogs.msdn.com/dpe_finland/archive/2009/12/08/visual-studio-tuoteperheen-tuoterakenne-uudistuu-ja-yksinkertaistuu.aspx</link><pubDate>Tue, 08 Dec 2009 13:09:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934007</guid><dc:creator>Tanja Tilus</dc:creator><slash:comments>0</slash:comments><description>&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt" lang=FI&gt;Visual Studio-tuoteperheen tuoterakenne uudistuu ja yksinkertaistuu. &lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt" lang=FI&gt;Osallistu &lt;A href="https://www112.livemeeting.com/cc/_XML/microsoft/join?id=77K23C&amp;amp;role=attend" target=_blank&gt;&lt;FONT color=#0000ff&gt;Livemeeting-lähetykseen&lt;/FONT&gt;&lt;/A&gt; 17.12. klo 10:00 - 10:30 ja kuulet mitä muutoksia on tulossa.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt" lang=FI&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Arial','sans-serif'; FONT-SIZE: 10pt" lang=FI&gt;Terveisin,&amp;nbsp; Matti &lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934007" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/dpe_finland/archive/tags/Ajankohtaista/default.aspx">Ajankohtaista</category><category domain="http://blogs.msdn.com/dpe_finland/archive/tags/Tapahtumat/default.aspx">Tapahtumat</category><category domain="http://blogs.msdn.com/dpe_finland/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/dpe_finland/archive/tags/TechDays/default.aspx">TechDays</category><category domain="http://blogs.msdn.com/dpe_finland/archive/tags/TechDays+2010/default.aspx">TechDays 2010</category><category domain="http://blogs.msdn.com/dpe_finland/archive/tags/Visual+Studio+2010/default.aspx">Visual Studio 2010</category></item><item><title>Virtual Labs for AppFabric and .Net 4</title><link>http://blogs.msdn.com/drnick/archive/2009/12/08/virtual-labs-for-appfabric-and-net-4.aspx</link><pubDate>Tue, 08 Dec 2009 13:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933966</guid><dc:creator>Nicholas Allen</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Ten labs for AppFabric and .Net 4 are available on MSDN virtual labs. Virtual labs allow you to borrow a virtual machine for a while, giving you the opportunity to try out the lab online with no setup or installation required. You get the machine and a copy of the lab manual with no other work.&lt;/P&gt;
&lt;P&gt;These labs cover .Net 4 Beta 2 and AppFabric Beta 1. If you were at PDC, these labs should look familiar if you were able to spend some time in our hands on lab area.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695075" mce_href="http://go.microsoft.com/?linkid=9695075"&gt;Simple Console Workflow&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695078" mce_href="http://go.microsoft.com/?linkid=9695078"&gt;Introduction to Workflow Services and AppFabric&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695076" mce_href="http://go.microsoft.com/?linkid=9695076"&gt;Implementing More Complex Control Flow and Logic with WF4&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695077" mce_href="http://go.microsoft.com/?linkid=9695077"&gt;Activity Designers and Designer Re Hosting in WF4&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695079" mce_href="http://go.microsoft.com/?linkid=9695079"&gt;Building a Complex Workflow Service-based Business Process&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695080" mce_href="http://go.microsoft.com/?linkid=9695080"&gt;Managing Your Workflow Service with AppFabric&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695084" mce_href="http://go.microsoft.com/?linkid=9695084"&gt;Introduction to the Windows Server AppFabric Cache&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695081" mce_href="http://go.microsoft.com/?linkid=9695081"&gt;Simplifying WCF Configuration&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695082" mce_href="http://go.microsoft.com/?linkid=9695082"&gt;How to use Service Discovery to Locate Services&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.microsoft.com/?linkid=9695083" mce_href="http://go.microsoft.com/?linkid=9695083"&gt;How to use Service Routing&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933966" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/drnick/archive/tags/Indigo/default.aspx">Indigo</category><category domain="http://blogs.msdn.com/drnick/archive/tags/Net4/default.aspx">Net4</category><category domain="http://blogs.msdn.com/drnick/archive/tags/Learning/default.aspx">Learning</category></item><item><title>【SPC09 JP 補足3】 Visual Studio による Business Connectivity Services (BCS) の外部リスト (External List) 作成</title><link>http://blogs.msdn.com/tsmatsuz/archive/2009/12/08/sharepoint-2010-business-connectivity-services-bcs-visual-studio.aspx</link><pubDate>Tue, 08 Dec 2009 12:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934016</guid><dc:creator>tsmatsuz</dc:creator><slash:comments>0</slash:comments><description>環境 : SharePoint Foundation 2010 (Beta 2) Visual Studio 2010 (Beta 2) セッション補足事項 環境について ADO.NET Data Services を使用した SharePoint 2010 へのアクセス Visual Studio による Business Connectivity Services (BCS) の外部リスト (Externel List) 作成 こんにちは。 少し間があいてしまいましたが (すみません、いろいろとやることが多く . . .)、セッションでコードとデモ (実行結果) だけお見せしたビジネスコネクティビティサービス (BCS) を使用したエンティティの実装方法について説明します。 セッションでご説明したとおり、この機能は、SharePoint Designer 2010 を使用して、データベースや WCF サービスなどのバックエンドデータにノンコードで接続できるという点がメリットであり、ここでご紹介する Visual Studio 2010 を使用したエンティティ作成は開発者 (プロ・デベロッパー)...(&lt;a href="http://blogs.msdn.com/tsmatsuz/archive/2009/12/08/sharepoint-2010-business-connectivity-services-bcs-visual-studio.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934016" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/tsmatsuz/archive/tags/Office/default.aspx">Office</category><category domain="http://blogs.msdn.com/tsmatsuz/archive/tags/ServerTech/default.aspx">ServerTech</category><category domain="http://blogs.msdn.com/tsmatsuz/archive/tags/Code/default.aspx">Code</category></item><item><title>250 000 článků z Microsoft Knowledge Base v češtině</title><link>http://blogs.msdn.com/kaci/archive/2009/12/08/250-000-l-nk-z-microsoft-knowledge-base-v-e-tin.aspx</link><pubDate>Tue, 08 Dec 2009 12:51:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9934004</guid><dc:creator>kaci</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Mnoho z uživatelů Microsoft produktů se někdy setkalo s technickým problémem, který nebyli schopni sami vyřešit. Často proto navštěvují stránky &lt;a href="http://support.microsoft.com/"&gt;Microsoft Knowled Base&lt;/a&gt;. Od 5.12. 2009 jsou tyto články dostupné v češtině. Přeložit lidskými silami 250 000 článků bylo téměř nemožné a tak byla využita nejnovější technologie automatického překladu Microsoft Translator.&lt;/p&gt;  &lt;h3&gt;Je libo překlad, originál nebo snad obojí?&lt;/h3&gt;  &lt;p&gt;Pojďme si prakticky ukázat jak stránky vypadají a jaké možnosti pohledu na obsah nám dávají. Vyzkoušejme si jeden z článků o &lt;a href="http://support.microsoft.com/kb/319230/cs#mtDisclaimer"&gt;chybové zprávě&lt;/a&gt;.&amp;#160; Tento článek je jeden z automaticky přeložených, což poznáte již na začátku stránky:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator1_4.jpg"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Translator1" border="0" alt="Translator1" src="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator1_thumb_1.jpg" width="471" height="236" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Tímto prostým zobrazením však zábava nekončí. Pokud se vám strojový překlad nezdá a chcete je srovnat s originálem nebo raději by jste četli přímo originál a občas nahlédli na překlad, máme řešení. Stačí kliknout na odkaz “Zobrazení původního anglického článku a jeho překladu vedle sebe”, jak vidíte na předchozím obrázku. Otevře se tímto nové okno s následujícími možnostmi:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Paralelně zobrazený originál a překlad. Umístění kurzoru myši nad libovolnou větu vám ji zvýrazní jak v originálu tak překladu.&lt;a href="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator2_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 10px auto 0px; display: block; float: none; border-top: 0px; border-right: 0px" title="Translator2" border="0" alt="Translator2" src="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator2_thumb.jpg" width="481" height="331" /&gt;&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Přepnout si zobrazení originálu nebo překladu se zobrazením opačné jazykové verze formou plovoucího okna. Stačí kliknout na jednu z voleb Views. Následně stačí umístit kurzor nad zvolenou větu a zobrazí se odpovídající jazyková verze. &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator4_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Translator4" border="0" alt="Translator4" src="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator4_thumb.jpg" width="517" height="179" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h3&gt;Překlad i na vlastním webu&lt;/h3&gt;  &lt;p&gt;Použitou technologii Microsoft Translator je možné aplikovat i na vlastní web. Pokud se podíváte na &lt;a href="http://www.microsofttranslator.com/"&gt;stránky produktu&lt;/a&gt;, zjistít, že lze přidat i na jiné než Microsoft stránky. Stačí na &lt;a href="http://www.microsofttranslator.com/widget/Default.aspx"&gt;stránkách widgetu&lt;/a&gt; vyplnit url webu, zvolit barvu a velikost vkládaného widgetu a nechat si vygenerovat HTML/JavaScript kód. Ten se vloží do požadované stránky vašeho webu a je hotovo. Sláva Web2.0!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator5_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Translator5" border="0" alt="Translator5" src="http://blogs.msdn.com/blogfiles/kaci/WindowsLiveWriter/250000lnkzMicrosoftKnowledgeBasevetin_AE15/Translator5_thumb.jpg" width="500" height="397" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9934004" width="1" height="1"&gt;</description></item></channel></rss>