views:

374

answers:

17

This site is pretty good but I'm wondering what other resources are out there. I guess it's probably pretty language dependent but in general I have not found any other sites with a good wealth of general programming knowledge where I can just post a question and someone will actually answer it. Especially when you're posting some sort of question or problem that spans multiple technologies. Also I cannot tell you how many times someone has asked the same (or a very similar) question as mine and I find a Google link to that damn "Experts Exchange" site where they hide the answers; die Experts Exchange!

+1  A: 

SQLServerCentral is fantastic for DB stuff

botty
+8  A: 

Generally codeproject, or just a straightforward google search.

Andrew Rollings
For me (as a .NET developer) it's google first then codeproject.
Nifle
Yeah... same here actually. Typically google will lead me to codeproject :) (or some random blog)
Andrew Rollings
+4  A: 

http://www.google.com and this one. StackOverflow has proven to be a great tool in my arsenal. Having started a new job (working mosly on the DB side of things) I've come to rely on this website, but google is the other one I frequently pull up.

madcolor
+8  A: 

Usually, Google. 95% of what I am looking for has usually been asked before. I end up landing on various blogs. I never realized how many development blogs are really out there. I used to prefer Usenet for questions and answers, but that is just showing my age.

joseph.ferris
+1  A: 

When I first started developing FF Extensions, I made heavy use (although mainly as a lurker) of Mozillazine forums. Great people, great knowledge.

In regards of Experts Exchange, I hate to state the obvious, but they do have their answers all the way at the bottom of the page, as long as you come from Google. That's what you meant by "hide the answers", right? I believe Chrome didn't work like that but it seems like they recognize Chrome's user agent too now.

MK_Dev
A: 

Google, Google Code Search and "Google Groups", Clusty to narrow it down when there are too many results and sometimes Yahoo can find other or newer results.

Rob Kam
+2  A: 

For dotNet questions you can't beat http://www.searchdotnet.com/default.aspx a custom google search maintained by Dan Appleman.

Booji Boy
+1  A: 

I tend not to ask a lot of questions on sites, but I do answer them on Code Project. That's a really good site, and some of my other CP friends come here to answer questions - in fact, they were the ones who got me into SO in the first place.

Pete OHanlon
+1  A: 

Google Code Search is often useful.

titaniumdecoy
+1  A: 

I almost always start with Google. Sometimes I go directly to Code Project. They tend to feature lengthy tutorials with sample code. When I was new to ASP and ASP.NET I used http://www.4guysfromrolla.com/ but I don't need that anymore. But these have worked for me only because the question I wanted to ask had already been asked (by someone else) and (luckily) answered as well.

I haven't had much luck with the news groups, mostly cause the volume of posting is so high that unless your question is answered in the first few hours, it rapidly gets pushed down where no one will ever see it again.

Jim Davis
+2  A: 

I use Experts Exchange from time to time. Don't let the site fool you, personal accounts are free.

sli
A: 

Forums at Code Project

Whytespot
+1  A: 

Honestly, Stack Overflow. Barring that, wherever Google takes me.

Bill Echo
A: 

I find that it's helpful to use the mailing lists of the tools that you're using (if your question is for a specific tool). Mailing lists tend to have a community directly involved with the tool and also usually get responses from the tool developers themselves, which is very useful.

Mailing lists are usually indexed on the web, too, so you don't necessarily have to subscribe. Nabble is one such indexing site.

Rob Hruska
+1  A: 

I frequently run into experts-exchange while doing web searches and usually startle coworkers with foul language when it happens. However, here is a trick I use:

Install web developer (plugin) for Firefox. When you have the bad luck to need an answer from experts-exchange, disable CSS completely. They're using CSS to hide the answers and disabling it will give you some plaintext. You can search for "accepted solution" to get to it, if there is one for the question.

As an aside, I am extremely happy to support SO because of the completely different approach to making Q&A and knowledge accessible and free.

JYelton