Since I started working I go to StackOverflow for everything. But as we all know it is good to have many ways to skin a cat. where is your other favorite website to visit for programming Reference?
-
6What are these "other places" you speak of? – Daniel F. Thornton Jul 17 '09 at 18:24
-
I know this is a dupe, just can't find it... – Matthew Jones Jul 17 '09 at 18:25
-
To Matthew Jones - If it is... oh well, I was just curious. – MrM Jul 17 '09 at 18:27
-
You're safe. Don't have that power and can't find the dupe anyway. – Matthew Jones Jul 17 '09 at 18:28
14 Answers
Um, google?

- 34,865
- 12
- 85
- 147
-
+1 LOL. I wish F1 in VSxx went to google....I guess I could remap it, but... – kenny Jul 17 '09 at 19:36
-
2Nice idea, actually. On some dev-systems pressing F1 in VS (usually just by accident) will result in an extra coffee break. Can't some custom addin hook into this F1-key-down? – Simon D. Jul 17 '09 at 19:56
When working on Microsoft products, msdn is very valuable.

- 38,903
- 3
- 77
- 117
-
Agreed! The MSDN is my bible, it's an excellent resource for anything Microsoft. – Zensar Jul 17 '09 at 19:20
-
2MSDN can be good but other times it can be horrid; you sometimes look up a property/function and it just has a page with the function in codebox. How useful. – Callum Rogers Jul 18 '09 at 19:00
Google is a great resource obviously. But with google knowing how to ask the right question is half of the battle.
And a lot of times documentation comes with the selected technology you are working with.
Recently I've fallen in love with the Apple Developer Center for all the great guides, and documentation they provide.
Also MSDN for .net.
For Flash the Documentation is good, and actionscript help and tuts gotoandplay. (Game specific-ish)

- 637
- 6
- 9
Well...

- 3,687
- 2
- 28
- 41
-
w3schools is __not__ the W3C, and is not associated with the W3C in any way. It's also home to some truly atrocious "tutorials", its material on JavaScript in particular being shockingly bad. The W3C is at http://www.w3.org/ and publishes the definitive specifications of HTTP, HTML, XML, DOM, CSS, XSLT, etc etc. – NickFitz Jul 17 '09 at 20:55
-
-
1I usually start with the relevant documentation: for example almost anything to do with PHP or mySQL can be worked out from their docs and a bit of experimentation; similarly for W3C specs. For MS stuff, the MSDN library is good, if confusingly arranged. Judicious Googling usually results in a few blog posts about people finding practical solutions to real-world problems, often with interesting and/or innovative techniques (though one has to exercise sensible judgement in assessing their worth). If I really need to get deep into something new, there's almost certainly a good O'Reilly book :-) – NickFitz Jul 17 '09 at 21:53
When I start using a framework / library, I always have a look at how their documentation is ; if it's looking fine, it becomes a "reference" I tend to check before anything else. (Well, that's when I'm not one of those who whoose using that framework/library ; else, quality of the documentation generaly is a criteria of choice)
For instance, in PHP, you just have to go to php.net/function_name
(like, for instance php.net/in_array) to get documentation of a function -- that's really useful.
(And there are often user-notes at the bottom of the page, which can be quite helpful to help solving common problems)
Then, google is often my friend ^^

- 395,085
- 80
- 655
- 663
Twitter, I follow a bunch of fellow programmers and muckity-mucks in the programming world.

- 25,181
- 9
- 71
- 121
Not a website, but as a general series of succint reference books, I like the O'Reily "Pocket Reference" books.

- 5,534
- 7
- 34
- 34
http://code.google.com/, for everything else there is always Code Complete!

- 2,221
- 2
- 17
- 34
Gotapi.com is so important. It's got online documentation for many languages with a slick search system. Try it out.

- 9,506
- 6
- 36
- 53
For technical questions the "official" IRC(Internet Relay Chat) channel of the technology/language I am using. I have learned so much from IRC it is unbelievable.

- 916
- 8
- 17
I go to the official programming reference/manual of X. Like PHP -> php.net, jquery -> docs.jquery.com, rails -> api.rubyonrails.org.