<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>The See Also Blog: Develop for Windows</title><link>http://blogs.msdn.com/b/seealso/</link><description>This blog has code, samples, and news for Windows Developers and is the official blog of the Windows Developer center: http://msdn.com/windows/</description><dc:language>en-US</dc:language><generator>Telligent Community 5.6.583.19199 (Build: 5.6.583.19199)</generator><itunes:subtitle>See Also: The Windows Developer Center Blog</itunes:subtitle><itunes:author>Gus Class</itunes:author><itunes:summary>Gus Class's Windows Developer Education Blog</itunes:summary><itunes:owner><itunes:name>Gus Class</itunes:name><itunes:email>gclass@microsoft.com</itunes:email></itunes:owner><itunes:category text="Programming"><itunes:category text="C++" /></itunes:category><itunes:explicit>no</itunes:explicit><itunes:keywords>windows, programming, c++, developer center, multitouch, features, client</itunes:keywords><language>en-US</language><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/msdn/qLDK" /><feedburner:info uri="msdn/qldk" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>Handling orientation changes and setting preferred orientation in Metro style apps</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/9sK6L6vvwTg/handling-orientation-changes-and-setting-preferred-orientation-in-metro-style-apps.aspx</link><pubDate>Fri, 14 Oct 2011 19:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10225441</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10225441</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10225441</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/10/14/handling-orientation-changes-and-setting-preferred-orientation-in-metro-style-apps.aspx#comments</comments><description>&lt;p&gt;I have recently been working on a very simple version of the game &amp;ldquo;Simon&amp;rdquo; in C# and XAML.&amp;nbsp; The following screenshot shows the game running:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/simon_simulator_1.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/simon_simulator_1.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I initially had developed the application without support for orientation.&amp;nbsp; As a result, when the application reflowed, it would crop components of the application off-screen (not desired!).&amp;nbsp; The following screen shot shows this happening in the device simulator.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/simon_simulator_2.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/simon_simulator_2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So, I added some preferences to the application manifest that would indicate the application preferred to be in landscape and also set the preferences in the application startup.&amp;nbsp; To set the preference in the manifest, I clicked on the application manifest in VS11 and then set it to landscape.&amp;nbsp; To set the preference in the application startup, I added the following code to my Main():&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color: #c0c0c0;"&gt;Windows.Graphics.Display.DisplayProperties.AutoRotationPreferences = Windows.Graphics.Display.DisplayOrientations.Landscape | Windows.Graphics.Display.DisplayOrientations.LandscapeFlipped;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Now that is enough to just lock the display so that the components don&amp;rsquo;t flip out when the display gets re-oriented.&amp;nbsp; Additionally, the application will launch in landscape, so that&amp;rsquo;s good and well.&amp;nbsp; However, what if instead, I wanted to handle the case where the device is flipped.&amp;nbsp; The math for doing this is surprisingly simple: width becomes height for each square, and top becomes left and visa versa for the game board squares.&amp;nbsp; First, I need to add an event handler for the OrientationChanged event:&lt;/p&gt;
&lt;p&gt;&lt;span style="background-color: #c0c0c0;"&gt;Windows.Graphics.Display.DisplayProperties.OrientationChanged&lt;/span&gt;&lt;br /&gt;&lt;span style="background-color: #c0c0c0;"&gt;+= new Windows.Graphics.Display.DisplayPropertiesEventHandler(DisplayProperties_OrientationChanged);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;This will cause the function &amp;ldquo;DisplayProperties_OrientationChanged&amp;rdquo; to be called when the device is rotated.&amp;nbsp; My handler calls a utility function in the game class which will update the width, height, left, and top values as appropriate to make the tiles reorient as shown in the following screenshot:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/simon_simulator_3.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/simon_simulator_3.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Key Takeaways&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Make sure that you test your app in the simulator and see what happens when the orientation changes to discover orientation and reflow bugs.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;See Also&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://channel9.msdn.com/Events/BUILD/BUILD2011/APP-207T"&gt;Reach your customers&amp;rsquo; devices with one beautiful HTML5 user interface&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/10/14/quick-tip-using-the-device-simulator-in-the-windows-developer-preview.aspx"&gt;Quick tip: Toggling the device simulator in Visual Studio on the Windows Developer Preview&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10225441" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=9sK6L6vvwTg:cVt6104hRNs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=9sK6L6vvwTg:cVt6104hRNs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=9sK6L6vvwTg:cVt6104hRNs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=9sK6L6vvwTg:cVt6104hRNs:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=9sK6L6vvwTg:cVt6104hRNs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=9sK6L6vvwTg:cVt6104hRNs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=9sK6L6vvwTg:cVt6104hRNs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=9sK6L6vvwTg:cVt6104hRNs:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=9sK6L6vvwTg:cVt6104hRNs:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/9sK6L6vvwTg" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+developer+preview/">windows developer preview</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+8/">Windows 8</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+dev+Center/">Windows dev Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/device+simulator/">device simulator</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/10/14/handling-orientation-changes-and-setting-preferred-orientation-in-metro-style-apps.aspx</feedburner:origLink></item><item><title>Quick tip: Toggling the device simulator in Visual Studio on the Windows developer preview</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/IHSiZs7ygZQ/quick-tip-using-the-device-simulator-in-the-windows-developer-preview.aspx</link><pubDate>Fri, 14 Oct 2011 18:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10225432</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10225432</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10225432</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/10/14/quick-tip-using-the-device-simulator-in-the-windows-developer-preview.aspx#comments</comments><description>&lt;p&gt;Yesterday I was struggling to figure out how to turn on / turn off the device simulator in the Windows 8 developer preview after discovering an orientation bug in a Metro style app I have been working on.&amp;nbsp; The trick is to click the icon in the build/run dialog as shown in the following screenshot:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/using_the_simulator.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/using_the_simulator.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is really handy for testing for orientation bugs. I'll share more on this in a later post!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/"&gt;The Windows Dev Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/10/14/handling-orientation-changes-and-setting-preferred-orientation-in-metro-style-apps.aspx"&gt;Handling oreintation changes and setting preferred orientation in Metro style apps&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10225432" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IHSiZs7ygZQ:yvQ67As6Svc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IHSiZs7ygZQ:yvQ67As6Svc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=IHSiZs7ygZQ:yvQ67As6Svc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IHSiZs7ygZQ:yvQ67As6Svc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IHSiZs7ygZQ:yvQ67As6Svc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=IHSiZs7ygZQ:yvQ67As6Svc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IHSiZs7ygZQ:yvQ67As6Svc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IHSiZs7ygZQ:yvQ67As6Svc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=IHSiZs7ygZQ:yvQ67As6Svc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/IHSiZs7ygZQ" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+developer+preview/">windows developer preview</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+8/">Windows 8</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+dev+Center/">Windows dev Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/device+simulator/">device simulator</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/10/14/quick-tip-using-the-device-simulator-in-the-windows-developer-preview.aspx</feedburner:origLink></item><item><title>Learning Windows Development with Quickstarts and How to’s</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/tkyrjrxakc0/learning-windows-development-with-quickstarts-and-how-to-s.aspx</link><pubDate>Tue, 04 Oct 2011 17:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10219890</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10219890</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10219890</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/10/04/learning-windows-development-with-quickstarts-and-how-to-s.aspx#comments</comments><description>&lt;p&gt;In coordination with the Windows developer preview release for the Build conference, we quietly have added a few new page types across our content sets and today I&amp;rsquo;ll talk about two very important ones:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://social.msdn.microsoft.com/Search/en-US/windows/home?query=quickstart&amp;amp;Refinement=183&amp;amp;ac=8"&gt;Quickstarts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://social.msdn.microsoft.com/Search/en-US/windows/desktop?query=intitle%3A%22how%20to%22&amp;amp;Refinement=181&amp;amp;ac=8"&gt;How-tos&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These are important because you can find the specific type of content that you are looking for by searching on the developer centers with the keyword "Quickstart:" or &amp;ldquo;How to:&amp;rdquo; and can also get right into the code by keeping an eye out for these keywords in page titles.&lt;/p&gt;
&lt;h1&gt;Quickstarts&lt;/h1&gt;
&lt;p&gt;The new quickstart page type is designed to quickly get you introduced to a scenario or feature without getting in to the details but instead focusing on just the essentials.&amp;nbsp; For example, the &lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465354(v=vs.85).aspx"&gt;Adding a flyout quickstart&lt;/a&gt; will get you going in just a few minutes from the &lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/br211385(v=vs.85).aspx"&gt;Building your first Windows Metro style app with JavaScript&lt;/a&gt; to having a&amp;nbsp; simple Metro style app with a flyout.&amp;nbsp; Another great example is the &lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465309(v=vs.85).aspx"&gt;Quickstart: Adding an app bar&lt;/a&gt; page which will quickly get you going from having a simple Metro style app to having a Metro style app with an app bar on the bottom of the screen.&lt;/p&gt;
&lt;p&gt;Check the see also section for some more examples of quickstart documentation.&lt;/p&gt;
&lt;h1&gt;How to&amp;rsquo;s&lt;/h1&gt;
&lt;p&gt;The how to&amp;rsquo;s that we have begun publishing compliment the Quickstarts by diving deeper into edge cases for scenarios and teaching you how to go beyond the basics.&amp;nbsp; A great example of a list of how to&amp;rsquo;s can be found in the &lt;a href="http://msdn.microsoft.com/en-us/library/hh404569(v=VS.85).aspx"&gt;How to Use Direct3D&lt;/a&gt; documentation another great set of how to examples are &lt;a href="http://msdn.microsoft.com/en-us/library/hh446629(v=VS.85).aspx"&gt;How to use the App Packaging API&lt;/a&gt; and &lt;a href="http://msdn.microsoft.com/en-us/library/hh446628(v=VS.85).aspx"&gt;How to Use the Deployment API&lt;/a&gt;.&amp;nbsp; These how to&amp;rsquo;s will get you through the intermediate steps of using your applications when you are working on releasing and deploying your apps. Check the see also section for some more examples of how to documentation.&lt;/p&gt;
&lt;h1&gt;Takeaways&lt;/h1&gt;
&lt;p&gt;When you&amp;rsquo;re looking at search results and browsing the documentation, make sure to pay special attention to the Quickstart and how to documentation because these pages are focused to getting developers solutions to typical problems they will encounter while developing Windows apps.&lt;/p&gt;
&lt;h1&gt;See Also&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465309(v=vs.85).aspx"&gt;Quickstart: Adding an app bar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh464965(v=VS.85).aspx"&gt;Quickstart: Data binding to controls&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465375(v=VS.85).aspx"&gt;Quickstart: Enabling semantic zoom&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465387(v=VS.85).aspx"&gt;Quickstart: Touch Input&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh465453(v=vs.85).aspx"&gt;Metro style apps controls list&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/hh404569(v=VS.85).aspx"&gt;How to use Direct3D 11&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/hh437376(v=VS.85).aspx"&gt;How to use DirectComposition&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/"&gt;Windows Dev Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10219890" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=tkyrjrxakc0:zxdEMlGeLQM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=tkyrjrxakc0:zxdEMlGeLQM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=tkyrjrxakc0:zxdEMlGeLQM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=tkyrjrxakc0:zxdEMlGeLQM:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=tkyrjrxakc0:zxdEMlGeLQM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=tkyrjrxakc0:zxdEMlGeLQM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=tkyrjrxakc0:zxdEMlGeLQM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=tkyrjrxakc0:zxdEMlGeLQM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=tkyrjrxakc0:zxdEMlGeLQM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/tkyrjrxakc0" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Development/">Windows Development</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Direct3D/">Direct3D</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/howto/">howto</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+dev+Center/">Windows dev Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/quickstart/">quickstart</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/directcomposition/">directcomposition</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/how+to/">how to</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/10/04/learning-windows-development-with-quickstarts-and-how-to-s.aspx</feedburner:origLink></item><item><title>Viewing the Windows Developer Preview documentation offline</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/-k19HUfHa84/viewing-the-windows-developer-preview-documentation-offline.aspx</link><pubDate>Wed, 28 Sep 2011 22:09:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10217892</guid><dc:creator>gclassy</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10217892</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10217892</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/28/viewing-the-windows-developer-preview-documentation-offline.aspx#comments</comments><description>&lt;p&gt;Viewing the Windows Developer Preview documentation offline&lt;/p&gt;
&lt;p&gt;As many of you have pointed out, the developer experience is a rather significant departure from what has been the traditional documentation approach for Windows.&amp;nbsp; The documentation on the Windows Dev Center has been moving into an encapsulated experience where you follow down a path starting from a big picture and moving deeper into the learning task as you follow links.&amp;nbsp; What this means is that rather than having the traditional table of contents as &amp;ldquo;branches in the tree&amp;rdquo; on the left pane of your Window, with &amp;ldquo;peer&amp;rdquo; nodes as leaves as seen in the following screenshot:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/offlinedocs/doc_exp_1.png"&gt;&lt;img src="http://wheresgus.com/offlinedocs/doc_exp_1.png" border="0" alt="" style="max-width: 550px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You instead have the breadcrumb on the top of the page to replace the branches and &amp;ldquo;peer&amp;rdquo; nodes rendered within the left pane.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/offlinedocs/doc_exp_2.png"&gt;&lt;img src="http://wheresgus.com/offlinedocs/doc_exp_2.png" border="0" alt="" style="max-width: 550px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We have received feedback that the experience where you have the TOC is convenient sometimes when you are looking for a reference and, believe it or not, this experience still exists for all of the Windows developer content.&amp;nbsp; To view the TOC and go through the documentation in the more traditional way:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open Visual Studio&lt;/li&gt;
&lt;li&gt;Either press &amp;ldquo;Ctrl+Alt+F1&amp;rdquo; or select the menu item Add and Remove Local Help Content from visual studio as shown in the following screenshot:&lt;br /&gt;&amp;nbsp;&lt;a href="http://wheresgus.com/offlinedocs/offline_docs_1.png"&gt;&lt;img src="http://wheresgus.com/offlinedocs/offline_docs_1.png" border="0" alt="" style="max-width: 550px;" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;You should now see the offline help viewer which looks like the following screenshot:&lt;br /&gt;&lt;a href="http://wheresgus.com/offlinedocs/offline_docs_2.png"&gt;&lt;img src="http://wheresgus.com/offlinedocs/offline_docs_2.png" border="0" alt="" style="max-width: 550px;" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Once in the offline help viewer, you can add and remove the local content.&amp;nbsp; If you have installed the BUILD version of Windows 8 that included Visual Studio, you will have the &amp;ldquo;Tailored Windows Development&amp;rdquo; offline help content already which contains the documentation for creating Metro style apps.&lt;/li&gt;
&lt;li&gt;Once you have the documentation you need, you can click on the&amp;nbsp;&lt;b&gt;Contents&lt;/b&gt;&amp;nbsp;tab from the offline help viewer which should be in the bottom left corner of the window:&lt;br /&gt;&lt;a href="http://wheresgus.com/offlinedocs/offline_docs_3.png"&gt;&lt;img src="http://wheresgus.com/offlinedocs/offline_docs_3.png" border="0" alt="" style="max-width: 550px;" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Once you have the&amp;nbsp;&lt;b&gt;Contents&lt;/b&gt;&amp;nbsp;tab selected, all of the locally installed documentation will be shown.&amp;nbsp; The following screenshot shows how the Windows Metro style App Development documentation appears in the offline viewer:&lt;br /&gt;&lt;a href="http://wheresgus.com/offlinedocs/offline_docs_4.png"&gt;&lt;img src="http://wheresgus.com/offlinedocs/offline_docs_4.png" border="0" alt="" style="max-width: 550px;" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/07/26/viewing-the-msdn-documentation-offline.aspx"&gt;Viewing the MSDN documentation offline&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/07/09/so-you-found-an-sdk-documentation-bug.aspx"&gt;So you found a documentation bug...&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/07/22/where-did-the-accessibility-tools-go.aspx"&gt;Where did the accessibility tools go?&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10217892" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=-k19HUfHa84:Hq_ng9jd86A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=-k19HUfHa84:Hq_ng9jd86A:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=-k19HUfHa84:Hq_ng9jd86A:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=-k19HUfHa84:Hq_ng9jd86A:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=-k19HUfHa84:Hq_ng9jd86A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=-k19HUfHa84:Hq_ng9jd86A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=-k19HUfHa84:Hq_ng9jd86A:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=-k19HUfHa84:Hq_ng9jd86A:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=-k19HUfHa84:Hq_ng9jd86A:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/-k19HUfHa84" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+dev+Center/">Windows dev Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Metro+style+app+development/">Metro style app development</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/MSDN+library/">MSDN library</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/28/viewing-the-windows-developer-preview-documentation-offline.aspx</feedburner:origLink></item><item><title>What’s new in the Windows Dev Center part 4 (Conclusion): Forums, Samples, and Search</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/6Md0N3bV89I/what-s-new-in-the-windows-dev-center-part-4-conclusion-forums-samples-and-search.aspx</link><pubDate>Wed, 21 Sep 2011 17:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10214930</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10214930</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10214930</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/21/what-s-new-in-the-windows-dev-center-part-4-conclusion-forums-samples-and-search.aspx#comments</comments><description>&lt;p&gt;We talked previously about the new look and feel, content integration, and controls for the Windows Dev Center. Also new is what we&amp;rsquo;ve referred to as &amp;ldquo;applications&amp;rdquo; that are components of the dev center.&amp;nbsp; The three key applications are the samples gallery, the forums, and search. Before going deep into what&amp;rsquo;s new here, I want to thank the MSDN team who has done an amazing job in engineering and designing these updates.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Samples Gallery&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The samples gallery has been updated significantly for this release.&amp;nbsp; New to the samples gallery are the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;New look and feel&lt;/li&gt;
&lt;li&gt;300 new samples uploaded across the Windows Desktop Samples Gallery, Windows Metro Style App Gallery, and Windows Hardware Samples Gallery&lt;/li&gt;
&lt;li&gt;Improved description and details format&lt;/li&gt;
&lt;li&gt;Improved scoping specific to the Windows SDK and library&lt;/li&gt;
&lt;li&gt;Improved submission process to ensure that all gallery content is a valid sample.&lt;/li&gt;
&lt;li&gt;Addition of the code browser / viewer&lt;/li&gt;
&lt;li&gt;Sample Packs &amp;ndash; Windows Desktop Sample Pack and Windows Metro Style Apps Sample Pack Integration with Visual Studio 11 Developer Preview &amp;ndash; search and open samples from the new Project dialog&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following screenshot shows the new code browse/view interface. It even supports syntax highlighting!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/browse_code.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/browse_code.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Forums&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windowsdesktopdev"&gt;Windows Desktop Developer Forums&lt;/a&gt; have been updated to have a single category, we&amp;rsquo;ll be reorganizing them soon&lt;/li&gt;
&lt;li&gt;The &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windowsapps"&gt;Windows Metro Style App Forums&lt;/a&gt; have been created to support developers for our new model&lt;/li&gt;
&lt;li&gt;The &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windowshardwaredev"&gt;Windows Hardware development forums&lt;/a&gt; were updated to support the new features and tools&lt;/li&gt;
&lt;li&gt;The forums have a new look and feel&lt;/li&gt;
&lt;li&gt;Voting &amp;ndash; you can now upvote and downvote posts ala StackOverflow&lt;/li&gt;
&lt;li&gt;Related threads &amp;ndash; avoid asking the same question twice&lt;/li&gt;
&lt;li&gt;Filtering to find posts with code and other metadata about threads&lt;/li&gt;
&lt;li&gt;Improvements to core functionality such as the new threaded view&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following image shows the related threads UI.&amp;nbsp; When you begin posting a new thread, the Forums application suggests existing threads that may already address your topic.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/forums_related.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/forums_related.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Search&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;We have been continuously making improvements to the Windows Dev Center search.&amp;nbsp; New for the Windows Developer Preview release are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Improvements to refinements&lt;/li&gt;
&lt;li&gt;New look and feel&lt;/li&gt;
&lt;li&gt;More information in results UI&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Although it&amp;rsquo;s subtle, the improvements in search should make it much easier to filter through the results that you will get when you perform searches on the dev centers.&amp;nbsp; The following image shows how search reveals whether a forum result is answered or has responses:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/search_ui.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/search_ui.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So this pretty much concludes&amp;nbsp;our short post series about what&amp;rsquo;s new in the dev center.&amp;nbsp; Thank you for reading!&lt;/p&gt;
&lt;p&gt;&lt;b&gt;See Also&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/13/what-s-new-in-the-windows-dev-center.aspx"&gt;What&amp;rsquo;s new in the Windows Dev Cetner Pt 1 &amp;ndash; Overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/14/what-s-new-in-the-windows-dev-center-part-2-msdn-library-integration.aspx"&gt;What&amp;rsquo;s new in the Windows Dev Center Pt 2 &amp;ndash; MSDN Library Integration&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/15/what-s-new-in-the-windows-dev-center-part-3-new-center-controls.aspx"&gt;What&amp;rsquo;s new in the Windows Dev Center Pt 3 &amp;ndash; New controls&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/07/13/reorganizing-the-windows-desktop-developer-center.aspx"&gt;Reorganizing the Windows Desktop Dev Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/04/06/search-updates-to-the-windows-developer-center.aspx"&gt;Search Updates to the Windows Dev Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10214930" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6Md0N3bV89I:x-dhey_FJQg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6Md0N3bV89I:x-dhey_FJQg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=6Md0N3bV89I:x-dhey_FJQg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6Md0N3bV89I:x-dhey_FJQg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6Md0N3bV89I:x-dhey_FJQg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=6Md0N3bV89I:x-dhey_FJQg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6Md0N3bV89I:x-dhey_FJQg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6Md0N3bV89I:x-dhey_FJQg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=6Md0N3bV89I:x-dhey_FJQg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/6Md0N3bV89I" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Developer+Center/">Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/build/">build</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+8/">Windows 8</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/what_2700_s+new/">what's new</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/ratings/">ratings</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/metro+style+app/">metro style app</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/21/what-s-new-in-the-windows-dev-center-part-4-conclusion-forums-samples-and-search.aspx</feedburner:origLink></item><item><title>Windows Dev Center Updates for 09.16.2011: BUILD and Windows 8</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/KBBaA28NNtc/windows-dev-center-roundup-build-and-windows-8.aspx</link><pubDate>Fri, 16 Sep 2011 18:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10212581</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10212581</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10212581</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/16/windows-dev-center-roundup-build-and-windows-8.aspx#comments</comments><description>&lt;p&gt;This week, we launched the &lt;a href="http://msdn.microsoft.com/en-us/windows/apps/br229516"&gt;Windows Developer Preview&lt;/a&gt; at the BUILD conference.&amp;nbsp; This release shows the new user interface of Windows 8, adds&amp;nbsp;functionality for developers,&amp;nbsp;and also introduces a new programming model and language enhancements.&amp;nbsp;Needless to say,&amp;nbsp;it has been an exciting week!&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;New Dev Center Updates&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We have been going over the enhancements for the developer center separately in the 3 posts so far covering:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/13/what-s-new-in-the-windows-dev-center.aspx"&gt;A 10,000 foot view of&amp;nbsp;Windows Dev Center Changes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/14/what-s-new-in-the-windows-dev-center-part-2-msdn-library-integration.aspx"&gt;MSDN Library Integration&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/15/what-s-new-in-the-windows-dev-center-part-3-new-center-controls.aspx"&gt;New Windows Dev Center Controls&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We've got plenty more to update you on about the changes, but it will take a few posts for us to cover everything.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;BUILD Presentations&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There have been tons of great presentations at BUILD and some of the big keynotes for the desktop from the first day of BUILD have been:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://channel9.msdn.com/Events/BUILD/BUILD2011/KEY-0001"&gt;The BUILD keynote presentation&lt;/a&gt; with Chris Jones,Steven Sinofsky,Antoine Leblonde,Mike Angiulo,Julie Larson-Green&lt;/li&gt;
&lt;li&gt;&lt;a href="http://channel9.msdn.com/posts/Jensen-Harris-Walks-Us-Through-the-Windows-8-UI"&gt;Jensen Harris Walks Us Through the Windows 8 UI&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://channel9.msdn.com/Events/BUILD/BUILD2011/BPS-1005"&gt;The new platform for Metro style apps&lt;/a&gt;&amp;nbsp;- Ale&amp;scaron; Holeček&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can watch &lt;a href="http://channel9.msdn.com/Events/Build/Build2011"&gt;all of the BUILD videos online&lt;/a&gt; at Channel 9.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Top Resources from the Dev Center&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There is a lot of content on the Windows Dev Center but there are definitely some pages that we expected to get more traffic than others and a couple resources that are really important right now.&lt;/p&gt;
&lt;p&gt;The Windows Developer Preview Windows 8 guide gives you a great introduction to Windows 8.&amp;nbsp;&lt;a href="http://download.microsoft.com/download/1/E/4/1E455D53-C382-4A39-BA73-55413F183333/Windows_Developer_Preview-Windows8_guide.xps"&gt;Windows 8 Guide XPS&lt;/a&gt;&amp;nbsp; / &lt;a href="http://download.microsoft.com/download/1/E/4/1E455D53-C382-4A39-BA73-55413F183333/Windows_Developer_Preview-Windows8_guide.pdf"&gt;Windows 8 Guide PDF&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you're looking for community support for the Windows developer preview, there is a forum that we have created for this very purpose, &lt;a href="http://ow.ly/6vKE9"&gt;the Windows Developer Preview General OS Questions forum&lt;/a&gt;. There are other forums - &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windowsapps"&gt;Windows&amp;nbsp;Metro style apps development forum&lt;/a&gt;, &amp;nbsp;&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windowsdesktopdev"&gt;Windows desktop app development forum&lt;/a&gt;, and &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windowshardwaredev"&gt;Windows hardware development forum&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We have some great samples for the preview and have created some filters so that you can see just the samples you're looking for.&amp;nbsp; The &lt;a href="http://code.msdn.microsoft.com/windowsapps/"&gt;Windows Metro style app samples&lt;/a&gt;, the &lt;a href="http://code.msdn.microsoft.com/windowshardware"&gt;Windows hardware samples&lt;/a&gt;, and the &lt;a href="http://code.msdn.microsoft.com/windowsdesktop/"&gt;Windows desktop samples&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Getting started is a key resource on the Dev center: &lt;a href="http://msdn.microsoft.com/library/en-us/windows/desktop/"&gt;Get started with Desktop app programming&lt;/a&gt;, &lt;a href="http://msdn.microsoft.com/library/windows/apps/br211386/"&gt;Get started with Metro style app development&lt;/a&gt;, &lt;a href="http://msdn.microsoft.com/en-us/library/windows/hardware/gg507680.aspx"&gt;Get Started with Windows hardware development&lt;/a&gt;.&amp;nbsp;We will be continuously updating the developer content and we'll make sure to highlight additional key resouces moving forward.&lt;/p&gt;
&lt;p&gt;If you're looking to &lt;a href="http://msdn.microsoft.com/en-us/windows/apps/br229516"&gt;download the Windows desktop developer preview&lt;/a&gt;&amp;nbsp;make sure that you calculate a SHA-1 hash of the ISO to make sure that the download wasn't corrupted.&amp;nbsp; To do this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://download.microsoft.com/download/c/f/4/cf454ae0-a4bb-4123-8333-a1b6737712f7/Windows-KB841290-x86-ENU.exe"&gt;Download the file checksum calculator utility&lt;/a&gt; from Microsoft.&lt;/li&gt;
&lt;li&gt;Run the checksum utility passing in the path to the downloaded ISO and the SHA-1 flag. (for example: fciv c:\users\gclassy\desktop\WindowsDeveloperPreview-32bit-English.iso -sha1)&lt;/li&gt;
&lt;li&gt;Verify that the SHA-1 checksum matches the value that we have on the &lt;a href="http://msdn.microsoft.com/en-us/windows/apps/br229516"&gt;Windows Developer Preview Downloads page&lt;/a&gt;&amp;nbsp;for the ISO you downloaded.&amp;nbsp;When I ran the code against the 32-bit ISO, the following output came from the program, indicating my checksum is valid.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;//&lt;br /&gt;// File Checksum Integrity Verifier version 2.05.&lt;br /&gt;//&lt;br /&gt;4e0698bbabe01ed27582c9fc16ad21c4422913cc c:\users\gclassy\desktop\windowsdeveloperpreview-32bit-english.iso&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Social Media and Other Cross-technology Communities&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We've been engaging on the &lt;a href="http://twitter.com/windevs"&gt;Windows Developers Twitter account&lt;/a&gt;&amp;nbsp;and we also have a &lt;a href="https://www.facebook.com/windows?sk=app_193708980686916"&gt;Windows Developer Facebook page&lt;/a&gt;&amp;nbsp;that you can Like and receive updates from us.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Closing Thoughts and Feedback&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Let us know how we're doing, it's been a busy week which has afforded us little time to sit back and think about what's working and what's not. Drop some comments if you have a strong&amp;nbsp;opinion - positive or negative.&amp;nbsp; Thanks!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/windows/apps/br229516"&gt;Windows Developer Preview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Dev Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10212581" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=KBBaA28NNtc:obp1XeYXRrM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=KBBaA28NNtc:obp1XeYXRrM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=KBBaA28NNtc:obp1XeYXRrM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=KBBaA28NNtc:obp1XeYXRrM:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=KBBaA28NNtc:obp1XeYXRrM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=KBBaA28NNtc:obp1XeYXRrM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=KBBaA28NNtc:obp1XeYXRrM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=KBBaA28NNtc:obp1XeYXRrM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=KBBaA28NNtc:obp1XeYXRrM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/KBBaA28NNtc" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/roundups/">roundups</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+development+forums/">windows development forums</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+dev+Center/">Windows dev Center</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/16/windows-dev-center-roundup-build-and-windows-8.aspx</feedburner:origLink></item><item><title>What's new in the Windows Dev Center part 3: New center controls</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/qExgcejDGhY/what-s-new-in-the-windows-dev-center-part-3-new-center-controls.aspx</link><pubDate>Thu, 15 Sep 2011 19:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10211947</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10211947</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10211947</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/15/what-s-new-in-the-windows-dev-center-part-3-new-center-controls.aspx#comments</comments><description>&lt;p&gt;So we've talked a bit about the new look and feel as well as the library.&amp;nbsp; These additions to the Windows Dev Center have been part of a "bring up" that creates a more integrated experience that matches the look and feel of Metro style apps.&amp;nbsp; We've also added some rather cool functionality to the center&amp;nbsp;through some new controls, most notably the new rating and feedback control and&amp;nbsp;the video control.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;New Rating and Feedback control&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The new rating and feedback control appears at the bottom of every reference page that is surfaced through the Windows Dev Center.&amp;nbsp; The control looks like this:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/rating_1.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/rating_1.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When you click the control, you get more options for specifying what the feedback that you're giving pertains to as shown in the following screenshot:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/rating_2.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/rating_2.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I'll bet you're wondering what happens when you fill out the form and click submit :)&amp;nbsp; Well, the feedback gets stored into a database and the writer receives the feedback directly.&amp;nbsp;With the aggregated feedback, the writer can update the topic to address your concerns and the documentation gets better!&lt;/p&gt;
&lt;p&gt;We're really excited about this new control because it will help us to create better documentation when you see something that's wrong.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;New Video Control&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The new video control is based on HTML5 and lets us embed videos within the documentation.&amp;nbsp;We prioritized producing good code and accurate documentation for BUILD but in the future you'll hopefully see the control used in our docs.&amp;nbsp; The following screenshot shows how it might look in docs once we have produced and embedded video:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/video.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/video.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We're working (as I write, in fact!) on getting some videos together for the new documentation and hopefully you will see them embedded within the developer documentation in the coming weeks!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/13/what-s-new-in-the-windows-dev-center.aspx"&gt;What's new in the Windows Dev Center Part 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/14/what-s-new-in-the-windows-dev-center-part-2-msdn-library-integration.aspx"&gt;What's new in the Windows Dev Center Part 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/apps"&gt;Create Metro style apps&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/"&gt;The Windows Dev Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10211947" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=qExgcejDGhY:_AuWXo09E38:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=qExgcejDGhY:_AuWXo09E38:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=qExgcejDGhY:_AuWXo09E38:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=qExgcejDGhY:_AuWXo09E38:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=qExgcejDGhY:_AuWXo09E38:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=qExgcejDGhY:_AuWXo09E38:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=qExgcejDGhY:_AuWXo09E38:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=qExgcejDGhY:_AuWXo09E38:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=qExgcejDGhY:_AuWXo09E38:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/qExgcejDGhY" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Developer+Center/">Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/build/">build</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+8/">Windows 8</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/what_2700_s+new/">what's new</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/ratings/">ratings</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/metro+style+apps/">metro style apps</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/15/what-s-new-in-the-windows-dev-center-part-3-new-center-controls.aspx</feedburner:origLink></item><item><title>What's new in the Windows Dev Center part 2: MSDN Library integration</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/fv0fr78-dZw/what-s-new-in-the-windows-dev-center-part-2-msdn-library-integration.aspx</link><pubDate>Wed, 14 Sep 2011 18:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10211066</guid><dc:creator>gclassy</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10211066</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10211066</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/14/what-s-new-in-the-windows-dev-center-part-2-msdn-library-integration.aspx#comments</comments><description>&lt;p&gt;In our first What's new post, we discussed the new look and feel of the Windows Dev Center.&amp;nbsp; This&amp;nbsp;experience would only be partially complete if all the documentation was presented in an older style.&amp;nbsp;So, we worked closely with MSDN to improve the way that the "library" content appears on the developer center.&amp;nbsp; To compare and contrast, here is the older developer center experience:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/classic.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/classic.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This&amp;nbsp;evolved into a "lightweight" experience which simplified the table of contents to address feedback that we were getting from customers that the table of contents was getting too long (vertically):&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/lightweight.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/lightweight.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The lightweight experience evolved again into the experience we have today which moves the parent table of contents elements into what we've been calling the "breadcrumb" which appears on the top of the site and moving peer elements to the left side of the site:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/metro.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/metro.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Note that the navigation links on the top of the site no longer change to the library links.&amp;nbsp; This way, you know that you're staying locked into development resources for Windows rather than developer resources all up for Microsoft.&lt;/p&gt;
&lt;p&gt;Some&amp;nbsp;related changes have been critical to improving the experience in content such as the ability to &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/15/what-s-new-in-the-windows-dev-center-part-3-new-center-controls.aspx"&gt;integrate video into content (content coming soon!) and the new ratings control&lt;/a&gt; (we'll talk about this in another post).&amp;nbsp; But at a high level this was one of the most significant updates that we made in the center for BUILD.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/09/13/what-s-new-in-the-windows-dev-center.aspx"&gt;What's new in the Windows Dev Center Part 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/apps" alt="Develop Windows metro style apps"&gt;Develop Windows metro style apps&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows dev center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Update:&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Note that you still can use the "classic" look and feel for any content that appears in the MSDN library. &amp;nbsp;First, go to &lt;a href="http://msdn.com/library"&gt;the MSDN library&lt;/a&gt;&amp;nbsp;and navigate to the section of interest. &amp;nbsp;Next click the gear icon in the top right section of the page:&lt;/div&gt;
&lt;div&gt;&lt;a href="http://wheresgus.com/step_1.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/step_1.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://wheresgus.com/step_1.png"&gt;&lt;/a&gt;Next, change the preferred view to classic:&lt;/div&gt;
&lt;div&gt;&lt;a href="http://wheresgus.com/step_2.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/step_2.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Thanks James for asking :)&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Update 2:&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Jeff Braaten wrote a great blog post on how&amp;nbsp;he and his team&amp;nbsp;engineered the integrated library experience, or, "&lt;a href="http://thirdblogfromthesun.com/2011/09/an-msdn-library-for-the-windows-dev-center/"&gt;An MSDN Library for the Windows Dev Center&lt;/a&gt;".&amp;nbsp;And also pointed out that the major benefit of the "Lightweight" UI for MSDN made a huge difference in how much real estate was available to the content area.&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10211066" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=fv0fr78-dZw:vfbZs65jeLk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=fv0fr78-dZw:vfbZs65jeLk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=fv0fr78-dZw:vfbZs65jeLk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=fv0fr78-dZw:vfbZs65jeLk:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=fv0fr78-dZw:vfbZs65jeLk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=fv0fr78-dZw:vfbZs65jeLk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=fv0fr78-dZw:vfbZs65jeLk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=fv0fr78-dZw:vfbZs65jeLk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=fv0fr78-dZw:vfbZs65jeLk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/fv0fr78-dZw" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/build/">build</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+dev+Center/">Windows dev Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/what_2700_s+new/">what's new</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/14/what-s-new-in-the-windows-dev-center-part-2-msdn-library-integration.aspx</feedburner:origLink></item><item><title>A few Windows developer preview keyboard shortcuts</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/ChGFU-YWJWQ/a-few-windows-8-keyboard-shortcuts.aspx</link><pubDate>Wed, 14 Sep 2011 02:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10210414</guid><dc:creator>gclassy</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10210414</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10210414</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/13/a-few-windows-8-keyboard-shortcuts.aspx#comments</comments><description>&lt;p&gt;I'm sure that a number of developers have been downloading the &lt;a href="http://dev.windows.com"&gt;Windows developer preview&lt;/a&gt;.&amp;nbsp; With the preview comes new (unofficial) shortcuts.&amp;nbsp; The following list are the ones we're aware of:&lt;/p&gt;
&lt;table style="width: 446px;" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Key&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;b&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Action&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+Y&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Temporarily look at the desktop&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+Enter&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Launches Narrator&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+F&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;File Search&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+I&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Settings&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+K&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Connections&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+H&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Share&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+Q&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Search&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+W&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Settings search&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Windows logo key+Z&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Flip open apps&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="187" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;&amp;nbsp;Windows logo key+C&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="259" nowrap="nowrap"&gt;
&lt;p&gt;&lt;span style="font-family: Calibri;" face="Calibri"&gt;Toggle control&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10210414" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=ChGFU-YWJWQ:3LaQkERimgA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=ChGFU-YWJWQ:3LaQkERimgA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=ChGFU-YWJWQ:3LaQkERimgA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=ChGFU-YWJWQ:3LaQkERimgA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=ChGFU-YWJWQ:3LaQkERimgA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=ChGFU-YWJWQ:3LaQkERimgA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=ChGFU-YWJWQ:3LaQkERimgA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=ChGFU-YWJWQ:3LaQkERimgA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=ChGFU-YWJWQ:3LaQkERimgA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/ChGFU-YWJWQ" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+developer+preview/">windows developer preview</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/build/">build</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+8/">Windows 8</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/13/a-few-windows-8-keyboard-shortcuts.aspx</feedburner:origLink></item><item><title>What's new in the Windows Dev Center? (Part 1)</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/b_3eRU0NNgY/what-s-new-in-the-windows-dev-center.aspx</link><pubDate>Tue, 13 Sep 2011 20:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10210197</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10210197</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10210197</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/09/13/what-s-new-in-the-windows-dev-center.aspx#comments</comments><description>&lt;p&gt;Today, we launched the new version of the &lt;a href="http://msdn.com/windows/home"&gt;Windows Dev Center&lt;/a&gt;.&amp;nbsp; This is a major release that includes a number of very awesome updates:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;New look and feel&lt;/li&gt;
&lt;li&gt;Content integration with the library&lt;/li&gt;
&lt;li&gt;New forums&lt;/li&gt;
&lt;li&gt;New samples gallery&lt;/li&gt;
&lt;li&gt;New download experience&lt;/li&gt;
&lt;li&gt;New social communities&lt;/li&gt;
&lt;li&gt;Improvements to search&lt;/li&gt;
&lt;li&gt;Support for video embedded within content&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There are probably a few other things that we can't remember in the chaos that has been BUILD.&amp;nbsp; But, we're up, and we wanted to show you a few of the finishing touches we put on our Windows developer preview release.&lt;/p&gt;
&lt;p&gt;For now, we'll just show you the new look and feel of the homepage:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/homepage.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/homepage.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Notice that we've now integrated what was previously the &lt;a href="http://msdn.com/windows/hardware"&gt;Windows Hardware Developer Center content&lt;/a&gt; with the &lt;a href="http://msdn.com/windows/desktop"&gt;Windows Desktop (Client)&amp;nbsp;Developer Center content&lt;/a&gt; and have made room for the brand new &lt;a href="http://msdn.com/windows/apps"&gt;Metro style apps content&lt;/a&gt;.&amp;nbsp; This has been a HUUUGEE effort that involved moving lots of varied content into a single location. We hope that you enjoy developing with Windows 8 in the coming months!&amp;nbsp; More to come!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10210197" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=b_3eRU0NNgY:WgC7RXlj5q4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=b_3eRU0NNgY:WgC7RXlj5q4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=b_3eRU0NNgY:WgC7RXlj5q4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=b_3eRU0NNgY:WgC7RXlj5q4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=b_3eRU0NNgY:WgC7RXlj5q4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=b_3eRU0NNgY:WgC7RXlj5q4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=b_3eRU0NNgY:WgC7RXlj5q4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=b_3eRU0NNgY:WgC7RXlj5q4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=b_3eRU0NNgY:WgC7RXlj5q4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/b_3eRU0NNgY" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Developer+Center/">Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+hardware/">Windows hardware</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+developer+preview/">windows developer preview</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+8/">Windows 8</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+desktop/">windows desktop</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/09/13/what-s-new-in-the-windows-dev-center.aspx</feedburner:origLink></item><item><title>Windows desktop developer center updates for 08.26.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/CCxJQmHIIMk/windows-desktop-developer-center-updates-for-08-26-2011.aspx</link><pubDate>Fri, 26 Aug 2011 17:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10200896</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10200896</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10200896</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/26/windows-desktop-developer-center-updates-for-08-26-2011.aspx#comments</comments><description>&lt;p&gt;We're currently getting ready for the upcoming content releases but we do have a few new things to share.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Social and Windows Developer Communities&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We recently integrated with all up &lt;a href="http://facebook.com/windows" target="_blank"&gt;Windows group on Facebook&lt;/a&gt;.&amp;nbsp; To access&amp;nbsp;and like the Developer pages, click on the "More Social" or "What's new" link then select developer from the tabs that appear. Clicking the "like" icon will sign you up for Windows developer announcements that are made on Facebook. You can also still subscribe to us over the &lt;a href="http://twitter.com/windevs" target="_blank"&gt;Windows desktop developer twitter&lt;/a&gt; account.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Forum Renames&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This week, we renamed a number of the Windows desktop developer forums.&amp;nbsp; If you're used to the old names, the changes are very minor.&amp;nbsp; The following list summarizes the updates to names:&lt;/p&gt;
&lt;table style="width: 1045px;" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;&lt;th valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p style="text-align: left;"&gt;&amp;nbsp;Old Name&lt;/p&gt;
&lt;/th&gt;&lt;th valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p style="text-align: left;"&gt;New Name&lt;/p&gt;
&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Application&lt;br /&gt;&amp;nbsp; Compatibility for Windows Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Application&lt;br /&gt;&amp;nbsp; Compatibility for Windows Desktop&lt;br /&gt;&amp;nbsp; Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Developing&lt;br /&gt;&amp;nbsp; Applications with Power Management&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Developing&lt;br /&gt;&amp;nbsp; Windows Desktop Applications with&lt;br /&gt;&amp;nbsp; Power Management&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Development&lt;br /&gt;&amp;nbsp; for Windows Accessibility and Automation&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows Desktop Development for Accessibility and Automation&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;DirectShow&lt;br /&gt;&amp;nbsp; Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;DirectShow&lt;br /&gt;&amp;nbsp; Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;General&lt;br /&gt;&amp;nbsp; Windows Development Issues&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;General&lt;br /&gt;&amp;nbsp; Windows Desktop Development Issues&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Ink,&lt;br /&gt;&amp;nbsp; Windows Touch, and Tablet PC Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows Desktop Development for Ink, Touch, and Tablet PC&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Media&lt;br /&gt;&amp;nbsp; Foundation Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Media&lt;br /&gt;&amp;nbsp; Foundation Development for Windows Desktop&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Microsoft&lt;br /&gt;&amp;nbsp; Message Queuing (MSMQ)&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Microsoft&lt;br /&gt;&amp;nbsp; Message Queuing (MSMQ)&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Network&lt;br /&gt;&amp;nbsp; Monitor&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows Desktop Network Monitor&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Optical&lt;br /&gt;&amp;nbsp; Platform Discussion&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows Desktop Optical Platform Discussion&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Peer-to-Peer&lt;br /&gt;&amp;nbsp; Networking&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Peer-to-Peer&lt;br /&gt;&amp;nbsp; Networking for Windows Desktop&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Security&lt;br /&gt;&amp;nbsp; for Applications in Microsoft Windows&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Application Security for Windows Desktop&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Sidebar&lt;br /&gt;&amp;nbsp; Gadget Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows Desktop Sidebar Gadget Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;User&lt;br /&gt;&amp;nbsp; Interface development for Windows&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;User&lt;br /&gt;&amp;nbsp; Interface development for Windows Desktop&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Visual&lt;br /&gt;&amp;nbsp; C++ General&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Visual&lt;br /&gt;&amp;nbsp; C++ General&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Visual&lt;br /&gt;&amp;nbsp; C++ Language&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Visual&lt;br /&gt;&amp;nbsp; C++ Language&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Debugging&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Debugging&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Search Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Search Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Search Help&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Search Help&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Filtering Platform (WFP)&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Filtering Platform (WFP)&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Imaging Component&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Imaging Component (WIC)&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Perfmon and Diagnostic tools&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Perfmon and Diagnostic tools&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Pro-Audio Application Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Pro-Audio Application&lt;br /&gt;&amp;nbsp; Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Ribbon Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Ribbon Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; SDK&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop SDK&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Vista Wireless SDK&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Vista Wireless SDK&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; WDK and Driver Development&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Hardware WDK and Driver Development&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Web Services API (webservices.dll)&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Web Services API&lt;br /&gt;&amp;nbsp; (webservices.dll)&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; XP Wireless SDK&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; XP Wireless SDK&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="bottom" width="417" nowrap="nowrap"&gt;
&lt;p&gt;Winsock&lt;br /&gt;&amp;nbsp; Kernel (WSK)&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="bottom" width="628" nowrap="nowrap"&gt;
&lt;p&gt;Windows&lt;br /&gt;&amp;nbsp; Desktop Winsock Kernel (WSK)&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;You can see the full current list of &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windevgeneral,windevui,windevavg,windevsearch,windevsensorandtouch,windevnetworking,windevdiagnostics,windevother"&gt;Windows desktop developer forums&lt;/a&gt; on MSDN now - feel free to let us know what you think about the current list of forums.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;nbsp;Building Windows 8&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Building Windows 8 team released a new blog post covering &lt;a href="http://blogs.msdn.com/b/b8/archive/2011/08/23/improving-our-file-management-basics-copy-move-rename-and-delete.aspx"&gt;updates and improvements to the file explorer and&amp;nbsp;file operations&amp;nbsp;experience&lt;/a&gt;. This has been their most commented on post yet, it's great to see the excitement building from Windows enthusiasts.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How-To Topics&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We have mentioned this before, but we've been hard at work on creating plenty of How-to topics that give you quick solutions to specific problems.&amp;nbsp; The following link shows an example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ff625920(VS.85).aspx"&gt;How-To Topics for UI Automation Providers&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In the future, we'll try and create a search query that finds all the how-to topics but the right metadata has not yet been published.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/08/08/new-windows-developers-facebook-page.aspx"&gt;New Windows Developers Facebook Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windevgeneral,windevui,windevavg,windevsearch,windevsensorandtouch,windevnetworking,windevdiagnostics,windevother"&gt;Windows Developer Forums&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/surface"&gt;Surface on the Windows Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10200896" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=CCxJQmHIIMk:GGR_OZcezU8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=CCxJQmHIIMk:GGR_OZcezU8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=CCxJQmHIIMk:GGR_OZcezU8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=CCxJQmHIIMk:GGR_OZcezU8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=CCxJQmHIIMk:GGR_OZcezU8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=CCxJQmHIIMk:GGR_OZcezU8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=CCxJQmHIIMk:GGR_OZcezU8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=CCxJQmHIIMk:GGR_OZcezU8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=CCxJQmHIIMk:GGR_OZcezU8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/CCxJQmHIIMk" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+development+forums/">windows development forums</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/26/windows-desktop-developer-center-updates-for-08-26-2011.aspx</feedburner:origLink></item><item><title>[Offtopic] New PC Build</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/yVV-uJvxJpE/offtopic-new-pc-build.aspx</link><pubDate>Thu, 25 Aug 2011 16:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10200425</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10200425</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10200425</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/25/offtopic-new-pc-build.aspx#comments</comments><description>&lt;p&gt;Some people spend their time and money on cars, fiending after the new models and tweaking their existing vehicle to ink a few more HP out of it.&amp;nbsp; I don't much care about cars, I drive a Lincoln TownCar that I bought for $800 at auction, but I run and build PCs like enthusiasts at &lt;a href="http://www.hotaugustnights.net/"&gt;Hot August Nights&lt;/a&gt;&amp;nbsp;do hotrods.&lt;/p&gt;
&lt;p&gt;It's been over two years since I last upgraded my home PC so I figured it's just about time for me to rebuild.&amp;nbsp; When replacing a PC I usually wait until I can get a computer that will be roughly twice as fast as my previous.&amp;nbsp;&amp;nbsp;I have a feeling this build will be at least that :)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The "Old" Machine&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This is what my current laptop looks like (images from Geek.com).&lt;/p&gt;
&lt;p&gt;&lt;img src="http://wheresgus.com/G51VX-A1/g51vx_01.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://wheresgus.com/G51VX-A1/g51vx_02.jpg" width="581" height="624" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://wheresgus.com/G51VX-A1/g51vx_03.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;My current computer is an &lt;a href="http://www.geek.com/articles/chips/review-asus-g51vx-a1-156-inch-gaming-notebook-20090818/"&gt;ASUS G51VX-A1&lt;/a&gt;&amp;nbsp;[geek.com], one of the flagship "Republic of Gamers" laptops and it has been a blast to own.&amp;nbsp; It was the first gaming laptop I have ever owned and was an amazing buy at around $1500.&amp;nbsp; Quad core&amp;nbsp;Q9000 processor, GTX 260m, etc.&amp;nbsp;It also has some fun&amp;nbsp;bells and whistles like a blindingly bright backlit keyboard, startup animation, and thumpingly loud subwoofer built into the PC.&amp;nbsp;When the machine came out, it cost less than a MacBook Pro and was basically 2-3x as fast in terms of graphical power and 2x as fast in terms of processing power. Yes, it plays Crysis, with AA turned on, at higher resolutions than 1024x768.&amp;nbsp; I upgraded the machine to an&amp;nbsp;SSD in 2010 and it has felt plenty fast and snappy ever since.&amp;nbsp;&amp;nbsp;In fact, my&amp;nbsp;laptop from 2009 flat out smokes the workstation that I was provisioned for my work PC and my work PC is supposedly a top of the line HP.&amp;nbsp; The only drawbacks of the machine&amp;nbsp; were heat and power - the laptop struggled to get much over&amp;nbsp;90 minutes of battery life and saved me from needing to heat my apartment.&amp;nbsp; I recently hooked up two monitors to this PC though and it seems to be having trouble with ultra-high resolutions like 3840x1200 which I am running&amp;nbsp;across dual screens.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The New&amp;nbsp;PC&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So... it's time.&amp;nbsp; My new build&amp;nbsp;- the important bits - &amp;nbsp;will consist of:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/B004K1ELF0/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=gusspersit-20&amp;amp;linkCode=as2&amp;amp;camp=217145&amp;amp;creative=399373&amp;amp;creativeASIN=B004K1ELF0"&gt;Themaltake Level 10 GT Snow Edition Tower (yes, I splurged)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/B004MYFODI/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=gusspersit-20&amp;amp;linkCode=as2&amp;amp;camp=217145&amp;amp;creative=399373&amp;amp;creativeASIN=B004MYFODI"&gt;Corsair Enthusiast Series 750-watt power supply&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/B004EBUXSA/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=gusspersit-20&amp;amp;linkCode=as2&amp;amp;camp=217145&amp;amp;creative=399373&amp;amp;creativeASIN=B004EBUXSA"&gt;Intel i7 2600k&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/B004WZ0HQ6/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=gusspersit-20&amp;amp;linkCode=as2&amp;amp;camp=217145&amp;amp;creative=399373&amp;amp;creativeASIN=B004WZ0HQ6"&gt;AMD Radeon 6970&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://rcm.amazon.com/e/cm?t=gusspersit-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=as1&amp;amp;asins=B0044YG27I&amp;amp;ref=tf_til&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr"&gt;12GB PC3-12800 1600mhz (9-9-9-24)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://rcm.amazon.com/e/cm?t=gusspersit-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=as1&amp;amp;asins=B00407ZUUY&amp;amp;ref=tf_til&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr"&gt;X58-based motherboard with Quad SLI and Quad CrossfireX&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://rcm.amazon.com/e/cm?t=gusspersit-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=as1&amp;amp;asins=B003OBZ9GC&amp;amp;ref=tf_til&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr"&gt;OCZ 120GB RevoDrive&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Some of the components are a little over the top (case, Revodrive) but I tried to create a balanced value/enthusiast PC.&amp;nbsp; Shipped, the PC will cost a little over $1500 which is pretty good considering the performance I expect to get out of the machine.&amp;nbsp; In planning out the PC I had first created a "crazy build" where I went about one tier under the fastest machine I could build (this build would have cost me ~$2500 but had a GeForce GTX 580 and 6-core i7 ), then I created a "value" machine where I went and found&amp;nbsp;the best bang for the buck components (many which were the hot components of 2010 like the Phenom II X6) and then went ahead and found something in the middle.&amp;nbsp; All of the components I got are enthusiast components, just the "budget" enthusiast components.&amp;nbsp; For example, the Revo has a number of faster and newer models but I opted out.&amp;nbsp; The Revo is still marginally faster than most SSD drives and does not occupy a SATA port which was what really drove my decision there.&amp;nbsp; At any rate, all these components are ridiculous compared to anything I have used before so I'm very excited!&lt;/p&gt;
&lt;p&gt;Some options that I really fought over:&lt;/p&gt;
&lt;p&gt;12GB 9-9-9- vs 8GB 7-9-7 timing PC3-12800 memory&lt;/p&gt;
&lt;p&gt;This could make a big impact both ways.&amp;nbsp; In VMs the extra memory could help. The faster memory would translate to reduced load times.&amp;nbsp; I opted for more memory and slower timing, and I think this was one place where I might have been better off going with the highest end versus mid-high-end.&amp;nbsp; The price difference was pretty significant too, the faster timed memory costs about twice as much as the slower timed memory.&lt;/p&gt;
&lt;p&gt;Nvidia vs. AMD&lt;/p&gt;
&lt;p&gt;Ever since the days of 3DFX vs. Nvidia, I was first a 3DFX fan and later an Nvidia fan.&amp;nbsp; I tried to set emotions aside though, the ATI - err AMD - option has more memory which will be better for me because I'm running at high resolutions.&amp;nbsp; The motherboard I picked also is CrossFireX which is AMD.&amp;nbsp; I have been weary of AMD cards paired with Intel but I don't think this really is an issue.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Conclusions&amp;nbsp;and Comparisons Old to New&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I just pulled some random synthetic benchmarks for the components&amp;nbsp;to see just how much faster my new build is going to be.&amp;nbsp; These numbers aren't necessarily representative of how real world performance will be between the machines but could give you an idea.&lt;/p&gt;
&lt;table border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;&lt;th&gt;Component&lt;/th&gt;&lt;th&gt;Old PC&lt;/th&gt;&lt;th&gt;New PC&lt;/th&gt;&lt;th&gt;Difference&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;&lt;a href="http://www.cpubenchmark.net/high_end_cpus.html"&gt;CPU&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;Intel Q9000&lt;/p&gt;
&lt;p&gt;3003 PassMark&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;Intel 2600k&lt;/p&gt;
&lt;p&gt;9,910 PassMark&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;Roughly 3x as Fast&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Graphics&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;&lt;a href="http://www.notebookcheck.net/NVIDIA-GeForce-GTX-260M.14559.0.html"&gt;GeForce 260M&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #000000;"&gt;4911 &lt;/span&gt;3dMark in Vantage&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;&lt;a href="http://www.tomshardware.com/reviews/radeon-hd-6970-radeon-hd-6950-cayman,2818-8.html"&gt;Radeon&amp;nbsp;6970&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;28017 3Dmarks in Vantage&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;Roughly&amp;nbsp;5x as Fast&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Memory&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;&lt;a href="http://www.notebookreview.com/default.asp?newsID=5217&amp;amp;review=asus+g51"&gt;4GB 800-mhz SDRAM &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is PC2-6400&lt;br /&gt;~7.5 GB/s&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;&lt;a href="http://www.guru3d.com/article/g-skill-ddr3-pc312800-triple-channel-memory-review/"&gt;12GB 1600-mhz&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is PC3-12800&lt;br /&gt;~18.3 GB/s&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;Roughly 2x as Fast&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Disk&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;&lt;a href="http://www.techspot.com/review/347-kingston-ssdnow-vplus-180/page7.html"&gt;Kingston SSDNow V+&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Seq Read: 242MB/Sec&lt;br /&gt;Seq Write: 167MB/Sec&lt;/p&gt;
&lt;p&gt;4K Read: 19.6&lt;br /&gt;4K Write: 13.7&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;p&gt;&lt;a href="http://benchmarkreviews.com/index.php?option=com_content&amp;amp;task=view&amp;amp;id=596&amp;amp;Itemid=60&amp;amp;limit=1&amp;amp;limitstart=5"&gt;RevoDrive SSD&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Seq Read: 390MB/s&lt;br /&gt;Seq Write: 285MB/s&lt;/p&gt;
&lt;p&gt;4K Read: 23MB/s&lt;br /&gt;4K Write: 63MB/s&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;Less than 2x as fast in most cases&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;My new machine will probably be more than twice as fast as my older laptop.&amp;nbsp; I'm now really excited.&amp;nbsp; We'll see how the build goes after the components arrive and I get back from vacation next week!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10200425" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=yVV-uJvxJpE:2eNBXymHE2U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=yVV-uJvxJpE:2eNBXymHE2U:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=yVV-uJvxJpE:2eNBXymHE2U:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=yVV-uJvxJpE:2eNBXymHE2U:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=yVV-uJvxJpE:2eNBXymHE2U:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=yVV-uJvxJpE:2eNBXymHE2U:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=yVV-uJvxJpE:2eNBXymHE2U:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=yVV-uJvxJpE:2eNBXymHE2U:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=yVV-uJvxJpE:2eNBXymHE2U:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/yVV-uJvxJpE" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Personal/">Personal</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/pc+enthusiast/">pc enthusiast</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/hardware/">hardware</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/PC+building/">PC building</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/25/offtopic-new-pc-build.aspx</feedburner:origLink></item><item><title>Windows Desktop Developer Center Updates for 08.19.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/Isld5CznXUQ/windows-desktop-developer-center-updates-for-08-19-2011.aspx</link><pubDate>Fri, 19 Aug 2011 19:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10197927</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10197927</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10197927</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/19/windows-desktop-developer-center-updates-for-08-19-2011.aspx#comments</comments><description>&lt;p&gt;&lt;strong&gt;Looking back&lt;/strong&gt;&lt;br /&gt;We wrote a post summarizing &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/08/18/looking-back-a-summary-of-key-improvements-to-the-windows-desktop-developer-center-in-2010-2011.aspx"&gt;updates to the Windows Desktop developer center in 2010-2011&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Building Windows 8 Blog&lt;/strong&gt;&lt;br /&gt;The Windows team has started a dialog with developers and customers to talk about how we are creating Windows and how we have reached the point where we are at today.&amp;nbsp; Read the following posts from Steven Sinofsky to get up to speed on the Windows 8 backstory so far.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/b8/archive/2011/08/17/introducing-the-team.aspx"&gt;Introducing the Team&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/b8/archive/2011/08/17/about-this-blog-and-your-comments.aspx"&gt;About the Building Windows 8 blog and comments&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/b8/archive/2011/08/15/welcome-to-building-windows-8.aspx"&gt;Welcome to Building Windows 8&lt;/a&gt;&lt;br /&gt; &amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Going Native: The C++ Rennaissance&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://developers.slashdot.org/story/11/08/16/178227/C0x-Finally-Becomes-a-Standard"&gt;C++0x Becomes a Standard [Slashdot]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.sdtimes.com/WINDOWS__NET_WATCH_C__IS_STILL_GOING_STRONG/By_LARRY_O_BRIEN/About_C/35830"&gt;Windows &amp;amp; .NET Watch: C++ is still going strong&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.informationweek.com/news/development/web/231500197"&gt;The Web Versus Native [Information Week]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.theregister.co.uk/2011/08/15/c_plus_plus_11_approved/"&gt;'Major'C++ revision receives standards blessing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/visualc/hh314556.aspx"&gt;Developing Windows Applications in C++: A simple Windows application [MSDN]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://developers.slashdot.org/story/11/08/18/187231/C-2011-and-the-Return-of-Native-Code"&gt;C++ 2011 and the return of Native Code&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That's it for this week!&amp;nbsp; Hope you all have a great weekend.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/08/08/new-windows-developers-facebook-page.aspx"&gt;New Windows Developers Facebook Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windevgeneral,windevui,windevavg,windevsearch,windevsensorandtouch,windevnetworking,windevdiagnostics,windevother"&gt;Windows Developer Forums&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/surface"&gt;Surface on the Windows Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10197927" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Isld5CznXUQ:EFHNQkHiZx8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Isld5CznXUQ:EFHNQkHiZx8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Isld5CznXUQ:EFHNQkHiZx8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Isld5CznXUQ:EFHNQkHiZx8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Isld5CznXUQ:EFHNQkHiZx8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Isld5CznXUQ:EFHNQkHiZx8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Isld5CznXUQ:EFHNQkHiZx8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Isld5CznXUQ:EFHNQkHiZx8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Isld5CznXUQ:EFHNQkHiZx8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/Isld5CznXUQ" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+development+forums/">windows development forums</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/19/windows-desktop-developer-center-updates-for-08-19-2011.aspx</feedburner:origLink></item><item><title>Looking back, a summary of key improvements to the Windows Desktop developer center in 2010-2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/SjVhGtZ28Hw/looking-back-a-summary-of-key-improvements-to-the-windows-desktop-developer-center-in-2010-2011.aspx</link><pubDate>Thu, 18 Aug 2011 18:27:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10197459</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10197459</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10197459</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/18/looking-back-a-summary-of-key-improvements-to-the-windows-desktop-developer-center-in-2010-2011.aspx#comments</comments><description>&lt;p&gt;It's been a little over a year since I started working on the Windows Desktop developer center and boy has it been hard work!&amp;nbsp; We have delivered a number of exciting changes to the center and as I have referenced these changes rather randomly, I thought it would be interesting to summarize them all.&amp;nbsp; But, before we dive into this, consider where we started: &lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/03/10/significant-update-to-the-windows-developer-center-goes-"&gt;the Windows Developer center launch for Windows 7&lt;/a&gt;.&amp;nbsp; This release added the existing look and feel to the center along with a number of content refreshes to reflect the new APIs and features introduced with Windows 7.&lt;/p&gt;
&lt;p&gt;After the Windows 7 release, we drove the following content updates and changes to the center:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/hilo/"&gt;We published Hilo&lt;/a&gt; and the &lt;a href="http://channel9.msdn.com/Tags/directcompute-lecture-series"&gt;DirectCompute lecture series&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Shortly after the Hilo release, we made significant updates to &lt;a href="http://msdn.microsoft.com/en-us/windows/ff944599"&gt;the Power Management learning path&lt;/a&gt;&amp;nbsp; and &lt;a href="http://msdn.microsoft.com/en-us/windows/bb735024"&gt;the Accessibility learning path&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;We added &lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/08/17/browsable-list-of-windows-programming-topics.aspx"&gt;the Browse by resource pages to the center&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Updates to social - we&amp;nbsp;started &lt;a href="http://blogs.msdn.com/controlpanel/blogs/posteditor.aspx/twitter.com/windevs"&gt;the Windows Developer Twitter account&lt;/a&gt; and our old Facebook page, which become the new Windows Developer Facebook tab&lt;/li&gt;
&lt;li&gt;We &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/04/06/search-updates-to-the-windows-developer-center.aspx"&gt;updated search for the center to address scoping to desktop development&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;We kicked off the &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/06/03/windows-developer-news-for-the-week-of-06-03-2011.aspx"&gt;Windows Desktop developer center reorganization effort&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;We updated &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/06/03/windows-developer-news-for-the-week-of-06-03-2011.aspx"&gt;the Windows Desktop developer guide&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And here we are today!&amp;nbsp; We're heads down on reorganizing our content still but hopefully in the coming weeks we will begin delivering updates to make our content more discoverable and better for getting developers coding!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/07/13/reorganizing-the-windows-desktop-developer-center.aspx"&gt;Reorganizing the Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10197459" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=SjVhGtZ28Hw:5nevk4myaag:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=SjVhGtZ28Hw:5nevk4myaag:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=SjVhGtZ28Hw:5nevk4myaag:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=SjVhGtZ28Hw:5nevk4myaag:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=SjVhGtZ28Hw:5nevk4myaag:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=SjVhGtZ28Hw:5nevk4myaag:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=SjVhGtZ28Hw:5nevk4myaag:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=SjVhGtZ28Hw:5nevk4myaag:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=SjVhGtZ28Hw:5nevk4myaag:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/SjVhGtZ28Hw" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Development/">Windows Development</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/desktop+developer+center/">desktop developer center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/looking+back/">looking back</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/18/looking-back-a-summary-of-key-improvements-to-the-windows-desktop-developer-center-in-2010-2011.aspx</feedburner:origLink></item><item><title>Windows Desktop Developer Center Updates for 08.12.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/Q2j_GnFrAKI/windows-desktop-developer-center-updates-for-08-12-2011.aspx</link><pubDate>Fri, 12 Aug 2011 18:34:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10195274</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10195274</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10195274</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/12/windows-desktop-developer-center-updates-for-08-12-2011.aspx#comments</comments><description>&lt;p&gt;This week, we launched our new Facebook pages and&amp;nbsp;we made a few tweaks to the forums.&amp;nbsp; We're working hard on some updates that we can't discuss in detail yet for a number of reasons but understand that we have big plans for the center in the coming months and we can't wait to hear what you think once the major updates are in place.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Facebook Pages&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The changes to the Facebook pages are a little tricky to understand at first so here are a few notes.&amp;nbsp; First, the way that our new pages work are there are tabs for each audience (everyone, developer, student, and business).&amp;nbsp; In order to receive updates for Developer content, first start on the &lt;a href="https://www.facebook.com/windows?sk=app_221398727900777&amp;amp;app_data=dp%3D1670%26dv%3D2227"&gt;What's new tab for Windows&lt;/a&gt;.&amp;nbsp; Once here, select the Developer section and click like.&amp;nbsp; On the developer tab for what's new, you can access the Facebook wall for Windows developers, can coordinate with other developers on events like BUILD, and can see the latest content that we're sharing on Facebook.&amp;nbsp; Secondly, there is an additional tab, &lt;a href="https://www.facebook.com/windows?sk=app_221398727900777&amp;amp;app_data=dp%3D1670%26dv%3D2227#!/windows?sk=app_160628770672520"&gt;More Social&lt;/a&gt;, that currently contains a few links and feeds that are relevant to Windows developers but that in the longer term will have more comprehensive sources for content.&amp;nbsp; We're taking baby steps for now, but once we start seeing traction in the Facebook communities, we'll start running with discussions through the pages.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Forum Updates&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We have been struggling a little bit with the &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/08/05/windows-desktop-developer-center-updates-for-08-05-2011.aspx"&gt;updates to forums that we started last week&lt;/a&gt;.&amp;nbsp; Many of the forums are being retired and once they are, the forums will have sticky notes added to them in order to move the communities temporarily until we have struck together the new organization and breakdown for Windows developer forums. Bear with us, this will be a little confusing for the time being but it will be much better than it currently is once we're done.&amp;nbsp; Please let us know if a forum that you were active in has been shut down and doesn't have a good redirect link in the sticky notes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/08/08/new-windows-developers-facebook-page.aspx"&gt;New Windows Developers Facebook Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windevgeneral,windevui,windevavg,windevsearch,windevsensorandtouch,windevnetworking,windevdiagnostics,windevother"&gt;Windows Developer Forums&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/surface"&gt;Surface on the Windows Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10195274" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Q2j_GnFrAKI:l72pd84wY0k:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Q2j_GnFrAKI:l72pd84wY0k:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Q2j_GnFrAKI:l72pd84wY0k:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Q2j_GnFrAKI:l72pd84wY0k:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Q2j_GnFrAKI:l72pd84wY0k:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Q2j_GnFrAKI:l72pd84wY0k:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Q2j_GnFrAKI:l72pd84wY0k:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Q2j_GnFrAKI:l72pd84wY0k:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Q2j_GnFrAKI:l72pd84wY0k:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/Q2j_GnFrAKI" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+development+forums/">windows development forums</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/12/windows-desktop-developer-center-updates-for-08-12-2011.aspx</feedburner:origLink></item><item><title>New Windows Developers Facebook Page</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/Ceev99CUDYg/new-windows-developers-facebook-page.aspx</link><pubDate>Mon, 08 Aug 2011 16:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10193718</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10193718</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10193718</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/08/new-windows-developers-facebook-page.aspx#comments</comments><description>&lt;p&gt;We have just released our new Facebook page that fits into the larger Windows branded Facebook presence.&lt;/p&gt;
&lt;p&gt;There are two tabs for developers, the &lt;b&gt;More Social&lt;/b&gt; tab and the &lt;b&gt;What&amp;rsquo;s New!&lt;/b&gt; tab.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The following mockup shows how the More Social tab looks.&amp;nbsp; This tab gives you updates from around the web and official Microsoft channels for developers:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/moresocial.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/moresocial.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The following image shows the What's New tab.&amp;nbsp; This tab has the Windows developer wall&amp;nbsp;and announcments for Windows Developers:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wheresgus.com/whatsnew.png"&gt;&lt;img style="max-width: 550px;" border="0" alt="" src="http://wheresgus.com/whatsnew.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Sign up for our updates by adding yourself to the &lt;a href="http://facebook.com/windows"&gt;Facebook for Windows Developers&lt;/a&gt; tabs.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10193718" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Ceev99CUDYg:-2q3_J7fXyg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Ceev99CUDYg:-2q3_J7fXyg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Ceev99CUDYg:-2q3_J7fXyg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Ceev99CUDYg:-2q3_J7fXyg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Ceev99CUDYg:-2q3_J7fXyg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Ceev99CUDYg:-2q3_J7fXyg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Ceev99CUDYg:-2q3_J7fXyg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=Ceev99CUDYg:-2q3_J7fXyg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=Ceev99CUDYg:-2q3_J7fXyg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/Ceev99CUDYg" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Facebook/">Facebook</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/social/">social</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/08/new-windows-developers-facebook-page.aspx</feedburner:origLink></item><item><title>Windows Desktop Developer Center Updates for 08.05.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/1j2glGkVFDw/windows-desktop-developer-center-updates-for-08-05-2011.aspx</link><pubDate>Fri, 05 Aug 2011 16:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10193199</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10193199</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10193199</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/05/windows-desktop-developer-center-updates-for-08-05-2011.aspx#comments</comments><description>&lt;p&gt;This week we have had a couple minor updates to the center and have some updates to the forums on the way along with a new Facebook page that is hopefully coming next week.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Forum Updates&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We have been working on making some updates to the &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/category/windevgeneral,windevui,windevavg,windevsearch,windevsensorandtouch,windevnetworking,windevdiagnostics,windevother"&gt;Windows Desktop forums&lt;/a&gt; that will make it easier to link to and find the right forum for developer solutions.&amp;nbsp;&amp;nbsp;Put concisely, we'll be closing some of the forums and then moving all of the forums to a single category.&amp;nbsp; Our belief is that having fewer forums and ensuring that we have relevant forums to what developers are interested in doing will be helpful for developers to more accurately and quickly get a solution.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Surface on the Windows Desktop Developer Center&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We have migrated some of the&amp;nbsp;&lt;a href="http://msdn.com/windows/surface"&gt;Surface&amp;nbsp;content into the Windows&amp;nbsp;Desktop developer center&lt;/a&gt;.&amp;nbsp;&amp;nbsp;This&amp;nbsp;has largely been in part because the new&amp;nbsp;Surface 2.0 SDK lets you target&amp;nbsp;Windows 7.&amp;nbsp; In other words, you can make apps&amp;nbsp;using the Surface SDK, compile them for Windows, then run them on Windows.&amp;nbsp; This is a big deal because the Surface 2.0 SDK ships with some killer multitouch controls that can be used for building some very engaging applications.&amp;nbsp; If you want to get started coding with Surface, &lt;a href="http://go.microsoft.com/fwlink/?LinkId=201003"&gt;download the Surface SDK&lt;/a&gt; and check out the shipping samples.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;C++ Links from Around the Web&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://ow.ly/5Vl7M"&gt;Building C++ Apps using only the Windows SDK&lt;/a&gt; [video]&lt;/li&gt;
&lt;li&gt;&lt;a href="http://ow.ly/5VjGU"&gt;Modern Native C++ Development for Maximum Productivity&lt;/a&gt; [video]&lt;/li&gt;
&lt;li&gt;&lt;a href="http://ow.ly/5UsVV"&gt;10 Books that could make you a better C++ programmer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://channel9.msdn.com/Shows/C9-GoingNative"&gt;Going Native - the Channel 9 show for modern C++&amp;nbsp;programmers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://twitter.com/#%21/c9goingnative"&gt;Follow Channel 9's Going Native announcements on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows/surface"&gt;Surface on the Windows Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10193199" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1j2glGkVFDw:p9ldUVo-mE4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1j2glGkVFDw:p9ldUVo-mE4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=1j2glGkVFDw:p9ldUVo-mE4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1j2glGkVFDw:p9ldUVo-mE4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1j2glGkVFDw:p9ldUVo-mE4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=1j2glGkVFDw:p9ldUVo-mE4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1j2glGkVFDw:p9ldUVo-mE4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1j2glGkVFDw:p9ldUVo-mE4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=1j2glGkVFDw:p9ldUVo-mE4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/1j2glGkVFDw" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/development/">development</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows/">windows</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/roundups/">roundups</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/C_2B002B00_+Rennaissance/">C++ Rennaissance</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/05/windows-desktop-developer-center-updates-for-08-05-2011.aspx</feedburner:origLink></item><item><title>10 Books that could Make you a Better C++ Programmer</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/uCqMAIBmCvs/10-books-that-will-make-you-a-better-c-programmer.aspx</link><pubDate>Wed, 03 Aug 2011 19:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10192530</guid><dc:creator>gclassy</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10192530</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10192530</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/08/03/10-books-that-will-make-you-a-better-c-programmer.aspx#comments</comments><description>&lt;p&gt;&lt;meta name="ProgId" content="Word.Document" /&gt;&lt;meta name="Generator" content="Microsoft Word 14" /&gt;&lt;meta name="Originator" content="Microsoft Word 14" /&gt;&lt;link rel="File-List" href="http://blogs.msdn.com/controlpanel/blogs/posteditor.aspx/10%20books_files/filelist.xml" /&gt; &lt;link rel="Edit-Time-Data" href="http://blogs.msdn.com/controlpanel/blogs/posteditor.aspx/10%20books_files/editdata.mso" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;I just recently read a post by &lt;a href="http://ow.ly/5TzwN"&gt;Programming Zen on 10 recent books that will make you a better developer&lt;/a&gt;. I have a few books to add to the list although these may not be as recent and that are focused to C++... making my list really 10 classic books that will make you a better C++ &lt;span class="GramE"&gt;developer &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.0pt; font-family: Wingdings; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; color: black; mso-char-type: symbol; mso-symbol-font-family: Wingdings;"&gt;&lt;span style="mso-char-type: symbol; mso-symbol-font-family: Wingdings;"&gt;J&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;. Some of these books have multiple editions and the older ones can be bought cheaper and usually don&amp;rsquo;t have significant revisions. There&amp;rsquo;s one exception that I can think of, &lt;span class="SpellE"&gt;Deitel&lt;/span&gt; and &lt;span class="SpellE"&gt;Deitel&lt;/span&gt; (D&amp;amp;D). My copy was the 5&lt;sup&gt;th&lt;/sup&gt; edition of the &lt;span class="SpellE"&gt;Deitel&lt;/span&gt; and &lt;span class="SpellE"&gt;Deitel&lt;/span&gt; book but from what I&amp;rsquo;ve heard, it fixed some voice issues and they have introduced lots of new material with each edition to address C++ and STL&amp;nbsp;updates.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Finally, if you&amp;rsquo;re looking for &lt;a href="http://msdn.microsoft.com/en-us/windows/dd722803"&gt;our list of Microsoft Press books for C++ developers&lt;/a&gt;, we have a great one on the developer center and I&amp;rsquo;ll exclude those from this list as this one is more personal and focused to books that have influenced me along the way as a developer. Here&amp;rsquo;s my list, in no particular order with exception for The Pragmatic Programmer, my dog-eared copy still serves as my developer mantra.&lt;/span&gt;&lt;/p&gt;
&lt;div class="WordSection1"&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/pKSw2t"&gt;The Pragmatic Programmer: From Journeyman to Master&lt;/a&gt; by Andrew Hunt and David Thomas&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shapetype id="_x0000_t75" stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"&gt; &lt;v:stroke joinstyle="miter"&gt; &lt;v:formulas&gt; &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt; &lt;v:f eqn="sum @0 1 0"&gt; &lt;v:f eqn="sum 0 0 @1"&gt; &lt;v:f eqn="prod @2 1 2"&gt; &lt;v:f eqn="prod @3 21600 pixelWidth"&gt; &lt;v:f eqn="prod @3 21600 pixelHeight"&gt; &lt;v:f eqn="sum @0 0 1"&gt; &lt;v:f eqn="prod @6 1 2"&gt; &lt;v:f eqn="prod @7 21600 pixelWidth"&gt; &lt;v:f eqn="sum @8 21600 0"&gt; &lt;v:f eqn="prod @7 21600 pixelHeight"&gt; &lt;v:f eqn="sum @10 21600 0"&gt; &lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:f&gt;&lt;/v:formulas&gt; &lt;v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"&gt; &lt;o:lock aspectratio="t" v:ext="edit"&gt; &lt;/o:lock&gt;&lt;/v:path&gt;&lt;/v:stroke&gt;&lt;/v:shapetype&gt;&lt;v:shape style="width: 89.25pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_52" type="#_x0000_t75" o:spid="_x0000_i1034"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image001.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image001.jpg" width="119" height="150" v:shapes="Picture_x0020_52" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;While I was a Java developer at a startup (my pre-Microsoft times), my manager/mentor gave me this book and it was a great read that I have revisited over the course of my career.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;This book is the kind of book that applies in one way while you are developing as a new programmer and in a completely different way as you become more seasoned.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;For this reason, this book makes the top of my list and I&amp;rsquo;m surprised it didn&amp;rsquo;t make the top of the Programming Zen list.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 1;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/pYx0Rr"&gt;Effective C++&lt;/a&gt; and &lt;a href="http://amzn.to/neVUh7"&gt;More Effective C++&lt;/a&gt; by Scott Meyers&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 89.25pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_53" type="#_x0000_t75" o:spid="_x0000_i1033"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image002.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image002.jpg" width="119" height="150" v:shapes="Picture_x0020_53" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Scott Meyers has created some amazing books about development in C++.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;These books have taught me many techniques to create much better code that is cleaner and less buggy.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Meyers&amp;rsquo; best practices will help to turn a rookie into a much more seasoned developer and learning and understanding the reasoning behind why Meyers makes the book an effective tool for stepping up your C++. The other thing about Meyers&amp;rsquo; books is that following his guidance will reduce defects in your code immediately.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 2;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/pwPt3K"&gt;Practical Programming in C++&lt;/a&gt; by Steve &lt;span class="SpellE"&gt;Oualline&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 85.5pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_55" type="#_x0000_t75" o:spid="_x0000_i1032"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image003.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image003.jpg" width="114" height="150" v:shapes="Picture_x0020_55" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;This book was a great read. The voice that comes through makes it easier to &lt;span class="SpellE"&gt;grok&lt;/span&gt; the concepts that &lt;span class="SpellE"&gt;Oualine&lt;/span&gt; covers in the text.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;O&amp;rsquo;Reilly does an amazing job of editing and I love all their books, but this one really sticks out as a go-to text for the 80% foundation of what makes a good C++ programmer.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 3;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/o5s0xb"&gt;The C++ Cookbook&lt;/a&gt; by D. Ryan Stephens, Christopher &lt;span class="SpellE"&gt;Diggins&lt;/span&gt;, Jonathan &lt;span class="SpellE"&gt;Turkanis&lt;/span&gt;, and Jeff &lt;span class="SpellE"&gt;Cogswell&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 85.5pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_56" type="#_x0000_t75" o:spid="_x0000_i1031"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image004.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image004.jpg" width="114" height="150" v:shapes="Picture_x0020_56" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 342.9pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="457"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;I&amp;rsquo;ll start off admitting that I have a slight bias for the C++ cookbook because I had the pleasure of working with one of its authors, Christopher &lt;span class="SpellE"&gt;Diggins&lt;/span&gt;, a few years ago and he was a brilliant programmer.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Disclosures aside, this book is primarily a collection of techniques and shortcuts that will reduce your time to completion.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;As with the rest of O&amp;rsquo;Reilly books, the editors do a fantastic job of controlling the writer&amp;rsquo;s voice making this book also a very pleasant read.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 4;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://www.amazon.com/gp/product/0136117260"&gt;C++ How to Program&lt;/a&gt; by &lt;span class="SpellE"&gt;Deitel&lt;/span&gt; and &lt;span class="SpellE"&gt;Deitel&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 86.25pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_57" type="#_x0000_t75" o:spid="_x0000_i1030"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image005.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image005.jpg" width="115" height="150" v:shapes="Picture_x0020_57" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Many readers may scoff that this book is really a beginner&amp;rsquo;s book because it was probably the first book they picked up on C++ programming.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;There&amp;rsquo;s a reason it&amp;rsquo;s so popular: the authors do an amazing job communicating concepts and this is probably the best book hands down on foundational C++ skills. This book makes my list because it creates good programmers from beginners.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 5;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/rhayA0"&gt;Design Patterns: Elements of Reusable Object-Oriented Software&lt;/a&gt; by Gamma et. All&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 85.5pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_58" type="#_x0000_t75" o:spid="_x0000_i1029"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image006.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image006.jpg" width="114" height="150" v:shapes="Picture_x0020_58" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Design patterns are the apex of thinking for creating code that is reusable and familiar to other developers. The 23 patterns shared in the text, also known as the &amp;ldquo;Gang of Four&amp;rdquo; book, have been talked about for decades now and will be talked about by architects and seasoned developers for the foreseeable future. This is a book that brings intermediate developers into the ranks of masters and helps them to understand their language and reflect on elegant solutions to software problems.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Read this book when you are ready for it.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 6;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/qaO8ek"&gt;Code Complete&lt;/a&gt; by Steve McConnell&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 92.25pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_59" type="#_x0000_t75" o:spid="_x0000_i1028"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image007.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image007.jpg" width="123" height="150" v:shapes="Picture_x0020_59" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Steve McConnell&amp;rsquo;s book, the first Microsoft Press book on my list, sits on the desk of many engineers at Microsoft and in some circles serves as an employee handbook for coding style.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Required reading for coders in some of our teams, it serves as a great example for how to create legible code that in the long run will save developers time.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 7;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/o76MPn"&gt;Writing Secure Code&lt;/a&gt; by Michael Howard and Steve &lt;span class="SpellE"&gt;Lipner&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 92.25pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_60" type="#_x0000_t75" o:spid="_x0000_i1027"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image008.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image008.jpg" width="123" height="150" v:shapes="Picture_x0020_60" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Security is a best practice, right?&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;For those engineers with Code Complete, this book oftentimes sits right next to it.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;In many ways, this book is a complimentary book to another title, Thread Modeling, but in my experience does a better to illustrate security from the developer&amp;rsquo;s perspective.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Writing secure code addresses the ways to STRIDE model and thinking about security from an engineering and coding perspective makes this book essential for developers coding anything that can have an attack surface.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 8;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/o3sbsZ"&gt;The Art of Computer Programming&lt;/a&gt; - Donald Knuth&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;a href="http://amzn.to/o3sbsZ"&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes; text-decoration: none; text-underline: none;"&gt;&lt;v:shape style="width: 86.25pt; height: 86.25pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_49" type="#_x0000_t75" o:spid="_x0000_i1026" o:button="t" href="http://amzn.to/o3sbsZ"&gt; &lt;v:fill o:detectmouseclick="t"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image009.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:fill&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;span style="mso-ignore: vglayout;"&gt;&lt;img border="0" src="http://wheresgus.com/10books//image009.jpg" width="115" height="115" v:shapes="Picture_x0020_49" /&gt;&lt;/span&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 338.45pt; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;This book series is probably the most famous CS book series of all time &amp;ndash; if you ask developers who learned at the dawn of modern CS.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;I was handed down my copy (copies? it&amp;rsquo;s like 4 giant books) from an older programmer while I was still learning and college and the theories were way over my head.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;Knuth invented his own machine language for the series and demonstrates classic algorithms in it, an amazing feat in &lt;span class="GramE"&gt;itself&lt;/span&gt;.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;If you are looking for a quick way to become a better programmer, this is not the series you are looking for.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;However, if you want to gain a better understanding of computer science theory and can bear through the hardcore, the Knuth series is all you need.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;The Knuth books are very scientific but at their core is the foundation for solving complex problems with algorithms and for this reason it can transform your thinking about programming.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 9; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;a href="http://amzn.to/qbHD1l"&gt;The C++ Programming Language&lt;/a&gt; and by &lt;span class="SpellE"&gt;Bjarne&lt;/span&gt; &lt;span class="SpellE"&gt;Stroustrup&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 128.8pt; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="172"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black; mso-no-proof: yes;"&gt;&lt;v:shape style="width: 89.25pt; height: 112.5pt; visibility: visible; mso-wrap-style: square;" id="Picture_x0020_50" type="#_x0000_t75" o:spid="_x0000_i1025"&gt; &lt;v:imagedata o:title="" src="http://wheresgus.com/10books//image010.jpg"&gt; &lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;img border="0" src="http://wheresgus.com/10books//image010.jpg" width="119" height="150" v:shapes="Picture_x0020_50" /&gt;&lt;/![if&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="width: 4.7in; border: solid windowtext 1.0pt; border-left: none; mso-border-left-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="451"&gt;
&lt;p&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;I can&amp;rsquo;t in good conscious give a list of C++ programming books without including the C++ creator&amp;rsquo;s manual.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;This book is a very interesting reflection on the choices that were made in the creation of the language and also serves as a reference for the C++ programming language and STL and also reveals the reasons that you should use the language as intended.&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;This book can transform a person from a C++ coder into an individual who really uses and chooses the C++ language for its strengths. If nothing else, this is a fascinating look at C++ from the 10,000 foot to microscopic perspective.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p class="WordSection1"&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="WordSection1"&gt;&lt;span style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Here's the list from Programming Zen, with exception to debugging with DDD/Eclipse and the &lt;span class="GramE"&gt;Agile&lt;/span&gt; books, these books introduce many great best practices and will help you become a better developer regardless of which language you are coding in:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class="WordSection1"&gt;
&lt;table style="border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;1. &lt;a href="http://programmingzen.com/recommends/?0262033844"&gt;Introduction to Algorithms, Third Edition&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?0262033844"&gt;&lt;/a&gt;&lt;v:shape style="width: 105.75pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251659264; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_31" type="#_x0000_t75" o:spid="_x0000_s1035" o:button="t" href="http://programmingzen.com/recommends/?0262033844" o:allowoverlap="f" alt="Description: Introduction to Algorithms Image"&gt; &lt;v:imagedata o:title="Introduction to Algorithms Image" src="http://wheresgus.com/10books//image011.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?0262033844"&gt;&lt;img title="" border="0" alt="Description: Introduction to Algorithms Image" align="left" src="http://wheresgus.com/10books//image011.jpg" width="141" height="160" v:shapes="Picture_x0020_31" /&gt;&lt;/a&gt;OK, this is cheating a little. &amp;ldquo;Introduction to Algorithms&amp;rdquo; is both a classic and a book on everyone&amp;rsquo;s list. However, I opted to include it because not everyone knows that it was recently (September 2009) released in its third edition. The book received a major upgrade to the existing content and exercises, as well as including new, modern algorithms. Any programmer working through this book, or revisiting it, will learn valuable, foundational knowledge.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p style="margin-bottom: .0001pt; line-height: normal;" class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 1;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;2. &lt;a href="http://programmingzen.com/recommends/?0470229055"&gt;The Annotated Turing&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?0470229055"&gt;&lt;/a&gt;&lt;v:shape style="width: 80.25pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251661312; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_32" type="#_x0000_t75" o:spid="_x0000_s1034" o:button="t" href="http://programmingzen.com/recommends/?0470229055" o:allowoverlap="f" alt="Description: The Annotated Turing Image"&gt; &lt;v:imagedata o:title="The Annotated Turing Image" src="http://wheresgus.com/10books//image012.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?0470229055"&gt;&lt;img title="" border="0" alt="Description: The Annotated Turing Image" align="left" src="http://wheresgus.com/10books//image012.jpg" width="107" height="160" v:shapes="Picture_x0020_32" /&gt;&lt;/a&gt;Alan Turing wrote a classic paper in 1936 with the title: &amp;ldquo;&lt;a href="http://www.google.com/search?q=On+Computable+Numbers,+with+an+Application+to+the+Entscheidungsproblem"&gt;On Computable Numbers, with an Application to the &lt;span class="SpellE"&gt;Entscheidungsproblem&lt;/span&gt;&lt;/a&gt;&amp;ldquo;. It was a paper on Turing machines and the limits of computability, which had a major impact on computer science and the development of the computer you are reading this post on. Every programmer/computer scientist should get ahold of this paper and read it. Unfortunately, it isn&amp;rsquo;t exactly easy to grasp if you are not used to reading research papers. In &amp;ldquo;The Annotated Turing&amp;rdquo;, &lt;span class="SpellE"&gt;Petzold&lt;/span&gt; does a marvelous job of dissecting the paper (and its errata), providing ample explanations and background information over 18 chapters (360 pages &lt;span class="SpellE"&gt;vs&lt;/span&gt; 36 of the original paper). It manages to be rigorous while still being accessible. If this book doesn&amp;rsquo;t arouse your interest in computer science, chances are nothing will.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p style="margin-bottom: .0001pt; line-height: normal;" class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 2;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;3. &lt;a href="http://programmingzen.com/recommends/?0321503627"&gt;Growing Object-Oriented Software, Guided by Tests&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?0321503627"&gt;&lt;/a&gt;&lt;v:shape style="width: 90pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251663360; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_33" type="#_x0000_t75" o:spid="_x0000_s1033" o:button="t" href="http://programmingzen.com/recommends/?0321503627" o:allowoverlap="f" alt="Description: Growing OO Software Image"&gt; &lt;v:imagedata o:title="Growing OO Software Image" src="http://wheresgus.com/10books//image013.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?0321503627"&gt;&lt;img title="" border="0" alt="Description: Growing OO Software Image" align="left" src="http://wheresgus.com/10books//image013.jpg" width="120" height="160" v:shapes="Picture_x0020_33" /&gt;&lt;/a&gt;&lt;span style="mso-no-proof: yes;"&gt;&lt;a href="http://programmingzen.com/recommends/?0321503627"&gt;&lt;/a&gt;&lt;/span&gt;This book takes two fundamental pillars of modern software development, Object-Oriented Design and Test-Driven Development, and clearly illustrates how to apply the best practices of each to build and maintain complex software. I don&amp;rsquo;t know of many developers who couldn&amp;rsquo;t learn something new about TDD in the context of OOP from this book. A must read.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p style="margin-bottom: .0001pt; line-height: normal;" class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 3;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;4. &lt;a href="http://programmingzen.com/recommends/?0132350882"&gt;Clean Code&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?0132350882"&gt;&lt;/a&gt;&lt;v:shape style="width: 90pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251665408; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_34" type="#_x0000_t75" o:spid="_x0000_s1032" o:button="t" href="http://programmingzen.com/recommends/?0132350882" o:allowoverlap="f" alt="Description: Clean Code Image"&gt; &lt;v:imagedata o:title="Clean Code Image" src="http://wheresgus.com/10books//image014.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?0132350882"&gt;&lt;img title="" border="0" alt="Description: Clean Code Image" align="left" src="http://wheresgus.com/10books//image014.jpg" width="120" height="160" v:shapes="Picture_x0020_34" /&gt;&lt;/a&gt;While on the subject of Agile development, I can&amp;rsquo;t help but recommend &amp;ldquo;Clean Code&amp;rdquo; by Uncle Bob. It compliments &amp;ldquo;Growing Object-Oriented Software, Guided by Tests&amp;rdquo; perfectly by focusing on how to improve and refractor code to get rid of code smells. You can think of it as a very succinct version of Code Complete 2, with a strong focus on Agile craftsmanship. The examples, as per the previous book, are in Java but that shouldn&amp;rsquo;t be much of an issue for the open-minded developer.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 4;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;5. &lt;a href="http://programmingzen.com/recommends/?0321620704"&gt;Leading Lean Software Development: Results Are not the Point&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?0321620704"&gt;&lt;/a&gt;&lt;v:shape style="width: 90pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251667456; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_35" type="#_x0000_t75" o:spid="_x0000_s1031" o:button="t" href="http://programmingzen.com/recommends/?0321620704" o:allowoverlap="f" alt="Description: Leading Lean Software Development Image"&gt; &lt;v:imagedata o:title="Leading Lean Software Development Image" src="http://wheresgus.com/10books//image015.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?0321620704"&gt;&lt;img title="" border="0" alt="Description: Leading Lean Software Development Image" align="left" src="http://wheresgus.com/10books//image015.jpg" width="120" height="160" v:shapes="Picture_x0020_35" /&gt;&lt;/a&gt;&lt;span style="mso-no-proof: yes;"&gt;&lt;a href="http://programmingzen.com/recommends/?0321620704"&gt;&lt;/a&gt;&lt;/span&gt;Lean principles deriving from the Lean manufacturing world have been effectively translated and adapted to the field of software development. This book explains how to lead a team to success through lean software development in detail to team leaders and mentors. Having obtained a Lean Six Sigma yellow belt many years ago, this book definitely gave me a few flashbacks. If you are not familiar with the concepts presented, you&amp;rsquo;ll definitely find it food for thought. Building software requires far more than just writing quality code, and the techniques presented here are valuable, even if you don&amp;rsquo;t fully buy into this methodology.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 5;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;6. &lt;a href="http://programmingzen.com/recommends/?1593271832"&gt;Growing Software&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?1593271832"&gt;&lt;/a&gt;&lt;v:shape style="width: 90.75pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251669504; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_36" type="#_x0000_t75" o:spid="_x0000_s1030" o:button="t" href="http://programmingzen.com/recommends/?1593271832" o:allowoverlap="f" alt="Description: Growing Software Image"&gt; &lt;v:imagedata o:title="Growing Software Image" src="http://wheresgus.com/10books//image016.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?1593271832"&gt;&lt;img title="" border="0" alt="Description: Growing Software Image" align="left" src="http://wheresgus.com/10books//image016.jpg" width="121" height="160" v:shapes="Picture_x0020_36" /&gt;&lt;/a&gt;While on the subject of leadership, if you are in charge of software development at a small company or startup, you want to read this book. My interest in this title came from the fact that its author (Louis &lt;span class="SpellE"&gt;Testa&lt;/span&gt;) works as a Senior Engineering Manager at Galois, a company that uses Haskell as their technological advantage (and hired Don Stewart of Haskell fame). &amp;ldquo;Growing Software&amp;rdquo; delivered on my expectations and is full of hands-on advice on how to deal with the whole workflow surrounding the creation of software from the idea all the way to the sale and support of a product.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 6;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;7. &lt;a href="http://programmingzen.com/recommends/?1593271743"&gt;The Art of Debugging with GDB, DDD, and Eclipse&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?1593271743"&gt;&lt;/a&gt;&lt;v:shape style="width: 90.75pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251671552; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_37" type="#_x0000_t75" o:spid="_x0000_s1029" o:button="t" href="http://programmingzen.com/recommends/?1593271743" o:allowoverlap="f" alt="Description: The Art of Debugging Image"&gt; &lt;v:imagedata o:title="The Art of Debugging Image" src="http://wheresgus.com/10books//image017.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?1593271743"&gt;&lt;img title="" border="0" alt="Description: The Art of Debugging Image" align="left" src="http://wheresgus.com/10books//image017.jpg" width="121" height="160" v:shapes="Picture_x0020_37" /&gt;&lt;/a&gt;Debugging is an invaluable skill and one that is often left out from introductory programming books. Being able to effectively debug code is what separate professionals from beginners, and productive programmers from frustrated ones. This book is ruthlessly practical with many advanced techniques for debugging on Linux/Unix. It&amp;rsquo;s well worth its price in my opinion.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 7;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;8. &lt;a href="http://programmingzen.com/recommends/?1590597451"&gt;Applied Mathematics for Database Professionals&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?1590597451"&gt;&lt;/a&gt;&lt;v:shape style="width: 90.75pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251673600; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_38" type="#_x0000_t75" o:spid="_x0000_s1028" o:button="t" href="http://programmingzen.com/recommends/?1590597451" o:allowoverlap="f" alt="Description: Applied Mathematics for Database Professionals Image"&gt; &lt;v:imagedata o:title="Applied Mathematics for Database Professionals Image" src="http://wheresgus.com/10books//image018.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?1590597451"&gt;&lt;img title="" border="0" alt="Description: Applied Mathematics for Database Professionals Image" align="left" src="http://wheresgus.com/10books//image018.jpg" width="121" height="160" v:shapes="Picture_x0020_38" /&gt;&lt;/a&gt;&lt;span style="mso-no-proof: yes;"&gt;&lt;a href="http://programmingzen.com/recommends/?1590597451"&gt;&lt;/a&gt;&lt;/span&gt;Assuming you already have a decent understanding of relational databases, and are not too scared of mathematics, this book will really bring your knowledge of how databases work to the next level, in turn improving the design, schema evolution, and SQL queries you&amp;rsquo;ll create afterwards.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 8;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;9. &lt;a href="http://programmingzen.com/recommends/?0596529325"&gt;Programming Collective Intelligence&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?0596529325"&gt;&lt;/a&gt;&lt;v:shape style="width: 91.5pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251675648; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_39" type="#_x0000_t75" o:spid="_x0000_s1027" o:button="t" href="http://programmingzen.com/recommends/?0596529325" o:allowoverlap="f" alt="Description: Programming Collective Intelligence Image"&gt; &lt;v:imagedata o:title="Programming Collective Intelligence Image" src="http://wheresgus.com/10books//image019.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?0596529325"&gt;&lt;img title="" border="0" alt="Description: Programming Collective Intelligence Image" align="left" src="http://wheresgus.com/10books//image019.jpg" width="122" height="160" v:shapes="Picture_x0020_39" /&gt;&lt;/a&gt;If you are building web applications that do more than simply CRUD operations on your data, you&amp;rsquo;ll want to read this book (with examples in Python). The motivated, intermediate developer will learn how to efficiently solve complex problems related to machine learning and intelligent web algorithms from this book. It&amp;rsquo;s a very accessible introduction to tough subjects and one of the most interesting books I&amp;rsquo;ve read in some time.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="mso-yfti-irow: 9; mso-yfti-lastrow: yes;"&gt;
&lt;td style="width: 6.65in; border: solid windowtext 1.0pt; border-top: none; mso-border-top-alt: solid windowtext .5pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" valign="top" width="638"&gt;
&lt;p&gt;&lt;strong&gt;10. &lt;a href="http://programmingzen.com/recommends/?1430219483"&gt;Coders at work&lt;/a&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://programmingzen.com/recommends/?1430219483"&gt;&lt;/a&gt;&lt;v:shape style="width: 83.25pt; height: 120pt; margin-top: 0px; margin-left: 0px; visibility: visible; position: absolute; z-index: 251677696; mso-wrap-style: square; mso-width-percent: 0; mso-height-percent: 0; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: left; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line; mso-width-relative: page; mso-height-relative: page;" id="Picture_x0020_40" type="#_x0000_t75" o:spid="_x0000_s1026" o:button="t" href="http://programmingzen.com/recommends/?1430219483" o:allowoverlap="f" alt="Description: Coders at work Image"&gt; &lt;v:imagedata o:title="Coders at work Image" src="http://wheresgus.com/10books//image020.jpg"&gt; &lt;w:wrap type="square" anchory="line"&gt; &lt;/w:wrap&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;![if vml=""&gt;&lt;a href="http://programmingzen.com/recommends/?1430219483"&gt;&lt;img title="" border="0" alt="Description: Coders at work Image" align="left" src="http://wheresgus.com/10books//image020.jpg" width="111" height="160" v:shapes="Picture_x0020_40" /&gt;&lt;/a&gt;To conclude this list, I wanted to include a book that&amp;rsquo;s aimed at showing programmers how some of the best programmers and computer scientists do their work. I previously enjoyed &lt;a href="http://programmingzen.com/recommends/?1430210788"&gt;Founders at Work&lt;/a&gt;, and this version about programming is just as good. It&amp;rsquo;s inspiring, fun to read, and rich in insight and advice.&lt;o:p&gt;&lt;/o:p&gt;&lt;/![if&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;b&gt;See Also&lt;b&gt;&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/windows/dd722803"&gt;Books for Windows Developers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://ow.ly/5TzwN"&gt;10 Recent Books that will make you a better developer&lt;/a&gt;&amp;nbsp;[Programming Zen]&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="MsoNormal"&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10192530" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=uCqMAIBmCvs:VcZyc88V9mI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=uCqMAIBmCvs:VcZyc88V9mI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=uCqMAIBmCvs:VcZyc88V9mI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=uCqMAIBmCvs:VcZyc88V9mI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=uCqMAIBmCvs:VcZyc88V9mI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=uCqMAIBmCvs:VcZyc88V9mI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=uCqMAIBmCvs:VcZyc88V9mI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=uCqMAIBmCvs:VcZyc88V9mI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=uCqMAIBmCvs:VcZyc88V9mI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/uCqMAIBmCvs" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/C_2B002B00_/">C++</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/learning+programming/">learning programming</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/recommendations/">recommendations</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/books/">books</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/08/03/10-books-that-will-make-you-a-better-c-programmer.aspx</feedburner:origLink></item><item><title>Windows Desktop Developer Center Updates for 07.29.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/u6VqNbsfoKI/windows-desktop-developer-center-updates-for-07-29-2011.aspx</link><pubDate>Fri, 29 Jul 2011 17:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10191187</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10191187</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10191187</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/29/windows-desktop-developer-center-updates-for-07-29-2011.aspx#comments</comments><description>&lt;p&gt;&lt;b&gt;Use This Not This&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;We wrote a brief post on &lt;a href="http://ow.ly/5ONTa"&gt;APIs that have changed since Vista that may affect applications&lt;/a&gt;.&amp;nbsp; This post was created based on input from our support team around common gotchas that they are seeing from developers and is really targeted to legacy applications.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Developer Center Updates&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Nothing significant has changed recently with the desktop developer center although we are working hard on a new Facebook presence.&amp;nbsp; We should have more details announced next week.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Going Native: The C++ Renaissance &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;This week, &lt;a href="http://channel9.msdn.com/Shows/C9-GoingNative/"&gt;Channel 9 launched the GoingNative channel&lt;/a&gt;.&amp;nbsp; This new channel will focus on how developers can use C++ as a language tool for creating great applications and the best practices for native development. The following links summarize new content in the C++ development world.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.gregcons.com/KateBlog/GoingNativeOnChannel9.aspx"&gt;Kate Gregory Blogs about GoingNative on Channel 9&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://bit.ly/oeu0Ct"&gt;#AltDevBlogADay&amp;nbsp; wrote about alternatives to malloc and new&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;The Visual C++ Developer Center refreshed its &lt;a href="http://msdn.microsoft.com/en-us/visualc/hh304489"&gt;Developing Windows Applications in C++&lt;/a&gt; page&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Desktop Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/use+this+not+this/"&gt;See Also: Use This not This &amp;ndash; Gotchas for Windows Programmers&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10191187" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=u6VqNbsfoKI:2_2x-e3qtFQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=u6VqNbsfoKI:2_2x-e3qtFQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=u6VqNbsfoKI:2_2x-e3qtFQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=u6VqNbsfoKI:2_2x-e3qtFQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=u6VqNbsfoKI:2_2x-e3qtFQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=u6VqNbsfoKI:2_2x-e3qtFQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=u6VqNbsfoKI:2_2x-e3qtFQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=u6VqNbsfoKI:2_2x-e3qtFQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=u6VqNbsfoKI:2_2x-e3qtFQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/u6VqNbsfoKI" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/roundups/">roundups</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/C_2B002B00_+Renaissance/">C++ Renaissance</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/going+native/">going native</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/29/windows-desktop-developer-center-updates-for-07-29-2011.aspx</feedburner:origLink></item><item><title>Use this not this: APIs that changed for Vista and later</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/6aHssqT-yUE/use-this-not-this-apis-to-avoid-all-together.aspx</link><pubDate>Wed, 27 Jul 2011 17:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10190405</guid><dc:creator>gclassy</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10190405</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10190405</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/27/use-this-not-this-apis-to-avoid-all-together.aspx#comments</comments><description>&lt;p&gt;The recommendations this week have come in from the support team and the following list is things that&amp;nbsp;aren't recommend for targeting versions of Windows later than Vista but that developers occasionally will use.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Internet Connection Sharing APIs&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Don't use the Internet Connection Sharing APIs in versions of Windows later than Vista.&amp;nbsp; The APIs do not work as documented.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;WSARecv / SetSystemTimeAdjustment&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;After Windows Vista, the following APIs have changed and can confuse folks:&lt;/p&gt;
&lt;table border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;&lt;th&gt;API&lt;/th&gt;&lt;th&gt;Notes&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ms741688(VS.85).aspx"&gt;WSARecv&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;After Windows Vista, the value &lt;em&gt;lpNumberOfBytesRecvd&lt;/em&gt; may be incorrect when used with IOCP.&amp;nbsp; Not quite the best use this not this, but, if you are doing HTTP (e.g. REST) with C++, you should be using the&amp;nbsp; &lt;a href="http://msdn.microsoft.com/en-us/library/aa382925(VS.85).aspx"&gt;WinHTTP API&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ms724943(VS.85).aspx"&gt;SetSystemTimeAdjustment&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;After Windows Vista, this API will ignore any adjustments less than 15.&amp;nbsp; The following KB article helps explain when &lt;a href="http://support.microsoft.com/kb/2537623/es"&gt;SetSystemTimeAdjustment doesn't work in Vista and later&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;strong&gt;FindFirstVolumeMountPoint and VolumeMountPaths API&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/aa364426(VS.85).aspx"&gt;FindFirstVolumeMountPoint&lt;/a&gt; has some security limitations so some people recommend using the &lt;a href="http://msdn.microsoft.com/en-us/library/aa364996(VS.85).aspx"&gt;GetVolumePathName&lt;/a&gt; function instead which is more robust.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/use+this+not+this/"&gt;Use This Not This&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10190405" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6aHssqT-yUE:4aIYgeiGZy4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6aHssqT-yUE:4aIYgeiGZy4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=6aHssqT-yUE:4aIYgeiGZy4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6aHssqT-yUE:4aIYgeiGZy4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6aHssqT-yUE:4aIYgeiGZy4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=6aHssqT-yUE:4aIYgeiGZy4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6aHssqT-yUE:4aIYgeiGZy4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=6aHssqT-yUE:4aIYgeiGZy4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=6aHssqT-yUE:4aIYgeiGZy4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/6aHssqT-yUE" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/C_2B002B00_/">C++</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/use+this+not+this/">use this not this</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/27/use-this-not-this-apis-to-avoid-all-together.aspx</feedburner:origLink></item><item><title>Windows Desktop Developer Center Updates for 07.22.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/1GVXGyv3ekk/windows-desktop-developer-center-updates-for-07-22-2011.aspx</link><pubDate>Fri, 22 Jul 2011 18:27:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10189024</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10189024</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10189024</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/22/windows-desktop-developer-center-updates-for-07-22-2011.aspx#comments</comments><description>&lt;p&gt;Over the course of this week, we have been working hard on some new social developer content that may or may not be launching next week :)&amp;nbsp;A reminder,&amp;nbsp;we make announcements to the &lt;a href="http://twitter.com/windevs"&gt;Windows Developer Twitter Account&lt;/a&gt; and &lt;a href="http://facebook.com/windevs"&gt;Windows Developer Facebook Page&lt;/a&gt;&amp;nbsp;follow us if you want to get our announcements.&amp;nbsp; &amp;nbsp;We'll be sure to share links to the new content once it's live over these channels and the blog.&amp;nbsp; We have also continued driving the TOC changes for the learn tab on MSDN.&lt;/p&gt;
&lt;p&gt;Earlier this week I shared some insights into how the &lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/07/18/challenges-developers-face-while-developing-with-microsoft-or-how-microsoft-expects-developers-to-learn.aspx"&gt;Windows developer content team has thought about learning in the past&lt;/a&gt;.&amp;nbsp; The anecdotal recommendation for learning with MSDN is to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Avoid the reference topics while you are getting started&lt;/li&gt;
&lt;li&gt;Check the See Also links for more related topics and more comprehensive guides&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/07/09/so-you-found-an-sdk-documentation-bug.aspx"&gt;W&lt;strong&gt;hen you find errors, Submit Feedback to Microsoft about the documentation bug so we fix it&lt;/strong&gt;.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Not very many content updates to the center have gone live but the following links summarize the cool stuff that we've heard about for Windows developers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blog.airesoft.co.uk/2011/07/hookers-underneath-the-sheets/"&gt;Windows Internals - Hooks&amp;nbsp;- A blog post about hacking Windows for developers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.buildwindows.com/"&gt;Build Conference&lt;/a&gt; - We can't emphasize this enough, Build is a big deal and we're very excited (&lt;a href="http://www.youtube.com/watch?v=7iSRr3ZuLL8"&gt;we so excited&lt;/a&gt;).&amp;nbsp; You can also follow the &lt;a href="http://twitter.com/bldwin"&gt;@bldwin account&lt;/a&gt;&amp;nbsp;to receive the build conference&amp;nbsp;announcements and offers.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Just in case you haven't seen the '&lt;a href="http://www.microsoft.com/presspass/features/2011/jun11/06-01corporatenews.aspx"&gt;Windows 8' preview&lt;/a&gt;&amp;nbsp;video and press release...&lt;/p&gt;
&lt;p&gt;&lt;iframe height="349" src="http://www.youtube.com/embed/p92QfWOw88I" frameborder="0" width="560" allowfullscreen=""&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/07/13/reorganizing-the-windows-desktop-developer-center.aspx"&gt;Reorganizing the Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/01/04/the-redmond-reality-distortion-field-rdf-and-documentation.aspx"&gt;The Redmond Reality Distortion Field (RDF) and Developer Documentation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10189024" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1GVXGyv3ekk:TLXnJduiolI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1GVXGyv3ekk:TLXnJduiolI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=1GVXGyv3ekk:TLXnJduiolI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1GVXGyv3ekk:TLXnJduiolI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1GVXGyv3ekk:TLXnJduiolI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=1GVXGyv3ekk:TLXnJduiolI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1GVXGyv3ekk:TLXnJduiolI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=1GVXGyv3ekk:TLXnJduiolI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=1GVXGyv3ekk:TLXnJduiolI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/1GVXGyv3ekk" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/development/">development</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows/">windows</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/roundups/">roundups</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/redmond+RDF/">redmond RDF</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/22/windows-desktop-developer-center-updates-for-07-22-2011.aspx</feedburner:origLink></item><item><title>Challenges Developers Face while Developing with Microsoft, or, How Microsoft expects Developers to learn.</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/XDcBNTejnuo/challenges-developers-face-while-developing-with-microsoft-or-how-microsoft-expects-developers-to-learn.aspx</link><pubDate>Mon, 18 Jul 2011 18:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10187576</guid><dc:creator>gclassy</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10187576</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10187576</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/18/challenges-developers-face-while-developing-with-microsoft-or-how-microsoft-expects-developers-to-learn.aspx#comments</comments><description>&lt;p&gt;After publishing a recent post, I got some feedback from developers that I have seen a number of times.&amp;nbsp; &amp;ldquo;What is up with the scarce documentation that always shows up when I end up on MSDN?&amp;rdquo; This is the common plight of the Microsoft developer &amp;ndash; they have just started developing or are in the middle of a project, they search for an API expecting comprehensive guidance, and they get a page that looks like it was a placeholder.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The problem for developers, summarized&lt;/strong&gt;&lt;br /&gt;Microsoft docs are scarce, and rarely cover end-to-end scenarios.&amp;nbsp; Search results typically turn up reference pages that from time to time aren&amp;rsquo;t very awesome.A good example of this (that I wrote, rushing to meet DOJ requirements) can be seen here: &lt;a href="http://msdn.microsoft.com/en-us/library/ff800930(VS.85).aspx"&gt;IContactProperties::DeleteLabels Method&lt;/a&gt;. This is an example of a topic that covers the bare minimum, &amp;ldquo;F&amp;rdquo; level quality.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The problem for writers, summarized&lt;/strong&gt;&lt;br /&gt;Programming writers typically are responsible for as much content as they can take on&amp;hellip; with a little more added on for good measure.&amp;nbsp; For example, while I was writing, I was responsible for around 2000-4000 topics that were either authored, inherited, or generated.&amp;nbsp; These map 1:1 to public APIs that ship in SDKs and must meet certain minimum standards for every topic.&amp;nbsp; This means that many APIs, despite rarely being used by developers, must be documented.&amp;nbsp; As such, writers try to identify the important APIs and dedicate more time to them while focusing their best efforts on the most used APIs.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The source of the problem&lt;/strong&gt;&lt;br /&gt;As a symptom of every API being documented, many of the placeholder pages have precedence in search because the title and heading are exact matches for a search term.&amp;nbsp; This can yield landing pages and entry points for developers into the &amp;ldquo;bad&amp;rdquo; docs. As such, it seems like much of the stuff that should be documented isn&amp;rsquo;t sufficiently documented at all and this situation creates the problem for developers.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;For programmer writers, the breadth of content that must be covered makes it difficult to address everything as well as they would like.&amp;nbsp; A lot of the time, writer&amp;rsquo;s work gets churned with API changes and the 200-300 APIs that a writer documented for a release with meticulous care were changed so that the documentation is out of sync or out of date and must be redone on a very tight schedule.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The &amp;ldquo;solution&amp;rdquo;&lt;/strong&gt;&lt;br /&gt;To address these issues, Microsoft has come up with a number of solutions over the years.&amp;nbsp; The first is to use carefully structured documentation.&amp;nbsp; Developer documentation typically is authored within the latest content template that standards bodies across Microsoft try to adhere to.&amp;nbsp; When I was a writer, the content was organized as follows:&lt;br /&gt;&amp;bull;&amp;nbsp;About&lt;br /&gt;&amp;bull;&amp;nbsp;Programming Guide&lt;br /&gt;&amp;bull;&amp;nbsp;Reference&lt;/p&gt;
&lt;p&gt;We go another step and specify how the content should be authored so that things appear consistently from topic to topic. The template when I was a writer was something similar to:&lt;br /&gt;&amp;bull;&amp;nbsp;Syntax&lt;br /&gt;&amp;bull;&amp;nbsp;Parameters&lt;br /&gt;&amp;bull;&amp;nbsp;Return Value&lt;br /&gt;&amp;bull;&amp;nbsp;Remarks&lt;br /&gt;&amp;bull;&amp;nbsp;Examples&lt;br /&gt;&amp;bull;&amp;nbsp;See Also&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;By carefully organizing our content and structuring the documentation we create a few opportunities for throwing a bone to developers when they are learning a new SDK, API, or scenario.&amp;nbsp; For example, a developer could link to a sample or programming guide topic for an API if there isn&amp;rsquo;t an example on the actual reference page.&amp;nbsp; We also try to get &amp;ldquo;coverage&amp;rdquo; for topics prioritized around how much we expect developers to use a topic.&amp;nbsp; We also have sophisticated tools for sharing content (and code!) across topics and for validating that our code builds and works.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Taking the time to organize our content and publish it as we do is great and all, but we still don&amp;rsquo;t educate developers on our content structure so developers still don&amp;rsquo;t know how to find the content they need to get to &amp;ndash; almost inevitable with their own deadlines looming and things not working as they expect.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How Microsoft expects developers to use the documentation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So, now on to the point of my post.&amp;nbsp; The following is how Microsoft expects developers to use the documentation given the structure of our content and how we learn internally:&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;1)&amp;nbsp;Read the About content to learn the architecture of an API&lt;br /&gt;2)&amp;nbsp;Determine your scenarios and find them in the Programming Guide or download a sample from/with the SDK and get started with that&lt;br /&gt;3)&amp;nbsp;If developers encounter challenges or need details of an API, they can click the reference to get deeper information about a specific API&lt;/p&gt;
&lt;p&gt;My best example from content that I have authored is this:&lt;br /&gt;1)&amp;nbsp;&lt;a href="http://msdn.microsoft.com/en-us/library/dd371413(VS.85).aspx"&gt;Learn about Windows Touch, Architectural Overview &lt;br /&gt;&lt;/a&gt;2)&amp;nbsp;&lt;a href="http://msdn.microsoft.com/en-us/library/dd562100(VS.85).aspx"&gt;Choose the right approach to touch for you&lt;/a&gt;&lt;br /&gt;3)&amp;nbsp;Code something simple as demonstrated in &amp;ldquo;&lt;a href="http://msdn.microsoft.com/en-us/library/dd744775(VS.85).aspx"&gt;Detecting and Tracking Multiple Touch Points&lt;/a&gt;&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;At this point I expected the developer (reader) to have a basic understanding of what Windows Touch is and how it works in code.&amp;nbsp; The developer should have a project that works and does something (draw different colored touch points on their screen) and should be thinking about how they can use this in a larger context.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;The reality is that this story isn&amp;rsquo;t as complete as we would like it to be.&amp;nbsp; Writers aren&amp;rsquo;t forced to author in a specific structure and documentation can vary from team to team.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Additional solutions from MSDN and Microsoft&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Structuring our content as we&amp;nbsp;do&amp;nbsp;hasn't worked as well as we expected.&amp;nbsp; So, we also have developer centers such as the &lt;a href="http://msdn.com/windows/"&gt;Windows Desktop Developer Center&lt;/a&gt; which pretty much function as a band-aid for the missing or confusing structure that exist within MSDN.&amp;nbsp;Centers work pretty much as indexes and alternative tables of content to the large ones that exist within the MSDN library.&amp;nbsp; I'm currently working to make sure that for Windows, we get better with this and I'm constantly hard at work on improving the content and organization and enabling writers to improve their content and reveal the best topics using the developer center.&amp;nbsp;I'm also working on documenting "how to learn with MSDN" and this article is a brief dump of some of my brainstorming.&amp;nbsp; The following notes will later be lengthened and surfaced through the center.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;strong&gt;Some pro tips for learning&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;Find the &amp;ldquo;Programming Guide&amp;rdquo;&lt;/strong&gt;.&amp;nbsp; This content does not exist for every documented API group, but if you can find, it the programming guide should be a goldmine of information for you.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;strong&gt;Avoid reference topics if you are getting started&lt;/strong&gt;.&amp;nbsp; This is referred to as RTFM (read the fun manual) in certain circles&amp;hellip; But it&amp;rsquo;s true.&amp;nbsp; If you jump in with just the APIs, which oftentimes are rushed to be published, it can be difficult to understand what&amp;rsquo;s going on and rookie mistakes and gotchas are easy to encounter.&amp;nbsp; Make sure to keep an eye out for Note&amp;nbsp;&amp;nbsp;&amp;nbsp; and dig into the remarks section of APIs for gotchas. We (programmer writers) try to make it easy to avoid making the same mistakes that we made while learning how to develop the samples that we code and ship.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;In reference topics, &lt;strong&gt;Check the See Also section for links to more useful content&lt;/strong&gt;, especially if the topic seems particularly bare.&amp;nbsp; This is an opportunity sometimes overlooked by writers, but with a reasonable frequency writers will link to the guidance topics and howto topics from the See Also section of the documentation.&amp;nbsp; This content is at the bottom of virtually every page, so don&amp;rsquo;t forget to scroll down and check it out.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Finally, &lt;strong&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/07/09/so-you-found-an-sdk-documentation-bug.aspx"&gt;when you find errors, Submit Feedback to Microsoft about the documentation bug so we fix it&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Thanks for reading, send me some comments or horror stories, I love to bring the feedback to our teams because we can oftentimes get wrapped up in the way we expect customers to work when in reality they work so differently from what we expect.&amp;nbsp;If my thinking on how developers learn is a little too far out there, let me know too so I can adjust to how you guys really learn!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/07/09/so-you-found-an-sdk-documentation-bug.aspx"&gt;So you found a documentation bug...&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/01/04/the-redmond-reality-distortion-field-rdf-and-documentation.aspx"&gt;The Redmond RDF&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2010/08/18/microsoft-nomenclature-for-developers.aspx"&gt;Microsoft Nomenclature for Developers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/02/11/is-it-just-me-or-does-the-redesigned-windows-developer-center-suck.aspx"&gt;Is it just me or does the redesigned Windows developer center need work?&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10187576" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=XDcBNTejnuo:qqdd0I2Fpjc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=XDcBNTejnuo:qqdd0I2Fpjc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=XDcBNTejnuo:qqdd0I2Fpjc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=XDcBNTejnuo:qqdd0I2Fpjc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=XDcBNTejnuo:qqdd0I2Fpjc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=XDcBNTejnuo:qqdd0I2Fpjc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=XDcBNTejnuo:qqdd0I2Fpjc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=XDcBNTejnuo:qqdd0I2Fpjc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=XDcBNTejnuo:qqdd0I2Fpjc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/XDcBNTejnuo" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Developer+Center/">Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/C_2B002B00_/">C++</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows/">windows</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/feedback/">feedback</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/MSDN/">MSDN</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/doc+bugs/">doc bugs</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/publishing/">publishing</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/bugs/">bugs</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/documentation/">documentation</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/learn+how+to+develop+for+windows/">learn how to develop for windows</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/18/challenges-developers-face-while-developing-with-microsoft-or-how-microsoft-expects-developers-to-learn.aspx</feedburner:origLink></item><item><title>Windows Developer Center Updates for 07.15.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/V3qqvqxQ8fk/windows-developer-center-updates-for-07-15-2011.aspx</link><pubDate>Fri, 15 Jul 2011 17:20:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10186991</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10186991</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10186991</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/15/windows-developer-center-updates-for-07-15-2011.aspx#comments</comments><description>&lt;p&gt;This week, we made some progress on reorganizing the developer center and we had some great discussions with developers about what is and isn't working with MSDN documentation.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Upcoming Updates to the Learn Tab content&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;From a post earlier this week...&lt;/p&gt;
&lt;p&gt;The following is an intermediate revision to the TOC, there will be more to come as we keep getting better at this!&lt;/p&gt;
&lt;p&gt;+&lt;a href="http://msdn.com/windows/aa904962"&gt;Windows Development Learning Topics&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +&lt;a href="http://msdn.com/windows/hh308971"&gt;Learn Windows by Feature&lt;/a&gt; (not yet published)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ee960255"&gt;Learn about Windows animation manager&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ee960257"&gt;Learn about Windows Graphics&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658250"&gt;Learn About Libraries&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658252"&gt;Learn about Sensor and Location&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee624070"&gt;Learn about Windows 7 Taskbar&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee633448"&gt;Learn about Windows 7: Touch&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658251"&gt;Learn about Windows Ribbon&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +&lt;a href="http://msdn.com/windows/hh308971"&gt;Learn the developer fundamentals for Windows&lt;/a&gt; (not published yet)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/bb735024"&gt;Accessibility&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658253"&gt;Learn about Windows Web Services&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff727937"&gt;Windows Core and File Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff452054"&gt;Windows Graphics&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff727938"&gt;Windows Networking&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff524468"&gt;Windows Multimedia&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff944599"&gt;Windows Power Management&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff727936"&gt;Windows Security&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +&lt;a href="http://msdn.com/windows/hh308973"&gt;Solutions&lt;/a&gt; (not published yet)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/learnhilo"&gt;Learn how to write a Windows application with Hilo&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/library/ff381399"&gt;Learn to Progrtam for Windows in C++&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee662214"&gt;Learn About .NET Framework Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee662326"&gt;Learn About HTML Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee633449"&gt;Learn About Win32/COM Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee633447"&gt;Learn about Windows 7: Overview&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff452054"&gt;Windows Graphics How-tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff460850"&gt;Windows Networking How-tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff461253"&gt;Windows Security How-Tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff458509"&gt;Windows User Interface How-Tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee388574"&gt;Facebook SDK Overview&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +TYPE (no page created yet????)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/dd722803"&gt;Books for Windows Developers&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff972463"&gt;Browse Windows Code Samples&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff973947"&gt;Browse Windows Programming How To's&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff973809"&gt;Browse Windows Videos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff458116"&gt;C++ Videos for Visual Studio 2010&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Gg507809"&gt;Windows 7: &amp;acirc;&amp;euro;&amp;oelig;How Do I?&amp;acirc;&amp;euro; Videos&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The real goal of this reorganization is to make it more clear what sort of content you will encounter while browsing through the learn content on the developer center.&amp;nbsp; For example, when you click on the Learn by Feature section, all of the features that we have learning paths for will be made available.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Discussions with Developers about MSDN as a learning tool&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In some talks with (real, actual, Windows)&amp;nbsp;developers that I had earlier this week I was reminded of a common dilemma that developers face when developing for Windows:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;It's really hard to find the guidance documentation but it's really easy to find the reference documentation - as a result,&amp;nbsp;despite the guidance being what devs want, the reference is what they always find.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I'll dive a little deeper into this today but next week I'll follow up with more details and more thinking that I have had about this, how&amp;nbsp;we can fix it, and what we&amp;nbsp;can do until we have a solution.&amp;nbsp; At the heart of the problem is the reality that the bulk of the documentation on MSDN is reference.&amp;nbsp; This is an artifact of what programming writers know closely as the consent decree - the result of the DOJ lawsuit that mandated that all public facing code be documented to level the playing field for Microsoft's platforms.&amp;nbsp; I wrote an article on this a while back but the short version is that we have a policy to at a minimum document every interface, method, property and so on for every piece of code that ships.&amp;nbsp;This results in a significant number of pages that are placed on MSDN and also distracts from the more useful guidance documentation.&lt;/p&gt;
&lt;p&gt;Related to this dilemma is that developers don't know how we're organizing our documentation.&amp;nbsp; There is a Redmond RDF that writers have&amp;nbsp; - don't the developers know that there's a programming guide in addition to the reference? The answer being of course not! It's not the developer's fault either, it's ours.&amp;nbsp; We don't clearly document how we're organizing our content.&amp;nbsp; We also don't consistently organize it.&amp;nbsp; In the 6 or so years that I have worked at Microsoft, the organization has fundamentally changed a number of times - this certainly does not help..&lt;/p&gt;
&lt;p&gt;Anyways, tell me about the challenges that you have faced in learning&amp;nbsp;how&amp;nbsp;to develop using Microsoft&amp;nbsp;products.&amp;nbsp; I have been working on learning Windows Phone 7 and I have definitely seen the same issues that I heard about in addition to others.&amp;nbsp; Speaking of, you can download a WP7 powered blog reader for the See Also blog, grab it in the Zune marketplace here: &lt;a href="http://social.zune.net/redirect?type=phoneApp&amp;amp;id=aaa7e161-785a-e011-854c-00237de2db9e"&gt;See Also Blog Windows Phone 7 App&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/07/13/reorganizing-the-windows-desktop-developer-center.aspx"&gt;Reorganizing the Desktop Developer Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/2011/01/04/the-redmond-reality-distortion-field-rdf-and-documentation.aspx"&gt;The Redmond Reality Distortion Field (RDF) and Developer Documentation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10186991" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=V3qqvqxQ8fk:BUyYTZ0p-Rw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=V3qqvqxQ8fk:BUyYTZ0p-Rw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=V3qqvqxQ8fk:BUyYTZ0p-Rw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=V3qqvqxQ8fk:BUyYTZ0p-Rw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=V3qqvqxQ8fk:BUyYTZ0p-Rw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=V3qqvqxQ8fk:BUyYTZ0p-Rw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=V3qqvqxQ8fk:BUyYTZ0p-Rw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=V3qqvqxQ8fk:BUyYTZ0p-Rw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=V3qqvqxQ8fk:BUyYTZ0p-Rw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/V3qqvqxQ8fk" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/development/">development</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows/">windows</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/roundups/">roundups</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/windows+phone+7+apps/">windows phone 7 apps</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/redmond+RDF/">redmond RDF</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/15/windows-developer-center-updates-for-07-15-2011.aspx</feedburner:origLink></item><item><title>Reorganizing the Windows Desktop Developer Center...</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/IOkTdtKZnX4/reorganizing-the-windows-desktop-developer-center.aspx</link><pubDate>Wed, 13 Jul 2011 21:13:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10186265</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10186265</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10186265</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/13/reorganizing-the-windows-desktop-developer-center.aspx#comments</comments><description>&lt;p&gt;We're moving right along with updates to the developer center and it seems like a good time to share the reorganized learn structure:&lt;/p&gt;
&lt;p&gt;The following is an intermediate revision to the TOC, there will be more to come as we keep getting better at this!&lt;/p&gt;
&lt;p&gt;+&lt;a href="http://msdn.com/windows/aa904962"&gt;Windows Development Learning Topics&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +&lt;a href="http://msdn.com/windows/hh308971"&gt;Learn Windows by Feature&lt;/a&gt;&amp;nbsp;(not&amp;nbsp;yet published)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ee960255"&gt;Learn about Windows animation manager&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ee960257"&gt;Learn about Windows Graphics&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;- &lt;a href="http://msdn.com/windows/Ee658250"&gt;Learn About Libraries&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658252"&gt;Learn about Sensor and Location&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee624070"&gt;Learn about Windows 7 Taskbar&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee633448"&gt;Learn about Windows 7: Touch&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658251"&gt;Learn about Windows Ribbon&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +&lt;a href="http://msdn.com/windows/hh308971"&gt;Learn the developer fundamentals&amp;nbsp;for Windows&lt;/a&gt;&amp;nbsp;(not&amp;nbsp;published yet)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/bb735024"&gt;Accessibility&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee658253"&gt;Learn about Windows Web Services&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff727937"&gt;Windows Core and File Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff452054"&gt;Windows Graphics&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff727938"&gt;Windows Networking&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff524468"&gt;Windows Multimedia&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff944599"&gt;Windows Power Management&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/ff727936"&gt;Windows Security&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +&lt;a href="http://msdn.com/windows/hh308973"&gt;Solutions&lt;/a&gt;&amp;nbsp;(not published yet)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/learnhilo"&gt;Learn how to write a Windows application with Hilo&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/library/ff381399"&gt;Learn to Progrtam for Windows in C++&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee662214"&gt;Learn About .NET Framework Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee662326"&gt;Learn About HTML Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee633449"&gt;Learn About Win32/COM Development&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee633447"&gt;Learn about Windows 7: Overview&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff452054"&gt;Windows Graphics How-tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff460850"&gt;Windows Networking How-tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff461253"&gt;Windows Security How-Tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff458509"&gt;Windows User Interface How-Tos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ee388574"&gt;Facebook SDK Overview&lt;/a&gt;&lt;br /&gt;&amp;nbsp; +TYPE (no page created yet????)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp;&lt;a href="http://msdn.com/windows/dd722803"&gt;Books for Windows Developers&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff972463"&gt;Browse Windows Code Samples&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff973947"&gt;Browse Windows Programming How To's&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff973809"&gt;Browse Windows Videos&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Ff458116"&gt;C++ Videos for Visual Studio 2010&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;a href="http://msdn.com/windows/Gg507809"&gt;Windows 7: &amp;acirc;&amp;euro;&amp;oelig;How Do I?&amp;acirc;&amp;euro; Videos&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It's not perfect, it's not final... But it feels like we're taking steps in the right direction with the center.&amp;nbsp; Even after we reorganize the pages, we'll need to put some serious work into the target content on the pages.&amp;nbsp; Let me know what you think, do you see this as moving in the right direction?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10186265" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IOkTdtKZnX4:r0gdN6b5L74:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IOkTdtKZnX4:r0gdN6b5L74:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=IOkTdtKZnX4:r0gdN6b5L74:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IOkTdtKZnX4:r0gdN6b5L74:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IOkTdtKZnX4:r0gdN6b5L74:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=IOkTdtKZnX4:r0gdN6b5L74:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IOkTdtKZnX4:r0gdN6b5L74:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=IOkTdtKZnX4:r0gdN6b5L74:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=IOkTdtKZnX4:r0gdN6b5L74:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/IOkTdtKZnX4" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+7/">Windows 7</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/code+samples/">code samples</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/browse+by+resource/">browse by resource</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/what+developers+want/">what developers want</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/13/reorganizing-the-windows-desktop-developer-center.aspx</feedburner:origLink></item><item><title>Windows Developer Center Updates for 07.08.2011</title><link>http://feedproxy.google.com/~r/msdn/qLDK/~3/lkw7Lm3nhfI/windows-developer-center-updates-for-07-08-2011.aspx</link><pubDate>Fri, 08 Jul 2011 17:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10184662</guid><dc:creator>gclassy</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.msdn.com/b/seealso/rsscomments.aspx?WeblogPostID=10184662</wfw:commentRss><wfw:comment>http://blogs.msdn.com/b/seealso/commentapi.aspx?WeblogPostID=10184662</wfw:comment><comments>http://blogs.msdn.com/b/seealso/archive/2011/07/08/windows-developer-center-updates-for-07-08-2011.aspx#comments</comments><description>&lt;p&gt;This week, we have the following&amp;nbsp;changes / updates on the center:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We released a translation of the Windows Touch Developer guide in Spanish.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;New changes coming soon to the developer center home and learn tabs, finally&amp;nbsp;:)&amp;nbsp;&lt;/li&gt;
&lt;li&gt;The ratings control is working and we're getting your feedback!&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Windows Touch Developer Guide&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Spanish subsidiary of Windows developer evangelism translated the &lt;a href="http://archive.msdn.microsoft.com/wintouchguide"&gt;Windows Touch Developer&lt;/a&gt; guide to spanish, &lt;a href="http://archive.msdn.microsoft.com/wintouchguide/Release/ProjectReleases.aspx?ReleaseId=5431"&gt;Gu&amp;iacute;a de APIs para Windows t&amp;aacute;ctil&lt;/a&gt;.&amp;nbsp; This guide contains&amp;nbsp;a great summary of everything you need to know for creating touch experiences on Windows.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;New changes to the center coming...&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We're currently working on some of the changes we have been fighting for over the past few months.&amp;nbsp; The following images are a preview of how we'll be simplifying the homepage and learn tabs:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://wheresgus.com/home.png" width="580" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://wheresgus.com/learn.png" width="580" /&gt;&lt;/p&gt;
&lt;p&gt;The following changes apply to the &lt;a href="http://msdn.com/windows"&gt;Windows Developer center home page&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Removed links into learning content.&amp;nbsp; By having all the learning content on the learn page, you can go to one place to find all of our guidance rather than try to figure out whether it's on the home page / learn page.&lt;/li&gt;
&lt;li&gt;Removed the right rail.&amp;nbsp; This was an ugly UI blemish that has been carry over from Vista design.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following changes apply to the Windows Developer Center Learn page:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;New categories of learn topics.&lt;/li&gt;
&lt;li&gt;More comprehensive integration of the resource pages.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We'll be sure to announce when the updates go live, should be a week or two.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;We hear you!!!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Feedback controls were added to the center pages last month and we're seeing feedback!&amp;nbsp; Please take the time to rate our pages by clicking the stars up top and adding comments. The volume of feedback is currently small enough for us to address all feedback so here's your chance to get your inputs on the center!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;See Also&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/07/04/windows-client-developer-roundup-075-for-7-4-2011"&gt;Pete Brown's Windows Client Developer Roundup for 07.04.2011&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.com/windows"&gt;Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/windows/aa904962"&gt;Learn about Windows Development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/seealso/archive/tags/roundups/"&gt;Windows Developer Center Roundups&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10184662" width="1" height="1"&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=lkw7Lm3nhfI:NBM8IUYpcQM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=lkw7Lm3nhfI:NBM8IUYpcQM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=lkw7Lm3nhfI:NBM8IUYpcQM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=lkw7Lm3nhfI:NBM8IUYpcQM:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=lkw7Lm3nhfI:NBM8IUYpcQM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=lkw7Lm3nhfI:NBM8IUYpcQM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=lkw7Lm3nhfI:NBM8IUYpcQM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/msdn/qLDK?a=lkw7Lm3nhfI:NBM8IUYpcQM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/msdn/qLDK?i=lkw7Lm3nhfI:NBM8IUYpcQM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/msdn/qLDK/~4/lkw7Lm3nhfI" height="1" width="1"/&gt;</description><category domain="http://blogs.msdn.com/b/seealso/archive/tags/Windows+Developer+Center/">Windows Developer Center</category><category domain="http://blogs.msdn.com/b/seealso/archive/tags/roundups/">roundups</category><feedburner:origLink>http://blogs.msdn.com/b/seealso/archive/2011/07/08/windows-developer-center-updates-for-07-08-2011.aspx</feedburner:origLink></item></channel></rss>
