vote up 0 vote down star

I have no college / university education. Have been working as a programmer for the past 2 years. All of the stuff I know was self-thought.

I realize that, in order to become a better programmer, I need to start studying things more seriously, because my laziness in self-teaching myself has made my knowledge a little more superficial than what it could have been.

So after giving it a lot of thought I decided to start studying things according to standard academic level, hoping it will help transform the superficial into a more complete knowledge.

Given all the academic degrees, as a programmer, I suppose Computer Science would be the most appropriate for me to choose, but I would like to know what you think would be the best, and why.

flag
Lots of good links on the "Related" side-bar. – Paul Tomblin Mar 1 at 3:09
One that promotes less thinking, clear thinking, and a focus on results, and not activity, or analysis paralysis. Whatever empowers you to create, complete, often is the highest degree you can pursue and learn. All the best :) – Jas Panesar Mar 1 at 5:15

closed as subjective and argumentative by Rob, paxdiablo, cletus, Steven A. Lowe, Mitch Wheat Mar 1 at 4:35

7 Answers

vote up 4 vote down

I hate to go with conventional wisdom, but computer science really is the best approach. The CS degree will teach you a lot of theory of algorithms, data structures, operating systems, databases, and other fundamental concepts that would be difficult to learn on your own. (I happen to think that a math minor combines very nicely.)

That's not to say that you can't become an excellent developer with a degree in American Studies. You'll just have to do a hell of a lot more for yourself.

link|flag
vote up 2 vote down

Depending on what you are trying to achieve, a course in software engineering may be better suited to your needs.

CS will teach mainly theory instead of programming practices. Algorithms, data structures, assembly, compiler design etc. are all very important and you should definitely know them but software engineering will teach the fundamental CS theory along with more programming related topics (design patterns,unit tests, refactoring etc)

I have met many CS PhD's who are incredibly smart but absolutely useless at programming a system vs programming an algorithm.

I have an undergraduate degree in one and a masters in the other and find the content in both courses to be invaluble. Just look over the syllubus and choose one that either interests you or will help you in the type of programming that you want to (i.e if you want to write compilers choose a CS degree etc).

link|flag
vote up 2 vote down

Computer engineering, software engineering, computer science, and mathematics are all degress that are highly regarded amongst employers that hire programmers. A strong ability to solve complex problems is paramount, whether or not you have a degree. To get one of those degrees you will have to demonstrate problem solving abilities. Creativity is also important. It's axiomatic that the problems you will see on the job are not the same as the ones you see in school. You will be asked to come up with creative solutions to those problems. This is an intangible that's hard to quantify.

Whatever educational path you take, make sure you learn to write well. Those that can express their ideas clearly will go farther than those that cannot, no matter how good the ideas are.

link|flag
vote up 2 vote down

In my experience, there is not much correlation between whether or not you have a CS degree and how good of a programmer you are.

Some traits I see among the best programmers I have worked with over the last 25+ years are:

  • More than anything, they love building things.
  • They love solving problems.
  • Most of them tend to be perfectionists - even to the point of borderline OCD.
  • They tend to work too much - not surprising I suppose that the more they "practice" the closer to "perfect" they become.

They have degrees in math, music, psychology, or no degree at all (remember that Bill Gates guy?).

I am not saying you should not go to school. That is a life decision you have to make. But I don't think it's a requirement to be a good programmer. Having said that, there are certainly programming jobs where you must have the math foundation, and it seems like that is harder to pick up without a formal math or CS education. Furthermore, there are a lot of jobs where you will not make it past the first file-13 filter without that piece of paper.

EDIT:

cletus takes issue with my statement that "In my experience, there is not much correlation between whether or not you have a CS degree and how good of a programmer you are".

Please allow me to elaborate. This is my anecdotal experience, but it is a fact that not a single one of the best programmers I have worked with over the last 25+ years has a CS degree. Interestingly, probably the best Product Manager I ever worked with did have a CS degree, but even he would admit that he is not the best programmer. I have certainly known many fine programmers who did have CS degrees and, of course, my experience is limited to probably <100 programmers.

