ktr
Hello
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Lap Around .NET 4 with Scott Hanselman
Apr 18, 2010 at 7:41 PMScott's talks are so great. They are both informative and incredibly entertaining.
IE 9: Surfing on the GPU with D2D
Nov 18, 2009 at 7:01 PMCharles, you did a great job on this video. I also really like the way it was filmed; it felt real ... as if you were in the room. Very cool.
Maoni Stephens and Andrew Pardoe: CLR 4 Garbage Collector - Inside Background GC
May 27, 2009 at 1:57 AMHahaha, "whiteboarding is fun... unlike waterboarding" lol Charles is awesome.
Niner Interview Questions: Rico Mariani - Visual Studio Futures (Interview is Complete)
Nov 18, 2008 at 9:31 PMIE 8: On the Path to Web Standards Compliance - ACID 2 Test Pass Complete
Dec 19, 2007 at 12:34 PMProgramming in the Age of Concurrency - Anders Hejlsberg and Joe Duffy: Concurrent Programming with
Oct 13, 2007 at 9:47 AMare there any plans to integrate this library into the actual language going into the future? that would be very cool.
maybe like:
parallel for (int i = 0; i < 10; i++)
// do something
that would feel very natural, and i don't think it would be that much of a leap. LINQ queries should be automatically implemented as parallel, just because of the nature of a query - there should be no expectation of sequentiality.
Expression - Part Two: Design
Dec 04, 2006 at 9:36 PMYou're probably thinking about Sparkle aka Expression Interactive Designer aka (what is now) Expression Blend.
This is still part of the Expression suite, but its a completely different application.
I know, those names get confusing
btw.. this thing looks soooo hot. I want it NOW! [C]
Anders Hejlsberg - Lang.Net 2006 Compiler Symposium
Sep 21, 2006 at 3:01 PMHas anyone here tried the bits out? I'm loving it. I wanna start using it in projects now! [C] lol..
It's amazing how simple it's become.
// from this (C# 1) ----------------------------------
button1.Click += new EventHandler(button1_Click);
// ...
void button1_Click(object sender, EventArgs e)
{
doSomething();
}
// to this (C# 2) ------------------------------------
button1.Click += delegate (object sender, EventArgs e)
{
doSomething();
}
// to this (C# 3) ------------------------------------
button1.Click += (sender, e) => doSomething();
// i think you can do that ^ ... lol
Awesome work Anders & team!
Don Syme: Introduction to F#, Part 2
Sep 15, 2006 at 10:39 AMProgramming in the Age of Concurrency: The Accelerator Project
Aug 25, 2006 at 11:23 AMwatching it now..
12:35 - hahaha I love Charles
See more comments…