<?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 SvendTofte</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/SvendTofte/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 SvendTofte</title>
		<link>http://channel9.msdn.com/Niners/SvendTofte/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/SvendTofte/Discussions</link>
	<language>en</language>
	<pubDate>Tue, 21 May 2013 06:05:53 GMT</pubDate>
	<lastBuildDate>Tue, 21 May 2013 06:05:53 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - LaTeX anyone?</title>
		<description><![CDATA[<p>I do. LaTeX produces beautiful math IMO.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/116807-LaTeX-anyone/2f6fd1c85afd44d2a56a9deb00eade4a#2f6fd1c85afd44d2a56a9deb00eade4a</link>
		<pubDate>Tue, 27 Sep 2005 08:41:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/116807-LaTeX-anyone/2f6fd1c85afd44d2a56a9deb00eade4a#2f6fd1c85afd44d2a56a9deb00eade4a</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Can someone explain video to me?</title>
		<description><![CDATA[<p>In the past, when QT &quot;was it&quot;, for the net (and IMO still is), it had the Sorenson codec, which was QT only, and was pretty sharp about compressing. This was a long time ago though.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/114990-Can-someone-explain-video-to-me/7f261ee6325b429c90459deb00e6d615#7f261ee6325b429c90459deb00e6d615</link>
		<pubDate>Sat, 24 Sep 2005 00:36:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/114990-Can-someone-explain-video-to-me/7f261ee6325b429c90459deb00e6d615#7f261ee6325b429c90459deb00e6d615</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Mozilla is a virus</title>
		<description><![CDATA[<p>This site is to MS as Slashdot is to Linux. Did you actually try and read the link you posted? Is MS responsible if idiots downloads patches from p2p, and find that they get infected? The Korean server is not an affiliated Mozilla site, it's just any old
 fan site. Yawn.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115266-Mozilla-is-a-virus/6d7dfdb963b742a8aac59deb00e781c8#6d7dfdb963b742a8aac59deb00e781c8</link>
		<pubDate>Wed, 21 Sep 2005 18:11:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115266-Mozilla-is-a-virus/6d7dfdb963b742a8aac59deb00e781c8#6d7dfdb963b742a8aac59deb00e781c8</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>12</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Asymptotic Analisys</title>
		<description><![CDATA[<p><blockquote>
<div>amotif wrote:</div>
<div>
<blockquote>
<table>
<tbody>
<tr>
<td><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td><strong>Shmuelpro wrote:</strong> <i>oh common can anyone at least tell me that they know what it is</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
I think we most often refer to &quot;Big-O notation&quot; in discussing the magnitude of algorithms... is that where you're going with this?<br>
</div>
</blockquote>
<br>
<br>
There's several versions of algoritihmic analysis. Big&nbsp;O is the most common, and often it's quite intuitive. IIRC, O is the maximum time/resource that will ever be spent. You have other symbols for things, like &quot;minimum possible resource expenditure&quot;, and average.
 Average runtime analysis is hard, but needed. <br>
<br>
Quicksort is a O(n^2) algorithm. Like Bubble sort. That is, the runtime of the algorithm is proportional to the square of the length of the input (the number of items to be sorted).<br>
<br>
If you do propability analysis on the formular however, you will find the run time to near O(n log n), which is a theoretical lower bound for comparison based sorted (bucket sort is in theory faste, as it does not compare, in order to sort). QS will only ever
 hit the worst time, when it's splitting the array to be sorted, when selection of the pivot point results in a constant split, such as:<br>
<br>
[2 elem] [pivot elem] [rest of elem]<br>
<br>
However, bad luck like this is extremely unlikely, and as long as you're getting splits, like this:<br>
<br>
[x % of&nbsp;elems] [pivot elem] [rest of elem]<br>
<br>
Then the time it takes, will be O(n log n).<br>
<br>
I don't know what Wikipedia says on the topic, but the page on QS is awefully long:
<a href="http://en.wikipedia.org/wiki/Quicksort">http://en.wikipedia.org/wiki/Quicksort</a><br>
<br>
A pretty standard book on the analysis of algorithms and datastructures is the &quot;Introduction to Algorithms&quot; from MIT Press, by Cormen, et al.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/110864-Asymptotic-Analisys/1ede9445442b416592769deb00dbcf9d#1ede9445442b416592769deb00dbcf9d</link>
		<pubDate>Tue, 13 Sep 2005 12:34:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/110864-Asymptotic-Analisys/1ede9445442b416592769deb00dbcf9d#1ede9445442b416592769deb00dbcf9d</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Whats an EXE?</title>
		<description><![CDATA[<p>start -&gt; run -&gt; cmd -&gt; debug -&gt; go nuts!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/109865-Whats-an-EXE/8fb318e9d6ef44ce82d79deb00d908ce#8fb318e9d6ef44ce82d79deb00d908ce</link>
		<pubDate>Sat, 10 Sep 2005 19:18:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/109865-Whats-an-EXE/8fb318e9d6ef44ce82d79deb00d908ce#8fb318e9d6ef44ce82d79deb00d908ce</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Regular Expressions</title>
		<description><![CDATA[<p>I'll assume, that you mean validating string versions, of these datatypes? Otherwise, regular expressions will not do much. That said, you'll probably want to look at the specifications for each language. I don't know about VB.NET, but you can find C#'s
 here: <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/csspec/html/vclrfcsharpspec_c.asp">http&#58;&#47;&#47;msdn.microsoft.com&#47;library&#47;default.asp&#63;url&#61;&#47;library&#47;en-us&#47;csspec&#47;html&#47;vclrfcsharpspec_c.asp</a> You'll notice that there only exists an &quot;integer-literal&quot; and &quot;real-literal&quot;. Exactly what this is taken as, I'll assume depends on what it's either prefixed,
 or postfixed with, or what the context is. As such, there are no explicit regular expressions (or even implicit, the definition is grammatical, not lexical).</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/109639-Regular-Expressions/a7110d5916eb4ce59e1d9dea012a8a54#a7110d5916eb4ce59e1d9dea012a8a54</link>
		<pubDate>Sat, 10 Sep 2005 16:12:52 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/109639-Regular-Expressions/a7110d5916eb4ce59e1d9dea012a8a54#a7110d5916eb4ce59e1d9dea012a8a54</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - windows &amp;quot;genuine&amp;quot; validation</title>
		<description><![CDATA[<p><blockquote>
<div>l33tn00b wrote:</div>
<div>
<p>i know its an&nbsp;unpopular viewpoint, but i think validaiton should be required for all downloads from microsoft.com . people who are honest and do not pirate should be rewarded.</p>
</div>
</blockquote>
<br>
<br>
Not everyone who has a pirated Windows copy actually pirated it themselves. <br>
<br>
I don't know how many percent this is, but it's probably a good bunch of percent.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/74252-windows-quotgenuinequot-validation/10b2d8032e4041ea847f9dec005203e8#10b2d8032e4041ea847f9dec005203e8</link>
		<pubDate>Fri, 10 Jun 2005 12:42:44 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/74252-windows-quotgenuinequot-validation/10b2d8032e4041ea847f9dec005203e8#10b2d8032e4041ea847f9dec005203e8</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>29</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Discussion: Is CSS layout overrated?</title>
		<description><![CDATA[<p><blockquote>
<div>mVPstar wrote:</div>
<div>The beauty of a CSS layout is the fact that in can degrade nicely on clients that don't support CSS.</div>
</blockquote>
<br>
<br>
This is one fallacy I'm pretty tired of seeing. While it's literally true, A website written using pure CSS and HTML will usually degrade well to a totally CSS-oblivious client.<br>
<br>
The problem is that there are SO FEW totally CSS-oblivious clients. We don't care about bots and stuff, so that leaves us with small devices pretty much, and perhaps some specialty browsing device for handicapped (though most visually impaired use IE for browsing).<br>
<br>
The problem is that by far the largest number of clients (like in the 99% range) have varied and mixed support for various parts of the CSS standard.Imagine a browser supporting background-image, but not background-repeat (NS4!). It could potentially render
 the page unreadable. This whole issue is even why we spend so long fighting IE, FF, or Opera, or whatever browser is having a problem, because
<strong>CSS in effect does no degrade gracefully</strong>. And if we don't check it in said browser, the page can literally become unreadable.<br>
<br>
That said, CSS is&nbsp;a heck of alot better then the alternative choice. Years back, I've nested tables (on commercial sites) up to nine levels, and then it was all framed even! And the cascade is simply a beautiful thing.<br>
<br>
But people also should see that CSS is only meant to go so far. CSS in my opinion scales like (I need to watch my language), and should not be used, at all, for say behaviour, apart from the most simplistic :hover effect. Building entire menus out of CSS rubs
 me the wrong way...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/70642-Discussion-Is-CSS-layout-overrated/933c5078c482410099959dec004e4e05#933c5078c482410099959dec004e4e05</link>
		<pubDate>Mon, 30 May 2005 12:15:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/70642-Discussion-Is-CSS-layout-overrated/933c5078c482410099959dec004e4e05#933c5078c482410099959dec004e4e05</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>The Sandbox - Colour Filter</title>
		<description><![CDATA[<p>it must be immensely slow if it's using GetPixel. Rewrite to it is using pointers (assuming C# here)&nbsp;&nbsp;&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Sandbox/Colour-Filter/5a4286e361234fad91229dea01034114#5a4286e361234fad91229dea01034114</link>
		<pubDate>Sat, 21 May 2005 17:50:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Sandbox/Colour-Filter/5a4286e361234fad91229dea01034114#5a4286e361234fad91229dea01034114</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - What Keyboards do you use ?</title>
		<description><![CDATA[<p>Wow, a forum full of programmars, and no followers of the IBM Model M keyboard??<br>
<br>
<img src="http://www.preater.com/modelm/images/model-m-logo-tiny.jpg"></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/66414-What-Keyboards-do-you-use-/7733b26493594f6fa2f89dec004a0e37#7733b26493594f6fa2f89dec004a0e37</link>
		<pubDate>Fri, 13 May 2005 15:01:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/66414-What-Keyboards-do-you-use-/7733b26493594f6fa2f89dec004a0e37#7733b26493594f6fa2f89dec004a0e37</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - More Sun interoperability</title>
		<description><![CDATA[<p>Sure there are, and MS's combined efforts are showcased here:<br>
<br>
<a href="http://browsers.evolt.org/?ie/solaris">http://browsers.evolt.org/?ie/solaris</a><br>
<br>
(I have never tried IE for Unix, but I have heard that it blows, besides being eons old of course)<br>
<br>
.<br>
..<br>
...<br>
<br>
What desktop users even use solaris? surely, only desktop users are really interested in IE, wmp and Office ... (if you read joel, you know who uses Solaris btw.)<br>
<br>
I have no idea about the installed bases of Solaris, the users on it, or Microsoft's ability to port WMP/IE/Office readily to other platforms (Solaris might not even be x86), but this just strikes me as ... so out there.&nbsp;What would MS gain?
<br>
<br>
If anything, it would only make sense to port SQL Server, and things like that. At least people running stuff like that on Solars are willing to shell out big bucks.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/65338-More-Sun-interoperability/9bb69b507c184f43a22e9dec00490d5c#9bb69b507c184f43a22e9dec00490d5c</link>
		<pubDate>Tue, 10 May 2005 14:00:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/65338-More-Sun-interoperability/9bb69b507c184f43a22e9dec00490d5c#9bb69b507c184f43a22e9dec00490d5c</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>2</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Question regarding AJAX</title>
		<description><![CDATA[<p>&quot;AJAX&quot; is only asynchronous on the client.<br>
<br>
If you want to make it async on the server too, look at how to push code. You can, forinstance &quot;stream&quot; a JavaScript file, by continually feeding empty spaces to the client, and, when you wish, stream a JS statement.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/64738-Question-regarding-AJAX/ba533a1dc766461a89239dea011f01c4#ba533a1dc766461a89239dea011f01c4</link>
		<pubDate>Sun, 08 May 2005 18:00:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/64738-Question-regarding-AJAX/ba533a1dc766461a89239dea011f01c4#ba533a1dc766461a89239dea011f01c4</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Ross... What is your avatar?</title>
		<description><![CDATA[<p><a href="http://www.toyvault.com/cthulhu/">http://www.toyvault.com/cthulhu/</a>&nbsp;?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/61230-Ross-What-is-your-avatar/0ea5eef80a774bc89c7b9dec00445a0f#0ea5eef80a774bc89c7b9dec00445a0f</link>
		<pubDate>Thu, 28 Apr 2005 05:33:20 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/61230-Ross-What-is-your-avatar/0ea5eef80a774bc89c7b9dec00445a0f#0ea5eef80a774bc89c7b9dec00445a0f</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Who needs another programming language?</title>
		<description><![CDATA[<p>My first thought is: have you ever written a (even small) language before? Small toy languages,&nbsp;with no idea or concept, can probably be done in a few weeks by a newbie. If it needs a (single) unqiue concept (but is still toy), then expect months. If you
 want fully fledged super language, well ... I'd give up there <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /><br>
<br>
Everyone will probably spout the &quot;go read the dragon book&quot;, which you also should. Writing compilers is a wonderful exercise, touching on MANY aspects of computer science. Plus, you get a gold star on your geek card.<br>
<br>
For books, some solid entry level books, are these:<br>
<a href="http://www-db.stanford.edu/~ullman/ialc.html">http://www-db.stanford.edu/~ullman/ialc.html</a>&nbsp;(I've only the first ed, which is solid)<br>
<a href="http://www.amazon.com/exec/obidos/tg/detail/-/0201100886/002-6508715-5124031?v=glance">http://www.amazon.com/exec/obidos/tg/detail/-/0201100886/002-6508715-5124031?v=glance</a>&nbsp;(which I heard was coming in&nbsp;a 2nd ed?)<br>
<br>
Now. Just for some loose comments, because it's nine in the morning, and I'm yet to go to bed ...<br>
<br>
1. <br>
<br>
It doesn't make much sense to make a language &quot;Windows oriented&quot;, or made for &quot;Linux&quot;. It's a language, it will run on x86, or PowerPC, or the Alpha (!). Focus instead on creating a interop mechanism, so that users of your language can leverage as much existing
 code (be it in the Windows API, or their own DLL's or whatever) as possible.<br>
<br>
Edit: Why not make your language run on the .NET runtime? It seems to be all the rage these days <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /><br>
<br>
2. <br>
<br>
In my ears, your wishes for &quot;easy-to-use&quot;, and &quot;easy to do low-level&quot; (hardware) seems clashing. I can only think of C&#43;&#43;, which solves this problem (it is possible to write nice looking C&#43;&#43; code, and then suddenly, assuming the enviroment supports it, reach
 through down to the machine).<br>
<br>
Languages which has beautiful concepts (functional, ml's type system, etc), would not live well with hardware programming. It simply doesn't mesh.<br>
<br>
I don't want to come across as elitists. But in my opinion, languages should not (and logically, cannot) do it all, for everyone. Classic example is SQL. Does some stuff well, and others not so well. But using SQL for what it was meant for, most will agree
 it's doing a good job.<br>
<br>
3. <br>
<br>
Programming is simply not easy. &quot;public static void main&quot; may seem obtuse at first, but after learning the basics, it's not anymore. All the keywords can be accounted, and explained away. Should it be called &quot;starthere main&quot; instead? Remember, that special-cases
 are at least one thing, which makes languages hard to read.<br>
<br>
But anyway. Programming is not easy. It cannot be made easy, by creating a language, whose surface syntax is easily read. The programmer must still juggle concepts and abstractions in his mind. You cannot write any language, which removes this.<br>
<br>
Of course, some languages allow a more natural approach to a problem domain, then others. But I'm not seeing that one language can give a natural approach, to all problem domains.<br>
<br>
4.<br>
<br>
Don't say internet.<br>
<br>
But anyway, good luck with it all. Language design is fun and very challenging.<br>
</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/60138-Who-needs-another-programming-language/e9f33cf89bb640afa72c9dea011dedee#e9f33cf89bb640afa72c9dea011dedee</link>
		<pubDate>Mon, 25 Apr 2005 07:18:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/60138-Who-needs-another-programming-language/e9f33cf89bb640afa72c9dea011dedee#e9f33cf89bb640afa72c9dea011dedee</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>20</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - QuickBoard?</title>
		<description><![CDATA[<p><blockquote>
<div>littleguru wrote:</div>
<div>It would simply be a clipboard that takes more then one item. I hardly miss that in Windows too. I don't understand why they don't implement it... Office has one, but you have always to have office running to use it...</div>
</blockquote>
<br>
<br>
There's something nice about having just one buffer.<br>
<br>
And this isn't like some Apple mouse argument, but rather, you can't SEE what you have in your buffer, so anything you keep in there will live as long as your shorterm memory will keep it alive (I'd guess some 30 secs max, more if you actively try to remember
 it ... ). Adding, say ten slots of copy/paste slots, adds a LOT of complexity to the user experience. First off, you cannot see what you have in your buffer. So you will not be able to tell what you have in the ten buffers. And which one had the text you wanted
 for that bit? Well, there is only one way to find out, to probe your buffers, and iteratively try your way forward. And when you want to copy something, you're faced with the additional burden that it must go into some buffer of your choice ... But which one?
 You don't want to erase your bank account number, since you'll need that in a while, but you don't need your moms phone number anymore ... but where did you put that? See where I'm getting at?
<br>
<br>
In the end, you must devise your own ad-hoc system, such as &quot;buffer one is the scratch buffer, two is for ...&quot; and so on. And really, you so rarely need this. I often use VIM, and it has 10 (or is it 26?) buffers, and I never use anything but the default buffer.<br>
<br>
Much better to view the buffer for what is it: a&nbsp;volatile&nbsp;store for information, designed ONLY to live as long as&nbsp;a users short-term memory lets it.<br>
<br>
If you consistently need to copy texts like that, I'm sure there are programs out there that will do that.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/53539-QuickBoard/6664e4d0d39d4b8d882c9dec003be60b#6664e4d0d39d4b8d882c9dec003be60b</link>
		<pubDate>Thu, 07 Apr 2005 01:07:21 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/53539-QuickBoard/6664e4d0d39d4b8d882c9dec003be60b#6664e4d0d39d4b8d882c9dec003be60b</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - No Postcounts</title>
		<description><![CDATA[<p>I only ever really think PC is a problem on immature boards. On boards with more reasonable people, it does several good things:<br>
<br>
1. shows which is more likely to be knowlegable, especially in the &quot;ways&quot; of the board<br>
2. it offers a reward, a high PC is a official stamp of authenticity. You've been around.<br>
3. It let's the community build a sense of fellowship, letting you recognize regulars, without having to know their screen names (some communities are rather large).<br>
<br>
As long as no further reward is given (rank, and stuff like that), people will hardly ever post-spam.<br>
<br>
And what are these &quot;n00b&quot; comments? Experienced posters, calling news for idiots? Based on their PC?<br>
<br>
I really don't think PC is anything bad. It's a small inobtrusive stat, that does not clutter anything up, plus it tells a great deal (it's not a certificate, but wanna bet there's a corrolation?).<br>
<br>
/ST's PC:2 <br>
<br>
<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/50630-No-Postcounts/3051a99cf881465bbaa29dec0038ff36#3051a99cf881465bbaa29dec0038ff36</link>
		<pubDate>Mon, 28 Mar 2005 08:00:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/50630-No-Postcounts/3051a99cf881465bbaa29dec0038ff36#3051a99cf881465bbaa29dec0038ff36</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>The Sandbox - DOS versions of: alias, cat, cp, ls, mv, rm, xargs - and desktop.bat</title>
		<description><![CDATA[<p><a href="http://unxutils.sourceforge.net">http&#58;&#47;&#47;unxutils.sourceforge.net</a> will also do most. native builds for win32, so no strange cygwin dependencies. the ls that ships above doesn't do colours, however this one does: <a href="http://utools.com/msls.htm">http&#58;&#47;&#47;utools.com&#47;msls.htm</a> just fyi</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Sandbox/DOS-versions-of-alias-cat-cp-ls-mv-rm-xargs-and-desktopbat/f9f51eb28d564dd4b48c9dea01031231#f9f51eb28d564dd4b48c9dea01031231</link>
		<pubDate>Fri, 25 Mar 2005 13:14:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Sandbox/DOS-versions-of-alias-cat-cp-ls-mv-rm-xargs-and-desktopbat/f9f51eb28d564dd4b48c9dea01031231#f9f51eb28d564dd4b48c9dea01031231</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - SOA Hype</title>
		<description><![CDATA[<p>I am the only one slightly amused by the fact that the editor of XML.com seems to think that SOA is hype? /new around here, hope I'm using the forum software correctly...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/49525-SOA-Hype/4ae1e3d64ad846119fc29dec00378b96#4ae1e3d64ad846119fc29dec00378b96</link>
		<pubDate>Wed, 23 Mar 2005 23:11:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/49525-SOA-Hype/4ae1e3d64ad846119fc29dec00378b96#4ae1e3d64ad846119fc29dec00378b96</guid>
		<dc:creator>SvendTofte</dc:creator>
		<slash:comments>18</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SvendTofte/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>