In my limited experience, the best programmers (I'm talking the top few percent, not top 20% or even top 10%) tend to be people who had another profession but fell in love with programming and switched careers. It kind of makes sense if you think about it - if you enjoy something enough to leave behind a hard earned career and degree for programming, you just might wind up spending enough time practicing your new-found profession to rise to the top.

cletus also mentions great schools like Stanford. I would like to point out that a few times a year for many years I have told my wife that someday I would like to be in a position to leave my company long enough to go to Stanford myself - if I were fortunate enough to be able to get into such a place. I don't know whether this would make me a better programmer, but I am certain that it would make me more successful in my business.

link|flag
vote up 1 vote down

Ok, some opinions going on here that I simply don't agree with so time to post.

Joe Erickson says:

In my experience, there is not much correlation between whether or not you have a CS degree and how good of a programmer you are.

Pax says:

No degree will make you a better programmer.

If these statements had said "a degree won't necessarily make you a better programmer" I could agree. It's also a given that person A is not, by definition, a better or worse programmer than Person B by virtue of a degree or the lack thereof.

But just because there's no absolute relationship doesn't mean there's no relationship.

For one thinig, getting a degree is an exercise largely in persistence and sticking something out for 3-4 years.

I'll take a programmer that finishes the job over one that doesn't any day.

So your degree, if nothing else, shows you can finish something.

Also, having no degree will limit your employment options. Now you can argue whether or not this is justified but it is clearly true. Some employers simply will not hire (particularly junior staff) that are not college graduates. Personally I would rank potential candidates this way (from most preferred to least preferred):

  • An undergraduate degree in computer science, software engineering or information technology;
  • a graduate degree in the above (more on this in a second);
  • any kind of science degree;
  • any kind of degree at all;
  • current, partially completed degree (meaning it's ongoing rather than something that finished 5 years ago and will never complete);
  • no degree.

Now why a preference for undergrad rather than graduate degrees? Simple: I honestly believe that unless you're in a specialized area, a graduate or research degree offers little of value in your ability to work as a programmer. To work as an academic or researcher, sure. But not as a programmer in the Real World [tm].

A graduate degree in a non-computing field however could be an advantage. It shows some domain knowledge about, well, something.

Joel wrote a column a few years back titled The Perils of JavaSchools and it makes some excellent points. There is no doubt that there are second-rate degrees out there that really don't teach you anything about the fundamentals of computer science but some do. And I'll take a programmer who has learnt networking, operating systems, functional programming, data structures, algorithms and artificial intelligence over one that hasn't.

So which degree will help you? Hard to say. It's more about the program and, to a lesser extent, the school. School can matter. If you went to Yale, you could've learned finance theory from Mandelbrot. If you'd gone to Stanford, you could've learned from Knuth. If you'd gone to MIT, you could've learned from Tanenbaum.

That has no value? Like hell.

link|flag
cletus - I certainly do not believe that a degree from Stanford or learning from Knuth (my Knuth books are ~25 years old but I never even imagined studying directly under him) have no value. But it is a fact that 0% of the best programmers I personally know after 25+ years have a CS degree. – Joe Erickson Mar 1 at 4:09
0%? You have a very interesting group of people around you then. While not all of the best programmers have CS degrees, a huge number of them do in my experience. – Steve Rowe Mar 1 at 4:17
By "best programmers", I mean the top few percent, not the top 20% or even the top 10%. – Joe Erickson Mar 1 at 4:38
So assuming you know 100 programmers, your sample population is... 3? – cletus Mar 1 at 4:40
The best programmers I know went to schools like CalTech (math degree 60 yrs old), MIT CS degree 38 years old). Of the rest of the "best developers" I know whom I would hire for my own company, 10% are self-taught/no degree. Joe must be overstating the case or he hangs out with lots of VB types – tim Mar 1 at 5:36
vote up 0 vote down

Computer Science but it doesnt really make you a better programmer. To be a better programmer you need more "real life experience" which computer science doesnt provide in its closed system. Go get involve in open source products then look at the source code of projects you liked.

link|flag
To quote the Simpsons: "I did my thesis on life experience." – cletus Mar 1 at 3:34
vote up 0 vote down

Liberal Arts--Philosophy or any Literature curriculum, ideally.

Sure, a Computer Science curriculum will teach you various APIs, but that sort of thing is more usefully picked up on your own, through experience. Instead of spending the time and money attending classes for them, why not volunteer for an Open Source project and spend the same time actually programming? You'll learn at least as much talking with others on the project about software architecture and programming issues, at a fraction of the cost.

If you're really interested in a college degree, and you want to become a better programmer with it, then definitely go for a Liberal Arts degree which interests you. A degree in English Literature will teach you how to do research and think about things in an organized fashion--critical skills for a programmer--but you'll also learn how to write clearly and precisely. Too many students come out of engineering schools knowing how to field-dress a Unix server or code a reverse-Stroustrup-Bouncing-Betty iterator, but they haven't the faintest idea how to actually discuss their ideas or work collaboratively with others.

link|flag
"Sure, a Computer Science curriculum will teach you various APIs" -- hopefully not! I think the APIs I've learned in my CS studies so far are the Java collections library, and... uhh... maybe some particular SQL dialect. And uh... no, it's more about theory. – Jonas Kölker Mar 1 at 4:16
Most CS degrees do a terrible job of teaching you APIs. They teach theory which is at the opposite end of the spectrum. – Steve Rowe Mar 1 at 4:18
That's a fair point, although I was mostly thinking about all the side projects most of the CS students I knew were involved in. There's an awful lot of working with computers in the degree, after all. – Chris B. Mar 1 at 4:27

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