<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Contagious Curiosity : PDC</title><link>http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx</link><description>Tags: PDC</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Trying out Code Contracts from Microsoft Research</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/12/28/trying-out-code-contracts-from-microsoft-research.aspx</link><pubDate>Sun, 28 Dec 2008 09:35:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9254742</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9254742.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9254742</wfw:commentRss><description>&lt;p&gt;There are two sections that get added to VS 2008 after you install the &lt;a href="http://research.microsoft.com/en-us/projects/contracts/"&gt;add-in from MSR to test Code Contracts&lt;/a&gt;.&amp;#160; The first one is simply called 'Contracts'. &lt;/p&gt;  &lt;p&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="347" alt="Contracts configuration in VS 2008" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/TryingoutCodeContractsfromMicrosoftResea_13D97/image_5.png" width="454" border="0" /&gt; &lt;/p&gt;  &lt;p&gt;The second tab is named 'Code Contracts'.&amp;#160; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/TryingoutCodeContractsfromMicrosoftResea_13D97/image_4.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="353" alt="Code Contracts configuration in VS 2008" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/TryingoutCodeContractsfromMicrosoftResea_13D97/image_thumb_1.png" width="454" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The MSR team did a &lt;a href="http://channel9.msdn.com/pdc2008/TL51/"&gt;presentation at PDC08&lt;/a&gt; about Code Contracts and the &lt;a href="http://research.microsoft.com/en-us/projects/pex/"&gt;Pex&lt;/a&gt; automated-testing tool.&lt;/p&gt;  &lt;p&gt;In the area of contract-based coding at Microsoft, there is also &lt;a href="http://research.microsoft.com/en-us/projects/specsharp/"&gt;Spec#&lt;/a&gt;.&amp;#160; Sample shown below.&lt;/p&gt;  &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;using &lt;/span&gt;System;
&lt;span style="color: blue"&gt;using &lt;/span&gt;Microsoft.Contracts;

