Selection of books and tutorials to get started developing

C++ Programming
  • Accelerated C++ Practical Programming by Example (Book)
  • Thinking in C++ (Book)

Perl Programming
  • Advanced Perl Programming (Book)
  • Learning Perl (Book)
  • Mastering Algorithms with Perl (Book)
  • Perl For Sysadmins (Book)
  • Perl in a Nutshell (Book)
  • Perl Cookbook (Book)

Python Programming


Shell scripting

Feel free to add more items to the list.
(The moderators can obviously edit my post as needed)
 
Do not forget about cookbooks, if you just need an answer to question:

* Shell Scripting Cookbook
* Perl cookbook
 
The C Programming Language - By Brian W. Kernighan and Dennis M. Ritchie

is quite a good C book (and by the makers of C themselves!).

As I find more, I will post. :)
 
C programming:
The C programming language 2nd edition
C programming: A modern approach 2nd edition

Others:
Advanced programming in the Unix environment
The Unix programming environment
 
I just found out I can't edit my posts :(
Anyway, if an admin can fix it, I will add your book suggestions to my 1st post above. Thanks for your suggestions, keep posting ;)
 
Fast CGI Books in UNIX/C/C++ Platform

Hi Friends,

Am looking for BOOK that is exclusively for
FastCGI web development in UNIX (of course FreeBSD)
using C or C++

Please let me know, if any one have read such/related books

Thanks in Advance
 
C++ -

The C++ Programming Language - Bjarne Stroustrup

If people really want a bang for their buck, I suggest they wait until C++0x becomes standard. But this book should cover everything from top-bottom about C++. This book is not recommended for beginners.
 
susanth said:
Hi Friends,

Am looking for BOOK that is exclusively for
FastCGI web development in UNIX (of course FreeBSD)
using C or C++

Please let me know, if any one have read such/related books

Thanks in Advance

Don't think there's much if anything.
For FastCGI, a good reference would be the sapi/cgi/fastcgi.* in the PHP source. When you have the framework to be run as fastcgi daemon in place, all that's left is CGI itself, of which there are plenty of books.
 
Design Patterns by the Gang of Four (GoF; Gamma, Helm, Johnson, Vissides) is an excellent read for any aspiring OO programmer.

Fowler's Refactoring and Hunt & Thomas's The Pragmatic Programmer is worth reading as well.
 
Back
Top