vote up 21 vote down star
42

Inspired by this SO question, that asks your favorite programming book, which is your favorite book that is available for FREE download.

While I love to buy and read many of those books, I am now looking for books that i can RIGHT NOW download to my system, which I can read while traveling, during waiting for check-in etc.

Here goes my list (all linked to contents page):

Structure and Interpretation of Computer Programs

Dive into Python

Building skills in python

Note: Language-Specific and Language-Agnostic books, both welcome. Preferably link to the contents page, and provide your review, how it has been useful to you.

Duplicate Questions:

flag
Would you like it if we also mentioned books that describe general approach to developing software without any reference to programming languages? – Petros Apr 3 at 8:39
I edited my post to provide a link to the book online – Charlie Flowers Apr 3 at 8:39
Yup, of-course language-specific and language-agnostic books, both welcome. – becomingGuru Apr 3 at 8:43
Do 'beta' books count? (those that will eventually only commercially available)? – Sergio Acosta Apr 3 at 9:45
Sergio: Yes, so long as the beta books are still allowed to be circulated freely. – becomingGuru Apr 3 at 10:15

14 Answers

vote up 4 vote down

Real World Haskell

link|flag
vote up 9 vote down

Practical Common Lisp

link|flag
vote up 9 vote down

Bruce Eckel is a great writer and you can legaly download most of his books. I love his "Thinking in C++" and "Thinking in Java" books. Too bad he didn't finish the "Thinking in C#" book. You can find them here.

Also the book that SO unofficially awarded as the best book to improve your programming - Structure and Interpretation of Computer Programs can be found freely.

link|flag
His "Thinking in C++" was instrumental to me about 15 years ago. Before I read it, I mistakenly thought I understood C++ only to get eaten alive on tech interviews (twice). Then his book turned on the light for me. – Charlie Flowers Aug 28 at 1:27
vote up 3 vote down

Dive into Python and Django Book

link|flag
vote up 4 vote down

Best free scrum and xp book

link|flag
1  
glad to see you share my opinion of those who use SCRUM – Neil Butterworth Apr 3 at 9:38
vote up 11 vote down

Foundations of Programming Cover

Foundations of Programming By Karl Seguin is great!

Its a wonderful introduction to TDD, Mocking, DI, and ORMs for .Net types.

link|flag
1  
not my favourite this is definitely worth a read. It's small and quick one as well. – dr. evil Apr 3 at 9:02
has a few nice things; the fact that is is under 80 pages is probably the best; a good read. – Bogdan Gavril Apr 4 at 15:09
vote up 7 vote down

Getting real by 37signals

Disclaimer 1: It is not exactly a "programming" book, but IMHO I think that programming has many aspects and this book could be useful to someone together with all the technical aspect of programming.

Disclaimer 2: The free version is not in a PDF but in HTML and I am not sure if you can take it with you in disconnected scenarios. Maybe with an off-line version of the pages.

How it can help you:

Generally, it has many useful ideas, but I really like how it teaches you to focus on things that matter and get the job done without wasting time on things that don't matter.

It covers topics such as (in no particular order):

  • Priorities
  • Specs
  • Feature selection
  • Process
  • Interface design
  • Meetings
  • Code
  • etc.
link|flag
Its a good book. But is it free? I hade to buy it. :( – Emil C Apr 3 at 20:09
The online HTML version is free, as I describe in Disclaimer 2. – Petros Apr 3 at 23:10
vote up 1 vote down

C# Language Specification 3.0 - all the wisdom in the universe in one single book!

link|flag
How the hell can one manage to refer to a Spec on a word file? – becomingGuru Apr 3 at 9:38
Well, I concur, the format is certainly not ideal. – DrJokepu Apr 3 at 10:03
The ECMA C# spec file is a pdf - tr.im/mpUf – AB Kolan May 26 at 11:55
vote up 3 vote down

Thinking FORTH, Leo Brodie. One of the first texts about refactoring and similar techniques.

Higher Order Perl, Mark-Jason Dominus

link|flag
+1 for thinking FORTH – Dan Apr 3 at 9:55
vote up 0 vote down

Sun's Java tutorial is really quite spiffy and well done.

link|flag
vote up 1 vote down

It was done here with lots of good links. ;)

free-programming-ebooks

link|flag
vote up 2 vote down

Eloquent JavaScript ain't your average JS book. I'd always heard that JS had more to it than its cargo-cult programming web roots, but this is the book that convinced me of it.

Topics include:

  • data structures
  • functional programming
  • graph search algorithms
  • object-oriented abstraction
  • simulating modules using function scope

It's also the only significant body of text I've found on JS that doesn't conflate the language core and the DOM, which I think is a big win.

The book includes an in-page interactive syntax-highlighted console and editing box for trying stuff out as you read, exercises to keep you on your toes, and the OOP chapter even lets you build a little terrarium simulation with insects you can code yourself.

link|flag
vote up 0 vote down

The Art of Assembly Language Programming

link|flag
-1 -- Art of Assembly went downhill fast when the author created his 'HLA' library to abstract assembly code. sigh – Erik Apr 6 at 18:50

Your Answer

Get an OpenID
or

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