<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.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>DonS.CF : .NET Framework</title><link>http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx</link><description>Tags: .NET Framework</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP2 (Build: 40407.4157)</generator><item><title>My Code Camp 7 Presentations and Samples Now Available for Download</title><link>http://msmvps.com/blogs/donscf/archive/2007/04/01/my-code-camp-7-presentations-and-samples-now-available-for-download.aspx</link><pubDate>Sun, 01 Apr 2007 15:45:38 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:739213</guid><dc:creator>Dons</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=739213</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2007/04/01/my-code-camp-7-presentations-and-samples-now-available-for-download.aspx#comments</comments><description>&lt;p&gt;Thanks to everyone who attended my two sessions at this weekend's &lt;strong&gt;&lt;em&gt;Code Camp7: Deer In The Headlights&lt;/em&gt;&lt;/strong&gt; event. I really enjoyed the interaction, questions and comments during both sessions!&lt;/p&gt; &lt;p&gt;As promised, my two presentations are now available for download. The&amp;nbsp;ZIP files contain both the Powerpoint slides and any sample code&amp;nbsp;shown during the session.&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://www.bostonpocketpc.com/downloads/CC7_WMPerfBestPractices.zip"&gt;Windows Mobile Application Performance Best Practices (592 KB)&lt;/a&gt;  &lt;li&gt;&lt;a href="http://www.bostonpocketpc.com/downloads/CC7_LeveragingSpeech.zip"&gt;Leveraging Speech in .NET Applications and Windows Vista (211 KB)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;As an "added bonus", I have put up the C# project I wrote to test out Ink and Speech with Vista and the Tablet PC. It is the little spelling application I wrote for my son to do his homework, and domenstrates speech synthesis and the Tablet PC ink APIs. Even if you don't have a Tablet PC, you can fill in the fields using your keyboard. The download also includes a setup installer for the compiled version of the application, allowing you to just install it and play around with it if you'd like.&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://www.bostonpocketpc.com/downloads/VistaSpellPractice.zip"&gt;Vista Spelling Practice Application (3.75 MB)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Enjoy!&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=739213" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Vista/default.aspx">Vista</category></item><item><title>Speech in 3 Lines of Code with the .NET Framework 3.0 and Windows Vista</title><link>http://msmvps.com/blogs/donscf/archive/2006/10/17/Speech-in-3-Lines-of-Code-with-the-.NET-Framework-3.0-and-Windows-Vista.aspx</link><pubDate>Tue, 17 Oct 2006 13:25:02 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:181858</guid><dc:creator>Dons</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=181858</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2006/10/17/Speech-in-3-Lines-of-Code-with-the-.NET-Framework-3.0-and-Windows-Vista.aspx#comments</comments><description>&lt;p&gt;To do this, you will need:&lt;/p&gt; &lt;p&gt;1) Windows Vista (prefereably, RC2 or higher). This ships with the .NET Framework 3.0 included.&lt;/p&gt; &lt;p&gt;Perform the following steps in Visual Studio 2005 (C# shown):&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Create a new Windows Application project.&lt;/li&gt; &lt;li&gt;Under the project, add a new reference. Select &lt;em&gt;System.Speech&lt;/em&gt; from the .NET tab.&lt;/li&gt; &lt;li&gt;Create a Windows Form, and add a button to it. Name the button &lt;em&gt;btnSpeak&lt;/em&gt;.&lt;/li&gt; &lt;li&gt;[Code Line 1] Add a reference to the &lt;em&gt;System.Speech.Systhesis&lt;/em&gt; namespace using the &lt;em&gt;using &lt;/em&gt;keyword.&lt;br&gt;&lt;/li&gt;&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Speech.Synthesis;&lt;/pre&gt;
&lt;style&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;

&lt;li&gt;[Code Line 2] Create an instance variable for a &lt;em&gt;SpeechSynthesizer&lt;/em&gt; object.&lt;br&gt;&lt;/li&gt;&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;private&lt;/span&gt; SpeechSynthesizer mySpokenWords = &lt;span class="kwrd"&gt;new&lt;/span&gt; SpeechSynthesizer();&lt;/pre&gt;
&lt;style&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;

&lt;li&gt;Create an event handler for the btnSpeak's Click event.&lt;br&gt;&lt;/li&gt;
&lt;li&gt;[Code Line 3] Add the following code to the Click event handler:&lt;br&gt;&lt;/li&gt;&lt;pre class="csharpcode"&gt;mySpokenWords.Speak(&lt;span class="str"&gt;"Hello World!"&lt;/span&gt;);&lt;/pre&gt;
&lt;style&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;

&lt;style&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;

&lt;style&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Compile and run the code. Click on the button and listen to the result.&lt;/p&gt;
&lt;p&gt;That's all there really is to it!&lt;/p&gt;
&lt;p&gt;Total Code:&lt;br&gt;&lt;/p&gt;&lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;using&lt;/span&gt; System;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Collections.Generic;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.ComponentModel;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Data;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Drawing;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Text;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Windows.Forms;
&lt;span class="kwrd"&gt;using&lt;/span&gt; System.Speech.Synthesis;

