When trying to fill a position for a software engineer, what you are looking for is a "hacker". Someone who is smart and gets things done. A super coding ninja. There are people with CS degrees that are not hackers, and there are hackers that do not have CS degrees.
What makes a hacker?
I would say that there are 2 things:
The ability to quickly move between different "levels of abstraction". All software is constructed in layers. Take a simple "hello world" application in C#. This involves:
- The .NET Framework Console APIs
- The Win32 Console APIs
- The Kernels IO subsystem
- Special hardware support to enable the creation of an Operating System
- The CLR's native code generator
- A Garbage collector
- The C# compiler
- Many other layers of software and hardware
Writing software requires being able to have a working understanding of all of these layers, and how they fit together. It also requires being able to correctly determine what layer is appropriate for analyzing the solution to a problem. A good "hacker" can do this with ease. Poor programmers will have trouble.
The ability to deal with ambiguity
In the real world, software projects are fraught with ambiguity. In academic settings, problems tend to be extremely constrained and well defined. Someone who is not able to deal with ambiguity can thrive in an academic enviornment where everything is spelled out exactly. That same person would not do will in an industrial setting. A good programmer, on the other hand will be able to resolve ambiguity, ask the right clarifying questions, and work to create a solution.
It is pretty clear that being a good hacker is not necessarily dependent on how or whether someone was educated. Instead, it's more of an issue about the intrinsic capabilities of the programmer.
So, once you understand that you want to hire a "hacker", the next question is, what type of hacker do you want to hire?
Given a choice between a hacker with a CS degree and a hacker without a CS degree, I would pick a hacker with a CS degree.
The reason is simple: knowledge. A hacker with a CS degree knows more about hacking then a hacker without one. By virtue of getting a CS degree they have knowledge of more programing scenarios, and ways to solve them, then a hacker without a CS degree would. The hacker with a CS degree gets the benefit of learning from the last 60 years of collective programing experience. There are many algorithms, best practices, programing languages, design idioms, etc, that are covered in a CS program. For a hacker without a degree (or who wasn't taught the stuff covered in a degree) to get that same knowledge he would need to re-invent all that stuff from scratch in the course of his work experience. That would be difficult.
As part of getting a CS degree, a "hacker" should walk away with a working understanding of the full range of how a computer works. They should know:
- How are compilers designed?
- How do operating systems work?
- How are computers architected?
- What is it like to program in assembly language?
- What is the difference between functional, imperative, and declarative programing languages
- What are good design patterns?
- How do databases work?
Having that knowledge makes a good hacker with a CS degree extremely productive. They not only have the raw talent necessary to get this done, but also a wide arrange of knowledge about the best way to do things.
If I were to assign relative weights to various "categories" of candidates for Software Engineering positions they would be:
100 - A hacker with a CS degree
70 - A hacker without a CS degree
1 - A monkey with a keyboard
0.5 - A non hacker with a CS degree
In short, a CS degree can mean a lot, given the right sort of programmer. However, given the wrong sort of programmer, it isn't worth much at all.
EDIT:
Some people have expressed concern (see the comment to the post) that "hackers" are not software engineers.
I should be a little more clear about what I mean by a hacker. I use the term the same way Paul Graham uses it. It means an "intrinsically skilled programmer".
Software Engineering is mostly about patterns of behavior and process that improve the chances of a software project being successful. The question being addressed here is, who makes the best software engineers?
No matter what process improvements you make, there is no silver bullet in software. There is no magic process that guarantees success. You can improve the chances of success, but you can't guarantee it. At the end of the day, you need to pick the right people to be your software engineers in order to successfully engineer something. "Hackers" make for the best software engineers.
The principles of good software engineering can be taught. The qualities that make a good hacker can't. At the end of the day, software engineers need to program. So, when deciding "who do I want to hire to be a software engineer?" the answer should be "A hacker with a CS background".
Edit 2:
I wanted to make 2 more points.
The first is that I wanted to mention that I don't mean this as a slight to academics that do research. Computer Science research is important. I just meant that what makes for a good Software Engineer is often different than what makes for a good researcher.
The second, is that I wanted to draw a parallel to Mechanical Engineering. Saying that a hacker makes for the best Software Engineer is similar to saying that a "gear head" makes for the best Mechanical Engineers. I think few Mechanical Engineers would disagree with that.