vote up 35 vote down star
55

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.

flag
show 4 more comments

37 Answers

1 2 next
vote up 27 vote down check
  • 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|flag
show 6 more comments
vote up 31 vote down

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|flag
show 2 more comments
vote up 19 vote down

Gang of Four's Design Patterns: Elements of Reusable Object-Oriented Software - best pattern book of our time

link|flag
show 1 more comment
vote up 16 vote down

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|flag
vote up 10 vote down

Related SO Questions:

These might help you cull some imformation together

link|flag
vote up 7 vote down

Fowler's Refactoring: Improving the Design of Existing Code

link|flag
vote up 6 vote down

Joel posted a great list a while back : http://www.joelonsoftware.com/navLinks/fog0000000262.html

link|flag
show 1 more comment
vote up 4 vote down

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|flag
show 1 more comment
vote up 4 vote down

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|flag
show 2 more comments
vote up 3 vote down

The C Programming Lanuage

The C Programming Lanuage 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|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag
show 1 more comment
vote up 2 vote down

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

link|flag
vote up 2 vote down

Object Oriented Software Construction by Bertrand Meyer (1997)

link|flag
show 1 more comment
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
show 1 more comment
vote up 1 vote down

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

link|flag
vote up 1 vote down

++ 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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

Read the books on the first list in this blog post (my own) for some practical knowledge that you'll use every day on the job. Read the books in the second list if you want more theoretical and academic study (and a little bit more focus on Design Patterns and C++).

If you read all the books on both lists you'll be ahead of most developers I know, including me. In terms of reading books, not necessarily in skill. :)

link|flag
vote up 0 vote down

Code Complete, Algorithms by Vazairani, Also by skiena

link|flag
vote up 0 vote down

Given your current level of programming experience, you will be wasting your time reading any purely academic books unless you are planning to pursue a degree. And if that is the case, I would only focus on the books required for each course.

I don't personally know a single programmer that has once referred to a purely academic book to help solve a real-world problem. Outside of gaining some practical experience with pointers and data structures in C and a general understanding of Big-O notation, my CS education has done very little to advance my career other than allowing me to truthfully promote the degree on my resume. Programming skills are practiced, not researched.

As far as the degree is concerned, I would recommend you pursue one as soon as possible for one reason - money. Unless the two companies you've worked for are philanthropic, I can all but guarantee that you are making less money than your co-workers who have degrees, even though you may be the more skilled programmer. Further, I would strongly suggest that you pursue a degree that has "Engineering" in its name instead of "Science." A Computer Engineering degree, from my experience, carries much more weight and is more flexible (with a heftier salary) than a Computer Science degree.

link|flag
show 2 more comments
vote up 0 vote down

Don't limit yourself to just books when there is so much free/open source code to study and evaluate. Some of it is good, some of it is horrible, some of it is so darn cryptic that your eyes bleed trying to read it (i..e. grab the source to PHP itself).

I'm self taught .. I started in the earlier days of Linux/GNU development (about 1992) after learning a bit of C through working on hobby BBS systems. The benefit of peer review is priceless ... you not only get input from one or several instructors as you would in a CS course, you get input from some of the most brilliant programmers working today.

I now work mostly with Unix-like operating systems, typically with something surrounding virtualization. I think, now, for me a degree would be painful to sit through.. I have no plans of getting one unless I absolutely must .. but I don't see that time coming in the far or immediate future.

People that I work with who obtained a degree from a quality university still blow me away .. like you, I could not sit down and write a compiler .. but I have dabbled in writing my own simple interpreted languages.

As far as 'really good' programmers? Those are just programmers who love what they do and continue to learn/study far after graduating. Those are the people who I love to learn from. Then you have the type who graduate and think the world owes them a paycheck.

link|flag
vote up 0 vote down

I too was a non-CS programmer and taught myself by reading books. Here is what I found most useful:

I second the nominations of The C Programming Language and Design Patterns. The first will help you understand the machine. The second will help you see the elegance possible with OO programs.

A book on operating systems. I recommend Operating System Concepts by Silberschatz but there are plenty of others. I found this helped me to understand why the compiler did what it did and why the APIs were structured the way they were.

A book on processors and how they work. I found Computer Organization and Design by Patterson & Hennessy to be a great one for this. If you understand how a processor works, you'll understand a lot about how to make programs performant.

Be careful with the algorithms books. Many are very mathematical in nature and will be hard to understand if you've been out of school a long time. Look around for one that is less rigorous.

link|flag
vote up 0 vote down

As you are aware of the technologies (you mentioned that) so I recommend you to read the following topics as a critical topics

Theory of programming languages Compiler construction Code optimization Operating system concepts

And you can select some optional topics like

network programming image processing

link|flag
1 2 next

Your Answer

Get an OpenID
or

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