<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for joshnuss</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/joshnuss/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for joshnuss</title><link>http://channel9.msdn.com/Niners/joshnuss/</link></image><description>Entries, comments and threads posted by joshnuss</description><link>http://channel9.msdn.com/Niners/joshnuss/</link><language>en-us</language><pubDate>Mon, 07 Jan 2008 23:44:26 GMT</pubDate><lastBuildDate>Mon, 07 Jan 2008 23:44:26 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Visual Studio Performance Analysis in 10 minutes [Visual Studio Performance Analysis in 10 minutes]</title><description>Ever wondered how much time you spend waiting for Visual Studio to respond? &lt;br&gt;Well its been driving me nuts for a while so I wrote a little app to tracks the time that VS 2008 spends "not responding". &lt;br&gt;I think you'll be shocked by the results on solutions with 15+ projects.&lt;br&gt;&lt;br&gt;Hopefully making this information available to others will motivate Microsoft to fix these problems. &lt;br&gt;&lt;br&gt;Heres the code for your enjoyment (tested with VS 2008).. &lt;br&gt;&lt;br&gt;

&lt;pre&gt;using System;&lt;br&gt;using System.Diagnostics;&lt;br&gt;using System.Runtime.InteropServices;&lt;br&gt;using System.Threading;&lt;br&gt;&lt;br&gt;namespace CalulateHangTime&lt;br&gt;{&lt;br&gt;    [Flags]&lt;br&gt;    public enum SendMessageTimeoutFlags : uint&lt;br&gt;    {&lt;br&gt;        SMTO_NORMAL = 0x0000,&lt;br&gt;        SMTO_BLOCK = 0x0001,&lt;br&gt;        SMTO_ABORTIFHUNG = 0x0002,&lt;br&gt;        SMTO_NOTIMEOUTIFNOTHUNG = 0x0008&lt;br&gt;    }&lt;br&gt;&lt;br&gt;    public static class ExternalMethods&lt;br&gt;    {&lt;br&gt;        [DllImport("user32.dll", SetLastError = true)]&lt;br&gt;        public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);&lt;br&gt;&lt;br&gt;        [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]&lt;br&gt;        public static extern IntPtr SendMessageTimeout(IntPtr hWnd, uint Msg,&lt;br&gt;           UIntPtr wParam, IntPtr lParam, SendMessageTimeoutFlags fuFlags,&lt;br&gt;           uint uTimeout, out UIntPtr lpdwResult);&lt;br&gt;    }&lt;br&gt;&lt;br&gt;    class Program&lt;br&gt;    {&lt;br&gt;        static readonly uint WAIT_MILLISECONDS = 2;&lt;br&gt;        static readonly int SLEEP_MILLISECONDS = 1000;&lt;br&gt;&lt;br&gt;        static void Main(string[] args)&lt;br&gt;        {&lt;br&gt;            long seconds = 0;&lt;br&gt;            Stopwatch stopWatch = new Stopwatch();&lt;br&gt;            stopWatch.Start();&lt;br&gt;            while (true)&lt;br&gt;            {&lt;br&gt;                IntPtr hWnd = ExternalMethods.FindWindow("wndclass_desked_gsk", null);&lt;br&gt;                if (hWnd == IntPtr.Zero)&lt;br&gt;                    throw new InvalidOperationException("Handle to window could not be found");&lt;br&gt;&lt;br&gt;&lt;br&gt;                UIntPtr result;&lt;br&gt;                IntPtr success = ExternalMethods.SendMessageTimeout(hWnd, 0, UIntPtr.Zero, IntPtr.Zero, &lt;br&gt;				SendMessageTimeoutFlags.SMTO_ABORTIFHUNG, WAIT_MILLISECONDS, out result);&lt;br&gt;                &lt;br&gt;                if (success == IntPtr.Zero)&lt;br&gt;                {&lt;br&gt;                    seconds += SLEEP_MILLISECONDS / 1000;&lt;br&gt;&lt;br&gt;                    Console.WriteLine("Visual Studio is hung. {0}/{1} seconds wasted", seconds, stopWatch.Elapsed.TotalSeconds);&lt;br&gt;                }&lt;br&gt;                else&lt;br&gt;                {&lt;br&gt;                    Console.WriteLine("Visual Studio is running fine.");&lt;br&gt;                }&lt;br&gt;&lt;br&gt;                Thread.Sleep(SLEEP_MILLISECONDS);&lt;br&gt;            }&lt;br&gt;        }&lt;br&gt;    }&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;/pre&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/'&gt;Visual Studio Performance Analysis in 10 minutes&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/260091/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/</comments><link>http://channel9.msdn.com/forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/</link><pubDate>Mon, 07 Jan 2008 23:44:26 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/</guid><evnet:views>2700</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/260091/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Ever wondered how much time you spend waiting for Visual Studio to respond? &lt;br&gt;Well its been driving me nuts for a while so I wrote a little app to tracks the time that VS 2008 spends "not responding". &lt;br&gt;I think you'll be shocked by the results on solutions with 15+ projects.&lt;br&gt;&lt;br&gt;Hopefully making this information available to others will motivate Microsoft to fix these problems. &lt;br&gt;&lt;br&gt;Heres the code for your enjoyment (tested with VS 2008).. &lt;br&gt;&lt;br&gt;

