Best Reference Site For Each Programming Language?
Howling writes "I've been a PHP programmer for a few years and after taking a trip through many sites Ive learned that www.php.net is probably the most complete source when looking for information/documentation. I have been trying to find similar sites for every other language (Java, perl or ASP, for instance) without equal success, though. I ask: what is the best documentation/reference site for your preferred programming language?"
cpan.org and python.org
just google: java X class where X is whatever you want. Top results will be sun java docs which are complete and have links to parent and descendent classes, implemented interfaces, etc.
for asp: asp.net. has very good tutorials. for reference use msdn library.
php: php.net
coldfusion: adobe.com
html, css, javascript, sql: w3schools.com
python: python.org
c/c++: devshed.com
java: java.sun.com
Anything else: my brilliant co-worker.
One of the best tutorials and references for Tcl is the Wikibook on Tcl programming.
Indeed, it's one of the best programming texts I've seen in any language.
Object Pascal reference & C reference.
Amnesty International
Documentation: peldoc.perl.org
Community: perlmonks.org
Articles: www.perl.com (O'Reilly site)
I have found the perl community to be the most open, supportive and cohesive group of all the languages I work with. Right now I am working with PHP, perl and C#, and perl is by far the easiest language to get help and correct information. I can find tons of info on the other languages, but the information isn't always the best quality.
Good luck with your search.
http://cprogramming.com/ - best site for beginners in my opinion.
Perhaps this a question for Stack Overflow?
-fragbait
For C, use the most holy book:
K&R
(aka "The C Programming Language" by Kernighan and Ritchie, http://cm.bell-labs.com/cm/cs/cbook/)
-proidiot
http://www.gotapi.com/ It's got all the good reference sites in one. You click the reference site, it adds a tab to the gotAPI webpage. It has a really good search box. No signup required. Best all-in-one reference ever.
SNOBOL - http://www.snobol4.org/
Logo - http://el.media.mit.edu/Logo-foundation/logo/programming.html
FORTH - http://www.phact.org/e/forth.htm
Prolog - http://www.logic.at/prolog/faq/faq.html
Algol - http://www.algol68.org/
Lucid - http://www.haskell.org/haskellwiki/Lucid
PL/I - http://www.users.bigpond.com/robin_v/resource.htm
If you use Eclipse you can configure the javadoc URL in your JDK configuration and pull up the pages from within the IDE. VERY handy.
C++ FAQ Lite is an excellent site for C++ information.
Lua:
Official website: http://www.lua.org/
Direct link to manual: http://www.lua.org/manual/5.1/
Lua community: http://lua-users.org/wiki/
Homonyms are fun!
You're driving your car, but they're riding their bikes there.
Quick Ref
QuickRef currently includes: C, C++, CSS, HTML, HTML DOM, Java, JavaScript, MySQL, Perl, PHP, Python, and Ruby
The official site is always a good bet. But I also make it a habit to memorize the url to the rdoc of whatever I'm doing:
ruby-doc.org/core
api.rubyonrails.org
Beyond that, it's more about the framework. For example:
ramaze.net
sequel.rubyforge.org
Beyond that, there's the source (and IRB + tab-completion), and for the really tough questions, the ruby-talk mailing list.
Can't really recommend the jQuery docs, as they're down half the time, the UI is lacking some critical features, and it doesn't seem to quite work in Konqueror. For a library claiming to be cross-browser, you should at least have your docs be cross-browser!
Don't thank God, thank a doctor!
gotapi currently includes many many more and has a nice ajaxy interface.
For VBScript I tend to use google to find specific things. I haven't found one site that really covers enough in one place. Most people will write off VBScript being that it is Microsoft and Windows is evil and all that.
Seeing as I use VBScript mainly for natively being able to pull information from LDAP directories from a Windows XP machine I must at least defend it.
MS Scripting Guy, DevGuru, 4GuysFromRolla, and last but not least ActiveXperts.
It depends if I want info on WMI, LDAP, or general WSH Objects.
For VB or MSVC++ its MSDN.
The main source of information just is.
*Ducks*
Cheers, Chris
http://www.regular-expressions.info/
I'll just leave this here.
Me lost me cookie at the disco.
Would you actually rather read the pdf, which can't be reflowed, instead of html, which can be reflowed, if both would be available as a single file download?
At least on mobile devices such as the Nokia N810 I prefer reflowable formats. Actually I prefer them on the desktop also.
Almost 300 replies and no mention of Objective-C ?
developer.apple.com - Apple documentation, good reference but sometimes lacking in details
cocoadev.com - Cocoa wiki
cocoabuilder.com - Cocoa mailing list archives
C
The GNU C Library
http://www.gnu.org/software/libc/manual/
C++
Standard Template Library Programmer's Guide
http://www.sgi.com/tech/stl/
Boost C++ Libraries
http://www.boost.org/doc/libs
Java
Java(TM) Platform, Standard Edition 6 API Specification
http://java.sun.com/javase/6/docs/api/
Perl
Perl version 5.10.0 documentation
http://perldoc.perl.org/
Python
Python Library Reference
http://docs.python.org/lib/lib.html
For learning C and C++, I recommend these books:
Kernighan, Ritchie: The C Programming language
Kernighan, Pike: The Practice Of Programming
Koenig, Moo: Accelerated C++: Practical Programming by Example
Sutter, Alexandrescu: C++ Coding Standards