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.
The Java 6 API reference.
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.
c/posix: man pages
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
For years I have fallen back on http://itr.org/ for their wonderful Javascript F.A.Q.s
For asp I have fallen on the habit of going to google, typing the object name and 'asp', from there I find http://w3schools.com/ and http://4guysfromrolla.com/ to have the best code samples and descriptions of use. However, I hate navigating both of them so Google has become my default doorway into them.
I'm not ashamed to admit I hit http://experts-exchange.com/ as a last resort.
ed duval the very last person
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
Use www.codeproject.com
The most annoying thing is having to go on the web to find a doc. PHP is horrifying enough and then you read the docs and find all the exceptions to whatever rule (and the bugs) in the comments.
For Perl:
perldoc -f [function name]
Or perldoc [Module::Name] (also man Module::Name works on most Linux distros)
Also on Linux, 'man perl' gives a list of a whole ton of man pages that give you specific information on regexes, objects, references, syntax, variables, etc.
And if you have to have it in a pretty web interface it is indeed all online
(module docs are as well)
Say what you want about Perl but it has tons of useful modules and it is very well documented.
The Anti-Blog
For the .NET languages, such as XAML, C#, and VB.NET, I'd have to say that for general data on how to use the function, MSDN is a great resource, between their forums and MSDN online library.
Google's also a great resource.
For Common Lisp, the Common Lisp HyperSpec is hard to beat, though at times a book like Practical Common Lisp can be a little more useful.
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.
Kinda obvious (no more obvious than php.net being the best reference for php I suppose), but: http://docs.jquery.com/
SICP looks interesting, but is it not available in some format more portable than html? No PDF?
-- i am jack's amusing sig file
C++ FAQ Lite is an excellent site for C++ information.
For Ruby as well as Ruby on Rails, I like http://apidock.com/. It's the first Ruby/Rails doc site that I've seen that has the ability to contribute, rate contributions, etc.
It also covers when methods changed by tags, so you can see that a method that's giving you trouble was changed the last version of rails, etc. Very intuitive interface.
-knewter
http://gotapi.com/
They're always adding new languages, and it only takes up one tab. This is wonderful when I'm bouncing from Python to Perl to Javascript to CSS to HTML to MySQL to...
You get the point.
Of course I should have JFGI.
http://www.google.com/search?q=sicp+pdf
-- i am jack's amusing sig file
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
My language of use for the past 3 years, OpenLaszlo has brilliant doco right there on the site. With a reference guide that lists all the objects, methods and events with live, editable examples for many.
And then if the documentation doesn't cover what you want, there's the great forums which have helped me out of plenty of sticky coding situations.
The doco was what drew us to OpenLaszlo in the first place. Well, that and the fact it's open source helped a lot!
Java:
http://java.sun.com/javase/6/docs/api/
I do a little happy dance in my head every time this site helps me out. it's a bit intimidating until you use it, then it becomes the best java reference you could ask for.
Ruby:
use fxri. in windows, it's not just a live command-line style interpreter, it has a dictionary of relevant terms to search through to boot. it's like having a terminal inside of a reference book, and you shouldn't pass up the opportunity to try it out.
php:
http://www.php.net/docs.php
this one I use every time I use php. Not only does it tell you what everything does, but it tells you what's bugged, and how, and that way you can work around what would otherwise be a nasty problem.
I use these constantly at my job (fxri is the only calculator I know of that can calculate the factorial of 6022, so I use it for all my calculations!) and I hope you find them just as useful as I do.
If you can read this, I forgot to post anonymously.
Hey! Experts exchange isn't so bad once you realize you don't even have to pay to get answers.
Eg. http://www.experts-exchange.com/Programming/Languages/CPP/Q_22118650.html
Skip through the crap in the middle to make you think there's no actual solutions, and the solutions appear at the very bottom. Good work.
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://msdn.microsoft.com/library
For .Net stuff (similar to php.net)
http://msdn.microsoft.com/en-au/library/w0x726c2.aspx
Check the class library (or search)
Particularly the .Net Framework Library
The other option is to install the Visual Studio library press F1 on an intelisense item ie
System.Web.UI.TextBox and the object pops up in a help window (like back in the good old days of Borland C/Pascal).
ASP Specific (AJAX etc) check the "How do I"
www.asp.net (the learn tab has vids)
Silverlight
www.silverlight.net (vids under learn)
http://msdn.microsoft.com/en-au/library/bb404700(VS.95).aspx
Specifically search.cpan.org.
Sometimes I browse around to see what I might come up with for new modules. The documentation is awesome because not only is it formatted, but you also can link directly to a specific version, see the installation test report for various OSes for that version, see submitted bugs, other comments and module dependencies.
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.
I generally like http://abap.wikiprog.com/ for ABAP most, though SAP's own SDN works fine most of the time.
Life is great! (as told by Lady Susan)
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
Mysql has manuals online, as does postgresql and Oracle.
http://diveintopython.org/
a neat and tidy guide, after which u'll end up loving snakes..
na hawedere!
may the alps be with u's
Oracle: asktom.oracle.com for technique/problem solving with SQL.
technet.oracle.com or tahiti.oracle.com for documentation.