&lt;span style="color: blue"&gt;public class &lt;/span&gt;Program
{
  &lt;span style="color: blue"&gt;static void &lt;/span&gt;Main(&lt;span style="color: blue"&gt;string&lt;/span&gt;![]! args) 
  {
    Console.WriteLine(&lt;span style="color: maroon"&gt;&amp;quot;Spec# says hello!&amp;quot;&lt;/span&gt;);
  }
  
  &lt;span style="color: blue"&gt;public int &lt;/span&gt;Add(&lt;span style="color: blue"&gt;int &lt;/span&gt;i, &lt;span style="color: blue"&gt;int &lt;/span&gt;j)
  
    &lt;span style="color: blue"&gt;requires &lt;/span&gt;i &amp;gt; 5;
    &lt;span style="color: blue"&gt;requires &lt;/span&gt;j &amp;lt; 3; 
    {
        &lt;span style="color: blue"&gt;int &lt;/span&gt;r = i + j;
        &lt;span style="color: blue"&gt;return &lt;/span&gt;r;
    }
    
}&lt;/pre&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;Have you had time to look at contract-based coding?&amp;#160; What do you think about it?&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9254742" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category></item><item><title>What's in your Visual Studio?</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/12/23/what-s-in-your-visual-studio.aspx</link><pubDate>Wed, 24 Dec 2008 01:11:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9251011</guid><dc:creator>llangit</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9251011.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9251011</wfw:commentRss><description>&lt;p&gt;&lt;img height="72" alt="VS2008" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/WhatsinyourVisualStudio_C768/VS2008_3.png" width="240" /&gt; &lt;/p&gt;  &lt;p&gt;As I continue my current language-exploring mode, I've noticed that Visual Studio 2008 is becoming a candy store for me.&amp;#160; Is it just me, or do we have an incredible amount of new stuff to play with?&amp;#160; I can't really remember the last time I watched TV, other than &lt;a href="http://www.imdb.com/title/tt1010048/"&gt;Slumdog Millionaire&lt;/a&gt; there hasn't been a movie to catch my interest for awhile and when I am done coding, I just want to read a technical book to 'go deeper' in this stuff.&amp;#160; I going to need a &lt;strong&gt;geek-intervention&lt;/strong&gt; soon if I keep it up at this rate!&amp;#160; Now I am looking at the &lt;a href="http://msdn.microsoft.com/en-us/vsx/default.aspx"&gt;Visual Studio Extensibility Center&lt;/a&gt;, uh oh...&lt;/p&gt;  &lt;p&gt;Here's my list of installed stuff- Azure SDK, Robotics SDK, Spec # CTP, IronPython Studio, F# CTP, Oslo and M CTP, Parallel Extension for .NET - I got the .NET 4.0 WCF / WF stuff from PDC (looked at in that VPC, don't even know if it's downloadable yet).&amp;#160; I feel like I am 'losing it' on Silverlight 2.0, Silverlight toolkit, AJAX toolkit, AJAX futures - haven't looked at it since PDC.&amp;#160; What am I missing?&lt;/p&gt;  &lt;p&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="315" alt="Lynn&amp;#39;s New Project Treasure Chest" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/WhatsinyourVisualStudio_C768/image_3.png" width="454" border="0" /&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;How about you?&amp;#160; What have you downloaded and installed into VS2008 that has delighted you?&amp;#160; &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9251011" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/F_2300_/default.aspx">F#</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Cloud+development/default.aspx">Cloud development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Parallel+Computing/default.aspx">Parallel Computing</category></item><item><title>CodeRush Xpress for C#</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/12/19/coderush-xpress-for-c.aspx</link><pubDate>Fri, 19 Dec 2008 12:11:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9241442</guid><dc:creator>llangit</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9241442.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9241442</wfw:commentRss><description>&lt;p&gt;I'm all for free developer productivity tools.&amp;#160; Check this one out.&lt;/p&gt;  &lt;p&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="368" alt="Refactoring using inline delegates" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/CodeRushXpressforC_10A2/image_3.png" width="504" border="0" /&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/vcsharp/dd218053.aspx"&gt;CodeRush Xpress for C#&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9241442" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Vista+development/default.aspx">Vista development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/ASP.NET+development/default.aspx">ASP.NET development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category></item><item><title>TechZulu asks 'What does ScottGu do for fun?'</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/12/16/techzulu-asks-what-does-scottgu-do-for-fun.aspx</link><pubDate>Tue, 16 Dec 2008 23:58:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9228377</guid><dc:creator>llangit</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9228377.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9228377</wfw:commentRss><description>&lt;p&gt;Check out TechZulu's two interviews with Scott Gutherie at the PDC Underground party.&lt;/p&gt;  &lt;p&gt;&lt;object id="viddler" height="333" width="437" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" gettimepoint="gettimepoint" viddlerseek="viddlerseek" viddlerswitch="viddlerswitch" viddleropen="viddleropen" viddlerpause="viddlerpause" setmovie="setmovie" stopmovie="stopmovie" pausemovie="pausemovie"&gt;&lt;param name="_cx" value="11562"&gt;&lt;param name="_cy" value="8811"&gt;&lt;param name="FlashVars" value=""&gt;&lt;param name="Movie" value="http://www.viddler.com/player/b180bf5b/"&gt;&lt;param name="Src" value="http://www.viddler.com/player/b180bf5b/"&gt;&lt;param name="WMode" value="Transparent"&gt;&lt;param name="Play" value="0"&gt;&lt;param name="Loop" value="-1"&gt;&lt;param name="Quality" value="High"&gt;&lt;param name="SAlign" value="LT"&gt;&lt;param name="Menu" value="0"&gt;&lt;param name="Base" value=""&gt;&lt;param name="AllowScriptAccess" value="always"&gt;&lt;param name="Scale" value="NoScale"&gt;&lt;param name="DeviceFont" value="0"&gt;&lt;param name="EmbedMovie" value="0"&gt;&lt;param name="BGColor" value=""&gt;&lt;param name="SWRemote" value=""&gt;&lt;param name="MovieData" value=""&gt;&lt;param name="SeamlessTabbing" value="1"&gt;&lt;param name="Profile" value="0"&gt;&lt;param name="ProfileAddress" value=""&gt;&lt;param name="ProfilePort" value="0"&gt;&lt;param name="AllowNetworking" value="all"&gt;&lt;param name="AllowFullScreen" value="true"&gt; &lt;embed src="http://www.viddler.com/player/b180bf5b/" width="437" height="333" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" name="viddler"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;  &lt;p&gt;In the second video (linked), Scott talks PDC announcements, enhancements to the ASP.NET stack and more.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.techzulu.com/scott-guthrie-talks-about-microsofts-future-plans-and-what-it-takes-to-be-the-gu-in-aspnet.html"&gt;Scott Guthrie Talks about Microsofts Future Plans and what it takes to be the Gu in ASP.NET&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9228377" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/ASP.NET+development/default.aspx">ASP.NET development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category></item><item><title>I tell Geoff everything (again!)</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/12/12/i-tell-geoff-everything-again.aspx</link><pubDate>Fri, 12 Dec 2008 21:07:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9202975</guid><dc:creator>llangit</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9202975.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9202975</wfw:commentRss><description>&lt;p&gt;&lt;object id="viddler" height="333" width="437" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" gettimepoint="gettimepoint" viddlerseek="viddlerseek" viddlerswitch="viddlerswitch" viddleropen="viddleropen" viddlerpause="viddlerpause" setmovie="setmovie" stopmovie="stopmovie" pausemovie="pausemovie"&gt;&lt;param name="_cx" value="11562"&gt;&lt;param name="_cy" value="8811"&gt;&lt;param name="FlashVars" value=""&gt;&lt;param name="Movie" value="http://www.viddler.com/player/8e3b05c8/"&gt;&lt;param name="Src" value="http://www.viddler.com/player/8e3b05c8/"&gt;&lt;param name="WMode" value="Transparent"&gt;&lt;param name="Play" value="0"&gt;&lt;param name="Loop" value="-1"&gt;&lt;param name="Quality" value="High"&gt;&lt;param name="SAlign" value="LT"&gt;&lt;param name="Menu" value="0"&gt;&lt;param name="Base" value=""&gt;&lt;param name="AllowScriptAccess" value="always"&gt;&lt;param name="Scale" value="NoScale"&gt;&lt;param name="DeviceFont" value="0"&gt;&lt;param name="EmbedMovie" value="0"&gt;&lt;param name="BGColor" value=""&gt;&lt;param name="SWRemote" value=""&gt;&lt;param name="MovieData" value=""&gt;&lt;param name="SeamlessTabbing" value="1"&gt;&lt;param name="Profile" value="0"&gt;&lt;param name="ProfileAddress" value=""&gt;&lt;param name="ProfilePort" value="0"&gt;&lt;param name="AllowNetworking" value="all"&gt;&lt;param name="AllowFullScreen" value="true"&gt; &lt;embed src="http://www.viddler.com/player/8e3b05c8/" width="437" height="333" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" name="viddler"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;  &lt;p&gt;Check out &lt;a href="http://blog.geoffreyemery.com/"&gt;Geoffrey Emery's&lt;/a&gt; interview with me at PDC Underground.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.techzulu.com/language-specialist-meets-bi-expert-held-together-by-girl-geek-power-this-and-more-with-lynn-langit.html"&gt;Language Specialist Meets BI Expert Held together by Girl Geek power this and more with Lynn Langit&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9202975" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Vista+development/default.aspx">Vista development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Technical+Conference/default.aspx">Technical Conference</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Cloud+development/default.aspx">Cloud development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/VS2010/default.aspx">VS2010</category></item><item><title>Screencasts on emerging .NET developers technologies</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/11/20/screencasts-on-emerging-net-developers-technologies.aspx</link><pubDate>Thu, 20 Nov 2008 04:58:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9126981</guid><dc:creator>llangit</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9126981.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9126981</wfw:commentRss><description>&lt;p&gt;Hey check out these cool screencasts from the &lt;a href="http://www.pluralsight.com/community/blogs/default.aspx"&gt;braniacs&lt;/a&gt; over at &lt;a href="http://www.pluralsight.com"&gt;Pluralsight&lt;/a&gt;.&amp;#160; They show you current and emerging technologies, such as AtomPub, Atom feed, implementing WCF, sequential workflows and much more.&amp;#160; My personal favorite is Jon Flanders talking about the new 'M' (modeling) language introduced at PDC08.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.pluralsight.com/main/screencasts/screencast.aspx?id=intro-to-m"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="188" alt="Jon Flanders on M" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/Screencastsone.NETdeveloperstechnologies_FCA9/image_3.png" width="454" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.pluralsight.com/main/screencasts/default.aspx"&gt;Pluralsight - Screencasts&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9126981" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category></item><item><title>SERIOUS PLAY @PDC08 and more</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/10/29/serious-play-pdc08-and-more.aspx</link><pubDate>Wed, 29 Oct 2008 09:41:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9021720</guid><dc:creator>llangit</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9021720.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9021720</wfw:commentRss><description>&lt;p&gt;I really love PDC - so many announcements (check out &lt;a href="http://channel9.msdn.com/tags/PDC08/" target="_blank"&gt;MSDN Ch9 videos&lt;/a&gt; from the event), seeing so many friends in person, geekdom and now WomenBuild with Serious Play from Lego - oh, and it's in my home town too!&lt;/p&gt; &lt;p&gt;&lt;a href="http://brunoterkaly.com/"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="163" alt="Bruno and me at the MSDN party" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/SERIOUSPLAYPDC08andmore_14D33/BrunoAndMe_3.jpg" width="244" border="0"&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;The many funny T-shirts are cracking me up as well.&lt;/p&gt; &lt;p&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="geeks rule" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/SERIOUSPLAYPDC08andmore_14D33/geek_1.jpg" width="244" border="0"&gt; &lt;/p&gt; &lt;p&gt;See more &lt;a href="http://tinyurl.com/6ezmq7 " target="_blank"&gt;pictures&lt;/a&gt; from PDC08&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.seriousplay.com/"&gt;LEGO SERIOUS PLAY - BUILD YOUR WAY TO BETTER BUSINESS&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9021720" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Cloud+development/default.aspx">Cloud development</category></item><item><title>MS Surface in the real world ATT Retail Demo, and, at PDC08</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/10/25/ms-surface-in-the-real-world-att-retail-demo-and-at-pdc08.aspx</link><pubDate>Sat, 25 Oct 2008 08:00:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9015751</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9015751.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9015751</wfw:commentRss><description>&lt;p&gt;Interesting to see 'real-world' use of Microsoft Surface.&amp;#160; This video was taken an an ATT phone store California and it shows a store employee explaining how to use the MS-Surface application to help customers.&lt;/p&gt;  &lt;p&gt;&lt;embed src="http://www.youtube.com/v/mOXtS9jxJik" width="425" height="350" type="application/x-shockwave-flash" /&gt; &lt;/p&gt;  &lt;p&gt;Since I am getting ready to head downtown LA for a week to attend PDC08.&amp;#160; I can't help but think about what kind of applications the PDC attendees will develop on the Surface.&amp;#160; Our MS Surface team announced on their &lt;a href="http://blogs.msdn.com/surface/archive/2008/10/17/surface-pdc.aspx"&gt;blog&lt;/a&gt; that every attendee at PDC08 will be able to get the MS Surface SDK. &lt;/p&gt;  &lt;p&gt;Considering the, ahem, festive nature of PDC, the MS Surface project (potential application) shown in the video below could really be put to some high volume usability tests by the attendees. :)&lt;/p&gt;  &lt;p&gt;&lt;embed src="http://www.youtube.com/v/DG3_2lvoL8A&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;fs=1" width="425" height="344" type="application/x-shockwave-flash" allowfullscreen="true" /&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9015751" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category></item><item><title>PDC, TechDays, CodeCamp, BarCamp - Oct / Nov Developer events in SoCal!</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/10/15/pdc-techdays-codecamp-barcamp-oct-nov-developer-events-in-socal.aspx</link><pubDate>Wed, 15 Oct 2008 20:20:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9000774</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/9000774.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=9000774</wfw:commentRss><description>&lt;p&gt;We'll we've got a raft of live events coming up in SoCal for developers in late October and early November.&amp;#160; You may be thinking, hmm...which one(s) do I go to? how do I choose?&amp;#160; I'll write a bit about all them here, maybe that will help you to choose.   &lt;br /&gt;&lt;a href="http://microsoftpdc.com/Default.aspx"&gt;&lt;img alt="Ask The Brain at PDC08" src="http://microsoftpdc.com/Images/askTheBrain.gif" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If you can afford it, PDC08 is always inspirational, exciting and just plain old fun.&amp;#160;&amp;#160; Our tip, bring your boss with you.&amp;#160; No, we don't mean actually hang around together at the event, just convince your boss that the content is so compelling (which, actually, it is) that they have to be there!&amp;#160; Then, of course, so do you, right? &lt;/p&gt;  &lt;p&gt;PDC runs Monday, Oct 27 through Thursday, Oct 30 - here's the &lt;a href="http://www.microsoftpdc.com/Agenda/"&gt;schedule&lt;/a&gt; (with optional &lt;a href="https://sessions.microsoftpdc.com/public/sessions.aspx"&gt;preCons&lt;/a&gt; on Sunday, Oct 26).&amp;#160; Why PDC?&amp;#160; Well, we (Microsoft) show nearly every new thing we are working on there.&amp;#160; Stuff like &lt;a href="http://windows7news.com/"&gt;Windows 7&lt;/a&gt; and much more.&amp;#160; Take a look at the &lt;a href="https://sessions.microsoftpdc.com/public/sessions.aspx"&gt;sessions&lt;/a&gt; list to get a flavor.&amp;#160; While there you also get direct access to the majority of our product group teams who are presenting there, so, really, what could be better than that?&amp;#160; Oh, and there's keynotes from people like Scott Guthrie, etc...You can watch a bunch of &lt;a href="http://channel9.msdn.com/tags/PDC+2008/"&gt;videos on our own Channel 9 about PDC&lt;/a&gt; as well. &lt;/p&gt;  &lt;p&gt;PrePDC you have some interesting choices.&amp;#160; If you are registered for PDC, then you may want to attend a PDC preCon.&amp;#160; My personal favorite, of course, is the one that I am facilitating - that is &lt;a href="http://microsoftpdc.com/Agenda/Preconference.aspx#womenbuild"&gt;WomenBuild&lt;/a&gt; - SeriousPlay with Legos.&amp;#160; If you plan to attend any of the PDC preCons, you must register separately for them.&amp;#160; Oh, and WomenBuild is the only PDC preCon that is FREE for registered PDC attendees.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.socalcodecamp.com/default.aspx"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="119" alt="So Cal Code Camp" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/PDCTechDaysCodeCampBarCampOctNovDevelope_916E/image_3.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Alternatively pre-PDC you can attend the first-in-LA CodeCamp - by developers for developers on Saturday, Oct 25 and Sunday, Oct 26.&amp;#160; Of course, you don't have to be registered for PDC to attend CodeCamp.&amp;#160; Like most CodeCamps, it's FREE.&amp;#160; Here's the &lt;a href="http://www.socalcodecamp.com/schedule.aspx"&gt;session&lt;/a&gt; list for SoCalCodeCamp.&amp;#160; SoCalCodeCamp is being held on the USC campus.&amp;#160; Most presenters are working developers, most sessions (but not all) have information about current .NET technologies.&amp;#160; There are sessions about non .NET developer technologies as well.&amp;#160; I've attended (and spoken at) many CodeCamps (San Diego, Orange Country, SVC) and always find them to be informative and a great place for networking.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://barcamp.org/BarCampLA-6"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="108" alt="BarCamp LA" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/PDCTechDaysCodeCampBarCampOctNovDevelope_916E/image_6.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Very alternatively pre-PDC, you can attend &lt;a href="http://barcampla.org/"&gt;LA BarCamp&lt;/a&gt;.&amp;#160; It's being held Saturday, Oct 25 and Sunday, Oct 26 at the Mahalo offices in Santa Monica.&amp;#160; It's also FREE.&amp;#160; In case you aren't familiar with BarCamp-style events, there are kind of similar to CodeCamp, in that community members make, mostly technical, presentations.&amp;#160; The big differences are that, even though there is a &lt;a href="http://barcamp.org/BarCampLA-6"&gt;session schedule&lt;/a&gt;, the actual sessions aren't posted until the day of the event.&amp;#160; Usually there is a paper grid with post-its, so that there is extreme flexibility in session topics and times.&amp;#160; Also, presentation topics tend to be more varied - I've been at barCamps where there are deep technical presentations along side with presentations about crafting and metaphysics.&amp;#160; BarCamps are quite alternative, more emphasis on fun, so if that's what you like, then go there!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.msdnevents.com/orangecounty/"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="214" alt="TechDays Irvine" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/PDCTechDaysCodeCampBarCampOctNovDevelope_916E/image_9.png" width="404" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;After the PDC/Code Camp/BarCamp frenzy is over, there is still more for you.&amp;#160; We are having our own local, little shin-dig in Irvine for our developers (and ITPros) from Tuesday, Nov 11 to Thursday, Nov 13.&amp;#160; We're calling it TechDays and you can &lt;a href="http://www.msdnevents.com/orangecounty/"&gt;register&lt;/a&gt; (it's also FREE) already.&amp;#160; We are working on finalizing speakers now and will be posting information about them on the TechDays website soon.&amp;#160; You can see from the registration that we've got 'best of PDC' content and more for developers, along with topics of interest for ITPros.&amp;#160; The event is modular, meaning you register (and attend) the parts that are interesting to you, that is you may choose to attend only Tuesday morning and Wednesday afternoon, etc...&amp;#160; This is a new type of event for us and we'll be interested to see how you like it.&amp;#160; Of course, there will be surprises and updates as we get closer to the actual event. &lt;/p&gt;  &lt;p&gt;We're really interested in putting on and supporting live events that you find useful and fun.&amp;#160; I welcome feedback on all of these events.&amp;#160; Also, I'll actually be at most of these events (yes, you may wonder how I can actually be at three events at the same time), so you can just find me and TELL me in person!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9000774" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/MSDN+events/default.aspx">MSDN events</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Technical+Conference/default.aspx">Technical Conference</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category></item><item><title>Psst...wanna' meet some geekGirls at PDC08?</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/10/07/psst-wanna-meet-some-geekgirls-at-pdc08.aspx</link><pubDate>Tue, 07 Oct 2008 04:02:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8980402</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/8980402.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=8980402</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://www.microsoftpdc.com/Agenda/Preconference.aspx"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="466" alt="womenBuild at PDC" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/Psst.wannameetsomegeekGirlsatPDC08_FDBC/womenBuild_3.jpg" width="470" border="0"&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt; &lt;p&gt;Then join us at &lt;a href="http://www.microsoftpdc.com/Agenda/Preconference.aspx#womenbuild"&gt;WomenBuild&lt;/a&gt;.&amp;nbsp; So, what the heck is this?&amp;nbsp; It's a free session for developers who are registered for PDC08.&amp;nbsp; Guess what - it's for &lt;strong&gt;both men and women!&lt;/strong&gt; The pre-con session is centered around building your career as a developer.&amp;nbsp; It will be held on Sunday, Oct 26 from 10 am to 5:45 pm at the LA Convention Center.&amp;nbsp; Yes, the focus is on growing careers for women developers in particular, but we know from experience that some men are interested in this topic as well. Plus, you get to play with LEGOs all day.&amp;nbsp; At this pre-con we are implementing Microsoft's first instance of the LEGO adult learning, &lt;a href="http://www.seriousplay.com/"&gt;SERIOUS PLAY&lt;/a&gt; program.&amp;nbsp; If you are interested (and are already registered for PDC), then you must &lt;a href="http://www.microsoftpdc.com/Agenda/Preconference.aspx#womenbuild"&gt;REGISTER specifically for this pre-con&lt;/a&gt;, as space is limited.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Oh, if you do sign up, also join our &lt;a href="http://www.new.facebook.com/group.php?gid=47027341816&amp;amp;ref=mf"&gt;Facebook group for WomenBuild&lt;/a&gt;, as we envision this as the first of a series of career-building events for developers using LEGO bricks and the Serious Play methodology.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.microsoftpdc.com/Agenda/Preconference.aspx"&gt;PDC2008 | Agenda | Pre-Conference&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8980402" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Helping/default.aspx">Helping</category></item><item><title>Solving Microsoft PDC Hard Hat Challenge #4</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/09/03/solving-microsoft-pdc-hard-hat-challange-4.aspx</link><pubDate>Wed, 03 Sep 2008 06:51:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8921180</guid><dc:creator>llangit</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/8921180.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=8921180</wfw:commentRss><description>&lt;p&gt;Do you like code puzzles?&amp;#160; Did you know we were throwing out challenges around PDC?&amp;#160; To read how a 15-year old from Hungary solved this week, just check out the blog link below.&amp;#160; Congrats and geek-cred to Niner &lt;a href="http://channel9.msdn.com/Niners/palotasb/"&gt;'palotasb (Boldizsar)&lt;/a&gt;'&lt;/p&gt;  &lt;p&gt;&lt;img height="375" alt="The numbers- what do they mean?" src="http://boldizsar.palotas.eu/upload/images/hardhat4numbers.png" width="500" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://boldizsar.palotas.eu/blog/?p=62"&gt;Solving Microsoft PDC Hard Hat Challange #4 [updated] at Palot&amp;#225;sB. blogja&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8921180" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category></item><item><title>The Art of Multiprocessor Programming</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/08/17/the-art-of-multiprocessor-programming.aspx</link><pubDate>Sun, 17 Aug 2008 19:13:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8875047</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/8875047.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=8875047</wfw:commentRss><description>&lt;p&gt;What are you reading these days?&amp;#160; Here's what I am 'up to':&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.amazon.com/Art-Multiprocessor-Programming-Maurice-Herlihy/dp/0123705916"&gt;&lt;img alt="The Art of Multiprocessor Programming" src="http://www.elsevier.com/framework_products/images/91/714091.gif" border="0" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I am really enjoying this book, for it's balance of theory and practical application.&amp;#160; Now, it does use Java for it's examples, although I generally code in C#, I find enough similarity between the two languages that the Java examples are still quite useful for me.&lt;/p&gt;  &lt;p&gt;I do think we all need to start paying attention to this topic - to that end here are some links that you might find useful:&lt;/p&gt;  &lt;p&gt;PLINQ webcast by Daniel Moth - &lt;a title="http://www.microsoft.com/uk/msdn/nuggets/nugget/292/Parallel-LINQ-PLINQ.aspx" href="http://www.microsoft.com/uk/msdn/nuggets/nugget/292/Parallel-LINQ-PLINQ.aspx"&gt;http://www.microsoft.com/uk/msdn/nuggets/nugget/292/Parallel-LINQ-PLINQ.aspx&lt;/a&gt;     &lt;br /&gt;    &lt;br /&gt;About PLINQ on MSDN Ch9 - &lt;a title="http://channel9.msdn.com/shows/Going+Deep/Joe-Duffy-and-Igor-Ostrovsky-Parallel-LINQ-under-the-hood/" href="http://channel9.msdn.com/shows/Going+Deep/Joe-Duffy-and-Igor-Ostrovsky-Parallel-LINQ-under-the-hood/"&gt;http://channel9.msdn.com/shows/Going+Deep/Joe-Duffy-and-Igor-Ostrovsky-Parallel-LINQ-under-the-hood/&lt;/a&gt;     &lt;br /&gt;    &lt;br /&gt;Anders and Joe Duffy on MSDN Ch9 - &lt;a title="http://channel9.msdn.com/shows/Going+Deep/Programming-in-the-Age-of-Concurrency-Anders-Hejlsberg-and-Joe-Duffy-Concurrent-Programming-with/" href="http://channel9.msdn.com/shows/Going+Deep/Programming-in-the-Age-of-Concurrency-Anders-Hejlsberg-and-Joe-Duffy-Concurrent-Programming-with/"&gt;http://channel9.msdn.com/shows/Going+Deep/Programming-in-the-Age-of-Concurrency-Anders-Hejlsberg-and-Joe-Duffy-Concurrent-Programming-with/&lt;/a&gt;     &lt;br /&gt;    &lt;br /&gt;Parallel Computing on MSDN - &lt;a title="http://msdn.microsoft.com/en-us/concurrency/default.aspx" href="http://msdn.microsoft.com/en-us/concurrency/default.aspx"&gt;http://msdn.microsoft.com/en-us/concurrency/default.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Order this book - &lt;a href="http://www.amazon.com/Art-Multiprocessor-Programming-Maurice-Herlihy/dp/0123705916"&gt;Amazon.com: The Art of Multiprocessor Programming: Maurice Herlihy, Nir Shavit: Books&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;If you are attending &lt;a href="https://sessions.microsoftpdc.com/public/sessions.aspx"&gt;PDC08&lt;/a&gt;, there are already 4 announced sessions on parallel computing:&lt;/p&gt;  &lt;p&gt;&lt;a href="https://sessions.microsoftpdc.com/public/sessions.aspx"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="211" alt="PDC08 sessions on parallel computing" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/TheArtofMultiprocessorProgramming_81B2/image_3.png" width="504" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8875047" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Parallel+Computing/default.aspx">Parallel Computing</category></item><item><title>Cool PDC2008 Contests</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/08/12/cool-pdc2008-contests.aspx</link><pubDate>Tue, 12 Aug 2008 02:58:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8849517</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/8849517.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=8849517</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://www.microsoftpdc.com/Social/Contests.aspx"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="186" alt="Cool PDC contests!" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/CoolPDC2008Contests_EE90/image_3.png" width="454" border="0" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;The &lt;a href="http://microsoftpdc.com/Default.aspx"&gt;Professional Developer's Conference&lt;/a&gt; (Oct 27-30, 2008) is already my favorite public, Microsoft technical event because of it's pure geekiness - I mean where else will you find &lt;a href="https://sessions.microsoftpdc.com/public/sessions.aspx"&gt;sessions&lt;/a&gt; like &amp;quot;Parallel Programming for C++ Developers in the Next Version of Microsoft Visual Studio&amp;quot; or &amp;quot;Concurrency Runtime Deep Dive: How to Harvest Multicore Computing Resources&amp;quot; and get to hear presenters like Don (Box) and Anders (Hejlsberg)?&amp;#160; Oh and there's this new &lt;a href="http://channel9.msdn.com/posts/Dan/Countdown-to-PDC2008-Open-Space-Opens-the-Minds/"&gt;Open Space&lt;/a&gt; thing being run by ubergeek himself, &lt;a href="http://www.managed-world.com/"&gt;Jason&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;All this goodness in my town and now fun contests too.&amp;#160; Hey, why don't YOU enter one of these contests?&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoftpdc.com/Social/Contests.aspx"&gt;PDC2008 | Social | Contests&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8849517" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Vista+development/default.aspx">Vista development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Technical+Conference/default.aspx">Technical Conference</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/F_2300_/default.aspx">F#</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Cloud+development/default.aspx">Cloud development</category></item><item><title>Two weeks in Seattle with SoCalDevGal</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/08/02/two-weeks-in-seattle-with-socaldevgal.aspx</link><pubDate>Sat, 02 Aug 2008 21:08:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8806401</guid><dc:creator>llangit</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/8806401.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=8806401</wfw:commentRss><description>&lt;p&gt;I've just returned from a trip to Seattle.&amp;#160; Many of you have asked, &amp;quot;What are you doing there?&amp;quot;&amp;#160; So, here you go....&lt;/p&gt;  &lt;p&gt;The overall purpose of the trip was technical readiness.&amp;#160; To that end I (mostly) attended a MS-internal conference called TechReady.&amp;#160; Nearly all sessions are presented by the product group and are delivered at deep, technical level.&amp;#160; Many sessions focus on future technologies.&amp;#160; Of course, I LOVED this.&amp;#160; The entire conference is private.&amp;#160; So, no, I can not release any information.&amp;#160; However, I can tell you that you should PAY ATTENTION around the time of &lt;a href="https://sessions.microsoftpdc.com/public/sessions.aspx"&gt;PDC (session list&lt;/a&gt;) .&amp;#160; Better yet, if you can attend PDC, you won't be sorry.&amp;#160; Here's more &lt;a href="http://blogs.msdn.com/pdc/archive/2008/06/19/pdc-buzz-on-the-blogsphere.aspx"&gt;PDC Buzz&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;In addition to TR, I had the good fortune to be invited to a session at the &lt;a href="http://research.microsoft.com/workshops/FS2008/"&gt;Microsoft Research Faculty Summit&lt;/a&gt; held in Redmond by MSR.&amp;#160; There I spoke with a panel, representing women academics in computing.&amp;#160; I was invited because I've been accepted to speak on my Africa (personal volunteer work for &lt;a href="http://www.opensmartcare.org"&gt;SmartCare&lt;/a&gt; - electronic medical records collection system) work at the &lt;a href="http://gracehopper.org/2008/"&gt;Grace Hopper conference&lt;/a&gt; in October in Keystone, CO.&amp;#160; It was quite an honor to meet &lt;a href="http://anitaborg.org/about/who-we-are/telle-whitney"&gt;Telle Whitney&lt;/a&gt; there.&amp;#160; She is the CEO of the &lt;a href="http://anitaborg.org/about/history/anita-borg/"&gt;Anita Borg&lt;/a&gt; Institute and chairs the GHC.&lt;/p&gt;  &lt;p&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="266" alt="Telle Whitney and me" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/TwoweeksinSeattlewithSoCalDevGal_9CA9/LynnAndTelle_3.jpg" width="354" border="0" /&gt; &lt;/p&gt;  &lt;p&gt;I am wearing my iGive Microsoft limited-edition shirt in the picture with her.&amp;#160; &lt;a href="http://www.youtube.com/user/BryZad"&gt;Asli and I launched iGive&lt;/a&gt; for a couple of reasons:&lt;/p&gt;  &lt;p&gt;1) We were tired of getting ugly, man-sized swag at each conference&lt;/p&gt;  &lt;p&gt;2) We wanted a cool-looking shirt that showed how much we (Microsoft) cared.&amp;#160; To get the shirt you must donate to a selected charity that benefits women and kids.&lt;/p&gt;  &lt;p&gt;To that end, she and I ran the third iteration of the iGive program at TR7.&amp;#160; The recipient charity was the &lt;a href="http://www.monafoundation.org/"&gt;MONA Foundation&lt;/a&gt;.&amp;#160; Because this group has both financial and infrastructure needs, we are distributing shirts for money or technical volunteering time (web programming, etc..).&amp;#160; If you wish to volunteer, pls ping me and I'll connect you to Jason Ward from the MS VS-team.&amp;#160; He is leading the technical volunteers for this project.&lt;/p&gt;  &lt;p&gt;We have also gained approval for running &lt;a href="http://conhopper.net/tag/asli-bilgin/"&gt;iGive at GHC&lt;/a&gt; and &lt;a href="http://microsoftpdc.com/"&gt;PDC&lt;/a&gt;.&amp;#160; It was great to see how many men wanted shirts for their daughters!&lt;/p&gt;  &lt;p&gt;While at the MSR Faculty summit, I met with a group from MSR that is taking a look at &lt;a href="http://www.alice.org/kelleher/storytelling/"&gt;StoryTelling Alice&lt;/a&gt;.&amp;#160; As part of my work with Microsoft &lt;a href="http://www.microsoft.com/about/diversity/programs/digigirlz.mspx"&gt;DigiGirlz&lt;/a&gt;, I have been asked to advise on a global curriculum repository for them.&amp;#160; I have been investigating various visual programming environments - StoryTelling Alice, &lt;a href="http://www.popfly.com/"&gt;PopFly&lt;/a&gt;, &lt;a href="http://opensimulator.org/wiki/Main_Page"&gt;OpenSim&lt;/a&gt; for SecondLife, MS Robotics (&lt;a href="http://www.robochamps.com/"&gt;RoboChamps&lt;/a&gt;) and more.&amp;#160; The group at MSR asked me to write a synopsis of my work and submit it for presentation at next year's &lt;a href="http://blogs.msdn.com/gautam/archive/2007/11/26/3rd-annual-microsoft-academic-days-conference-on-game-development.aspx"&gt;MS Academic Days Conference&lt;/a&gt; (April 2009).&amp;#160; This conference is actually held on a cruise ship!&lt;/p&gt;  &lt;p&gt;This month I am leading a group to implement the first-ever DigiGirlz camp (in SoCal) based on the visual programming theme.&amp;#160; On the plane home from Seattle, I bumped into one of the co-leads, Cindy Palmer, who had been in Seattle for &lt;a href="http://www.microsoft.com/surface/index.html"&gt;MS-Surface&lt;/a&gt; training.&amp;#160; It is quite possible that the SoCal DigiGirlz will be the first to see the new surface for our Irvine, CA MTC!&lt;/p&gt;  &lt;p&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="402" alt="MS Surface" src="http://blogs.msdn.com/blogfiles/socaldevgal/WindowsLiveWriter/TwoweeksinSeattlewithSoCalDevGal_9CA9/image_3.png" width="454" border="0" /&gt; &lt;/p&gt;  &lt;p&gt;Oh, and I won't be neglecting my SoCal Developers this month either.&amp;#160; I am scheduled to speak at 3 UGs this month.&amp;#160; LA.NET on Monday, Aug 4; OC SQL (new UG!) on Thursday, Aug 14; SoCal Architects on Thursday, Aug 21.&amp;#160; For a complete list of all &lt;a href="http://blogs.msdn.com/socaldevgal/pages/southern-california-user-groups.aspx"&gt;SoCal UGs&lt;/a&gt;, see this link.&lt;/p&gt;  &lt;p&gt;Also &lt;a href="http://blogs.msdn.com/glengordon/"&gt;Glen&lt;/a&gt; and I will be resuming our weekly Channel9 / MSDN &lt;a href="http://www.microsoft.com/events/series/geekspeak.aspx?tab=webcasts"&gt;geekSpeak&lt;/a&gt; shows, starting Wednesday August 6th.&lt;/p&gt;  &lt;p&gt;And, oh yeah, I've got a a &lt;a href="http://www.amazon.com/Business-Intelligence-Solutions-Microsoft%C2%AE-PRO-Developer/dp/0735625808"&gt;book&lt;/a&gt; to finish too. :)&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8806401" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/ASP.NET+development/default.aspx">ASP.NET development</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Technical+Conference/default.aspx">Technical Conference</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Helping/default.aspx">Helping</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/BI/default.aspx">BI</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/geekSpeak/default.aspx">geekSpeak</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>PDC2008 registration is open</title><link>http://blogs.msdn.com/socaldevgal/archive/2008/05/30/pdc2008-registration-is-open.aspx</link><pubDate>Fri, 30 May 2008 03:27:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8560898</guid><dc:creator>llangit</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/socaldevgal/comments/8560898.aspx</comments><wfw:commentRss>http://blogs.msdn.com/socaldevgal/commentrss.aspx?PostID=8560898</wfw:commentRss><description>&lt;p&gt;Among the goodness at this year's &lt;a href="http://msdn.microsoft.com/en-us/events/bb288534.aspx"&gt;PDC in LA in this October&lt;/a&gt; is a pre-con session that I'm particularly excited about.&amp;#160; If you ask me really nicely, I'll tell you the story of how &lt;a href="http://search.live.com/results.aspx?q=Asli+Bilgin+&amp;amp;go=&amp;amp;form=QBRE"&gt;Asli&lt;/a&gt; and I cooked up the idea for this one over drinks on a train one night last fall.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;a href="http://www.microsoftpdc.com/Agenda/Preconference.aspx#womenbuild"&gt;&lt;em&gt;&lt;img height="278" alt="clip_image002" src="http://blogs.msdn.com/blogfiles/frankarr/WindowsLiveWriter/PDC2008.inspiringcareerpathsintechnology_D0E0/clip_image002_3.gif" width="212" align="right" border="0" /&gt;&lt;/em&gt;WomenBuild... inspiring career paths in technology&lt;/a&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;In this workshop, attendees will participate in an environment of rich, interactive experiences by modeling real-life business challenges and solutions with LEGO&amp;#174; Bricks as part of the LEGO&amp;#174; Serious Play Program (LSP). WomenBuild will open your minds to exciting and inspirational ideas on how to be a thought leader in the technical field. We will work together in small groups to brainstorm and problem solve in a collaborative and productive way. You will work with people in various responsibility areas in teams. This way each role can impart their own unique perspective to the group, while collectively creating shared understandings that direct future activity effectively. &lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;The WomenBuild program incorporates a hands-on process that draws on the power of creative thinking to shift group conversation from talking heads to focused minds. Each team will be run as a facilitated conversation with physical Lego brick constructions that will powerfully shift a group to more productive outcomes by accomplishing a deeper mining of the diverse wisdom within the group and a clearer shared conclusion on inspirational career paths for women in the technical field. &lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Through this workshop, attendees will share real life experiences, discuss challenges, network &amp;amp; build on-going relationships with other women who are attending the conference. Ultimately, attendees of this workshop will find ways to unleash their creative thinking and transform ideas into concrete concepts.&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;a href="http://www.microsoftpdc.com/Agenda/Preconference.aspx#womenbuild"&gt;PDC2008 | Agenda | Pre-Conference&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8560898" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Southern+California/default.aspx">Southern California</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/PDC/default.aspx">PDC</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Technical+Conference/default.aspx">Technical Conference</category><category domain="http://blogs.msdn.com/socaldevgal/archive/tags/Fun/default.aspx">Fun</category></item></channel></rss>