.NET seems to make everything easier
Back when I used Overture, I always thought it was kind of a cool security feature where you had to type in letters in a graphic that is, theoretically, not machine readable. This deters automated attacks. It occurred to me that'd be a nice feature for the forum registration.
I never really played with anything graphical in .NET, aside from reading a little of the Managed DirectX 9 Kick Start. I also did some image resizing on the crappy little game site I did. From what little I knew about stuff in the Drawing namespace, I figured it couldn't be that hard to generate a GIF out of an HttpHandler with some text on it.
I was right. It's like a dozen lines of code, and that includes code to draw some random lines on it and move the characters around. It generates the text and saves it to Session.
Once you can find a good example, or encounter some of the better documentation, it's like you can do anything on .NET. What's even more exciting is that once you learn one area, you adapt quickly to other areas. I'm an ASP.NET guy, but Windows forms are easy enough. Graphics aren't that hard, and after reading a little of a beginning game programming book, that's not hard either.
I'm generally too busy creating things to get as academic as a lot of bloggers do, but it's fun to see that new stuff can come so easily in .NET.