It's fun somehow … I look for a very specific issue with .NET currently, namely how to get Unicode output on the console. Searching turns up the following (in decreasing order of frequency):
While the result does not please me that much (because I like Unicode and can't really stand applications that still live in 1960), what bothers me more is that there is so few helpful stuff on the web.
Now that I complain about it I have to admit, I read Joel Spolsky's blog as well as Jeff Atwood's. Both mentioned and founded stackoverflow.com, for exactly the same reasons. Now I just need to remember that the site is there and go there instead of Google when I need help. Might take a while to change my habits there.
UPDATE (2008–10–26 00:48): I found out how to use
Unicode on the .NET console: Just use UTF-8 as output encoding. I was so
naïve to assume since .NET strings use UTF-16 and Win32 uses UTF-16 Console.OutputEncoding should be UTF-16 as well. I was
wrong and didn't even bother to try UTF-8.