up vote 129 down vote favorite
179
share [g+] share [fb]

I am a self-taught programmer and I do do not have any degrees. I started pretty young and I've got about 7 years of actual programming work experience. I believe I'm a pretty good programmer, but I admit that I have not played much with algorithms or delved into any really low-level aspects of programming such as how compilers work.

I have worked with other programmers with and without degrees. Some were good and some not; having a degree didn't seem to make any difference as to which pot they fell into. Since then I've come to realize that it does depend on the school where the degree is obtained.

Some people suggest that you really should get a degree; that there are things you'll learn in the process that you won't learn in the real world. Of course there is personal growth and discipline learned from completing a task of that magnitude, but let's just concentrate on the technical knowledge.

What would I have been taught in a GOOD CS course that would aid me today and what can I read to fill the gap?

I've heard the book "Algorithms" mentioned and I plan on reading that. What other books would you recommend?

Edit: Clarification on 'actual work experience': Have worked for 2 small companies on teams with fewer than 5 people. About 2 years experience with Perl, Python, PHP, C, C++. About 5 years experience in Java, Applets, RMI, T-SQL, PL/SQL, VB6. 7 years experience in HTML, Javascript, bash, SQL. Most recently in Java designed and helped build an N-tier Java app with web frontend and RMI.

link|improve this question
show 4 more comments
feedback

46 Answers

1 2
up vote 68 down vote accepted
  • Books on theory. Scheme, Lambda functions.
  • Books on Algorithm Complexity - O(N) O(n^2)
  • Books on NP-completeness - Knapsack Problem and Traveling Salesman
  • Books on Algorithms and Data Structures - AVL Trees, B-Trees, Red-Black, Graphs, Shortest Path
  • Books on C, eventually up to something like Deep C Secrets which I just finished, and loved
  • Books on Compilers, so you at least understand the different passes
link|improve this answer
30  
I agree with some points, but overall this is IMO a little too academic. – Mr. Brownstone Jan 5 '09 at 23:00
1  
Deep C Secrets is one of the great books. I'm glad someone else enjoyed it. – Norman Ramsey Jan 6 '09 at 2:33
1  
Deep C Secrets is an excellent book. I wish more programming books were like it. – Dana Robinson Jan 6 '09 at 6:05
1  
I'm finding a list of topics and not so much a list of books. Some books: Computer Organization and Design Programming Langauge Pragmatics GoF Distributed Systems, Concepts and Design – runT1ME Dec 17 '10 at 5:48
show 5 more comments
feedback

Code Complete, by Steve McConnell The one single book that will teach you what you really need to know, and more importantly it will teach you how to think like a programmer, which is something one would hopefully get from college, but alas often is not taught.

Another great one is "Writing Solid Code" by Steve Maguire. Teaches you how to write code that will not fail mysteriously and that is easy to debug.

link|improve this answer
1  
as a self-taught, this has been in my library since it came out. – Tom Anderson Jan 6 '09 at 11:17
1  
You should read it more than once. I've red it recently and I'll probably read part of it agian in the future. – Mathieu Pagé Jan 6 '09 at 17:00
show 1 more comment
feedback

I'd recommend "Structure and Interpretation of Computer Programs" by Abelson and Sussman. You can also watch class videos from MIT.

See this wikipedia article: http://en.wikipedia.org/wiki/Structure_and_Interpretation_of_Computer_Programs

link|improve this answer
feedback

Gang of Four's Design Patterns: Elements of Reusable Object-Oriented Software - best pattern book of our time, BUT also quite hard/dry to read so if you are looking to understand the material in a much easier way I would also recommend Head First Design Patterns

link|improve this answer
9  
Yeah, you should actually avoid this book. There's already enough patterntitis in the world. There's an old Chinese proverb: "You have a problem and decide to use a design pattern. Now you have two problems." Do yourself a favor and program in languages that work great without you having to figure out which "design patterns" to use. Clojure and node.js are good places to start. – Steven Devijver Dec 17 '10 at 9:34
2  
I think it's a great book for the self-educated programmer to read, but not necessarily because you should go and follow everything it suggests to the letter. As a self-educated programmer myself, it has helped me understand the language that other people use when describing program architecture much better than I did before. – James Sulak Dec 17 '10 at 13:51
4  
I think by "old Chinese proverb" you mean "what Jamie Zawinski said about regular expressions." – Robert Rossney Dec 18 '10 at 7:06
2  
@Steven I don't think this is a big problem for programmers who started self-taught. It's more a problem with people learning patters before learning how to program. There is a proverb in go "He who learns joseki loses two stones in strength" and I think it applies to design patterns too. You become worse if you use design patters by imitation without really understanding when and how to use them, and when to deviate from them. – CodeInChaos Dec 19 '10 at 20:23
show 1 more comment
feedback

