<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://drowningintechnicaldebt.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>Shawn Weisfeld [MVP]</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/default.aspx</link><description>Undertake something that is difficult; it will do you good.  Unless
you try to do something beyond what you have already mastered,
you will never grow.  – Ronald E. Osborn</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Ramp Up</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2009/01/06/ramp-up.aspx</link><pubDate>Tue, 06 Jan 2009 12:08:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:708</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=708</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2009/01/06/ramp-up.aspx#comments</comments><description>&lt;p&gt;Microsoft has started a new program called Ramp UP (&lt;a href="http://msdn.microsoft.com/en-us/rampup/default.aspx"&gt;http://msdn.microsoft.com/en-us/rampup/default.aspx&lt;/a&gt;). “Ramp Up is a free, online, community-based learning program, with a number of different tracks that will help you build your portfolio of professional development skills. Ramp Up has a solid foundation of premium technical content from subject-matter gurus, and provides easy-to-access content in a variety of forms that guide you in learning the important skills.”&lt;br /&gt;At this time they have 6 tracks. . . &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;SharePoint for Developers (Part 1)&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Visual Studio 2008&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Aspiring Developer (VS 2005)&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Java Developer (VS 2005)&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;VB 6.0 Developer (VS 2005)&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;VS 200/2003 Developer (VS 2005)&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Check it out!&lt;br /&gt;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=708" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/VB.NET/default.aspx">VB.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Microsoft/default.aspx">Microsoft</category></item><item><title>Pipe "|" delimited files with Excel &amp; SQL Server</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/12/19/pipe-quot-quot-delimited-files-with-excel-amp-sql-server.aspx</link><pubDate>Fri, 19 Dec 2008 15:06:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:699</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=699</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/12/19/pipe-quot-quot-delimited-files-with-excel-amp-sql-server.aspx#comments</comments><description>&lt;p&gt;I am constantly querying random data out of SQL Server and sending it to EXCEL files to email to a co-worker. Exporting to a comma separated or tab separated file is no good since those characters appear in my data frequently so I have switched to using a Pipe, “|”, character. This is easy enough to do in SQL Server Management Studio. Go to Tools and options. In the options dialog go to query results, sql server, and select results to text. &lt;br /&gt;&lt;img height="374" alt="" src="http://drowningintechnicaldebt.com/files/folders/697/download.aspx" width="630" border="0" /&gt;&amp;nbsp;&lt;br /&gt;Here you can set the output format to custom delimiter and then set the custom delimiter to the pipe. Press OK to close the dialog and it will remind you to open an new query window where the setting will be changed. The next trick is to change your output destination to text by selecting the results to file icon in the tool bar&amp;nbsp;&lt;img height="1" alt="" src="http://drowningintechnicaldebt.com/files/folders/698/download.aspx" width="1" border="0" /&gt;&lt;img height="21" alt="" src="http://drowningintechnicaldebt.com/files/folders/698/download.aspx" width="21" border="0" /&gt;&amp;nbsp; . Now when you run a query in SSMS it will pop up and ask you where to save the file. If you save it to something with a .xls extension excel will open it. However it will open with all the data in the first column. Now you could to a “Text to Columns” and have excel parse the file but what is the fun in that. By changing a windows setting excel will automatically parse the file for us. Open the Control Panel and select “Regional and language options”. On the Regional Options tab select the customize button, then change your list separator from a comma to the pipe. Press Apply, then Ok on the Customize Regional Options window, and again on the Regional and language options window. Now when you open those pipe delimited files with a .xls extension excel will automagically pars them for you. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;: changing these settings will also change things like your formula&amp;#39;s in excel to use pipes in place of commas. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=699" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/SQL/default.aspx">SQL</category></item><item><title>SQL PASS 2008 Feedback</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/12/15/sql-pass-2008-feedback.aspx</link><pubDate>Tue, 16 Dec 2008 00:34:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:695</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=695</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/12/15/sql-pass-2008-feedback.aspx#comments</comments><description>&lt;p&gt;I wanted to share the feedback that I got from my presentation this year at the PASS Summit. (&lt;a href="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/23/sql-pass-2008-talk.aspx"&gt;http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/23/sql-pass-2008-talk.aspx&lt;/a&gt;) Again thank you to all that attended, and &lt;u&gt;&lt;em&gt;a special thank you to those that provided feedback&lt;/em&gt;&lt;/u&gt; it is an invaluable tool to help presenters improve over time. (BTW these are all the comments, I did not filter them at all)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Overall 4.44 out of 5&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is your overall evaluation of the session? 4.5&lt;/strong&gt;&lt;br /&gt;Difficult topic to present. He did a good job.&lt;br /&gt;Good content. Bonus content at the end took it to the next level without getting exotic. Wirht the time to sit through.&lt;br /&gt;Interesting, but a little slow at the start.&lt;br /&gt;Outstanding!&lt;br /&gt;Speaker stands in the dark. Have some light on him.&lt;br /&gt;This was the best session I attended. The presenter&amp;#39;s pace was excellent and his lecture was well-thought out. He&amp;#39;s obviosly comfortable speaking in front of a group.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How would you rate the usefulness of the information presented in your day-to-day environment? 4.08&lt;br /&gt;&lt;/strong&gt;Good selections.&lt;br /&gt;The content was in an area we don&amp;#39;t actively use, but don&amp;#39;t want to avoid. This gave me a solid foot in the door as a DBA / Developer and exposed me to different facets to consider.&lt;br /&gt;Samples should be more real world on what should be done in a CLR versus T-SQL.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How would you rate the Speaker&amp;#39;s presentation skills? 4.5&lt;br /&gt;&lt;/strong&gt;Speaker is very smart about what to say.&lt;br /&gt;Great speaking skills, kept the content flowing within the time alloted and managed to put in very valuable bonus content at the end. Great posative attitude.&lt;br /&gt;He directed the audience well, even when we wanted to jump ahead of him.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How would you rate the Speaker&amp;#39;s knowledge of the subject? 4.67&lt;/strong&gt;&lt;br /&gt;Obviously well versed on the topic, and for the most part able to take questions and resolve and answer that made sense.&lt;br /&gt;My favorite part was that he showed errors we were likely to see and how to recover. No other presenter I&amp;#39;ve seen did this.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How would you rate the accuracy of the session title, description and experience level to the actual session? 4.5&lt;br /&gt;&lt;/strong&gt;Reletively hard to misunderstand this. Could have added the word &amp;quot;USING&amp;quot;. NOt that there was a lack of space for it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How would you rate the amount of time allocated to cover the topic/session? 4.5&lt;br /&gt;&lt;/strong&gt;A bit tight, but the content fit into the space allowed and the speaker stayed on topic to assure it worked.&lt;br /&gt;And he did a great job of staying within his allocated time.&lt;br /&gt;Great time management and ease of dealing with questions from the floor.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How would you rate the quality of the presentaion materials? 4.33&lt;br /&gt;&lt;/strong&gt;Good code examples demonstrated. Excellent use of realtime erros and troubleshooting.&lt;br /&gt;stop showing the same thing on PPT and in code. it is not useful! You would save a lot of time.&lt;br /&gt;He had all of his scripts pasted into his powerpoint for easy reading. Again, no other presenter did this.&lt;br /&gt;Just leave most in power point.&amp;nbsp; with just one or two real samples&lt;br /&gt;Good examples; building on the go.&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=695" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/SQL/default.aspx">SQL</category></item><item><title>ASP.NET charting controls</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/12/05/asp-net-charting-controls.aspx</link><pubDate>Fri, 05 Dec 2008 13:04:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:693</guid><dc:creator>sweisfeld</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=693</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/12/05/asp-net-charting-controls.aspx#comments</comments><description>&lt;p&gt;Microsoft released a set of controls called the ASP.NET charting controls. I don’t know if they licensed this from Dundas, however in one of my projects I was able to replace Dundas with this in about 30 min. Most of the class names are the same. Oh and they are FREE!!!!! The only caveat is that you have to be using .NET 3.5.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=693" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Downloads/default.aspx">Downloads</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/VB.NET/default.aspx">VB.NET</category></item><item><title>SQL PASS 2008 Talk</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/23/sql-pass-2008-talk.aspx</link><pubDate>Sun, 23 Nov 2008 19:58:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:690</guid><dc:creator>sweisfeld</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=690</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/23/sql-pass-2008-talk.aspx#comments</comments><description>&lt;p&gt;If you attended my talk at pass last week, you can get the slides &amp;amp; downloads here (&lt;a href="http://www.developerroundtable.com/Libraries/Downloads/PASS_SQL_CLR.sflb.ashx"&gt;http://www.developerroundtable.com/Libraries/Downloads/PASS_SQL_CLR.sflb.ashx&lt;/a&gt;). I hope you enjoyed the talk. Feel free to send me feedback!&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=690" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Downloads/default.aspx">Downloads</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/SQL/default.aspx">SQL</category></item><item><title>MS Popfly</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/13/ms-popfly.aspx</link><pubDate>Thu, 13 Nov 2008 21:17:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:685</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=685</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/13/ms-popfly.aspx#comments</comments><description>&lt;p&gt;I am tired of forgetting the link to this darn site and people keep asking me about it, hence this blog post. A while back at a presentation by Russ Fustino (&lt;a href="http://blogs.msdn.com/rfustino/"&gt;http://blogs.msdn.com/rfustino/&lt;/a&gt;) he demoed this application. MS Popfly (&lt;a href="http://www.popfly.com/"&gt;http://www.popfly.com/&lt;/a&gt;) allows you to create online game and mashup’s using silverlight. A very cool tool, get an account and check it out. &lt;/p&gt;
&lt;p&gt;Here is a mashup I created by doing a live picture search for me and binding it to a Carousel in all of 5 min. &lt;/p&gt;&lt;a href="http://www.popfly.com/users/ShawnOnetug/ShawnPictureMashup"&gt;http://www.popfly.com/users/ShawnOnetug/ShawnPictureMashup&lt;/a&gt;&lt;br /&gt;(Note if it doesn&amp;#39;t display try selecting one of the alternatives from the menu on the right hand side of the page.)&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=685" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Silverlight/default.aspx">Silverlight</category></item><item><title>WCF &amp; Using Statements</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/13/wcf-amp-using-statements.aspx</link><pubDate>Thu, 13 Nov 2008 11:29:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:684</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=684</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/13/wcf-amp-using-statements.aspx#comments</comments><description>&lt;p&gt;I was attending the Dallas Connected Systems UG last night (&lt;a href="http://biztalkusergroup.com/"&gt;http://biztalkusergroup.com/&lt;/a&gt;) and during the presentation I made the bold assertion that one should NOT use the &amp;quot;using statement&amp;quot; when working with WCF. Now I am a HUGE proponent of the using statement in normal circumstances. IMHO if it implements IDisposable use the using statement, except with WCF. This has to do with the way that WCF errors out and when that happens how the connection gets closed. . . &lt;br /&gt;&lt;br /&gt;Doing my best LeVar Burton &amp;quot;But you don&amp;#39;t have to take my word for it&amp;quot; (&lt;a href="http://en.wikipedia.org/wiki/Reading_Rainbow"&gt;http://en.wikipedia.org/wiki/Reading_Rainbow&lt;/a&gt;). Microsoft even says it in the documentation, &amp;quot;You should not use the using statement (Using in Visual Basic) because it may mask exceptions in certain failure modes. &amp;quot; (&lt;a href="http://msdn.microsoft.com/en-us/library/ms735103.aspx"&gt;http://msdn.microsoft.com/en-us/library/ms735103.aspx&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Also check out a post by Dan Rigsby that goes into more detail. &lt;a href="http://www.danrigsby.com/blog/index.php/2008/02/26/dont-wrap-wcf-service-hosts-or-clients-in-a-using-statement/"&gt;http://www.danrigsby.com/blog/index.php/2008/02/26/dont-wrap-wcf-service-hosts-or-clients-in-a-using-statement/&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=684" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/SOA/default.aspx">SOA</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/VB.NET/default.aspx">VB.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/WCF/default.aspx">WCF</category></item><item><title>Microsoft Web Platform Installer</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/03/microsoft-web-platform-installer.aspx</link><pubDate>Tue, 04 Nov 2008 01:39:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:679</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=679</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/11/03/microsoft-web-platform-installer.aspx#comments</comments><description>While I was not able to attend PDC, Microsoft did good by the community and has provided free recordings of many of the sessions (&lt;a href="http://www.microsoftpdc.com/"&gt;http://www.microsoftpdc.com&lt;/a&gt;). While this is cool and has some great content, the purpose of this blog post is to talk about the Microsoft Web Platform Installer (&lt;a href="http://www.microsoft.com/web/channel/products/WebPlatformInstaller.aspx"&gt;http://www.microsoft.com/web/channel/products/WebPlatformInstaller.aspx&lt;/a&gt;). This tool allows for single deployment model for all the bits and pieces needed to put together a clean PC image for a developer use (i.e. VS.NET, SQL SVR, and IIS). IMHO this is a great idea and Microsoft is only scratching the surface of what they could&amp;nbsp; do in this space. Currently the tool works for the express editions, which is good for the hobbyist and more importantly at schools. With my experiences teaching .NET at the University anything that helps bring students into a working development environment faster and easier is goodness. However this will become much more valuable when it gets pushed into the enterprise environment. Currently one of the most frustrating jobs that I have my day job is helping team members with the setup of development machines. Anything that MSFT can do to stream line and reduce errors in the process of installing the entire suite of development tools is much appreciated.&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=679" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/VB.NET/default.aspx">VB.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/IIS/default.aspx">IIS</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Microsoft/default.aspx">Microsoft</category></item><item><title>ZooomIt</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/30/zooomit.aspx</link><pubDate>Thu, 30 Oct 2008 16:54:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:676</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=676</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/30/zooomit.aspx#comments</comments><description>A must have presentation aid for any technical presentation, additionally good if you have a hard time seeing area’s of the screen and it is free. Get it here &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897434.aspx"&gt;http://technet.microsoft.com/en-us/sysinternals/bb897434.aspx&lt;/a&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=676" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Downloads/default.aspx">Downloads</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Microsoft/default.aspx">Microsoft</category></item><item><title>Developer Round Table</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/27/developer-round-table.aspx</link><pubDate>Mon, 27 Oct 2008 16:22:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:671</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=671</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/27/developer-round-table.aspx#comments</comments><description>&lt;p&gt;I just started a new virtual user group, Developer Round Table. Check out our inaugural meeting Friday Oct 31 at 2:00 PST. All the details at &lt;a href="http://www.developerroundtable.com/"&gt;http://www.developerroundtable.com&lt;/a&gt;, see you there.&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=671" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Community/default.aspx">Community</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/INETA/default.aspx">INETA</category></item><item><title>Data Dude!</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/23/data-dude.aspx</link><pubDate>Thu, 23 Oct 2008 12:43:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:670</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=670</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/23/data-dude.aspx#comments</comments><description>&lt;p&gt;Microsoft just changed the licensing for the Developer Team Edition for MSDN. If you have the Developer SKU you are now also licensed to use the Database Team Edition. (If you don’t know what SKU you have go to MSDN and check). &lt;/p&gt;
&lt;p&gt;Why does this matter to me? The Database edition has many cool features but my favorite are “Schema Compare” and “Data Compare”. These allow you to do a comparison between two databases and see what the differences are (both structure and content). After you do the install you will see a new menu at the top of VS.NET that says data and the options are there. &lt;/p&gt;
&lt;p&gt;How do I get it? Go to MSDN and download it&lt;/p&gt;
&lt;p&gt;Please note that you will have to reapply service packs to VS after you do this install. . .&amp;nbsp; .&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=670" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/SQL/default.aspx">SQL</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/TFS/default.aspx">TFS</category></item><item><title>ALM Advisor</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/23/alm-advisor.aspx</link><pubDate>Thu, 23 Oct 2008 12:40:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:669</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=669</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/10/23/alm-advisor.aspx#comments</comments><description>&lt;p&gt;Microsoft has a free tool called the ALM Advisor. As you know ALM or application lifecycle management is “the process of delivering software as a continuously repeating cycle of inter-related steps: definition, design, development, testing, deployment and management” (&lt;a href="http://en.wikipedia.org/wiki/Application_lifecycle_management"&gt;http://en.wikipedia.org/wiki/Application_lifecycle_management&lt;/a&gt;). What the tool does is ask you a bunch of questions about how things are done currently. It then assess the maturity of your ALM process, and make recommendations on steps to make the process more mature. The good thing from what I have seen is that it breaks the process down into steps that can be more easily phased in over time and it provides a mechanism to do longer term process improvement planning. &lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.microsoft.com/almassessment"&gt;https://www.microsoft.com/almassessment&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=669" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/.NET/default.aspx">.NET</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/TFS/default.aspx">TFS</category></item><item><title>Clear Kerberos Tickets cached on your computer</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/09/15/clear-kerberos-tickets-cached-on-your-computer.aspx</link><pubDate>Mon, 15 Sep 2008 22:26:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:651</guid><dc:creator>sweisfeld</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=651</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/09/15/clear-kerberos-tickets-cached-on-your-computer.aspx#comments</comments><description>&lt;p&gt;Having trouble authenticating to that website on the intranet? Try clearing out your cache of Kerberos tickets on your computer. . . &lt;br /&gt;“klist tickets” will list all the tickets you currently have&lt;br /&gt;“klist purge” will clear them out&lt;br /&gt;More information at &lt;a href="http://technet.microsoft.com/en-us/library/cc738673.aspx"&gt;http://technet.microsoft.com/en-us/library/cc738673.aspx&lt;/a&gt;&lt;br /&gt;And you can download the tool at &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=651" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Windows/default.aspx">Windows</category></item><item><title>Shawn @ Tech ED</title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/09/09/shawn-tech-ed.aspx</link><pubDate>Wed, 10 Sep 2008 00:13:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:646</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=646</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/09/09/shawn-tech-ed.aspx#comments</comments><description>&lt;p&gt;While I was at Tech ED 2008 in Orlando FL I participated in a roundtable discussion on &amp;quot;How to make community better&amp;quot; with Dan Egan (President of INETA, &lt;a href="http://www.ineta.org/"&gt;http://www.ineta.org&lt;/a&gt;), Dave Noderer (UG Leader, CO Founder of INETA, &lt;a href="http://www.fladotnet.net/"&gt;http://www.fladotnet.net&lt;/a&gt;),&amp;nbsp; Christine Betts (GM of the Technical Audience Global Marketing for Microsoft) and Mark Wilson (Charlotte Enterprise Dev Guild, &lt;a href="http://www.developersguild.org/"&gt;http://www.developersguild.org&lt;/a&gt;). They thought it was a good idea to record it, so I figured I would share &lt;a href="http://mfile.akamai.com/14853/wmv/microsofttec.download.akamai.com/14853/TechEdOnline/Videos/08_NA_DEV_TEOPanel_36_low.asx"&gt;http://mfile.akamai.com/14853/wmv/microsofttec.download.akamai.com/14853/TechEdOnline/Videos/08_NA_DEV_TEOPanel_36_low.asx&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=646" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Community/default.aspx">Community</category><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/INETA/default.aspx">INETA</category></item><item><title>Virtual CloneDrive </title><link>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/09/05/virtual-clonedrive.aspx</link><pubDate>Fri, 05 Sep 2008 16:54:00 GMT</pubDate><guid isPermaLink="false">4fe7e88d-b128-4946-bef2-079055b364e8:644</guid><dc:creator>sweisfeld</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://drowningintechnicaldebt.com/blogs/shawnweisfeld/rsscomments.aspx?PostID=644</wfw:commentRss><comments>http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/2008/09/05/virtual-clonedrive.aspx#comments</comments><description>&lt;p&gt;If you have an MSDN license you are flush with lots of ISO files. Maybe you want to burn them all to DVD&amp;#39;s but I keep my collection of ISO&amp;#39;s on my Windows Home Server (&lt;a href="http://en.wikipedia.org/wiki/Windows_Home_Server"&gt;http://en.wikipedia.org/wiki/Windows_Home_Server&lt;/a&gt;). This saves me alot of time hunting through the pile of junk on my desk looking for a disc. However it does mean that I need software to mount the ISO. This software adds a virtual DVD drive to your computer allowing you to insert the ISO. The beauty is that it appears just like a normal DVD once mounted. . . The best piece of software I found for the job to date is Virtual CloneDrive from SlySoft (&lt;a href="http://www.slysoft.com/en/virtual-clonedrive.html"&gt;http://www.slysoft.com/en/virtual-clonedrive.html&lt;/a&gt;). Happy ISO Busting!&lt;/p&gt;&lt;img src="http://drowningintechnicaldebt.com/aggbug.aspx?PostID=644" width="1" height="1"&gt;</description><category domain="http://drowningintechnicaldebt.com/blogs/shawnweisfeld/archive/tags/Downloads/default.aspx">Downloads</category></item></channel></rss>