&lt;pre&gt;using System;&lt;br&gt;using System.Diagnostics;&lt;br&gt;using System.Runtime.InteropServices;&lt;br&gt;using System.Threading;&lt;br&gt;&lt;br&gt;namespace CalulateHangTime&lt;br&gt;{&lt;br&gt;    [Flags]&lt;br&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>12</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/260091/Trackback.aspx</trackback:ping></item><item><title>WPF XBAPs &amp;amp; Search Engines [WPF XBAPs &amp;amp; Search Engines]</title><description>&lt;P&gt;Will WPF XBAP applications&amp;nbsp;be able to be searched by&amp;nbsp;search engines? &lt;BR&gt;&lt;BR&gt;Sure - standalone XAML files shouldnt be a problem since they are declaritive and can be parsed by a search engine. But xbaps send compiled stuff to the client.. great for perf .. but will make the content unsearchable.&lt;BR&gt;&lt;BR&gt;And what about URLs? How will a user recall a link on a site to send to a friend? e.g. &lt;a href="http://www.acme.com/products/1234"&gt;www.acme.com/products/1234&lt;/a&gt;? will there be a way to recall&amp;nbsp;&amp;amp; share&amp;nbsp;URLs&amp;nbsp;with WPF?&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/'&gt;WPF XBAPs &amp;amp; Search Engines&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/173379/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/</comments><link>http://channel9.msdn.com/forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/</link><pubDate>Thu, 30 Mar 2006 21:01:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/</guid><evnet:views>2815</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/173379/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Will WPF XBAP applications&amp;nbsp;be able to be searched by&amp;nbsp;search engines? &lt;BR&gt;&lt;BR&gt;Sure - standalone XAML files shouldnt be a problem since they are declaritive and can be parsed by a search engine. But xbaps send compiled stuff to the client.. great for perf .. but will make the content unsearchable.&lt;BR&gt;&lt;BR&gt;And what about URLs? How will a user recall a link on a site to send to a friend? e.g. &lt;a href="http://www.acme.com/products/1234"&gt;www.acme.com/products/1234&lt;/a&gt;? will there be a way to recall&amp;nbsp;&amp;amp; share&amp;nbsp;URLs&amp;nbsp;with WPF?&lt;BR&gt;&lt;/P&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/173379/Trackback.aspx</trackback:ping></item><item><title>Microsoft Expression Web Designer CTP [Microsoft Expression Web Designer CTP]</title><description>Just saw at connect.microsoft.com&lt;BR&gt;&lt;BR&gt;Looks like there will be a CTP in April for 5000 participants and a public CTP in June. &lt;BR&gt;&lt;BR&gt;I hope they use the Ribbon Bar from Office 2007.. that would be neat.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/'&gt;Microsoft Expression Web Designer CTP&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/173298/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/</comments><link>http://channel9.msdn.com/forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/</link><pubDate>Thu, 30 Mar 2006 16:11:46 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/</guid><evnet:views>5316</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/173298/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Just saw at connect.microsoft.com&lt;BR&gt;&lt;BR&gt;Looks like there will be a CTP in April for 5000 participants and a public CTP in June. &lt;BR&gt;&lt;BR&gt;I hope they use the Ribbon Bar from Office 2007.. that would be neat.</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/173298/Trackback.aspx</trackback:ping></item><item><title>MSH + SQL Server [MSH + SQL Server]</title><description>&lt;P&gt;&lt;BR&gt;Hi niners, &lt;BR&gt;&lt;BR&gt;Came up with a little MSH script (MSH is sooo cool) that uses sql to retrieve a list of object that can be used together with all the other command line tools.&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;A simple call:&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;$connectionString = "Server=(local)\SQLEXPRESS;Database=AdventureWorks;Integrated Security='SSPI'"&lt;BR&gt;$sqlText = "SELECT * FROM&amp;nbsp;Production.Product"&lt;BR&gt;&lt;BR&gt;Get-Sql $connectionString $sqlText&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Format as table&lt;/STRONG&gt;&lt;BR&gt;&lt;BR&gt;Get-Sql $connectionString $sqlText | format-table&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Export CSV&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;Get-Sql $connectionString $sqlText | export-csv "test.csv"&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Loop Thru Items&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;$products = (Get-Sql $connectionString $sqlText)&lt;BR&gt;&lt;BR&gt;foreach ($product in $products) {&lt;BR&gt;&amp;nbsp;write-host $product.Name&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Heres the actual function:&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;function Get-Sql {&lt;BR&gt;&amp;nbsp;param ([string]$conn, [string]$sql)&lt;BR&gt;&amp;nbsp;&lt;BR&gt;&amp;nbsp;# setup connection&lt;BR&gt;&amp;nbsp;$connObj = new-object System.Data.SqlClient.SqlConnection&lt;BR&gt;&amp;nbsp;$connObj.ConnectionString = $conn&lt;BR&gt;&amp;nbsp;# setup command&lt;BR&gt;&amp;nbsp;$cmdObj = new-object System.Data.SqlClient.SqlCommand &lt;BR&gt;&amp;nbsp;$cmdObj.Connection = $connObj&lt;BR&gt;&amp;nbsp;$cmdObj.CommandText = $sql&lt;/P&gt;
&lt;P&gt;&amp;nbsp;$connObj.Open()&lt;BR&gt;&amp;nbsp;&lt;BR&gt;&amp;nbsp;$reader = $cmdObj.ExecuteReader()&lt;BR&gt;&amp;nbsp;while ($reader.Read()) {&lt;BR&gt;&amp;nbsp;&amp;nbsp;$result = new-object System.Management.Automation.MshObject&lt;BR&gt;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;for ($i=0;$i -lt ($reader.FieldCount) ;$i++) {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;$fld = new-object System.Management.AUtomation.MshNoteProperty $reader.GetName($i), $reader[$i]&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;$result.MshObject.Members.Add($fld);&lt;BR&gt;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;$result&lt;BR&gt;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;}&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;&amp;nbsp;$reader.Close()&lt;BR&gt;&amp;nbsp;$reader.Dispose()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;$connObj.Close();&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;Enjoy&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/141919-MSH--SQL-Server/'&gt;MSH + SQL Server&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/141919/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/141919-MSH--SQL-Server/</comments><link>http://channel9.msdn.com/forums/TechOff/141919-MSH--SQL-Server/</link><pubDate>Tue, 13 Dec 2005 22:15:42 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/141919-MSH--SQL-Server/</guid><evnet:views>3586</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/141919/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;&lt;BR&gt;Hi niners, &lt;BR&gt;&lt;BR&gt;Came up with a little MSH script (MSH is sooo cool) that uses sql to retrieve a list of object that can be used together with all the other command line tools.&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;A simple call:&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;$connectionString = "Server=(local)\SQLEXPRESS;Database=AdventureWorks;Integrated Security='SSPI'"&lt;BR&gt;$sqlText = "SELECT * FROM&amp;nbsp;Production.Product"&lt;BR&gt;&lt;BR&gt;Get-Sql $connectionString $sqlText&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Format as table&lt;/STRONG&gt;&lt;BR&gt;&lt;BR&gt;Get-Sql $connectionString $sqlText | format-table&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Export CSV&lt;BR&gt;&lt;/STRONG&gt;&lt;BR&gt;Get-Sql $connectionString $sqlText | export-csv "test.csv"&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/141919-MSH--SQL-Server/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/141919/Trackback.aspx</trackback:ping></item><item><title>HTML in a Frame [HTML in a Frame]</title><description>I am trying to display html content in XAML using the Frame tag:&lt;BR&gt;&lt;BR&gt;&amp;lt;Frame Source="&lt;a href="http://www.msn.com"&gt;http://www.msn.com&lt;/a&gt;" LayoutTransform="scale 0.3,0.3"&amp;gt;&lt;BR&gt;&amp;lt;/Frame&amp;gt;&lt;BR&gt;&lt;BR&gt;It doesnt seem to scale? am I missing something?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/121768-HTML-in-a-Frame/'&gt;HTML in a Frame&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/121768/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/121768-HTML-in-a-Frame/</comments><link>http://channel9.msdn.com/forums/TechOff/121768-HTML-in-a-Frame/</link><pubDate>Sun, 09 Oct 2005 07:36:12 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/121768-HTML-in-a-Frame/</guid><evnet:views>1339</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/121768/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am trying to display html content in XAML using the Frame tag:&lt;BR&gt;&lt;BR&gt;&amp;lt;Frame Source="&lt;a href="http://www.msn.com"&gt;http://www.msn.com&lt;/a&gt;" LayoutTransform="scale 0.3,0.3"&amp;gt;&lt;BR&gt;&amp;lt;/Frame&amp;gt;&lt;BR&gt;&lt;BR&gt;It doesnt seem to scale? am I missing something?</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/121768-HTML-in-a-Frame/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/121768/Trackback.aspx</trackback:ping></item><item><title>Displays, Input Devices and WPF [Displays, Input Devices and WPF]</title><description>Now that apps can be drawn completely&amp;nbsp;vector based in a 3D space -&amp;nbsp;it would seem that we are closer to getting those cool 3D hologram displays you see in the movies.&lt;BR&gt;&lt;BR&gt;3D&amp;nbsp;could also open up innovation&amp;nbsp;for&amp;nbsp;selection devices that go way beyond the mouse. The current&amp;nbsp;mouse&amp;nbsp;being based on a 2D&amp;nbsp;input model - x and y movements. With the new 3D drawing model, input devices would be better if they could express z axis movement too. Maybe a hand-movement-detection system&amp;nbsp;(like a glove)&amp;nbsp;would be better than a mouse in the 3D world.&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/'&gt;Displays, Input Devices and WPF&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/121581/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/</link><pubDate>Sat, 08 Oct 2005 07:22:50 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/</guid><evnet:views>3178</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/121581/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Now that apps can be drawn completely&amp;nbsp;vector based in a 3D space -&amp;nbsp;it would seem that we are closer to getting those cool 3D hologram displays you see in the movies.&lt;BR&gt;&lt;BR&gt;3D&amp;nbsp;could also open up innovation&amp;nbsp;for&amp;nbsp;selection devices that go way beyond the mouse. The current&amp;nbsp;mouse&amp;nbsp;being based on a 2D&amp;nbsp;input model - x and y movements. With the new 3D drawing model, input devices would be better if they could express z axis movement too. Maybe a hand-movement-detection system&amp;nbsp;(like a glove)&amp;nbsp;would be better than a mouse in the 3D world.&lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/121581/Trackback.aspx</trackback:ping></item><item><title>ASP.NET 2.0 Profile Provider [ASP.NET 2.0 Profile Provider]</title><description>I love the new provider pattern and Login Controls for ASP.NET 2.0, but whats up with the profile provider?? Its a great idea and all, but jamming a whole bunch of different data types into one field, that's bad database design! They should have their own columns.&lt;BR&gt;&lt;BR&gt;It also makes it harder to query and index... &lt;BR&gt;&lt;BR&gt;So I guess my only option is to code my own MembershipProvider&amp;nbsp;- not the end of the world, but it kinda defeats the purpose of the ProfileProvider &lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/113074-ASPNET-20-Profile-Provider/'&gt;ASP.NET 2.0 Profile Provider&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/113074/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/113074-ASPNET-20-Profile-Provider/</comments><link>http://channel9.msdn.com/forums/TechOff/113074-ASPNET-20-Profile-Provider/</link><pubDate>Thu, 15 Sep 2005 23:43:36 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/113074-ASPNET-20-Profile-Provider/</guid><evnet:views>1011</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/113074/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I love the new provider pattern and Login Controls for ASP.NET 2.0, but whats up with the profile provider?? Its a great idea and all, but jamming a whole bunch of different data types into one field, that's bad database design! They should have their own columns.&lt;BR&gt;&lt;BR&gt;It also makes it harder to query and index... &lt;BR&gt;&lt;BR&gt;So I guess my only option is to code my own MembershipProvider&amp;nbsp;- not the end of the world, but it kinda defeats the purpose of the ProfileProvider &lt;BR&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/113074-ASPNET-20-Profile-Provider/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/113074/Trackback.aspx</trackback:ping></item><item><title>Emergency Software [Emergency Software]</title><description>&lt;P&gt;The terrible tragedy in the Gulf Coast got me thinking about how software could aid in an emergency situation.&lt;BR&gt;&lt;BR&gt;I've seen some websites offer services for finding missing family members, friends or pets. But its not nearly enough&lt;BR&gt;&lt;BR&gt;The government would be wise to create&amp;nbsp;a full blown crisis&amp;nbsp;management&amp;nbsp;database that could track the location of people, food shipments, shelters, charity donations and logistics too.&lt;BR&gt;&lt;BR&gt;Thats what software is best at - organization, something&amp;nbsp;many believe&amp;nbsp;the recovery effort lacked early on.&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/107605-Emergency-Software/'&gt;Emergency Software&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/107605/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/107605-Emergency-Software/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/107605-Emergency-Software/</link><pubDate>Mon, 05 Sep 2005 22:12:53 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/107605-Emergency-Software/</guid><evnet:views>2324</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/107605/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;The terrible tragedy in the Gulf Coast got me thinking about how software could aid in an emergency situation.&lt;BR&gt;&lt;BR&gt;I've seen some websites offer services for finding missing family members, friends or pets. But its not nearly enough&lt;BR&gt;&lt;BR&gt;The government would be wise to create&amp;nbsp;a full blown crisis&amp;nbsp;management&amp;nbsp;database that could track the location of people, food shipments, shelters, charity donations and logistics too.&lt;BR&gt;&lt;BR&gt;Thats what software is best at - organization, something&amp;nbsp;many believe&amp;nbsp;the recovery effort lacked early on.&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/107605-Emergency-Software/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/107605/Trackback.aspx</trackback:ping></item><item><title>New US Energy Bill [New US Energy Bill]</title><description>I'm sure you've all heard about the new US energy bill, that will extend daylight savings time.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;Will this effect current Windows&amp;nbsp;installations?&amp;nbsp;&lt;BR&gt;Will&amp;nbsp;patches be needed to avoid an early daylight savings time change&amp;nbsp;for PCs in the&amp;nbsp;US?&lt;BR&gt;&lt;BR&gt;How will this effect Canada? Will the current Eastern, Central, Mountain &amp;amp; Pacific timezone profiles&amp;nbsp;be split&amp;nbsp;into 2? One for Canada one for the US.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/91825-New-US-Energy-Bill/'&gt;New US Energy Bill&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/91825/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/91825-New-US-Energy-Bill/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/91825-New-US-Energy-Bill/</link><pubDate>Fri, 29 Jul 2005 07:10:23 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/91825-New-US-Energy-Bill/</guid><evnet:views>981</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/91825/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm sure you've all heard about the new US energy bill, that will extend daylight savings time.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;Will this effect current Windows&amp;nbsp;installations?&amp;nbsp;&lt;BR&gt;Will&amp;nbsp;patches be needed to avoid an early daylight savings time change&amp;nbsp;for PCs in the&amp;nbsp;US?&lt;BR&gt;&lt;BR&gt;How will this effect Canada? Will the current Eastern, Central, Mountain &amp;amp; Pacific timezone profiles&amp;nbsp;be split&amp;nbsp;into 2? One for Canada one for the US.</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/91825-New-US-Energy-Bill/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/91825/Trackback.aspx</trackback:ping></item><item><title>3D Avalon Carousel [3D Avalon Carousel]</title><description>&lt;P&gt;Hi Microsofties,&lt;BR&gt;&lt;BR&gt;Anyone know if the that slick 3D Avalon Carousel control is going to be released to the public?&lt;BR&gt;&lt;BR&gt;thx&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/72282-3D-Avalon-Carousel/'&gt;3D Avalon Carousel&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/72282/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/72282-3D-Avalon-Carousel/</comments><link>http://channel9.msdn.com/forums/TechOff/72282-3D-Avalon-Carousel/</link><pubDate>Fri, 03 Jun 2005 21:09:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/72282-3D-Avalon-Carousel/</guid><evnet:views>1095</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/72282/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Hi Microsofties,&lt;BR&gt;&lt;BR&gt;Anyone know if the that slick 3D Avalon Carousel control is going to be released to the public?&lt;BR&gt;&lt;BR&gt;thx&lt;/P&gt;</evnet:previewtext><dc:creator>joshnuss</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/72282-3D-Avalon-Carousel/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/72282/Trackback.aspx</trackback:ping></item></channel></rss>