I guess that posting yet another answer, especially one that shows up below the fold might be futile ... but I'd suggest that your next move should be in two directions:

Firstly, get really really good at one area - specialise in it to an extent, get to know it forwards, backwards and inside out.

Secondly, get wider experience/knowledge across a very broad range of skills - you need to know a little bit about a lot of things.

The Challenge - doing both at once!

For that second bit, here's a partial list of useful skills that I blogged in October:

  • Abstraction vs Implementation

  • Amortisation

  • API Design – noun/verb vs Fluent

  • Authentication vs Authorisation

  • Bandwidth vs Latency

  • Caching: Expiry strategies and memory use

  • Class Oriented vs Object Oriented

  • Class, Instance and Sequence diagrams

  • Colour Modelling

  • Compiled vs Interpreted code – byte-code, p-code, IL

  • Complexity: O(x) notation, linear vs quadratic vs exponential vs factorial complexity

  • Connectionless vs Connected

  • Database management: Schema design, query optimisation and indexing

  • Declarative vs Imperative programming

  • Dependency injection

  • Duck Typing vs Strict Typing - Type Inference

  • Encapsulation

  • Encryption vs Obfuscation

  • Entity Relationship modelling

  • Entropy, Compression, Encoding and Encryption

  • Ethernet, TCP/IP and UDP/IP

  • Events - Singlecast vs Multicast

  • Exceptions vs Error Codes

  • Explaining technical issues to non technical people

  • Functional vs Procedural programming

  • Hash tables and arrays

  • Identity

  • Indirection

  • Inheritance vs Composition

  • Instantiation

  • Liskov Substitution Principle

  • Lists/Stacks/Queues and Trees

  • Memory heaps and fragmentation

  • Memory management Garbage collection vs malloc/free vs reference counting, stack frames and pointers

  • Method Missing

  • Mutability vs Immutability

  • Mutual Exclusion and Locks

  • Object vs Component Orientation

  • Pattern Matching and Regular Expressions

  • Polymorphism, Abstraction and Interfaces

  • Pre-emptive vs Cooperative multitasking

  • Proxies and Delegation

  • Recursion vs Iteration

  • Requirements vs Specifications vs Implementation

  • Semaphores, Spin Locks and Monitors

  • Single Responsibility Principle

  • Source code management - labels, branches and versioning

  • State machines - deterministic vs non-deterministic

  • Stateless vs Stateful

  • Teach a class and Present a seminar

  • Technical documentation

  • Testing Unit vs Integration vs System vs Performance vs User Acceptance

  • Threads vs Fibres vs Processes

  • Transactions Commit/Rollback vs Complete/Abort

  • Unicode vs ASCII, UTF-8 vs UTF-16

  • Write Training materials

link|improve this answer
feedback

I've been programming professionally for almost 10 years - and I will be graduating this year. The coursework I did was largely useless. Hands on experience and finding one or more great mentors will serve you far better in terms of becoming an excellent engineer.

The good thing about finishing a degree is that a) it is a nice resume bullet that HR types like to look at b) it teaches you some jargon that is useful for communicating ideas to other developers for example: Normalization is word that we throw around in the real world - there's a text book definition that's nice to have in the back of your head, but in practice it typically just means adjusting database tables so that your data meets your needs in terms of performance and scalability. c) helps you to learn to communicate better ... which is a useful skill that will set you apart from a lot of software people.

Things I recommend reading: 1) operating system design 2) data structures and algorithms 3) database theory and....if you are standed on a desert island with nothing but a laptop, unlimited power and a single coding book of your choosing... without a doubt choose:

"Elements of Reusable Object-Oriented Software" -- Gang of Four

link|improve this answer
show 1 more comment
feedback

Interesting selection of books here so far and many of them are particularly good. I was surprised to see that the following were missing, so I'm going to add them:

  • UNIX Network Programming. W. Richard Stevens.
  • TCP/IP Illustrated, volumes 1-3. W. Richard Stevens.
  • IETF [RFC1034], [RFC1035], [RFC2616]
  • Mastering Regular Expressions. Jeffrey Friedl.

I know that these seem a rather strange choice for general purpose programmers but over the years I've found that understanding TCP/IP, DNS, etc. has been one of the single most useful things that I have ever learned. If you are planning on doing any serious distributed network applications and actually supported a deployed product, then a good understanding of how those Internet protocol thingies work is invaluable.

Now for a few esoteric choices that I really enjoyed:

  • Linkers & Loaders. John Levine.
  • Advanced Programming in the UNIX Environment. W. Richard Stevens, Stephen Rago.
  • Large Scale C++ Software Design. John Lakos.
  • Compilers: Principles, Techniques, and Tools. Aho, Sethi, Ullman.
  • Open Sources: Voices from the Open Source Revolution.
  • Programming Language Pragmatics. Michael Scott.

