<?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 Rossj</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/Rossj/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 Rossj</title>
		<link>http://channel9.msdn.com/Niners/Rossj/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/Rossj/Discussions</link>
	<language>en</language>
	<pubDate>Sat, 18 May 2013 21:00:26 GMT</pubDate>
	<lastBuildDate>Sat, 18 May 2013 21:00:26 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - &amp;quot;Searching &#39;Samson&#39;......did you mean &#39;Sampson&#39;?&amp;quot;</title>
		<description><![CDATA[<p>Googling for Double metaphone will probably find you a better soundex - find the matching codes (primary and secondary for double metaphone, primary for metaphone), weight them according to popularity (if you have the info) and then order according to
 edit distance.
<div><br /></div>
<div>Don't forget to stem the words (look for an alternative to the porter stemmer if you have time), and try and add more weight to proper nouns and nouns, a bit of weight to verbs and a negative discriminating weight to determiners.</div>
<div><br /></div>
<div>Then add a neural net so that you can track the best matches (based on which links the user clicked) and feedback to improve accuracy in future searches.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/7fe2d283d93d4c6b96249dfa00c1cafe#7fe2d283d93d4c6b96249dfa00c1cafe</link>
		<pubDate>Thu, 20 Mar 2008 14:23:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/7fe2d283d93d4c6b96249dfa00c1cafe#7fe2d283d93d4c6b96249dfa00c1cafe</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - &amp;quot;Searching &#39;Samson&#39;......did you mean &#39;Sampson&#39;?&amp;quot;</title>
		<description><![CDATA[<p>levenshtein is not only useful on words, and there are improved soundex ideas about. You will have a lot less sounds codes than words <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /> I'd write more but on phone at the minute.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/448123a16ef84d3395e29dfa00c1ca12#448123a16ef84d3395e29dfa00c1ca12</link>
		<pubDate>Wed, 19 Mar 2008 21:01:47 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/261720-quotSearching-Samsondid-you-mean-Sampsonquot/448123a16ef84d3395e29dfa00c1ca12#448123a16ef84d3395e29dfa00c1ca12</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Gilad on cutting out static</title>
		<description><![CDATA[<p>Only a couple of thoughts (it has been a long day).
<div><br class="webkit-block-placeholder">
</div>
<div>Whilst it is true that the use of statics is both imperative (as in the style of) and involves taking a lot more care of how it is used, there are benefits which are not necessarily outweighed by the disadvantages. &nbsp;</div>
<div><br class="webkit-block-placeholder">
</div>
<div>Implement a local cache without statics, now do it without passing references back up the call stack from the owner of the non-static cache all the way to the place where it is actually needed.&nbsp;</div>
<div><br class="webkit-block-placeholder">
</div>
<div>I can see Gilad's point about distributed systems, and the difficulty in maintaining the 'one true static' but that isn't such an issue if you aren't building a distributed system.</div>
<div><br class="webkit-block-placeholder">
</div>
<div>His points about re-entrancy, whilst true, depend totally on your usage. Personally a lot of my use of statics tend to be read-only after an initial locked update, so I'm not so worried after any threading issues.&nbsp;</div>
<div><br class="webkit-block-placeholder">
</div>
<div>Yeah, he has lots of great points, but how would I build my Factories and Caches and Blackboards without statics?</div>
<div><br class="webkit-block-placeholder">
</div>
<div>I think we'd all agree that he could write the same document about pointers and that'd be true as well, but I don't think pointers being evil (or not) warrants eliminating them from C (or C&#43;&#43;) or is likely to ever be considered. &nbsp;Same goes for statics,
 and as with pointers, use it carefully and it won't bite you.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/261048-Gilad-on-cutting-out-static/f9ced034a5364a51af6c9dfa00bf6a15#f9ced034a5364a51af6c9dfa00bf6a15</link>
		<pubDate>Mon, 18 Feb 2008 20:59:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/261048-Gilad-on-cutting-out-static/f9ced034a5364a51af6c9dfa00bf6a15#f9ced034a5364a51af6c9dfa00bf6a15</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Override XMLHTTPRequest charset</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Sven Groot wrote:</div>
<div class="quoteBody">I'm requesting some&nbsp;text file&nbsp;using IE7's XMLHTTPRequest. XMLHTTPRequest is interpreting the file as utf-8, but it's not in fact that, and it breaks because of that. The server doesn't return a charset directive, and I have no control
 at all over the server.<br /><br />How can I make XMLHTTPRequest interpret the response with a different encoding? Or failing that, how can I manually decode the responseBody byte array into a string? Using nothing but javascript.<br /><br />An alternative method to download the file would also work.&nbsp;The script&nbsp;has local machine privileges so it can do more than a regular browser script.</div>
</blockquote>
<div><br class="webkit-block-placeholder">
</div>
<div>The default charset for XHR is UTF-8 with BOM being used to differentiate other encodings when the server returns no charset, so you might try using setRequestHeader() on the XHR to see if sending Accept-Charset might change the server's mind.</div>
<div><br class="webkit-block-placeholder">
</div>
<div>Failing that, maybe <a href="http://www.webtoolkit.info/javascript-utf8.html">
this</a> might help <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260993-Override-XMLHTTPRequest-charset/a2c38a7fa48d4a299ca09dfa00bf37fa#a2c38a7fa48d4a299ca09dfa00bf37fa</link>
		<pubDate>Fri, 15 Feb 2008 18:02:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260993-Override-XMLHTTPRequest-charset/a2c38a7fa48d4a299ca09dfa00bf37fa#a2c38a7fa48d4a299ca09dfa00bf37fa</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Patching VS&#39;s XHTML XSDs</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">JChung2006 wrote:</div>
<div class="quoteBody">&nbsp;Both XHTML 1.0 Transitional and XHTML 1.1 XSD's reference the same &quot;buttonContentElements&quot; group, but neither has it defined. Your version of the XHTML 1.1 XSD is also missing the &quot;buttonContentElements&quot; group definition.</div>
</blockquote>
<div><br class="webkit-block-placeholder">
</div>
<div>Is it in one of the includes?</div>
<div><br class="webkit-block-placeholder">
</div>
<div><span class="Apple-style-span">
<pre>&lt;xsd:include schemaLocation=&quot;CommonHTMLTypes.xsd&quot; /&gt;
&lt;xsd:include schemaLocation=&quot;I18Languages.xsd&quot; /&gt;</pre>
</span></div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260893-Patching-VSs-XHTML-XSDs/6066b8271d874e08995b9dfa00bec34c#6066b8271d874e08995b9dfa00bec34c</link>
		<pubDate>Mon, 11 Feb 2008 19:33:29 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260893-Patching-VSs-XHTML-XSDs/6066b8271d874e08995b9dfa00bec34c#6066b8271d874e08995b9dfa00bec34c</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - VS2008 Launch UK : registration open</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">andy_hanger18 wrote:</div><div class="quoteBody">What sort of things happen?</div></blockquote><div><br class="webkit-block-placeholder"></div><div><span class="Apple-style-span">1. Sign in. 2. Go to pub 3. Come back for the prizes 4. Profit!</span><br class="webkit-block-placeholder"></div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260363-VS2008-Launch-UK--registration-open/75969a3521a8462990d59e31009b92d3#75969a3521a8462990d59e31009b92d3</link>
		<pubDate>Wed, 23 Jan 2008 21:29:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260363-VS2008-Launch-UK--registration-open/75969a3521a8462990d59e31009b92d3#75969a3521a8462990d59e31009b92d3</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>62</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - VS2008 Launch UK : registration open</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">blowdart wrote:</div><div class="quoteBody">Oh and, errr, <a href="http://www.microsoft.com/uk/heroeshappenhere/join-in/developers/default.mspx">yea</a>.</div></blockquote><div><br class="webkit-block-placeholder"></div><div>Does this mean I have to go to the launch event in my power-ranger costume?</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260363-VS2008-Launch-UK--registration-open/25c176d89a0043ddbd229e31009b8f6c#25c176d89a0043ddbd229e31009b8f6c</link>
		<pubDate>Wed, 23 Jan 2008 20:47:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260363-VS2008-Launch-UK--registration-open/25c176d89a0043ddbd229e31009b8f6c#25c176d89a0043ddbd229e31009b8f6c</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>62</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - It&#39; Time to To clarify the situation Windows 7</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">Minh wrote:</div><div class="quoteBody"><blockquote><table class="quoteTable"><tbody><tr><td width="10" valign="top"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td><td class="txt3"><strong>PaoloM wrote:</strong><hr size="1"><i><br>All of them have been sold, are in use and Microsoft collected the money.<br><br>Tell me again how that difference matters in the slightest?</i></td></tr></tbody></table></blockquote>Now, I'm asking this because I'm curious, but I think this scenario is true:<br><br>* Company X has 23,000 employees<br>* Company X buys a Windows site license from MS, for price Y<br>* Price Y happens to be for companies w/ 25,000 - 50,000 seats<br>* MS gets to book $Y<br>* MS gets to claimed 50,000 copies of Vista has been sold<br>* ???<br></div></blockquote><div><br class="webkit-block-placeholder"></div><div>That sounds like a falsehood to me. &nbsp;Nobody would get away with that.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260493-It-Time-to-To-clarify-the-situation-Windows-7/78c57c72f912481e81979e31009f5047#78c57c72f912481e81979e31009f5047</link>
		<pubDate>Wed, 23 Jan 2008 20:06:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260493-It-Time-to-To-clarify-the-situation-Windows-7/78c57c72f912481e81979e31009f5047#78c57c72f912481e81979e31009f5047</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>65</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - RSS Feed is broken.</title>
		<description><![CDATA[<p>Musta been fixed, was broken for me before - empty document.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260494-RSS-Feed-is-broken/d7094bb38ba54018a88b9e31009f66dc#d7094bb38ba54018a88b9e31009f66dc</link>
		<pubDate>Wed, 23 Jan 2008 19:52:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260494-RSS-Feed-is-broken/d7094bb38ba54018a88b9e31009f66dc#d7094bb38ba54018a88b9e31009f66dc</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Anybody running Vista on Leopard Macbook Pro?</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">PaoloM wrote:</div><div class="quoteBody">taking a look at Mac software</div></blockquote><div><br class="webkit-block-placeholder"></div><div>Aaahhh &quot;Research&quot;.</div><div><br class="webkit-block-placeholder"></div><div>j/k.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260474-Anybody-running-Vista-on-Leopard-Macbook-Pro/8a179b104a2040339e299e31009ee05b#8a179b104a2040339e299e31009ee05b</link>
		<pubDate>Wed, 23 Jan 2008 19:23:06 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260474-Anybody-running-Vista-on-Leopard-Macbook-Pro/8a179b104a2040339e299e31009ee05b#8a179b104a2040339e299e31009ee05b</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>31</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - RSS Feed is broken.</title>
		<description><![CDATA[<p>.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260494-RSS-Feed-is-broken/260494#260494</link>
		<pubDate>Wed, 23 Jan 2008 18:52:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260494-RSS-Feed-is-broken/260494#260494</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - VS2008 Launch UK : registration open</title>
		<description><![CDATA[<p>Registered. Not sure why, but maybe server 2008 will shock me into being interested again.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260363-VS2008-Launch-UK--registration-open/c674fa22516c4fc59eb09e31009b882b#c674fa22516c4fc59eb09e31009b882b</link>
		<pubDate>Fri, 18 Jan 2008 21:39:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260363-VS2008-Launch-UK--registration-open/c674fa22516c4fc59eb09e31009b882b#c674fa22516c4fc59eb09e31009b882b</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>62</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Can you do this in WPF?</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">stevo_ wrote:</div><div class="quoteBody">Well I'm not expecting a miracle of it&nbsp;pushing performance out of a voodoo 3 3000..<br><br>What about some of the recent intel onboard graphics cards for example? could I do most 2D animations in that? </div></blockquote><div><br class="webkit-block-placeholder"></div><div>Yes more than likely, you'll just need to keep an eye on the handle count if it is a long-running application. On one onboard intel (945?) we were losing dozens of handles a second when doing opacity, another box with the same hardware only lost one or two a second - and they were both identical new builds.</div><div><br class="webkit-block-placeholder"></div><div>I'd try and get a <a href="http://msdn2.microsoft.com/en-us/library/ms742196.aspx">Tier 2 card</a>&nbsp;though if you want to be entirely safe <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260347-Can-you-do-this-in-WPF/5dbb5f3a35b847a4a1289e31009b25bf#5dbb5f3a35b847a4a1289e31009b25bf</link>
		<pubDate>Thu, 17 Jan 2008 21:57:20 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260347-Can-you-do-this-in-WPF/5dbb5f3a35b847a4a1289e31009b25bf#5dbb5f3a35b847a4a1289e31009b25bf</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Can you do this in WPF?</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">PaoloM wrote:</div><div class="quoteBody"><blockquote><table class="quoteTable"><tbody><tr><td width="10" valign="top"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td><td class="txt3"><strong>stevo_ wrote:</strong><hr size="1"><i>Is WPF slow and bloated? </i></td></tr></tbody></table></blockquote><br>No. </div></blockquote><div><br class="webkit-block-placeholder"></div><div>.. given the right video hardware. My ex-companies app was WPF and had horrendous issues except for a small set of video cards.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260347-Can-you-do-this-in-WPF/43e91cc69bdf47c5bbe59e31009b2268#43e91cc69bdf47c5bbe59e31009b2268</link>
		<pubDate>Thu, 17 Jan 2008 21:32:54 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260347-Can-you-do-this-in-WPF/43e91cc69bdf47c5bbe59e31009b2268#43e91cc69bdf47c5bbe59e31009b2268</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Anybody have &amp;quot;Switcher&amp;quot; Moments?</title>
		<description><![CDATA[<p><blockquote><div class="quoteAuthor">jsampsonPC wrote:</div><div class="quoteBody"><br>...to not spend ridiculous amounts of money for shiny toys <img src="/emoticons/emotion-1.gif" border="0"> $1,700 for the Air - you gotsa be kiddin' meh <br></div></blockquote><div><br class="webkit-block-placeholder"></div><div>The other small notebooks of a similar size are <a href="http://gizmodo.com/345574/is-macbook-air-worth-the-money-five-slim-laptops-face-off">a similar price</a>, so why not? Even with the optical drive it is cheaper than some.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260340-Anybody-have-quotSwitcherquot-Moments/458a19bf3a5e4de4a48c9e31009b07cf#458a19bf3a5e4de4a48c9e31009b07cf</link>
		<pubDate>Thu, 17 Jan 2008 21:30:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260340-Anybody-have-quotSwitcherquot-Moments/458a19bf3a5e4de4a48c9e31009b07cf#458a19bf3a5e4de4a48c9e31009b07cf</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Zune 30 Audio Trouble</title>
		<description><![CDATA[<p>I think Minh had this problem, try putting his name in the subject see if he solved it?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260158-Zune-30-Audio-Trouble/77a8acd1e3ef4064bca29dfa00bbfb02#77a8acd1e3ef4064bca29dfa00bbfb02</link>
		<pubDate>Thu, 10 Jan 2008 20:16:47 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260158-Zune-30-Audio-Trouble/77a8acd1e3ef4064bca29dfa00bbfb02#77a8acd1e3ef4064bca29dfa00bbfb02</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - How not to do Silverlight</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">evildictaitor wrote:</div>
<div class="quoteBody"><br />Edit: It seems to work better in IE7 (but is still jumpy and ugly) - it's truly appalling in Firefox.<br /></div>
</blockquote>
<br /><br />More worrying, why is it any different in FF than in IE? I thought Silverlight was supposed to be a plugin.&nbsp; If Silverlight can't deliver the same behaviour in two different browsers we're doomed to live in HTML 3 hell for eternity.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260057-How-not-to-do-Silverlight/e730b7e1c0a1434182af9dfa00bb8d04#e730b7e1c0a1434182af9dfa00bb8d04</link>
		<pubDate>Sun, 06 Jan 2008 21:17:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260057-How-not-to-do-Silverlight/e730b7e1c0a1434182af9dfa00bb8d04#e730b7e1c0a1434182af9dfa00bb8d04</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What would you like to do in Microsoft?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">ManipUni wrote:</div>
<div class="quoteBody">A degree in CS is a useless waste of time in terms of what you learn.&nbsp;</div>
</blockquote>
<div><br class="webkit-block-placeholder">
</div>
<div>I disagree. I don't value degrees for the name of the degree, but because I have proof of their ability to learn and to teach themselves.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/259384-What-would-you-like-to-do-in-Microsoft/7c9a5d4f203b487a82599df90095f146#7c9a5d4f203b487a82599df90095f146</link>
		<pubDate>Wed, 02 Jan 2008 19:00:40 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/259384-What-would-you-like-to-do-in-Microsoft/7c9a5d4f203b487a82599df90095f146#7c9a5d4f203b487a82599df90095f146</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>47</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What would you like to do in Microsoft?</title>
		<description><![CDATA[<p>I could wander around with the tea trolley?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/259384-What-would-you-like-to-do-in-Microsoft/5d5854ecc1dc427b86df9df90095eeb3#5d5854ecc1dc427b86df9df90095eeb3</link>
		<pubDate>Wed, 02 Jan 2008 10:49:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/259384-What-would-you-like-to-do-in-Microsoft/5d5854ecc1dc427b86df9df90095eeb3#5d5854ecc1dc427b86df9df90095eeb3</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>47</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - msn live scraper</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Dr Herbie wrote:</div>
<div class="quoteBody">Wow, Beer28 has started spamming us.<br /><br />New low.<br /><br /><br />Herbie<br /></div>
</blockquote>
<div><br class="webkit-block-placeholder">
</div>
<div>Worse than that, he's spamming to try and get people to write code for his 'Google-Killer'.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259874-msn-live-scraper/b992179a171a4ceeab039dfa00881a43#b992179a171a4ceeab039dfa00881a43</link>
		<pubDate>Mon, 24 Dec 2007 10:17:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259874-msn-live-scraper/b992179a171a4ceeab039dfa00881a43#b992179a171a4ceeab039dfa00881a43</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - YouTube.NET???</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Minh wrote:</div>
<div class="quoteBody">&#65279;Apparently not, 'cuz Silverlight runs on Safari.</div>
</blockquote>
<br /><br />Using the word 'runs' is overly generous, maybe stumbles along with frequent falls is more realistic?<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259767-YouTubeNET/d87bc08ce35844cc97769dfa0087c24a#d87bc08ce35844cc97769dfa0087c24a</link>
		<pubDate>Thu, 20 Dec 2007 09:09:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259767-YouTubeNET/d87bc08ce35844cc97769dfa0087c24a#d87bc08ce35844cc97769dfa0087c24a</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Getting GPS co-ordinates in C# on a Windows Mobile 6.0 device</title>
		<description><![CDATA[<p><a href="http://www.opennetcf.com/FreeSoftware/OpenNETCFIOSerial/tabid/252/Default.aspx">OpenNetCF has a GPS lib</a>, it might be a good starting point but the
<a href="http://www.gpsinformation.org/dale/nmea.htm">NMEA</a> stuff isn't too hard to parse if you're feeling frisky (aka overzealous).<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/259813-Getting-GPS-co-ordinates-in-C-on-a-Windows-Mobile-60-device/4a1cc520bbfa47a2bd6b9dfa0087cef0#4a1cc520bbfa47a2bd6b9dfa0087cef0</link>
		<pubDate>Thu, 20 Dec 2007 08:19:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/259813-Getting-GPS-co-ordinates-in-C-on-a-Windows-Mobile-60-device/4a1cc520bbfa47a2bd6b9dfa0087cef0#4a1cc520bbfa47a2bd6b9dfa0087cef0</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Come Work on Our Team</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">JChung2006 wrote:</div>
<div class="quoteBody">&#65279; Anyways, it's all good as I have joined Microsoft in a different but quite similar capacity.<br>
<img src="/emoticons/emotion-1.gif" border="0"></div>
</blockquote>
<br>
<br>
Hey congrats - whatcha working on?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257927-Come-Work-on-Our-Team/e052565d298e41a8be299deb001ae10a#e052565d298e41a8be299deb001ae10a</link>
		<pubDate>Thu, 20 Dec 2007 07:31:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257927-Come-Work-on-Our-Team/e052565d298e41a8be299deb001ae10a#e052565d298e41a8be299deb001ae10a</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>86</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Source control?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Erisan wrote:</div>
<div class="quoteBody">&#65279;
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>Rossj wrote:</strong>
<hr size="1">
<i>&#65279;<br class="webkit-block-placeholder">
<div>Bah, all the cool kids use VisualSVN integrated with VS.Net.</div>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
Sorry but cool kids doesn't use SVN at all ... <img src="/emoticons/emotion-5.gif" border="0"><br>
<br>
I'm sure everyone has seen this already but it's pretty interesting and worth to watch:<br>
<a href="http://www.youtube.com/watch?v=4XpnKHJAok8">http://www.youtube.com/watch?v=4XpnKHJAok8</a><br>
</div>
</blockquote>
<br>
<br>
GIT. Next time I need distributed development I'll take a look, but for the common case SVN is more than adequate.<br>
<br>
Don't mistake how Linus works with the rest of the world. He is a law until himself <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /><br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254791-Source-control/1471957772f547018b499dec007b9d5d#1471957772f547018b499dec007b9d5d</link>
		<pubDate>Wed, 19 Dec 2007 12:37:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254791-Source-control/1471957772f547018b499dec007b9d5d#1471957772f547018b499dec007b9d5d</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Source control?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Ion Todirel wrote:</div>
<div class="quoteBody">Tortoise SVN forever!<br>
</div>
</blockquote>
<div><br class="webkit-block-placeholder">
</div>
<div>Bah, all the cool kids use VisualSVN integrated with VS.Net. Yes it is based on Tortoise .. but I bought a copy a while ago and it hasn't let me down yet.</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254791-Source-control/6e5614250f894aeea7ae9dec007b9c5c#6e5614250f894aeea7ae9dec007b9c5c</link>
		<pubDate>Wed, 19 Dec 2007 08:46:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254791-Source-control/6e5614250f894aeea7ae9dec007b9c5c#6e5614250f894aeea7ae9dec007b9c5c</guid>
		<dc:creator>Rossj</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Rossj/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>