vote up 0 vote down star

Well, I've asked the same question here 2-3 times in 2-3 different ways and gotten no response. So, where else should I look?

More generally, what other online resources do you use (beyond SO and Google) when trying to figure something out?

I'm particularly interested in Mac and C/C++, but I'll leave it open.

flag
1  
Brain 1.0. Works fine so far. Dead wood in case one has to look something up. – Leonidas May 20 at 15:35
Find a new Platform ;) – Matthew Whited May 20 at 15:35
3  
"Well, I've asked the same question here 2-3 times". That's a bad habit and will likely lead to the closure of the questions. – lothar May 20 at 15:48
Did you try putting a bounty on the question? – Patrick McElhaney May 20 at 16:37
@Lothar I didn't actually ask the same question. But different parts of the same question, from different angles... – Brian Postow May 20 at 17:40
show 2 more comments

closed as not programming related by TheTXI, Daniel Lew, sylvarking, dmckee, Kent Fredric May 20 at 20:22

7 Answers

vote up 10 vote down check

When google can not help me, at some point, I have to realize that I am doing one of two things:

  1. Attempting to do something so advanced and amazingly brilliant that no one has done it yet. There are no blog posts or tutorials, so google will be of little use.
  2. Attempting to do something so incorrectly or so far out of my depths that I do not know how to correctly phrase the question or even where to begin to look.

In both cases, it is time to look at the path that led me where I am and see if I took a wrong turn somewhere...

link|flag
vote up 1 vote down

When you go beyond generalist sites like Stack Overflow most development communities have specific resources where you can find the most knowledge. For example, Cocoa has the Apple cocoadev mailing lists, and the unrelated but also useful CocoaDev wiki.

link|flag
vote up 0 vote down

TekTips is ok - and I used to get help there before SO.

www.tek-tips.com

link|flag
vote up 0 vote down

For standard C++, I especially like http://www.cppreference.com/wiki/

It is in a good place in my bookmarks.

link|flag
vote up 4 vote down

I use other developers that I work with. There is a vast wealth of knowledge there. Since they are usually using the same tools/platform as you, there is often a bunch of idiosyncratic, hard-won information that would be difficult to extract using Google.

Of course this assumes you are not a lone developer. I have top say, once I started working with a team, my knowledge skyrocketed. Pick a good company, though :)

link|flag
I'm in a 7 person/2 engineer company, so not much help there... – Brian Postow May 20 at 17:43
vote up 1 vote down

Google is the first hand tool. It the answer I'm looking about is here (on SO) it will show up in Google's results.

link|flag
vote up 1 vote down

Not MAC (but since you left it open), Microsoft Developers Network (MSDN) has excellent online resources for Visual Studio developers. Not just online reference but "how-to" video-casts, white papers, etc. The biggest problem there is information overload.

Also, Code Project has a lot of articles and samples for many platforms, languages, etc.

link|flag
There is a LOT of information there, for sure, I just wish that it were more accurate and up to date. Some of the examples and APIs (particularly for C/C++) are just flat out wrong. When microsoft cant put out an example that works with their own libraries and compilers, what chance do we have?? – Shane C. Mason May 20 at 15:41
A lot of those articles are written by the community. They update/cleanup/verify enormous chunks of it in batches, but with the sheer volume of articles to get through, it will take a while. – devinb May 20 at 15:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.