Beyond specific books, I would concentrate on learning solid software engineering practices and then learn how an operating system does what it does. The other thing that I thing helped me the most was really becoming proficient with tools and utilities. Spend some time really learning regular expressions, pick a good editor and learn how to use every feature that it offers, learn how to use GNU Make and Ant at a minimum.

And by learning how an OS works, I mean really digging into it - check out things like the "Design and Implementation of the 4.4 BSD OS" by McKusick and "Windows Internals" by Russinovich. Combine this sort of knowledge with compiler construction and linkers/loaders and you really get a good perspective on why certain programs behave the way that they do not to mention a lot of extra tools when it comes to debugging.

link|improve this answer
show 2 more comments
feedback

The C Programming Lanuage

The C Programming Language was a great read for me as a non-CS major. Simple things you take for granted, like local variables in functions, are described in such detail. Complex things like pointers and memory management are described in a very readable way. This book really made low level programming seem a lot simpler than they way I had thought about it.

link|improve this answer
feedback

Back when he was still doing podcasts Joel Spolsky answered the similar question, which was partly "Does a good programmer without a CS degree really have a chance to get a job at Fogcreek?" (It's near the end of the page.)

He says that for a good self-taught programmer who began with a high-level language, say PHP or Java, who comes at programming from a practical perspective, there are a few important parts of the CS curriculum the person may have missed out on, and goes on to list some books that would help fill in those gaps. That sounds a lot like your question!

Off the top of his head he named these books in about this order:

He said that those books covered the aspects of the CS curriculum his company needs in a good programmer, e.g. being able to create algorithms for an uncommon data structure.

Those books all have the added advantage of having exercises, and all being a very pleasant read. SICP is an introduction to many of the big ideas in CS: data structures, streams, recursion, interpretation, compilation, register machines, etc., and their implementation in Scheme (a kind of Lisp). It's a great place to start. The next two focus on implementation details like pointers and memory allocation. They are compact, powerful books. The last, Introduction to Algorithms, seems misleadingly titled, as it is fairly comprehensive and used in both undergraduate and graduate courses. If you work your way through the entire book, chapeau!

link|improve this answer
feedback

I recommend learning Lisp. As a programmer, being able to see a problem from more than one perspective is an important skill. Don't stop at Lisp, though. Keep going with other languages. Constantly ask for language recommendations.

link|improve this answer
feedback

I would say that Corman and Rivest's (CLR) algorithms book is a must have. You don't have to master everything, but it's a very good introduction to the CS thinking. It also covers topics like computation and complexity.

I would also suggest reading one of the main textbooks on computer architecture and assembly.

If you do a lot of network work, you may want to read an academic textbook about the underlying theory.

Finally, there are books on programming languages and type systems, but many of them are not very approachable.

link|improve this answer
show 1 more comment
feedback

The Spy Who Came In From The Cold by John Le Carre

link|improve this answer
feedback

Object Oriented Software Construction by Bertrand Meyer (1997)

link|improve this answer
show 1 more comment
feedback

Study probability and linear algebra, and as you do try and come up with solutions to problems using programming. Throw in some discrete mathematics and really force yourself to learn how to think in terms of proofs and expressing problems and solutions mathematically, it will help you organize your thoughts and make you a better programmer, especially if you ever run into any hard problems. Check out Open Courseware and, even if you don't want to take a course yourself, look at the materials they cover in the different courses and see what catches your interest and really dive into it. Just reading a book won't give you the kind of deeper knowledge of a subject that working on problems and forcing yourself to solve them instead of just flipping to the answer page will.

The core of being a good self-learner is to be able to push yourself even in the absence of marks and diplomas as external motivators.

link|improve this answer
feedback

Sorry, i don't think undergrad CS courses teach anything useful. At least that is my experience.

Furthermore, "a pretty good programmer" doesn't mean anything.. native language programming vs. managed language programming is very different. UI calls for certain patterns that you should be experienced with, in a particular UI framework. Working with a DBMS requires understanding of concurency, transactions, etc.

Probably the best thing is to identify your interests. It's pretty hard (and costly) being a renaissance-man type programmer these days, who dabbles in everythign. That will come with time, but you first must know one area well.

Algorithms are useful, but they also come prepackaged these days in neat little classes. What doesn't come prepackaged is a thorough understanding of what happens to your code when it gets executed. For example, if you were interested in server side programming, I would suggest you start looking into Java or C# internals, performance considerations, best practices, etc.

link|improve this answer
show 2 more comments
feedback

I am a self-taught programmer(8+ yrs), too. Till now, I found The Pragmatic Programmer: From Journeyman to Master is a very helpful book for me. It will not teach you technical details, it will tell you what to do/learn to become or keep being a good programmer.

link|improve this answer
feedback

You'll be missing the algorithms background. I'd recommend you read Knuth.

link|improve this answer
show 1 more comment
feedback

Not a book, but Stanford has an awesome set of videos on Youtube.

My personal favorite is CS107 - Programming Paradigms.

link|improve this answer
feedback

As a self-taught programmer you easily end up with big holes in you knowledge, because you typically focus on the task at hand, and learn from that. At least that is my own experience as a self-taught developer! Therefore it is a good idea to learn from material that cover a broad range of abstraction layers or paradigms.

I recommend reading (and solving) The Elements of Computing Systems: Building a Modern Computer from First Principles

It gives a great overview of the levels of abstraction from chip to OO-programming. The exercises includes actually designing chips (in a simulator), creating you own assembly language, create a compiler to that, and so on.

When you have mastered that, I recommend SICP. It uses scheme, but is really a general introduction to all major programming pradigms.

Both books are hard (but entertaining!), so expect to use a lot of time on it.

link|improve this answer
show 2 more comments
feedback

I'll be honest, the degree is mostly proof to your employer that you can follow through on a task that takes an extended period of time and energy. Many employers, despite your prior skill, may not look at you without it in this field.

That being said, I recommend "Domain Driven Design" as a book to read. But do consider getting your degree. It will simplify all career-related transactions. =)

