<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by joshnuss</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by joshnuss</title>
		<link>http://channel9.msdn.com/Niners/joshnuss/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/joshnuss/Discussions</link>
	<language>en</language>
	<pubDate>Tue, 18 Jun 2013 07:56:01 GMT</pubDate>
	<lastBuildDate>Tue, 18 Jun 2013 07:56:01 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - Visual Studio Performance Analysis in 10 minutes</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">David Berg said:</div><div class="quoteText">Joshua,<br /><br />I just saw your post and looked at your code.&nbsp; It's an interesting way to measure performance, but I think you're unfairly assuming that any non-success code is due to a hang situation; however, it could also be due to a timeout, which you've set to only 2ms.<br /><br />So what's happening is this - every second you take the pulse of VS, and if at that particular instant in time, it's doing anything that takes longer than 2 ms, then you're counting the entire second as being hung.&nbsp; I don't think that's really fair.<br /><br />As a general rule of thumb, I tell people that it's okay to hang the UI thread for up to 100 ms during typing (although I prefer they keep it to under 50ms) and up to 4000 ms when displaying a dialog box (although I prefer they keep it well under 2000 ms).<br /><br />Of course, I'm not saying that VS doesn't have some performance issues that we need to address, just that I don't think they're as bad as your program implies.<br /><br />If you'd like to discuss the issue further, you can e-mail me at DevPerf@Microsoft.com.<br /><br />Regards,<br /><br />David Berg<br />Microsoft Developer Division<br />Performance Engineering Team<br /></div></blockquote>&quot;So what's happening is this - every second you take the pulse of VS, and if at that particular instant in time, it's doing anything that takes longer than 2 ms, then you're counting the entire second as being hung.&nbsp; I don't think that's really fair.&quot;<br /><br />The reason is because without the sleep for 1000ms the application would consume too much CPU, which would negatively effect VS's performance even more. So instead of constantly polling for 1000ms, I choose to check at intervals. you can spread out the timing
 even more, its still sluggish.<br /><br />Thinking about it a little more, a better way might be to post a message, then sleep for a second and see if the message was processed.<br /><br />I guess the point wasnt really to have perfect profiling code, rather to point out that profiling UI is an easy way to quantify perceived performance. Its important because if a developer loses their train of thought it costs the company money.