&lt;span class="kwrd"&gt;namespace&lt;/span&gt; SpeakHelloWorld
{
    &lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;partial&lt;/span&gt; &lt;span class="kwrd"&gt;class&lt;/span&gt; Form1 : Form
    {
        &lt;span class="kwrd"&gt;private&lt;/span&gt; SpeechSynthesizer mySpokenWords = &lt;span class="kwrd"&gt;new&lt;/span&gt; SpeechSynthesizer();

        &lt;span class="kwrd"&gt;public&lt;/span&gt; Form1()
        {
            InitializeComponent();
        }

        &lt;span class="kwrd"&gt;private&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; btnSpeak_Click(&lt;span class="kwrd"&gt;object&lt;/span&gt; sender, EventArgs e)
        {
            mySpokenWords.Speak(&lt;span class="str"&gt;"Hello World!"&lt;/span&gt;);
        }
    }
}&lt;/pre&gt;
&lt;style&gt;.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
&lt;/style&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=181858" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Vista/default.aspx">Vista</category></item><item><title>The .NET Framework 3.0 - Taking Things "One Piece At A Time"</title><link>http://msmvps.com/blogs/donscf/archive/2006/10/14/The-.NET-Framework-3.0-_2D00_-Taking-Things-_2200_One-Piece-At-A-Time_2200_.aspx</link><pubDate>Sat, 14 Oct 2006 17:42:23 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:176873</guid><dc:creator>Dons</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=176873</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2006/10/14/The-.NET-Framework-3.0-_2D00_-Taking-Things-_2200_One-Piece-At-A-Time_2200_.aspx#comments</comments><description>&lt;p&gt;I recently spoke at the &lt;a href="http://www.swanh.org/" target="_blank"&gt;Software Association of New Hampshire's&lt;/a&gt; annual &lt;a href="http://www.swanh.org/infoxchange"&gt;InfoXchange event&lt;/a&gt;&amp;nbsp;on the .NET Framework 3.0. I had approximately 30 minutes to address the topic "What Is the .NET Framework 3.0, and Why Should I Care?". It reminded me of those essay questions that went something like this -&lt;/p&gt; &lt;p&gt;&lt;em&gt;Describe the American Revolution and it's impact on geopolitics in 200 words or less. &lt;/em&gt;:-)&lt;/p&gt; &lt;p&gt;I found myself facing a really serious challenge here. As I started to think about how much is really in the .NET Framework 3.0, I realized that for many developers, this could be intimidating (especially from an initial impression respective). I wanted to make certain that (given the short timeframe of the presentation and the need to generalize, I could scare off more people than I would help. I found the answer to how I finally approached the situation, thanks to my two small sons (particularly my oldest, six year-old Nicolas).&lt;/p&gt; &lt;p&gt;Nicolas likes to try out puzzles every once in a while. When I say "puzzles", I mean just that - the classic tabletop &lt;em&gt;x&lt;/em&gt; number of pieces board puzzles. As he gets older, he has worked with increasingly complex puzzles. Now, he has (on occasion) opened a puzzle box and poured out the pieces and stared in disbelief at the sheer number of pieces. Usually, his response is "Dad, forget it. This is just gonna be way too hard." I usually respond with "OK - let's at a time." We first find the corner and edge pieces. Then, we group pieces by commonality (perhaps color or imagery). Finally, we focus on&amp;nbsp;one area of the puzzle at a time. Usually, my son ends up saying something like "Wow, Dad! That really wasn't so hard."&lt;/p&gt; &lt;p&gt;I realized the other day that the .NET Framework 3.0 is a lot like my son's puzzles. At first glance, the .NET Framework 3.0 can translate to "A whole lotta new stuff to learn." Unfortunately, that typically leads to the common fears of all developers (including myself). If the time is taken, however, to look at each of the "components" of the old &lt;em&gt;WinFX&lt;/em&gt; (the "new part" of the .NET FW 3.0) individually, the learning curve might surprise you. It certainly did surprise me. &lt;/p&gt; &lt;p&gt;I ended up taking the time in my presentation to break down each of the new technologies in the .NET Framework 3.0, highlighting what functionality is provided and why it might matter to the developer and/or business owner. There are any number of compelling reasons why the .NET FW 3.0 could be of benefit - but I will leave that to another blog post ;-) In the meantime, I strongly encourage you to take some time to look at the .NET FW 3.0 from a "mid-level" perspective. Not too high-level or too low-level, which can be very intimidating. Instead, take things "one piece at a time".&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=176873" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Vista/default.aspx">Vista</category></item><item><title>The Lowdown on SQL Server Everywhere Edition</title><link>http://msmvps.com/blogs/donscf/archive/2006/04/10/90318.aspx</link><pubDate>Mon, 10 Apr 2006 19:48:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:90318</guid><dc:creator>Dons</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=90318</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2006/04/10/90318.aspx#comments</comments><description>&lt;P&gt;On April 6th, 2006, Microsoft (via &lt;A href="http://www.microsoft.com/sql/letter.mspx"&gt;a SQL Server 2005 Update from Paul Flesner&lt;/A&gt;) announced a "new" product&amp;nbsp;in the Microsoft SQL Server family - &lt;STRONG&gt;&lt;EM&gt;SQL Server Everywhere Edition&lt;/EM&gt;&lt;/STRONG&gt; (or "SQL Everywhere" for short, or "SQL/e" for shorter). At the&amp;nbsp;time, I chose not to post about it until more official word came out. I did this for two reasons -&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;My unofficial word would be just that - unofficial. Better to hear more information direct from the source;&lt;/LI&gt;
&lt;LI&gt;I would have to type a lot less if I simply pointed people in the right direction ;-)&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Microsoft's own Steve Lasker has put together &lt;A href="http://blogs.msdn.com/stevelasker/archive/2006/04/10/SqlEverywhereInfo.aspx"&gt;a good FAQ regarding SQL/e on his MSDN blog&lt;/A&gt;. In short, SQL/e is essentially SQL Mobile without the desktop&amp;nbsp;limitations. As you may or may not be aware, SQL Mobile&amp;nbsp;was authorized for use in&amp;nbsp;developing Tablet PC applications as well as Windows Mobile applications. That was the extent of "desktop" deployment, however. This new structure allows for SQL Mobil... er, SQL/e to be used as an embedded database in any&amp;nbsp;Microsoft OS environment.&lt;/P&gt;
&lt;P&gt;Personally, I applaud this decision. I know that when the decision to allow Tablet PC deployments but not others first came out,&amp;nbsp;a lot of folks in the&amp;nbsp;.NET CF and Embedded MVP communities thought an&amp;nbsp;broader expansion would be a good thing. Obviously, Microsoft listened (to MVPs and others) and&amp;nbsp;responded.&amp;nbsp;This change opens a number of possibilities for occasionally-connected application developers.&lt;/P&gt;
&lt;P&gt;BTW - Steve Lasker has also &lt;A href="http://blogs.msdn.com/smartclientdata/archive/2005/07/15/439008.aspx"&gt;posted about leveraging SQL/e in Visual Studio 2005 development&lt;/A&gt;. Really great article with useful information.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=90318" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Tablet+PC+Development/default.aspx">Tablet PC Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category></item><item><title>Coming This May - Code Camp 5 - Code Frenzy!</title><link>http://msmvps.com/blogs/donscf/archive/2006/03/08/85761.aspx</link><pubDate>Wed, 08 Mar 2006 20:16:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:85761</guid><dc:creator>Dons</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=85761</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2006/03/08/85761.aspx#comments</comments><description>&lt;P&gt;Ah, yes - I can hear the music from "Jaws" playing already.&lt;/P&gt;
&lt;P&gt;"Da-DUM... Da-DUM... Da-DUM-Da-Da-DADADUMMMMM..." ;-)&lt;/P&gt;
&lt;P&gt;From &lt;A href="http://blogs.msdn.com/trobbins/archive/2006/03/08/546180.aspx"&gt;Thom Robbins web site&lt;/A&gt; -&lt;/P&gt;
&lt;H2&gt;&lt;EM&gt;Announcing Code Camp 5: Code Frenzy! &lt;/EM&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032291987&amp;amp;Culture=en-US"&gt;&lt;EM&gt;Register&lt;/EM&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;EM&gt;Saturday, May 6,7 2006 &lt;o:p&gt;&lt;/o:p&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;EM&gt;May 6 – 8:30 AM – 9PM&lt;o:p&gt;&lt;/o:p&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;EM&gt;May 7 – 8:30 AM – 4PM&lt;o:p&gt;&lt;/o:p&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;EM&gt;Microsoft Waltham Office &lt;o:p&gt;&lt;/o:p&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;st1:address&gt;&lt;SPAN&gt;&lt;EM&gt;201 Jones Road&lt;/EM&gt;&lt;/SPAN&gt;&lt;/st1:address&gt;&lt;SPAN&gt;&lt;EM&gt;, 6th Floor&lt;BR&gt;&lt;/EM&gt;&lt;EM&gt;Waltham, Massachusetts 02451 &lt;BR&gt;United States&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR&gt;&lt;BR&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;A href="http://www.thomscontent.com/codecamp5/callforspeakers.doc"&gt;&lt;EM&gt;Call for Speakers&lt;/EM&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;EM&gt;Are you a developer interested in improving your .NET skills? Then this is the event to attend. &lt;B&gt;&lt;A href="http://www.thomscontent.com/codecamp5/"&gt;Code Camp 5: Code Frenzy!&lt;/A&gt;&lt;/B&gt; promises to be both bigger and better than anything we have done before. This free two day seminar is designed as a series of intensive code related demos and technical sessions to guide the developer to the next skill level. The continuing goal of the Code Camps is to provide an intensive developer to developer learning experience that is fun and technically stimulating. The focus is on delivering programming information and sample code that can be used immediately. All training, slides, manuals and demo code is provided free!&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN&gt;&lt;EM&gt;&lt;/EM&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;EM&gt;&lt;SPAN&gt;This two day camp is hosted in our Waltham facility. The leading technical camp counselors from both Microsoft and the New England Developer Community will share their technical expertise and experiences. Each track starts with a “get the code” basics before advancing to more advanced topics.&lt;/SPAN&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;EM&gt;&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032291987&amp;amp;Culture=en-US"&gt;&lt;EM&gt;Register early as it will fill quickly!&lt;/EM&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;FYI - I plan on being there, .NET Compact Framework code in hand... :-)&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=85761" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Code Camp 4: Developers Gone Wild!</title><link>http://msmvps.com/blogs/donscf/archive/2005/07/15/57444.aspx</link><pubDate>Fri, 15 Jul 2005 16:32:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:57444</guid><dc:creator>Don</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=57444</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2005/07/15/57444.aspx#comments</comments><description>&lt;p&gt;In case you haven&amp;rsquo;t heard, &lt;strong&gt;Thom Robbins&lt;/strong&gt; has announced the next Code Camp event in the Boston area, slated for the weekend of September 24th &amp;ndash; 25. To &lt;a href="http://blogs.msdn.com/trobbins" target="_blank"&gt;quote Thom directly&lt;/a&gt;:&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;em&gt;September 24/25, 2005&lt;?xml:namespace prefix ="" o /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032277947&amp;amp;Culture=en-US"&gt;&lt;em&gt;Register Today&lt;/em&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;em&gt;September 24 &amp;ndash; 8:30 AM &amp;ndash; 9PM&lt;o:p&gt;&lt;/o:p&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;em&gt;September 25 &amp;ndash; 8:30 AM &amp;ndash; 4PM&lt;o:p&gt;&lt;/o:p&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;em&gt;Microsoft Waltham&lt;br /&gt;&lt;?xml:namespace prefix ="" st1 /&gt;&lt;st1:street w:st="on"&gt;&lt;st1:address w:st="on"&gt;201 Jones Rd.&lt;/st1:address&gt;&lt;/st1:street&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;&lt;st1:place w:st="on"&gt;&lt;st1:city w:st="on"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;Waltham&lt;/span&gt;&lt;/st1:city&gt;&lt;/st1:place&gt;&lt;span style="FONT-SIZE: 16pt"&gt;, Ma. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 16pt"&gt;&lt;a href="http://www.thomscontent.com/cc4/Callforspeakers.doc"&gt;&lt;em&gt;Call for Speakers&lt;/em&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;Are you a developer interested in improving your .NET skills? Then this is the event to attend. &lt;b style="mso-bidi-font-weight: normal"&gt;Code Camp 4: Developers Gone Wild&lt;/b&gt; promises to be both bigger and better than anything we have done before. This free two day seminar is designed as a series of intensive code related demos and technical sessions to guide the developer to the next skill level. The continuing goal of the Code Camps is to provide an intensive developer to developer learning experience that is fun and technically stimulating. The focus is on delivering programming information and sample code that can be used immediately. All training, slides, manuals and demo code is provided free!&lt;/em&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;This two day camp is hosted in our &lt;st1:city w:st="on"&gt;&lt;st1:place w:st="on"&gt;Waltham&lt;/st1:place&gt;&lt;/st1:city&gt; facility. The leading technical camp counselors from both Microsoft and the New England Developer Community will share their technical expertise and experiences. This code camp is divided into three tracks &amp;ndash; Smart Client, Web Development and Data Technologies. Each track starts with a &amp;ldquo;get the code&amp;rdquo; basics before advancing to more advanced topics.&lt;/em&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;I would especially like to encourage&amp;hellip; no&amp;hellip; urge&amp;hellip; no&amp;hellip; beg ;-) anyone who hasn&amp;rsquo;t yet presented at a Code Camp and is interested in sharing their knowledge&amp;nbsp;with the rest of the community to take a look at the &amp;ldquo;Call For Speakers&amp;rdquo; information. The continued success of Code Camps comes from and relies upon community participation. Remember &amp;ndash; Code Camps are all about being &amp;ldquo;by the community &amp;ndash; for the community&amp;rdquo;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=57444" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>.NET Speech Server Day: Video Clips Update</title><link>http://msmvps.com/blogs/donscf/archive/2005/02/28/37203.aspx</link><pubDate>Mon, 28 Feb 2005 17:19:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:37203</guid><dc:creator>Don</dc:creator><slash:comments>7</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=37203</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2005/02/28/37203.aspx#comments</comments><description>&lt;p&gt;&lt;a href="http://msmvps.com/donscf/archive/2005/02/25/36994.aspx" target="_blank"&gt;In a previous post regarding the recent .NET Speech Server Day in Waltham&lt;/a&gt;, I noted that Thom Robbins had posted video clips over at his blog. I also considered myself lucky that none of those clips were of me.&lt;/p&gt;&lt;p&gt;Well, Thom has added more clips - and they now *do* include parts of my presentation. If you want to check them out, &lt;a href="http://weblogs.asp.net/trobbins/archive/2005/02/27/381323.aspx"&gt;head over to Thom's blog&lt;/a&gt;. Just remember - the camera adds 10 pounds. Streaming video adds another 20... ;-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=37203" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Windows Mobile and .NET Speech Server - A Natural Match</title><link>http://msmvps.com/blogs/donscf/archive/2005/02/28/37188.aspx</link><pubDate>Mon, 28 Feb 2005 14:14:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:37188</guid><dc:creator>Don</dc:creator><slash:comments>6</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=37188</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2005/02/28/37188.aspx#comments</comments><description>&lt;p&gt;It's been less than a week since my presentation at .NET Speech Server Day here in the Boston area, but the impressions from that day are still very much in the forefront of my mind. One of the things that continues to come to mind is what a great marriage .NET Speech Server can be in a number of Windows Mobile deployments.&lt;/p&gt;&lt;p&gt;Over the last few years, I have had the opportunity to work with PDA deployments that have been - well, "input-hostile". In these situations, the devices were deployed for focused enterprise applications. The users of the devices were often unfamiliar with PDAs and (more importantly) stylus input. In some cases, these devices were actually the first computing platform for the users, with paper and pencil previously used for data capture. The industries I can think of included manufacturing shop floor control, inventory control and field support. In these cases, introducing the end user to a completely new and not entirely intuitive input methodology often created a number of issues. In certain cases, the application was rejected by some users as simply not being usable. Enter .NET Speech Server.&lt;/p&gt;&lt;p&gt;By using a speech-enabled multi-modal application using Pocket Internet Explorer, it is very possible to overcome the idiosyncrasies associated with stylus input. Speech enablement essentially -&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Provides a natural method of user interaction and data acquisition;&lt;/li&gt;&lt;li&gt;Provides a truly "hands-free" option from a data input perspective (well, one hand will often need to be used to hold the device ;-))&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There are, of course, still some limitations to this solution. It is a web-based solution, which limits it to "always-on" network connectivity and therefore does not support occasionally-connected scenarios. Even when connected, the amount of "data across the wire" in speech-enabled applications may restrict deployment in "bandwidth-challenged" environments.&amp;nbsp;&lt;/p&gt;&lt;p&gt;The potential of extending existing enterprise applications using speech enablement is extremely exciting to me. I encourage all developers who work in environments where speech enablement might provide a distinct user input advantage to check out the technology more closely. You may be surprised, as I was when first introduced the Speech Application SDK, at&amp;nbsp;how easy it is to leverage your .NET and Visual Studio experience to create these types of applications.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=37188" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category></item><item><title>.NET Speech Server Day</title><link>http://msmvps.com/blogs/donscf/archive/2005/02/25/36994.aspx</link><pubDate>Fri, 25 Feb 2005 22:56:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:36994</guid><dc:creator>Don</dc:creator><slash:comments>6</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=36994</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2005/02/25/36994.aspx#comments</comments><description>&lt;p&gt;I just thought I would take a moment to thank everyone who attended by presentation during the .NET Speech Server Day in Waltham this past Wednesday. I would especially like to thank you all for -&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Not falling asleep (I know that the last presenter is the toughest to stay focused on)&lt;/li&gt;&lt;li&gt;Not hurling any objects at me :-)&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Special thanks go to Thom Robbins for giving the opportunity to speak to and meet so many of you folks.&lt;/p&gt;&lt;p&gt;Thom has posted up information on the Speech Server Day, as well as some video clips, &lt;a href="http://weblogs.asp.net/trobbins/archive/2005/02/25/380503.aspx" target="_blank"&gt;on his blog&lt;/a&gt;. As of this writing, I am thankful that none of me have yet to appear. Be thankful for the little things, I always say...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=36994" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Upcoming Speaking Engagements</title><link>http://msmvps.com/blogs/donscf/archive/2005/01/17/32754.aspx</link><pubDate>Mon, 17 Jan 2005 15:43:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:32754</guid><dc:creator>Don</dc:creator><slash:comments>11</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=32754</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2005/01/17/32754.aspx#comments</comments><description>&lt;p&gt;Just a quick summary of some upcoming events that I will be participating in -&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Club Pocket PC - Boston Meeting (January 19th)&lt;br /&gt;&lt;/strong&gt;The next Club Pocket PC - Boston meeting will be held this Wednesday, January 19th starting at 6:30 PM at the Microsoft offices in Waltham, MA. I will be doing a presentation on maximizing Windows Mobile productivity, and will have an array of hardware and software to demonstrate (there is probably going to be some items you have either never heard of or seen in person). We will also have a first-hand CES wrap-up from Steve Hughes (and some associated announcements), and a Windows Mobile "Swap Meet" (a chance to sell or trade some of your "leftover" hardware and accessories). Check out &lt;a href="http://www.bostonpocketpc.com/modules.php?op=modload&amp;amp;name=News&amp;amp;file=article&amp;amp;sid=2684&amp;amp;mode=thread&amp;amp;order=0&amp;amp;thold=0" target="_blank"&gt;the BostonPocketPC.com web site&lt;/a&gt; for more information.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;INETA Cabana Night at Web Services Edge East (February 16th)&lt;br /&gt;&lt;/strong&gt;The next developer Cabana Night will be held as part of Web Services Edge East at the Hynes Convention Center in Boston on Wednesday, February 16th starting at 6:00 PM. Steve Hughes and I will be manning the "Mobile Development" cabana that night, and are looking for to some lively discussions around this topic. Stay tuned here for more information.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;.NET Speech Server Day (February 26th)&lt;/strong&gt;&lt;br /&gt;&lt;em&gt;"Got Speech? Developing Applications using Speech Server and .NET" &lt;/em&gt;is a day dedicated to designing, developing and deploying .NET applications leveraging the power of .NET. I will be presenting a "Top Ten Tips &amp;amp; Tricks" session at the end of the day. For more information and registration, check out the &lt;a href="http://msevents.microsoft.com/cui/eventdetail.aspx?culture=en-US&amp;amp;eventid=1032266651&amp;amp;x=12&amp;amp;y=7" target="_blank"&gt;Microsoft Events web site&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Code Camp 3: The Madness! (March 12th and 13th)&lt;/strong&gt;&lt;br /&gt;I will be doing at least one presentation and one "chalk talk" during the next Code Camp session here in Waltham, MA on March 12th and 13th. Check out the latest list of sessions &lt;a href="http://www.thecodecamp.com/session.htm" target="_blank"&gt;here&lt;/a&gt;, and sign up for this free and valuable event at the &lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266260&amp;amp;Culture=en-US"&gt;Microsoft Events web site&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=32754" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Code Camp III: The Madness!</title><link>http://msmvps.com/blogs/donscf/archive/2004/12/09/23167.aspx</link><pubDate>Thu, 09 Dec 2004 20:28:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:23167</guid><dc:creator>Don</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=23167</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/12/09/23167.aspx#comments</comments><description>&lt;p&gt;&lt;strong&gt;Thom Robbins&lt;/strong&gt; has officially announced the next major Code Camp event in his blog. This coming March, it's &lt;strong&gt;&lt;em&gt;Code Camp III - The Madness!&lt;/em&gt;&lt;/strong&gt;: &lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;March 12/13, 2005&lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;?xml:namespace prefix ="" o ns ="" "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;March 12 – 8:30 AM – 9PM&lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;March 13 – 8:30 AM – 4PM&lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;Microsoft Waltham&lt;br /&gt;&lt;?xml:namespace prefix ="" st1 ns ="" "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:street w:st="on"&gt;&lt;st1:address w:st="on"&gt;201 Jones Rd.&lt;/st1:address&gt;&lt;/st1:street&gt; &lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;&lt;st1:city w:st="on"&gt;&lt;st1:place w:st="on"&gt;Waltham&lt;/st1:place&gt;&lt;/st1:city&gt;, Ma. &lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;em&gt;&amp;nbsp;&lt;/em&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;Are you a developer interested in improving your .NET skills? Then this is the event to attend. &lt;b style="mso-bidi-font-weight: normal"&gt;Code Camp III: The Madness&lt;/b&gt; promises to be both bigger and better than anything we have done before. This free two day seminar is designed as a series of intensive code related demos and technical sessions to guide the developer to the next skill level. The continuing goal of the Code Camps is to provide an intensive developer to developer learning experience that is fun and technically stimulating. The focus is on delivering programming information and sample code that can be used immediately. All training, slides, manuals and demo code is provided free!&lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;This two day camp is hosted in our &lt;st1:city w:st="on"&gt;&lt;st1:place w:st="on"&gt;Waltham&lt;/st1:place&gt;&lt;/st1:city&gt; facility. The leading technical camp counselors from both Microsoft and the New England Developer Community will share their technical expertise and experiences. This code camp is divided into three tracks – Smart Client, Web Development and Data Technologies. Each track starts with a “get the code” basics before advancing to more advanced topics.&lt;/em&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;em&gt;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;You can register for this event at &lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266260&amp;amp;Culture=en-US" target="_blank"&gt;the MS Events web site.&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;In a related note, Thom has also put out a &lt;a href="http://www.thomscontent.com/codecamp3/call%20for%20speakers.doc" target="_blank"&gt;Call for Speakers&lt;/a&gt; for the next Code Camp. If you think you might be interested in presenting on a topic, be sure to check out the information and respond soon!&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;And finally - &lt;em&gt;Yes&lt;/em&gt;, I will be able to make it to this Code Camp, and I've already committed to presenting this time around to Thom... ;-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=23167" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Mini Code Camp Coming to Boston in January!</title><link>http://msmvps.com/blogs/donscf/archive/2004/11/15/19298.aspx</link><pubDate>Mon, 15 Nov 2004 23:28:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:19298</guid><dc:creator>Don</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=19298</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/11/15/19298.aspx#comments</comments><description>&lt;p&gt;OK, I've been a bit busy lately. As a result, I have been a bit remiss in not posting more frequently to the blog. I may have been gone, but I hopefully have not been forgotten. Anyone out there? ;-)&lt;/p&gt;&lt;p&gt;One of the items that slipped through the e-mail cracks was from our buddy &lt;a href="http://weblogs.asp.net/trobbins" target="_blank"&gt;Thom Robbins&lt;/a&gt;. Thom e-mailed to let me know that there will be a very special one-day Mini Code Camp coming up here in Boston in January. This looks very, very good -&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 12pt"&gt;&lt;b&gt;&lt;span style="FONT-SIZE: 20pt; FONT-FAMILY: 'Arial Helvetica'"&gt;&lt;font face="Times New Roman"&gt;Mini Code Camp&lt;?xml:namespace prefix ="" o ns ="" "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 12pt"&gt;&lt;b&gt;&lt;span style="FONT-SIZE: 20pt; FONT-FAMILY: 'Arial Helvetica'"&gt;&lt;font face="Times New Roman"&gt;Special Edition – VB.NET&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="FONT-SIZE: 20pt; FONT-FAMILY: Verdana"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 12pt"&gt;&lt;span style="FONT-SIZE: 22pt; FONT-FAMILY: Verdana"&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032264808&amp;amp;Culture=en-US"&gt;Registration Open&lt;/a&gt;&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;br style="mso-special-character: line-break"&gt;&lt;br style="mso-special-character: line-break"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 12pt"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Date: Sunday January 23&lt;br /&gt;Time: 8:30AM -5:00PM&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Location: Microsoft New England District Office&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;?xml:namespace prefix ="" st1 ns ="" "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:street w:st="on"&gt;&lt;st1:address w:st="on"&gt;201 Jones Road&lt;/st1:address&gt;&lt;/st1:street&gt;, 6th floor&lt;br /&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;Waltham Weston Corporate Center Waltham, Massachusetts 02451 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Times New Roman" size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Times New Roman" size="3"&gt;Join us for a Special Edition of Code Camp presented exclusively by our own Carl Franklin. This one day Mini Code Camp is focused entirely on VB.NET. The morning starts with a review of the fundamentals and the rest of the day expands on that to build a fully functional application that you can take with you! Come and learn best practices, coding techniques, database access, object oriented techniques and more for the VB.NET developer.&lt;/font&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Times New Roman" size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Times New Roman" size="3"&gt;As always, the Code Camp Series represents the best technical content of the local developer community. Code Camp’s are always free and guaranteed to be the most fun that you can have anywhere!&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=19298" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category></item><item><title>About Last Night's Boston Developer Cabana Event </title><link>http://msmvps.com/blogs/donscf/archive/2004/10/07/15192.aspx</link><pubDate>Thu, 07 Oct 2004 20:32:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:15192</guid><dc:creator>Don</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=15192</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/10/07/15192.aspx#comments</comments><description>&lt;p&gt;While I am a bit busy playing "catch-up" at the moment, I did want to let everyone that could not attend know that last night's (October 6th) Developer Cabana Event at the Microsoft offices in Waltham, MA was a wonderful event! Congratulations to both &lt;strong&gt;Chris Pels&lt;/strong&gt; of the &lt;a href="http://www.bostondotnet.com/" target="_blank"&gt;Boston .NET User Group&lt;/a&gt; and &lt;strong&gt;Thom Robbins&lt;/strong&gt; of Microsoft for making this event a very successful reality.&lt;/p&gt;&lt;p&gt;The group of technology experts still has me a little "star-struck" after one day. It was both a pleasure and an honor to see and meet so many knowledgeable people.&lt;/p&gt;&lt;p&gt;The Mobility Room was not the most frequented of the evening, but the discussions and questions were all great. Thanks to everyone who made it out and stopped by the room. Thanks also (as always) go to Steve Hughes for serving as an Expert with me in the Mobility Room.&lt;/p&gt;&lt;p&gt;The Boston Developer Cabana Event will most definitely be repeated in the future. I look forward to participating once again. If you are in another part of the country, I strongly urge you to consider organizing an event of this type. The participants at our event all spoke highly of the event and felt it was well worth their time.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=15192" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>REMINDER: Boston Cabana Night - Wednesday, Oct. 6th</title><link>http://msmvps.com/blogs/donscf/archive/2004/09/30/14608.aspx</link><pubDate>Thu, 30 Sep 2004 15:37:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:14608</guid><dc:creator>Don</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=14608</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/09/30/14608.aspx#comments</comments><description>&lt;p&gt;Time for a friendly reminder for all the .NET developers throughout New England...&lt;/p&gt;&lt;p&gt;Cabana Night is scheduled for this coming Wednesday, October 6th, at the Microsoft offices in Waltham, MA.&lt;/p&gt;&lt;p&gt;Cabana Night is an opportunity to get any and all questions answered by a who's who of New England .NET experts in an informal discussion atmosphere. There will be six (6) discussion rooms each with a separate topic area and multiple experts. Co-host Thom Robbins our local MSFT developer evangelist will also contribute some food, drink, and great raffle prizes. &lt;/p&gt;&lt;p&gt;Got a question you want answered at Cabana Night? Please email it to the experts at &lt;a href="mailto:cabana@bostondotnet.org?subject=Cabana Night Question"&gt;cabana@bostondotnet.org&lt;/a&gt; ahead of time. &lt;/p&gt;&lt;p&gt;The list of experts confirmed so far includes:&lt;/p&gt;&lt;p&gt;&lt;table id="table36" bordercolor="#c0c0c0" cellspacing="0" cellpadding="3" border="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top"&gt;Chris Bowen&lt;br /&gt;&lt;a href="http://www.monster.com/" target="_blank"&gt;www.monster.com&lt;/a&gt; &lt;/td&gt;&lt;td valign="top"&gt;Architecture&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Carl Franklin, MSFT Regional Director&lt;br /&gt;&lt;a href="http://www.franklins.net/" target="_blank"&gt;www.franklins.net&lt;/a&gt; &lt;/td&gt;&lt;td valign="top"&gt;Smart Client&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Steve Hughes&lt;br /&gt;&lt;a href="http://www.bostonpocketpc.com/" target="_blank"&gt;www.bostonpocketpc.com&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;Mobility&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Robert Hurlbut&lt;br /&gt;&lt;a href="http://www.hurlbut-consulting.com/" target="_blank"&gt;www.hurlbut-consulting.com&lt;/a&gt; &lt;/td&gt;&lt;td valign="top"&gt;Security&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Patrick Hynds, MSFT Regional Director&lt;br /&gt;&lt;a href="http://www.criticalsites.com/phynds/" target="_blank"&gt;www.criticalsites.com/phynds&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;Security&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Andy Kelly, MSFT MVP&lt;br /&gt;&lt;font face="Arial" color="navy" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial"&gt;&lt;a title="http://www.solidqualitylearning.com/" style="COLOR: blue; TEXT-DECORATION: underline" href="http://www.solidqualitylearning.com/" target="_blank"&gt;www.solidqualitylearning.com&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/td&gt;&lt;td valign="top"&gt;Database&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Duane Laflotte&lt;br /&gt;&lt;a href="http://www.criticalsites.com/dlaflotte" target="_blank"&gt;www.criticalsites.com/dlaflotte&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;Security&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Jesse Liberty&lt;br /&gt;&lt;a href="http://www.libertyassociates.com/" target="_blank"&gt;www.libertyassociates.com&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;ASP.NET&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Chris Pels, MSFT MVP&lt;br /&gt;&lt;a href="http://www.idevtech.com/blog" target="_blank"&gt;www.idevtech.com/blog&lt;/a&gt; &lt;/td&gt;&lt;td valign="top"&gt;Architecture&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Thom Robbins (MSFT)&lt;br /&gt;&lt;a href="http://weblogs.asp.net/trobbins" target="_blank"&gt;weblogs.asp.net/trobbins&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;All&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Raheel Retiwalla (MSFT)&lt;/td&gt;&lt;td valign="top"&gt;Database&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Richard Hale Shaw, MSFT MVP&lt;br /&gt;&lt;a href="http://www.richardhaleshawgroup.com/" target="_blank"&gt;www.richardhaleshawgroup.com&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;ASP.NET&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Don Sorcinelli&lt;br /&gt;&lt;a href="http://www.bostonpocketpc.com/" target="_blank"&gt;www.bostonpocketpc.com&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;Mobile&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Joe Stagner (MSFT)&lt;br /&gt;&lt;a href="http://blogs.msdn.com/JoeStagner/" target="_blank"&gt;blogs.msdn.com/JoeStagner/&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;All&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;Pat Tormey&lt;br /&gt;&lt;a href="http://www.4square.net/" target="_blank"&gt;www.4square.net&lt;/a&gt;&lt;/td&gt;&lt;td valign="top"&gt;Smart Client&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td valign="top"&gt;John Watson&lt;br /&gt;&lt;a href="http://www.etc-consultants.com/" target="_blank"&gt;www.etc-consultants.com&lt;/a&gt; &lt;/td&gt;&lt;td valign="top"&gt;Architecture&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;For more information and registration, visit the &lt;a href="https://msevents.microsoft.com/cui/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032256874&amp;amp;EventCategory=1" target="_blank"&gt;Microsoft Events web site &lt;/a&gt;today.&lt;/p&gt;&lt;p&gt;See you there!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=14608" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Upcoming Event Reminders</title><link>http://msmvps.com/blogs/donscf/archive/2004/09/13/13428.aspx</link><pubDate>Mon, 13 Sep 2004 16:43:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:13428</guid><dc:creator>Don</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=13428</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/09/13/13428.aspx#comments</comments><description>&lt;P&gt;Just a couple of reminders for everyone out there regarding upcoming .NET Compact Framework-related events -&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;EM&gt;The next Club Pocket PC - Boston group meeting is this Wednesday, October 15th.&lt;/EM&gt;&lt;/STRONG&gt; &lt;A href="http://weblogs.asp.net/trobbins" target=_blank&gt;Thom Robbins&lt;/A&gt; will be doing a presentation on Windows Mobile and Web services, and I will be presenting / demonstrating a fantastic utility for Windows Mobile developers and&amp;nbsp;support personnel in SOTI Pocket Controller. You can find out all of the details at &lt;A href="http://www.bostonpocketpc.com/" target=_blank&gt;BostonPocketPC.com&lt;/A&gt;.&amp;nbsp;
&lt;LI&gt;&lt;STRONG&gt;&lt;EM&gt;Registration is still open for the Cabana Night at the Microsoft -Waltham offices on October 5th.&lt;/EM&gt;&lt;/STRONG&gt; This looks to be a lot of fun, with an incredible number of experts in each of the individual rooms. Remember - this is a "no-seminar zone" (fortunately, &lt;A href="http://www.bostondotnet.com/"&gt;Chris Pels&lt;/A&gt; has not trademarked this phrase - yet). The discussions are more free-form, and you are encouraged to come loaded with questions and discussion points. You can find out more about the event and register at the &lt;A href="https://msevents.microsoft.com/cui/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032256874&amp;amp;EventCategory=1" target=_blank&gt;Microsoft Events web site&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=13428" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>"You are an Architect"</title><link>http://msmvps.com/blogs/donscf/archive/2004/09/02/12745.aspx</link><pubDate>Thu, 02 Sep 2004 16:50:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:12745</guid><dc:creator>Don</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=12745</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/09/02/12745.aspx#comments</comments><description>&lt;P&gt;Back in the mid-1990's, I presented at a conference down in Ft. Lauderdale, FL on behalf of the &lt;A href="http://www.icca.org/"&gt;ICCA (Independent Computer Consultants Association)&lt;/A&gt;. Thanks to age, I cannot even remember what the conference was about in general, but I do remember my presentation. It was on the future roles of software developers. &lt;/P&gt;
&lt;P&gt;I recall raising quite a few eyebrows (if not outright scaring some folks) by telling my audience that the role of the software developer as we knew it at that time was dead. That's right - &lt;EM&gt;dead&lt;/EM&gt;. The reasoning was quite simple - with all of the advances in programming languages, supporting libraries for those languages and sophisticated IDEs, the time spent in &amp;#8220;heads-down&amp;#8221; code writing was becoming less and less. As a result, that time could be well spent by the software developer using additional skills. Many of the skills I pointed out (user requirements interviewing and gathering, application design, etc) are now commonly associated with either a Business Systems Analyst or an Architect. Of course, many of the &amp;#8220;code slingers&amp;#8221; in my presentation dismissed me at the time, saying that the day would never come. In a couple of specific cases, it did come for these folks, and I later I heard first-hand tales of regret about not expanding their skill set.&lt;/P&gt;
&lt;P&gt;I had completely forgotten about all of this until the other day, when I finally got around to reading the August issue of &lt;A href="http://www.visualstudiomagazine.com/"&gt;Visual Studio Magazine&lt;/A&gt; (Side Note: I love the common practice of magazines to label the date of an issue three months later than when it hits the streets - &amp;#8220;November&amp;#8220; issue hits in August. This way, when I finally get around to reading the issue that got to my doorstep three months ago, I can rationalize it as being the &amp;#8220;current issue&amp;#8220; :-)). The &amp;#8220;Guest Opinion&amp;#8221; section of the issue was written by &lt;STRONG&gt;Mike Sax&lt;/STRONG&gt;, who I have followed for years (beginning with the release of the Sax Controls way-back-when), and was entitled &lt;EM&gt;&amp;#8220;Position Yourself Wisely&amp;#8221;&lt;/EM&gt;. The op-ed piece (&lt;A href="http://www.fawcette.com/vsm/2004_08/magazine/departments/guestop/"&gt;link&lt;/A&gt;) talked about ways of protecting your career in these times of offshoring and downsizing. What caught my attention was the following paragraph -&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;It's common knowledge in marketing that if you don't position your product, others will do it for you. The same is true for your job. Do you see yourself as a programmer, a manager, a designer, or an architect? Maybe all of the above? There is only one answer to this question that will lead to long-lasting success in your career: You are an architect. Programmers can be offshored, managers can be downsized, and designers can be considered too artistic. Architects are indispensable and worth every penny.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Ironically, much like in the 90's, the software development industry (especially here in the US) is facing a situation where existing skill sets, job roles and jobs are all in flux and in jeopardy. I encourage everyone to read Mike Sax's piece, as he provides a simple yet powerful rationale for developers to expand their skill sets to include those of the architect.&lt;/P&gt;
&lt;P&gt;Having watched a number of developers brush off the idea of change a decade ago using the &amp;#8220;it can't happen to me&amp;#8221; rationalization, I fear that this will happen to many yet again. As someone who has spent the better part of the last 10 years performing the role of an architect as well as a developer, I know that detailed understanding of one skill set has made me stronger in the other. Understanding the complexities of software development has made me a better Architect, and vice-versa. I really hope that those who have not begun the path towards understanding the role of the Architect heed my (and Mike Sax's) words, and avoid being on the proverbial &amp;#8220;outside looking in&amp;#8221;. &lt;EM&gt;You are an Architect&lt;/EM&gt; - you should do everything in your power to reinforce that statement.&lt;/P&gt;&lt;!-- start 336x280 ad --&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=12745" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category></item><item><title>Developer Cabana Night In Waltham (October 6th) Is Shaping Up Quite Nicely</title><link>http://msmvps.com/blogs/donscf/archive/2004/08/31/12624.aspx</link><pubDate>Tue, 31 Aug 2004 18:43:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:12624</guid><dc:creator>Don</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=12624</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/08/31/12624.aspx#comments</comments><description>&lt;P&gt;In his lastest weblog post, &lt;A href="http://weblogs.asp.net/trobbins"&gt;Thom Robbins&lt;/A&gt; has posted a list of just some of the people who will be present at the upcoming &lt;STRONG&gt;&lt;EM&gt;Developer Cabana Night&lt;/EM&gt;&lt;/STRONG&gt; at the Microsoft - Waltham offices on October 6th from 6:00 to 10:00 PM.&lt;/P&gt;
&lt;P&gt;The list includes -&lt;/P&gt;
&lt;P&gt;
&lt;TABLE class=MsoNormalTable cellPadding=0 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Chris Bowen&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.monster.com/" target=_blank&gt;www.monster.com&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Carl Franklin&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.franklins.net/" target=_blank&gt;www.franklins.net&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Robert Hurlbut&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.hurlbut-consulting.com/" target=_blank&gt;www.hurlbut-consulting.com&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Patrick Hynds&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.criticalsites.com/" target=_blank&gt;www.criticalsites.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Duane Laflotte&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.criticalsites.com/" target=_blank&gt;www.criticalsites.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Jesse Liberty&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.libertyassociates.com/" target=_blank&gt;www.libertyassociates.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Chris Pels&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.idevtech.com/" target=_blank&gt;www.idevtech.com&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Richard Hale Shaw&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.richardhaleshawgroup.com/" target=_blank&gt;www.richardhaleshawgroup.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Don Sorcinelli&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.bostonpocketpc.com/" target=_blank&gt;www.bostonpocketpc.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;Pat Tormey&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 8.5pt; FONT-FAMILY: Verdana"&gt;&lt;A href="http://www.4square.net" target=_blank&gt;www.4square.net&lt;/A&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;Yes, that's my name you see there. It should be in very small font type, espcially when compared to the people it is listed with ;-)&lt;/P&gt;
&lt;P&gt;I will be leading the discussions in the &amp;#8220;Mobile Application Development&amp;#8221; room that evening. Remember - this is a &amp;#8220;NO SEMINAR ZONE&amp;#8221;, so there will be no canned Powerpoint presentations.&lt;/P&gt;
&lt;P&gt;If you have not yet registered for the Developer Cabana Night, you can do so at the &lt;A href="https://msevents.microsoft.com/cui/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032256874&amp;amp;EventCategory=1"&gt;Microsoft Events web site&lt;/A&gt;. In addition, if you have a question you would like to pose to the &amp;#8220;experts&amp;#8221; in advance of the event, you can do so by sending the question to &lt;A href="mailto:cabana@bostondotnet.org"&gt;cabana@bostondotnet.org&lt;/A&gt;. &lt;/P&gt;
&lt;P&gt;I look forward to see you there!&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=12624" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Tablet+PC+Development/default.aspx">Tablet PC Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Code Camp II Back In Boston This October</title><link>http://msmvps.com/blogs/donscf/archive/2004/08/31/12602.aspx</link><pubDate>Tue, 31 Aug 2004 16:01:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:12602</guid><dc:creator>Don</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=12602</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/08/31/12602.aspx#comments</comments><description>&lt;P&gt;For those who are unaware, &lt;STRONG&gt;Code Camp&lt;/STRONG&gt; is a free one-weekend intensive training session sponsored and hosted by the Microsoft - Waltham offices. For one weekend (Saturday and Sunday, so you don't have to be out of the offices), Code Camp provides track-oriented sessions that are really code-intensive and beneficial. &lt;/P&gt;
&lt;P&gt;The first Code Camp in Boston earlier this year was a great success. So successful, in fact, that the sequal (&lt;STRONG&gt;&lt;EM&gt;Code Camp II&lt;/EM&gt;&lt;/STRONG&gt;) has been scheduled for &lt;STRONG&gt;the weekend of October 16th and 17th&lt;/STRONG&gt;! Thom Robbins has posted more information on all of this &lt;A href="http://weblogs.asp.net/trobbins/archive/2004/08/26/220977.aspx"&gt;in his .NET weblog&lt;/A&gt;. This page provides links to the current (and ever-growing) list of speakers and sessions, as well as the registration page for the event. &lt;/P&gt;
&lt;P&gt;I was looking forward to presenting on Windows Mobile topics under the "Smart Client" track at this Code Camp. Unfortunately, I found out yesterday that the closing date my family's first home purchase (time to grow up, I guess) will be on October 15th. Rather than being the first man to be thrown out of his home before he even officially owns it, I have had to back out of the event. While this is disappointing personally, I know that the event will be a huge success for all of the lucky participants and presenters. &lt;/P&gt;
&lt;P&gt;Speaking of presenters - if you are interested in presenting one or more sessions at this upcoming Code Camp, I encourage you to read &lt;A href="http://weblogs.asp.net/trobbins/archive/2004/08/22/218569.aspx"&gt;Thom's post on his "Call For Speakers"&lt;/A&gt; and take advantage of the opportunity. I have told Thom that I would gladly offer my support and assistance to any Windows Mobile-oriented presenter; while I cannot be there in body, I can in spirit :-)&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=12602" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Tablet+PC+Development/default.aspx">Tablet PC Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item><item><title>Developer Cabana Event in Boston October 6th</title><link>http://msmvps.com/blogs/donscf/archive/2004/08/31/12598.aspx</link><pubDate>Tue, 31 Aug 2004 15:52:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:12598</guid><dc:creator>Don</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/donscf/rsscomments.aspx?PostID=12598</wfw:commentRss><comments>http://msmvps.com/blogs/donscf/archive/2004/08/31/12598.aspx#comments</comments><description>&lt;P&gt;OK - I promise - there will be &lt;I&gt;NO&lt;/I&gt; Barry Manilow music playing at this event... ;-) &lt;/P&gt;
&lt;P&gt;&lt;I&gt;ca&amp;#183;ban&amp;#183;a also ca&amp;#183;ba&amp;#183;&amp;#241;a &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;- A shelter on a beach or at a swimming pool used as a bathhouse. &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;- A cabin or hut. &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;- A place to talk technology &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;- A place to give and get expert advice &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;- A community based project &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Cabanas were a hit at TechEd 2004 and now they&amp;#8217;re coming to Boston! That&amp;#8217;s right, community based technical discussions with experts. Bring you questions, your expertise, and even code on a laptop. Every question is fair game. The cabana is the place to have discussions with experts and other developers on .NET topics of your choice. One-on-one, in a small group or whatever. No pre-canned demos or slide shows allowed. The Boston Cabana is a quarterly event not to be missed. Got a question? Got a problem? Got an idea? This is the place. Stayed tuned for the list of peers and experts that are planning on attending! &lt;/I&gt;&lt;/P&gt;
&lt;P&gt;I can tell you at this point that one of the many "cabana rooms" set up for this event will be focused on mobility, and I will definitely be there. &lt;/P&gt;
&lt;P&gt;You can register online for this event at &lt;A href="http://msevents.microsoft.com/cui/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032256874&amp;amp;EventCategory=1"&gt;the Microsoft Events web site&lt;/A&gt;.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=12598" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Compact+Framework/default.aspx">.NET Compact Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Enterprise+Architecture+and+Development/default.aspx">Enterprise Architecture and Development</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/.NET+Framework/default.aspx">.NET Framework</category><category domain="http://msmvps.com/blogs/donscf/archive/tags/Events/default.aspx">Events</category></item></channel></rss>