link|improve this answer
show 1 more comment
feedback

I think the The New Turing Omnibus would be great for start.

link|improve this answer
feedback

I would recommend Clean Code.

http://www.amazon.co.uk/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882/ref=sr_1_3?ie=UTF8&qid=1292574690&sr=8-3

This is a great book in learning how to write TDD code and correct code.

It is a must read for everyone coding out there.

link|improve this answer
feedback

I can't believe no one has mentioned the codinghorror.com recommended reading list yet:

http://www.codinghorror.com/blog/2004/02/recommended-reading-for-developers.html

As a self taught programmer with a lot of real world experience now working for one of the top software companies in the world, I agree with that list wholeheartedly. Though many of the other recommendations made here also very good, this list is a great starting place and covers a wide variety of topics which you many not even know are important, such as UI design.

The most important book however is Code Complete. If you only buy one book, buy that one.

link|improve this answer
feedback

++ I just bought Design Patterns: Elements of Reusable Object-Oriented Software.

AviewAnew's comment might seem a bit exagerated, but it all depends in how deep you want to understand the whole thing.

The lower the better.

I have even played with microcontrollers, made lots of circuits (digital and analog with opamps and several electronic elements), then I played with asm (just a little) for several chips.

But.... I found that I was missing the "magic" of OO, so I bought some OO books.

So..... What can you improve? any weaknesses?

link|improve this answer
feedback

I strongly recommend Applying Domain-Driven Design and Patterns: With Examples in C# and .NET even if you aren't a .Net developer. It truly opened my eyes to TDD and Domain-Driven Design.

Basically, try to read books that focus on related topics but not exclusively about programming because programming in and of itself will come with practice (if you understand logic). Try to focus your learning on designs and patterns, testing, networking, and other miscellaneous functions or frameworks (linq/entity framework for instance).

Also, try to expand your knowledge-base of languages. Become comfortable with dynamic and functional languages, SQL, XML, and of course XHTML / CSS. The sheer versatility will significantly help you improve the overall quality of your workmanship.

On a side note, CS degrees generally prepare someone for the next-step in the education cycle. A lot of what you would have learned in an educational environment would prove trivial for a typical business-oriented developer. I have been in the business for awhile and I'm still finishing up my degree (last semester, thank god). Almost all of what I have learned has proven to be applicable has come from self-taught learning.

CS is one of those fields that a degree holds entirely too much weight. I barely squeeze by with a 2.x but run a successful firm and, although this may sound arrogant, can architect and program better than most graduate level students.

link|improve this answer
feedback

Bookless, quick hits:

1) Read the wikipedia entry on the Halting Problem; this explains why you can never have code that figures out what other code does, at least in general. (Code with limited loops can be figured out though). Realizing that this basically was what I was trying to do has kept me from trying something overly ambitious a couple of times.

2) The pumping lemma - you don't need to understand it, just know that there are only a couple classes of computability, Regular and Turing Complete. Know that, and wny, regular expressions can not match an indefinite number of parentheses, for that you need a proper language.

3) And, well, one book, practical, on proper, Turing Complete languages. I really like the recent semi-Antlr book on programming language implementation patterns. Little-to-no theory, bite-sized chunks of info, but gets you writing & using mini-languages. A pleasure to read, but the author is a compilers prof, do not fear it being a mentally shoddy throwaway. And you can apply 95% of it without ANTLR (the profs language tool), it's not an ANTLR howto.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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