Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Looking for books for casual reading which will help me increase my programming competence. I do not want books related to any specific field/domain/language or books with philosophy about "Software Development", "Managing", "Testing", etc. Although even if a book is tied to a particular language/domain but is a good read, it will do.

Please suggest....

share|improve this question
1  
A good start: stackoverflow.com/questions/1711/… – Vinicius Pinto Jul 23 '10 at 17:44
Or try reading the questions tagged books: stackoverflow.com/questions/… – Richard Morgan Jul 23 '10 at 18:21

closed as not constructive by AakashM, Bill the Lizard Sep 30 '11 at 11:27

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

10 Answers

up vote 2 down vote accepted

The Practice of Programming by Kernighan and Pike. It's a wonderful read. It doesn't confine you to a single language. They describe concepts in C, Java and awk.

share|improve this answer

The book : Head First Design Patterns

share|improve this answer
2  
Exactly the one i was going to recommend. – rebelliard Jul 23 '10 at 18:13

Code Complete would be my recommendation.

share|improve this answer

I would recommend you to read a book about design patterns (e.g. the GoF book) and a book about algorithms (my favorite here is: Algorithm Design). Both will improve your programming skills and will be useful in every project.

share|improve this answer

The Productive Programmer: Theory in Practice

pretty decent read

share|improve this answer

Gang Of Four's classic Design Patterns

share|improve this answer

I just read 97 Things Every Programmer Should Know. This is definitely not an amazing book, but it covered a lot of "obvious" ground that may not be obvious to a beginner.

I also found Joel on Software entertaining (a collection of some of his blog posts).

share|improve this answer

When I wanted to learn the basics of the web I picked up a standard HTML book, a Javascript book and the XML blackbook.

When I wanted to learn Java I picked up the HeadFirst series of books (i.e. Head First Servlets & JSP).

When I moved from Java to .NET I picked up the APress books (WPF Pro, WCF, C#, ASP.Net 3.5, F#, etc). Mostly, they're written by Matthew MacDonald and are very easy to follow and use.

If you're purchasing them from a website like Amazon, the reviews there are generally spot on with what you'd get as far as reviews here.

Though, if you really wanna learn a language and it's code you should look into downloading the API library and looking at examples/source code. Nothing beats tinkering around with source code to see what changes effect what.

share|improve this answer

Programming Perl from O'Reilly (The Camel) is a really good read, and it teaches you programming, too!

To qualify: It's written by Larry Wall, the architect behind the language itself, and he is a zany guy. The book is interesting and fun to read, the examples are easy to follow (and generally funny). If you've never touched Perl before, it's also a lot of fun to program in. Just imagine C on LSD, and you end up with Perl.

share|improve this answer
Also, while it IS technically a guide to Prolog, amzi.com/AdventureInProlog/advfrtop.htm is a great exercise in changing how you think about certain problems. Prolog is a great language to learn as an intellectual exercise. – Andy Jul 23 '10 at 18:17

The Pragmatic Programmer, by Andrew Hunt and David Thomas.

share|improve this answer

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