<br /><br /><br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/c852e693124d4940b4979dfa00bbc84c#c852e693124d4940b4979dfa00bbc84c</link>
		<pubDate>Mon, 30 Jun 2008 00:15:40 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/c852e693124d4940b4979dfa00bbc84c#c852e693124d4940b4979dfa00bbc84c</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Visual Studio Performance Analysis in 10 minutes</title>
		<description><![CDATA[<p>Ever wondered how much time you spend waiting for Visual Studio to respond? <br />Well its been driving me nuts for a while so I wrote a little app to tracks the time that VS 2008 spends &quot;not responding&quot;.
<br />I think you'll be shocked by the results on solutions with 15&#43; projects.<br /><br />Hopefully making this information available to others will motivate Microsoft to fix these problems.
<br /><br />Heres the code for your enjoyment (tested with VS 2008).. <br /><br /><pre>using System;<br>using System.Diagnostics;<br>using System.Runtime.InteropServices;<br>using System.Threading;<br><br>namespace CalulateHangTime<br>{<br>    [Flags]<br>    public enum SendMessageTimeoutFlags : uint<br>    {<br>        SMTO_NORMAL = 0x0000,<br>        SMTO_BLOCK = 0x0001,<br>        SMTO_ABORTIFHUNG = 0x0002,<br>        SMTO_NOTIMEOUTIFNOTHUNG = 0x0008<br>    }<br><br>    public static class ExternalMethods<br>    {<br>        [DllImport(&quot;user32.dll&quot;, SetLastError = true)]<br>        public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);<br><br>        [DllImport(&quot;user32.dll&quot;, SetLastError = true, CharSet = CharSet.Auto)]<br>        public static extern IntPtr SendMessageTimeout(IntPtr hWnd, uint Msg,<br>           UIntPtr wParam, IntPtr lParam, SendMessageTimeoutFlags fuFlags,<br>           uint uTimeout, out UIntPtr lpdwResult);<br>    }<br><br>    class Program<br>    {<br>        static readonly uint WAIT_MILLISECONDS = 2;<br>        static readonly int SLEEP_MILLISECONDS = 1000;<br><br>        static void Main(string[] args)<br>        {<br>            long seconds = 0;<br>            Stopwatch stopWatch = new Stopwatch();<br>            stopWatch.Start();<br>            while (true)<br>            {<br>                IntPtr hWnd = ExternalMethods.FindWindow(&quot;wndclass_desked_gsk&quot;, null);<br>                if (hWnd == IntPtr.Zero)<br>                    throw new InvalidOperationException(&quot;Handle to window could not be found&quot;);<br><br><br>                UIntPtr result;<br>                IntPtr success = ExternalMethods.SendMessageTimeout(hWnd, 0, UIntPtr.Zero, IntPtr.Zero, <br>				SendMessageTimeoutFlags.SMTO_ABORTIFHUNG, WAIT_MILLISECONDS, out result);<br>                <br>                if (success == IntPtr.Zero)<br>                {<br>                    seconds &#43;= SLEEP_MILLISECONDS / 1000;<br><br>                    Console.WriteLine(&quot;Visual Studio is hung. {0}/{1} seconds wasted&quot;, seconds, stopWatch.Elapsed.TotalSeconds);<br>                }<br>                else<br>                {<br>                    Console.WriteLine(&quot;Visual Studio is running fine.&quot;);<br>                }<br><br>                Thread.Sleep(SLEEP_MILLISECONDS);<br>            }<br>        }<br>    }<br>}<br><br></pre></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260091-Visual-Studio-Performance-Analysis-in-10-minutes/260091#260091</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/260091#260091</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - MSH is now PowerShell</title>
		<description><![CDATA[<p>The name is good and all... but its harder to type &quot;powershell&quot; than &quot;msh&quot; or &quot;cmd&quot;.. at least give us &quot;psh&quot; or something shorter.</p>
<p>Regardless of what its called&nbsp;this is the best shell ever!</p>
<p>Cheers.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/180769-MSH-is-now-PowerShell/87a97519c20248ff90919deb0156be5c#87a97519c20248ff90919deb0156be5c</link>
		<pubDate>Wed, 26 Apr 2006 01:46:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/180769-MSH-is-now-PowerShell/87a97519c20248ff90919deb0156be5c#87a97519c20248ff90919deb0156be5c</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>42</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Starting Windows over...</title>
		<description><![CDATA[<p>They need to make a version of Virtual Server that runs on top of Singularity. That way we can keep existing apps running in a VM.
<br>
<br>
Think about 50-100 years from now.. is the current NT code base going to last that long? Or should&nbsp;MS start thinking about singularity (or something like it) as the operating system of the future?
<br>
<br>
I think they should start working on something new.<br>
<br>
Apparently singularity is more secure (no buffer overrun,etc..) and has huge potential.
<br>
<br>
If it really is&nbsp;better, than the market needs it. And if Microsoft doesnt do it, im sure some other company will.
<br>
<br>
Especially with virtualization technology becoming so important. A windows app will soon be able run in a VM on any OS. this phenomenon is diminishing the value of&nbsp;the operating system as we know it now.&nbsp;A new approach could rejuvinate the market.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/179518-Starting-Windows-over/64d66064c7c54c0cb0f09deb0154efe9#64d66064c7c54c0cb0f09deb0154efe9</link>
		<pubDate>Fri, 21 Apr 2006 22:24:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/179518-Starting-Windows-over/64d66064c7c54c0cb0f09deb0154efe9#64d66064c7c54c0cb0f09deb0154efe9</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>34</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - WPF XBAPs &amp;amp; Search Engines</title>
		<description><![CDATA[<p>Will WPF XBAP applications&nbsp;be able to be searched by&nbsp;search engines? <br>
<br>
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.<br>
<br>
And what about URLs? How will a user recall a link on a site to send to a friend? e.g.
<a href="http://www.acme.com/products/1234">www.acme.com/products/1234</a>? will there be a way to recall&nbsp;&amp; share&nbsp;URLs&nbsp;with WPF?<br>
</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/173379#173379</link>
		<pubDate>Thu, 30 Mar 2006 22:01:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/173379-WPF-XBAPs-amp-Search-Engines/173379#173379</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Microsoft Expression Web Designer CTP</title>
		<description><![CDATA[<p>Just saw at connect.microsoft.com<br>
<br>
Looks like there will be a CTP in April for 5000 participants and a public CTP in June.
<br>
<br>
I hope they use the Ribbon Bar from Office 2007.. that would be neat.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/173298#173298</link>
		<pubDate>Thu, 30 Mar 2006 17:11:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/173298-Microsoft-Expression-Web-Designer-CTP/173298#173298</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - MSH + SQL Server</title>
		<description><![CDATA[<p>I still suggest using Close &amp; Dispose. Its a good habit, especially if the script may be reused in a different context.<br>
<br>
I probably should add a Dispose call for the command object too.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/141919-MSH--SQL-Server/89077765956c44558d079dea0131db51#89077765956c44558d079dea0131db51</link>
		<pubDate>Tue, 13 Dec 2005 23:06:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/141919-MSH--SQL-Server/89077765956c44558d079dea0131db51#89077765956c44558d079dea0131db51</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - MSH + SQL Server</title>
		<description><![CDATA[<p><br>
Hi niners, <br>
<br>
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.<br>
<br>
<strong>A simple call:<br>
</strong><br>
$connectionString = &quot;Server=(local)\SQLEXPRESS;Database=AdventureWorks;Integrated Security='SSPI'&quot;<br>
$sqlText = &quot;SELECT * FROM&nbsp;Production.Product&quot;<br>
<br>
Get-Sql $connectionString $sqlText<br>
<br>
<strong>Format as table</strong><br>
<br>
Get-Sql $connectionString $sqlText | format-table<br>
<br>
<strong>Export CSV<br>
</strong><br>
Get-Sql $connectionString $sqlText | export-csv &quot;test.csv&quot;<br>
<br>
<strong>Loop Thru Items<br>
</strong><br>
$products = (Get-Sql $connectionString $sqlText)<br>
<br>
foreach ($product in $products) {<br>
&nbsp;write-host $product.Name<br>
}<br>
<br>
<strong>Heres the actual function:<br>
</strong><br>
function Get-Sql {<br>
&nbsp;param ([string]$conn, [string]$sql)<br>
&nbsp;<br>
&nbsp;# setup connection<br>
&nbsp;$connObj = new-object System.Data.SqlClient.SqlConnection<br>
&nbsp;$connObj.ConnectionString = $conn<br>
&nbsp;# setup command<br>
&nbsp;$cmdObj = new-object System.Data.SqlClient.SqlCommand <br>
&nbsp;$cmdObj.Connection = $connObj<br>
&nbsp;$cmdObj.CommandText = $sql</p>
<p>&nbsp;$connObj.Open()<br>
&nbsp;<br>
&nbsp;$reader = $cmdObj.ExecuteReader()<br>
&nbsp;while ($reader.Read()) {<br>
&nbsp;&nbsp;$result = new-object System.Management.Automation.MshObject<br>
&nbsp;&nbsp;<br>
&nbsp;&nbsp;for ($i=0;$i -lt ($reader.FieldCount) ;$i&#43;&#43;) {<br>
&nbsp;&nbsp;&nbsp;$fld = new-object System.Management.AUtomation.MshNoteProperty $reader.GetName($i), $reader[$i]<br>
&nbsp;&nbsp;&nbsp;$result.MshObject.Members.Add($fld);<br>
&nbsp;&nbsp;}<br>
&nbsp;&nbsp;<br>
&nbsp;&nbsp;$result<br>
&nbsp;&nbsp;<br>
&nbsp;}</p>
<p><br>
&nbsp;$reader.Close()<br>
&nbsp;$reader.Dispose()</p>
<p>&nbsp;$connObj.Close();<br>
}<br>
<br>
<br>
Enjoy</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/141919-MSH--SQL-Server/141919#141919</link>
		<pubDate>Tue, 13 Dec 2005 22:15:42 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/141919-MSH--SQL-Server/141919#141919</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - HTML in a Frame</title>
		<description><![CDATA[<p>I am trying to display html content in XAML using the Frame tag:<br>
<br>
&lt;Frame Source=&quot;<a href="http://www.msn.com">http://www.msn.com</a>&quot; LayoutTransform=&quot;scale 0.3,0.3&quot;&gt;<br>
&lt;/Frame&gt;<br>
<br>
It doesnt seem to scale? am I missing something?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/121768-HTML-in-a-Frame/121768#121768</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/121768#121768</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Displays, Input Devices and WPF</title>
		<description><![CDATA[<p>cool!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/db04d8dca907422481c69deb00f52fcd#db04d8dca907422481c69deb00f52fcd</link>
		<pubDate>Sat, 08 Oct 2005 10:57:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/db04d8dca907422481c69deb00f52fcd#db04d8dca907422481c69deb00f52fcd</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Google Reader</title>
		<description><![CDATA[<p>They're missing a link to &quot;add RSS to my subscriptions&quot;, when you do a regular google search, and the results contain RSS feeds.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/121473-Google-Reader/e2de05d961ba49e4af139deb00f4e733#e2de05d961ba49e4af139deb00f4e733</link>
		<pubDate>Sat, 08 Oct 2005 08:18:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/121473-Google-Reader/e2de05d961ba49e4af139deb00f4e733#e2de05d961ba49e4af139deb00f4e733</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Displays, Input Devices and WPF</title>
		<description><![CDATA[<p>Now that apps can be drawn completely&nbsp;vector based in a 3D space -&nbsp;it would seem that we are closer to getting those cool 3D hologram displays you see in the movies.<br>
<br>
3D&nbsp;could also open up innovation&nbsp;for&nbsp;selection devices that go way beyond the mouse. The current&nbsp;mouse&nbsp;being based on a 2D&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&nbsp;(like a glove)&nbsp;would be better than a mouse in the 3D world.<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/121581-Displays-Input-Devices-and-WPF/121581#121581</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/121581#121581</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - ASP.NET 2.0 Profile Provider</title>
		<description><![CDATA[<p>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.<br>
<br>
It also makes it harder to query and index... <br>
<br>
So I guess my only option is to code my own MembershipProvider&nbsp;- not the end of the world, but it kinda defeats the purpose of the ProfileProvider
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/113074-ASPNET-20-Profile-Provider/113074#113074</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/113074#113074</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Emergency Software</title>
		<description><![CDATA[<p>I agree prevention is important, but u still have to plan for failure..<br>
<br>
And no I dont see any money in it. I think its something FEMA or some org. like that should be doing.<br>
<br>
Clearly, they can be more organized.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/107605-Emergency-Software/3558b1058d0149bb96ca9dec007621cf#3558b1058d0149bb96ca9dec007621cf</link>
		<pubDate>Mon, 05 Sep 2005 23:16:04 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/107605-Emergency-Software/3558b1058d0149bb96ca9dec007621cf#3558b1058d0149bb96ca9dec007621cf</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Emergency Software</title>
		<description><![CDATA[<p>The terrible tragedy in the Gulf Coast got me thinking about how software could aid in an emergency situation.<br>
<br>
I've seen some websites offer services for finding missing family members, friends or pets. But its not nearly enough<br>
<br>
The government would be wise to create&nbsp;a full blown crisis&nbsp;management&nbsp;database that could track the location of people, food shipments, shelters, charity donations and logistics too.<br>
<br>
Thats what software is best at - organization, something&nbsp;many believe&nbsp;the recovery effort lacked early on.<br>
<br>
</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/107605-Emergency-Software/107605#107605</link>
		<pubDate>Mon, 05 Sep 2005 22:12:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/107605-Emergency-Software/107605#107605</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Image recognition in .NET ?</title>
		<description><![CDATA[<p>I saw some articles on that topic at <a href="http://www.CodeProject.com">www.CodeProject.com</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/94499-Image-recognition-in-NET-/b36b2cc84a454fdb93a49dea0127a04b#b36b2cc84a454fdb93a49dea0127a04b</link>
		<pubDate>Sun, 07 Aug 2005 03:35:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/94499-Image-recognition-in-NET-/b36b2cc84a454fdb93a49dea0127a04b#b36b2cc84a454fdb93a49dea0127a04b</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Help with asp.net 2.0 if you can:  updating with object data source</title>
		<description><![CDATA[<p>Its sounds like the information your are storing is per session. So you should use the Session object, you mentioned you were trying to avoid this? why?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/94236-Help-with-aspnet-20-if-you-can-updating-with-object-data-source/a1beb801e24f474fb0f29dea012783db#a1beb801e24f474fb0f29dea012783db</link>
		<pubDate>Sun, 07 Aug 2005 03:34:26 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/94236-Help-with-aspnet-20-if-you-can-updating-with-object-data-source/a1beb801e24f474fb0f29dea012783db#a1beb801e24f474fb0f29dea012783db</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - New US Energy Bill</title>
		<description><![CDATA[<p>I'm sure you've all heard about the new US energy bill, that will extend daylight savings time.&nbsp;<br>
<br>
Will this effect current Windows&nbsp;installations?&nbsp;<br>
Will&nbsp;patches be needed to avoid an early daylight savings time change&nbsp;for PCs in the&nbsp;US?<br>
<br>
How will this effect Canada? Will the current Eastern, Central, Mountain &amp; Pacific timezone profiles&nbsp;be split&nbsp;into 2? One for Canada one for the US.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/91825-New-US-Energy-Bill/91825#91825</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/91825#91825</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - 3D Avalon Carousel</title>
		<description><![CDATA[<p>Hi Microsofties,<br>
<br>
Anyone know if the that slick 3D Avalon Carousel control is going to be released to the public?<br>
<br>
thx</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/72282-3D-Avalon-Carousel/72282#72282</link>
		<pubDate>Fri, 03 Jun 2005 21:09:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/72282-3D-Avalon-Carousel/72282#72282</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>1</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - ASP.NET 2.0 Advocacy</title>
		<description><![CDATA[<p>You can run PHP&nbsp;with ASP.NET see&nbsp;<a href="http://www.php-compiler.net/">http://www.php-compiler.net/</a>&nbsp;its a port of php that runs on .NET. It can even run PHP Nuke!
<br>
<br>
This way you can&nbsp;code&nbsp;assemblies with vb, c#, enter favorite language here ________________ and reference those assemblies in your&nbsp;php front-end web application.
<br>
<br>
Plus you get all the inherant benifits of .NET:&nbsp;compiled code, rich framework, etc.. etc..<br>
<br>
BTW, I originally found out about phelanger here on channel 9. <br>
<br>
Rock on Channel9</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/66993-ASPNET-20-Advocacy/3deffab2c25542a4aead9dea011f96ec#3deffab2c25542a4aead9dea011f96ec</link>
		<pubDate>Wed, 18 May 2005 08:31:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/66993-ASPNET-20-Advocacy/3deffab2c25542a4aead9dea011f96ec#3deffab2c25542a4aead9dea011f96ec</guid>
		<dc:creator>joshnuss</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/joshnuss/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>