<?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 glebd</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/glebd/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 glebd</title>
		<link>http://channel9.msdn.com/Niners/glebd/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/glebd/Discussions</link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 06:13:37 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 06:13:37 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - Windows 7 Ideas</title>
		<description><![CDATA[<p>I think most of you are missing the point. As I read your suggestions (except maybe for one that suggested rewriting from scratch), the expression &quot;polishing the turd&quot; comes to mind. If Microsoft doesn't rewrite the whole thing and gets rid of all the compatibility crud (perhaps by virtualising it), Windows is doomed. Think about it: Vista code base is 40% bigger that XP code base (an unconfirmed quote from somewhere online) -- there is no way you can turn this to an advantage! There is a good article somewhere on the nets comparing Vista to dBASE IV (hint: compatibility killed it). The problem is, though, that at the moment compatibility is all that Windows has. If people had to choose between, say,&nbsp; Windows-2010-Without-Backward-Compatibility and other OS, they'd probably keep running XP forever (in enterprise) or switch to Mac or Linux (at home). Make your own conclusions.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/260380-Windows-7-Ideas/0611d3bd959349e9a3069e31009c29ac#0611d3bd959349e9a3069e31009c29ac</link>
		<pubDate>Mon, 21 Jan 2008 01:30:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/260380-Windows-7-Ideas/0611d3bd959349e9a3069e31009c29ac#0611d3bd959349e9a3069e31009c29ac</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>160</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - The silence is broken! (IE8)</title>
		<description><![CDATA[<p>I find it strange and even suspicious that Billg doesn't know (or is pretending not to know) what is happening in the team that produces one of the most important MS products. Talk about non-transparency...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/259479-The-silence-is-broken-IE8/d3514d3a015d4114b51f9df9009851f8#d3514d3a015d4114b51f9df9009851f8</link>
		<pubDate>Fri, 07 Dec 2007 11:11:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/259479-The-silence-is-broken-IE8/d3514d3a015d4114b51f9df9009851f8#d3514d3a015d4114b51f9df9009851f8</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>37</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Poor performance of .NET Regex</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">AdrianJMartin wrote:</div>
<div class="quoteBody">&#65279;one huge difference is that the body of text you are searching will have been pushed into unmanged memory...</div>
</blockquote>
<br /><br />Not really, as the text is split into lines first in the C# program before matching each line with regex. So I don't think managed/non-managed memory difference comes into play here.<br /><br />The only difference in the code was that the initial version used Regex.Match(), and the new version uses PCRE wrapper function to do the same on the same strings using the same regular expression. The surrounding code is absolutely the same. The difference
 in speed must be in the way regular expressions are implemented in PCRE and .NET.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/29ead6b53f75440c9d5b9df90102c67a#29ead6b53f75440c9d5b9df90102c67a</link>
		<pubDate>Thu, 18 Oct 2007 12:30:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/29ead6b53f75440c9d5b9df90102c67a#29ead6b53f75440c9d5b9df90102c67a</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Poor performance of .NET Regex</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">JohnnyAwesome wrote:</div>
<div class="quoteBody">&#65279;Are you able to post any code samples with the difference between implementation of your compiled C# RegEx class and your wrapper call?<br /></div>
</blockquote>
<br /><br />Unfortunately no, as all of this code is client-owned. However, I only used simple matching, there is nothing fancy there.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/ff1c8040b8544df0b5599df90102c45f#ff1c8040b8544df0b5599df90102c45f</link>
		<pubDate>Wed, 17 Oct 2007 10:40:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/ff1c8040b8544df0b5599df90102c45f#ff1c8040b8544df0b5599df90102c45f</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Poor performance of .NET Regex</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">JChung2006 wrote:</div>
<div class="quoteBody">&#65279;Did you use a compiled or uncompiled regular expression in your C# version?</div>
</blockquote>
<br /><br />Tried both, couldn't notice any significant difference. That's when I pre-compiled the Regex object into a DLL (which didn't help either, quite surprisingly.)<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/f0fe867ef5cc4b329e479df90102c364#f0fe867ef5cc4b329e479df90102c364</link>
		<pubDate>Wed, 17 Oct 2007 00:17:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/f0fe867ef5cc4b329e479df90102c364#f0fe867ef5cc4b329e479df90102c364</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Poor performance of .NET Regex</title>
		<description><![CDATA[<p>Recently in a C# application I was writing I had to process quite a few lines of text using regular expressions (many thousands). Initially I used .NET Regex class for that. The processing of the entire amount of data took a little longer than 4 minutes
 on a P4 3 GHz machine (Windows XP Professional.) After profiling I saw that most of the time (99%) was spent in Regex.Match() function. I tried to pre-compile the Regex object into a separate DLL to improve speed but it did not produce noticeable difference,
 the whole amount of data still taking about 4 minutes to process.<br /><br />Not satisfied with this (we had to go through the whole process quite often and it was very bothersome), I downloaded a Windows port of PCRE C library (Perl Compatible Regular Expressions,
<a href="http://www.pcre.org/">http://www.pcre.org/</a>). I then produced a very thin managed wrapper around the plain C API of that library using C&#43;&#43;/CLI, and called the wrapper from my C# application, replacing&nbsp; Regex.Match() with the appropriate PCRE function.
 The regular expression, however inefficient it may have been (I'm no regex expert), stayed the same.<br /><br />The next time I ran the application with a stopwatch, I couldn't believe my eyes. The whole data processing took... wait for it... 8 SECONDS!<br /><br />So, using the same regular expression and the same data: .NET Regex: 4 minutes, PCRE wrapped in C&#43;&#43;/CLI: 8 seconds.<br /><br />Can anyone explain this kind of difference? Is PCRE a miracle? Or, more likely, is .NET Regex implementation really THAT bad?<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/258310#258310</link>
		<pubDate>Wed, 17 Oct 2007 00:04:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258310-Poor-performance-of-NET-Regex/258310#258310</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>14</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - So .NET is &amp;quot;Resource&amp;quot; Sourced... what&#39;s next?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">ScanIAm wrote:</div>
<div class="quoteBody">&#65279;<br>
I'm sure there were some lawyers involved in this decision, but if you limit your developer pool to people who know .Net and haven't ever felt the desire to take a look at how it works, then you might not have the best developers to choose from
<img src="/emoticons/emotion-6.gif" border="0"></div>
</blockquote>
<br>
<br>
Well, you surely would not get those who like to copy-paste their code.<br>
<br>
Seriously, are you sure .NET source code is all rosy? I bet they had to clean it up quite a bit before releasing for everyone to see, if the previously leaked Windows 2000 code is any indication (I haven't seen it, just read
<a href="http://www.kuro5hin.org/story/2004/2/15/71552/7795">this review</a>).<br>
<br>
From <a href="http://weblogs.asp.net/scottgu/archive/2007/10/03/releasing-the-source-code-for-the-net-framework-libraries.aspx">
the initial announcement</a>, a snippet of <b>commented</b> .NET source:<br>
<blockquote>
<pre>...<br><font color="#000080">finally</font> {<br>&nbsp;&nbsp;&nbsp; <font color="#006400">// restore culture</font><br>&nbsp;&nbsp;&nbsp; RestoreCultures(currentThread, prevCulture, prevUICulture);<br>}<br>...</pre>
</blockquote></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/2b04daa7488841fabe079deb001c15d0#2b04daa7488841fabe079deb001c15d0</link>
		<pubDate>Fri, 05 Oct 2007 22:36:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/2b04daa7488841fabe079deb001c15d0#2b04daa7488841fabe079deb001c15d0</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - 7.4.3.....holy cr@p Apple!!!</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">CannotResolveSymbol 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>glebd wrote:</strong>
<hr size="1">
<i>&#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>Harlequin wrote:</strong>
<hr size="1">
<i>&#65279;ANOTHER iTunes update. ANOTHER 55MB. Does Apple not know how to apple patches or something?</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
I take it you are equally annoyed by Microsoft's &quot;patch Tuesdays&quot;?<br>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
The point here is that Apple doesn't patch.&nbsp; They send down the whole installer and reinstall the product, all 55 MB of it.<br>
<br>
That's rather large for a point release.<br>
</div>
</blockquote>
<br>
<br>
If you release a product and then keep patching it instead of updating as a whole, you end up with an unmanageable mess. It is much easier in the long run to release a complete update than keep supporting various patch combinations and make sure they all work
 together. Hint, hint...<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258020-743holy-crp-Apple/b8647b45a0b84a539a7e9deb001c5091#b8647b45a0b84a539a7e9deb001c5091</link>
		<pubDate>Fri, 05 Oct 2007 22:23:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258020-743holy-crp-Apple/b8647b45a0b84a539a7e9deb001c5091#b8647b45a0b84a539a7e9deb001c5091</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - 7.4.3.....holy cr@p Apple!!!</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Harlequin wrote:</div>
<div class="quoteBody">&#65279;ANOTHER iTunes update. ANOTHER 55MB. Does Apple not know how to apple patches or something?</div>
</blockquote>
<br>
<br>
I take it you are equally annoyed by Microsoft's &quot;patch Tuesdays&quot;?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258020-743holy-crp-Apple/f670240d94444abf95e39deb001c4fbb#f670240d94444abf95e39deb001c4fbb</link>
		<pubDate>Fri, 05 Oct 2007 21:25:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258020-743holy-crp-Apple/f670240d94444abf95e39deb001c4fbb#f670240d94444abf95e39deb001c4fbb</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - So .NET is &amp;quot;Resource&amp;quot; Sourced... what&#39;s next?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">thumbtacks2 wrote:</div>
<div class="quoteBody">&#65279;It would be a silly&nbsp;if Mono doesn't hire you because of &quot;seeing the source code&quot;. That's their own choice, though, and I can see the legal issues they are trying to avoid.</div>
</blockquote>
<br>
<br>
Remember SCO (there was a company named SCO once, and it was even listed)? They suddenly decided that Linux contained code infringing on their ©.<br>
<br>
If a code snippet appears in Mono that is similar to .NET code and there are Mono contributors who had seen the .NET code, MS potentially may want to shut down Mono or do something else along the lines.<br>
<br>
Now, given SCO current status, they may want to think twice about that, but still
<a href="http://blogs.the451group.com/opensource/2007/10/04/microsofts-restricted-share-poses-problems-for-mono">
the possibility remains</a>. I guess that's why Mono guys are being careful about this.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/ebdcde7333da4347ae689deb001c13c2#ebdcde7333da4347ae689deb001c13c2</link>
		<pubDate>Fri, 05 Oct 2007 14:23:38 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/ebdcde7333da4347ae689deb001c13c2#ebdcde7333da4347ae689deb001c13c2</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - So .NET is &amp;quot;Resource&amp;quot; Sourced... what&#39;s next?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">AndyC 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>glebd wrote:</strong>
<hr size="1">
<i>&#65279;<br>
<blockquote><i>Interviewer</i>: &quot;Have you ever used (seen, stepped into during debugging) the .NET shared source code?&quot;<br>
<i>Developer</i>: &quot;Yes, of course. This helps the development, you know.&quot;<br>
<i>Interviewer</i>: &quot;Sorry, we cannot employ you. Your mind is tainted.&quot;<br>
</blockquote>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
That's already far, far more likely with GPL code than it ever will be with the .NET shared source, unless you're planning to go work for Novell on mono.</div>
</blockquote>
<br>
<br>
I think you're wrong here. First, there is not a lot of GPL-licensed .NET code out there that can taint a developer's mind, and if there is, you can avoid it easily. But that is going to change because the entire .NET runtime will become &quot;contagious&quot; in the
 sense GPL code is now. Except that you can still use GPL code in GPL projects, whereas you cannot use any of the code you see inside .NET runtime for anything. Oh, and you will be hard-pressed to avoid looking at it — Visual Studio will gladly download it
 for you and automatically step into it, should you inadventently press &quot;Step Into&quot; key during debugging.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/24c504f41d824eacb7a89deb001c12b0#24c504f41d824eacb7a89deb001c12b0</link>
		<pubDate>Fri, 05 Oct 2007 12:35:40 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/24c504f41d824eacb7a89deb001c12b0#24c504f41d824eacb7a89deb001c12b0</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - So .NET is &amp;quot;Resource&amp;quot; Sourced... what&#39;s next?</title>
		<description><![CDATA[<p>Open-sourced? Yes. &quot;Shared-sourced&quot;? I don't think you would want that. God forbid you to write something similar after looking at the &quot;shared&quot; code that is still protected by MS ©.<br>
<br>
As to your question on what's next... I expect soon C# developers will start hearing a certain question during their job interviews:<br>
<br>
<blockquote><i>Interviewer</i>: &quot;Have you ever used (seen, stepped into during debugging) the .NET shared source code?&quot;<br>
<i>Developer</i>: &quot;Yes, of course. This helps the development, you know.&quot;<br>
<i>Interviewer</i>: &quot;Sorry, we cannot employ you. Your mind is tainted.&quot;<br>
</blockquote></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/632a1512e2044a53a9939deb001c1252#632a1512e2044a53a9939deb001c1252</link>
		<pubDate>Fri, 05 Oct 2007 12:18:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258005-So-NET-is-quotResourcequot-Sourced-whats-next/632a1512e2044a53a9939deb001c1252#632a1512e2044a53a9939deb001c1252</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What do you want to know about Vista?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Bas 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>glebd wrote:</strong>
<hr size="1">
<i>&#65279;<br>
Shouldn't you have organised this <i>before</i> starting the thread?<br>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
<strike>How is one going to organize the appointments with the right people if one doesn't know what questions to ask who yet?</strike></div>
</blockquote>
<br>
<br>
Well, if you are going to gather questions about something, you could at least check if it is possible to get answers. I don't know how Microsoft works inside, but I imagine there are team leaders and people who know more than the rest about particular technologies.
 If you are playing a host for a Q&amp;A forum, there is only so much you can delegate. Most of the work falls on you -- researching questions, finding the right people to answer each question or even a part of each question, and posting answers. Knowing the right
 people to get answers from, and knowing that they'd be willing to spend their time on this, is the organisation bit I had in mind. Otherwise you are only going to create more frustration in the ranks of your most loyal users.<br>
<br>
<blockquote>
<div class="quoteAuthor">Bas wrote:</div>
<div class="quoteBody">Also, why do I keep falling for your petty hit 'n run attacks?</div>
</blockquote>
<br>
<br>
Um, because they make sense?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252082-What-do-you-want-to-know-about-Vista/4c0022c52ad24f96beb89dec0054dce1#4c0022c52ad24f96beb89dec0054dce1</link>
		<pubDate>Fri, 07 Sep 2007 08:52:01 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252082-What-do-you-want-to-know-about-Vista/4c0022c52ad24f96beb89dec0054dce1#4c0022c52ad24f96beb89dec0054dce1</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>243</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What do you want to know about Vista?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Charles 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>glebd wrote:</strong>
<hr size="1">
<i>&#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>Charles wrote:</strong>
<hr size="1">
<i>&#65279;Still trying to organize this. Yeah, it's pretty sad that it's taking so long. What can I say?
<br>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
Shouldn't you have organised this <i>before</i> starting the thread?<br>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
No. Questions first. <em>Then</em> answers... I may end up just killing this. Having a hard time finding anyone to take this on. Pretty sad in my opinion.<br>
<br>
C</div>
</blockquote>
<br>
<br>
Put it on a public wiki. If we are not getting all the answers, this would at least show all the unanswered questions about Vista. A forum post is not the best form for this, IMHO.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252082-What-do-you-want-to-know-about-Vista/660780a42cfe4a6bbfac9dec0054dcb4#660780a42cfe4a6bbfac9dec0054dcb4</link>
		<pubDate>Tue, 04 Sep 2007 10:42:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252082-What-do-you-want-to-know-about-Vista/660780a42cfe4a6bbfac9dec0054dcb4#660780a42cfe4a6bbfac9dec0054dcb4</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>243</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What do you want to know about Vista?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Charles wrote:</div>
<div class="quoteBody">&#65279;Still trying to organize this. Yeah, it's pretty sad that it's taking so long. What can I say?
<br>
</div>
</blockquote>
<br>
Shouldn't you have organised this <i>before</i> starting the thread?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252082-What-do-you-want-to-know-about-Vista/1410488de2fa48f7aa729dec0054db5b#1410488de2fa48f7aa729dec0054db5b</link>
		<pubDate>Sun, 02 Sep 2007 14:27:50 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252082-What-do-you-want-to-know-about-Vista/1410488de2fa48f7aa729dec0054db5b#1410488de2fa48f7aa729dec0054db5b</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>243</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Interesting Vista Music vs. Network article</title>
		<description><![CDATA[<p><a href="http://blogs.zdnet.com/hardware/?p=724">Microsoft explains</a> (Translation: we don't know WTF is going on, but most likely it's all this vast amount of DRM code gobbling up CPU, and we cannot really admit this, so we need to come up with some
 more FUD.) Pathetic.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257162-Interesting-Vista-Music-vs-Network-article/b2faa3941b514c0fbdad9dec00a1d5ae#b2faa3941b514c0fbdad9dec00a1d5ae</link>
		<pubDate>Mon, 27 Aug 2007 01:37:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257162-Interesting-Vista-Music-vs-Network-article/b2faa3941b514c0fbdad9dec00a1d5ae#b2faa3941b514c0fbdad9dec00a1d5ae</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>21</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Version control documentation</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">ScanIAm wrote:</div>
<div class="quoteBody">&#65279;VSS works just fine for a small team</div>
</blockquote>
<br /><br />I hear this a lot. No it does not, and it has nothing to do with the size of a team. VSS is completely broken, its integration with IDE is broken too and worst of all, it teaches you all the wrong ways of working with a source control system. If a person who
 doesn't know what a SCM is starts off using VSS, she is worse off than learning a proper system from scratch.<br /><br />Subversion is not panacea, it's true, there is Perforce which is very good, IIRC Microsoft used to use its fork called SourceVault internally (not VSS obviously), now presumably switched to TFS which I hear repeats VSS mistakes (the &quot;destroy&quot; command―people,
 an SCM is supposed to _keep_ the source and allow you to rebuild it going back in time, not destroy it!) There are also distributed SCMs like git and mercurial. And there are heavyweights like ClearCase if you have tons of money and dedicated support staff.
 These all are proper SCMs.<br /><br />Search Google (or Live, for that matter) for &quot;SourceSafe bugs&quot; and you'll see what I mean.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/256391-Version-control-documentation/d989599fda5242878c529dfa00acf8b5#d989599fda5242878c529dfa00acf8b5</link>
		<pubDate>Tue, 24 Jul 2007 20:25:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/256391-Version-control-documentation/d989599fda5242878c529dfa00acf8b5#d989599fda5242878c529dfa00acf8b5</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Version control documentation</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Larsenal 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>blowdart wrote:</strong>
<hr size="1">
<i>&#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>Larsenal wrote:</strong>
<hr size="1">
<i>&#65279;We have a small team of 3 working on this project.&nbsp; We're getting to the point where we need to keep better track of who changed what and when.<br /><br />We also need to track tweaks for specific clients.<br /><br />We're all for something simple.&nbsp; Any recommendations?<br /></i></td>
</tr>
</tbody>
</table>
</blockquote>
<br /><br />Simple? Sourcesafe; heh.<br />Free: Subversion, with Tortoise or Ankh<br />Paid for: Vault<br /></i></td>
</tr>
</tbody>
</table>
</blockquote>
<br /><br />I should have been more specific.&nbsp; At this point we don't intend to have full version control in terms of source code management.&nbsp; We simply want to keep track of bug fixes, improvements and modifications.
<br /></div>
</blockquote>
<br /><br />So you want to do things a version control software normally does, like keeping history of source modifications and tracking tweaks for clients (in other words, branching), only by hand? Why would you want to do that? Use Subversion, it'll save you lots of
 grief in the long run. Do not use SourceSafe, it's not a real source code control system and is worse than doing this by hand (IMHO).<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/256391-Version-control-documentation/e9c35852e99f442195989dfa00acf384#e9c35852e99f442195989dfa00acf384</link>
		<pubDate>Mon, 23 Jul 2007 09:38:29 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/256391-Version-control-documentation/e9c35852e99f442195989dfa00acf384#e9c35852e99f442195989dfa00acf384</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Adobe is clueless sometimes.</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">blowdart wrote:</div>
<div class="quoteBody">&#65279;And as I was in firefox it downloaded a wrapped MSI.<br>
<br>
Which doesn't update the ActiveX plugin for IE.<br>
</div>
</blockquote>
<br>
<br>
Why exactly do you expect a Firefox-specific installer to update your MSIE components as well? This is not a Windows system-level update, right? Seems to me it's not Adobe who is being clueless.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/256275-Adobe-is-clueless-sometimes/bbed10c0e59a4f9e8a149dec00939fe7#bbed10c0e59a4f9e8a149dec00939fe7</link>
		<pubDate>Tue, 17 Jul 2007 10:48:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/256275-Adobe-is-clueless-sometimes/bbed10c0e59a4f9e8a149dec00939fe7#bbed10c0e59a4f9e8a149dec00939fe7</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Think for yourselves...</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Sabot wrote:</div>
<div class="quoteBody">&#65279;Take for example the iPhone or even the iPod, what&nbsp;killer feature&nbsp;makes them&nbsp;head and shoulders above the competition?</div>
</blockquote>
<br>
<br>
Well, for me it's about <i>good design</i>, <i>taste</i> and <i>functionality.</i> And functionality doesn't necessarily mean cramping every conceivable feature into a piece of hardware or software. This is something Microsoft unfortunately doesn't get. (MS
 Office 2007, I suspect, is the first version of Office a proper <i>designer</i> had worked on.)<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/256225-Think-for-yourselves/af44633b2a2749808fd79dec0092b98d#af44633b2a2749808fd79dec0092b98d</link>
		<pubDate>Sun, 15 Jul 2007 19:36:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/256225-Think-for-yourselves/af44633b2a2749808fd79dec0092b98d#af44633b2a2749808fd79dec0092b98d</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>114</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What does your team use for SCM and bug tracking?</title>
		<description><![CDATA[<p>I use Bugzilla v3 and I think it's not bad at all.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/255831-What-does-your-team-use-for-SCM-and-bug-tracking/05316ad5821141eda96f9dec008c07ec#05316ad5821141eda96f9dec008c07ec</link>
		<pubDate>Fri, 29 Jun 2007 10:16:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/255831-What-does-your-team-use-for-SCM-and-bug-tracking/05316ad5821141eda96f9dec008c07ec#05316ad5821141eda96f9dec008c07ec</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why I probably won&#39;t get an iPhone.</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Ray6 wrote:</div>
<div class="quoteBody">&#65279;<br>
<br>
<blockquote>
<table class="quoteTable">
<tbody>
<tr>
<td valign="top" width="10"><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td class="txt3"><strong>glebd wrote:</strong>
<hr size="1">
<i>&#65279;<br>
Why would you need that? You have multi-touch dialling and an excellent contact list. I never use voice dialling myself.<br>
</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
Now this is the real kicker. No voice dialling? Loads of people use voice dialling for making calls while they're driving. Odd thing to miss out. But if they didn't miss out some of the most obvious features, how would they pursuade you to buy another one in
 two years time?</div>
</blockquote>
<br>
<br>
When driving, you should not use a mobile phone, period. You should pay attention to the road. There are too many morons creating life-threatening situations because they think they can drive and use their phones at the same time. Here's hope that at least
 iPhones won't cause road accidents.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/255784-Why-I-probably-wont-get-an-iPhone/6e924db9119f4518b8a79dec008b608d#6e924db9119f4518b8a79dec008b608d</link>
		<pubDate>Thu, 28 Jun 2007 00:40:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/255784-Why-I-probably-wont-get-an-iPhone/6e924db9119f4518b8a79dec008b608d#6e924db9119f4518b8a79dec008b608d</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>40</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why I probably won&#39;t get an iPhone.</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">stevo_ wrote:</div>
<div class="quoteBody">&#65279;^ Your MMS point is stupid, do you even understand the difference between SMS and MMS? It's not a flop at all, someone already stated that it's a big thing in the EU.<br>
<br>
Here in the UK the concept of a mobile phone has designed around people taking quick snaps and using MMS to send them around to each other.</div>
</blockquote>
<br>
<br>
OK, let me rephrase it--nobody I know uses MMS, and I live in the UK. The concept is there, yes. But while on average 1 million MMS messages were sent daily in the uk in 2006, the daily SMS count was around 126 million (<a href="http://news.softpedia.com/news/1-Million-Picture-Messages-Sent-Each-Day-in-the-UK-43331.shtml">source</a>).
 MMS has fallen short of the industry expectations.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/255784-Why-I-probably-wont-get-an-iPhone/bf058088aca5460b987f9dec008b5df2#bf058088aca5460b987f9dec008b5df2</link>
		<pubDate>Wed, 27 Jun 2007 11:14:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/255784-Why-I-probably-wont-get-an-iPhone/bf058088aca5460b987f9dec008b5df2#bf058088aca5460b987f9dec008b5df2</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>40</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why I probably won&#39;t get an iPhone.</title>
		<description><![CDATA[<p>&gt; The mobile version of OS X or whatever it is the <b>iPhone runs takes up 700MB of the device's capacity</b>. Damn son!<br>
<br>
And you care about this why exactly? I'd rather have a good OS on my phone than several more crappy music tracks.<br>
<br>
&gt; There's <b>no way to cut, copy, or paste text</b>! WHOA! Big, big mistake.<br>
<br>
On my Nokia Series 60 3rd Edition phone for the entire year of daily usage I can count probably three occassions I've copied and pasted text. It was extremely cumbersome. To make this work when there is no stylus, using your fingers for text selection would
 be close to impossible. I could totally live without this feature.<br>
<br>
<b>&gt; No A2DP support</b>. That, friends, is such a huge bummer right there.<br>
<br>
Not a big deal really. People using bluetooth headsets look like cybermen anyway. I've even seen some people wearing BT headsets on the underground--how silly is that?<br>
<br>
&gt; Sorry, music can't be used as a ringtone -- even if it's just a raw MP3. No additional ringtones will be sold at launch.<br>
<br>
Thank God! No stupid ringtones. This is a huge feature. Good call Apple.<br>
<br>
&gt; Pogue again confirms document file reading -- but not editing -- for PDF, Word, and Excel (only).<br>
<br>
Who in their right mind would *edit* documents or spreadsheets on a *phone* is beyond me.<br>
<br>
&gt; <b>Adobe Flash support is officially out</b>. It's just not in the browser. Neither is there any other kind of embedded video support. Sorry everybody, that's that.<br>
<br>
I can see why. This must be all about reliability. They even have a timeout for JavaScript on pages, something like 5s of run time. Nothing you open from the Web must stop the phone from functioning. This is also the most likely reason for the lack of native
 SDK.<br>
<br>
&gt; It will take snaps, but <b>won't record video</b>. How can Apple love YouTube as much as it does and not realize cellphone-shot movies make up a sizeable chunk of the crazy crap you find on there?<br>
<br>
I can live without crappy video footage from phone cameras.<br>
<br>
&gt; Oh, and <b>no MMS</b>.<br>
<br>
MMS is a flop, no one uses that. It was a nice idea, but SMS is so much simpler, qucker and cheaper.<br>
<br>
&gt; And sorry, no voice dialing, either.<br>
<br>
Why would you need that? You have multi-touch dialling and an excellent contact list. I never use voice dialling myself.<br>
<br>
&gt; Contact groups can't be emailed as contact lists.<br>
<br>
You mean there is no way to bulk-mail from your phone or share your bulk-mail list with anyone? Give me just one use case for this.<br>
<b><br>
&gt; Apple sez between 300-400 charges the iPhone will lose battery capacity -- you'll send it in and get the cell replaced for a fee.</b> Meh. We knew this would be the case, but still, meh.<br>
<br>
Let me see. Even if you charge it daily, it's a year before capacity is lost, and I don't think it'll just stop charging overnight when you plug it in for the 401th time. It's no different from other phones, except you can't change battery yourself. Not very
 nice, I agree, but the iPod owners out there don't seem to mind.<br>
<br>
&gt; Apple can (and supposedly will) be rolling out periodic updates -- no surprise there.<br>
<br>
I'm sure many of the drawbacks cites in the reviews will be addressed.<br>
<br>
&gt; Battery life is, somehow, almost as mind-blowingly good as Apple claims for calls, music, and movies.<br>
<br>
And that's a reason for you not to get an iPhone?<br>
<br>
&gt; As we suspected, users are prompted with lists of WiFi networksifyou're not nearby a trusted hotspot. We've seen this on other phones, and we're afraid this would get friggin annoying.<br>
<br>
It's like saying, &quot;I haven't seen this feature, but based on other phone implementations I'm sure it'll suck too.&quot; Do you see how silly this sounds?<br>
<br>
&gt; It's said to be very scratch resistant. The facade both front and rear apparently just doesn't pick up marring like regular iPods do.<br>
<br>
So that's a plus or a minus? You seem to have confused your points with the title of your post.<br>
<br>
&gt; Voice quality is said to be good -- not great.<br>
<br>
This is so subjective that I would not pay attention to it unless they said it's total crap and completely incomprehensible, which they didn't.<br>
<br>
It amazes me how people hurry up and bash a product that hasn't been released yet, and some even start selling what they call &quot;iPhone killers&quot;. Look how many iPod killers are out there. They all are crap, some better that others but none come even close to
 iPod.<br>
<br>
A Windows Mobile device as an iPhone killer? Gimme a break.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/255784-Why-I-probably-wont-get-an-iPhone/c671f1362bc64e4c89f99dec008b5d17#c671f1362bc64e4c89f99dec008b5d17</link>
		<pubDate>Wed, 27 Jun 2007 10:29:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/255784-Why-I-probably-wont-get-an-iPhone/c671f1362bc64e4c89f99dec008b5d17#c671f1362bc64e4c89f99dec008b5d17</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>40</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - So, we&#39;re having a baby</title>
		<description><![CDATA[<p>Congratulations! But don't get too fancy with the name, or you kid will hate you later. You may also read the last chapter of Levitt's Freakanomics (<a href="http://www.amazon.co.uk/Freakonomics-Economist-Explores-Hidden-Everything/dp/0141019018">http&#58;&#47;&#47;www.amazon.co.uk&#47;Freakonomics-Economist-Explores-Hidden-Everything&#47;dp&#47;0141019018</a>)--it's about baby
 names <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/255422-So-were-having-a-baby/12530f60f23d4f96844a9dec0085bc30#12530f60f23d4f96844a9dec0085bc30</link>
		<pubDate>Tue, 12 Jun 2007 10:12:54 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/255422-So-were-having-a-baby/12530f60f23d4f96844a9dec0085bc30#12530f60f23d4f96844a9dec0085bc30</guid>
		<dc:creator>glebd</dc:creator>
		<slash:comments>43</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/glebd/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>