vote up -3 vote down star

Ok, maybe I'm exaggerating a little in the question, but it's mostly true. I must say that most of the programmers / developers / coders I have worked with in the past didn't really know much about computer hardware. I even worked with a few that could barely plug in the keyboard and mouse.

To me it's extremely important to know how to put a computer together (Mobo, CPU, Ram, Power Supply, Case, Hard Drives, etc.) and be able to troubleshoot possible hardware and driver problems when software isn't functioning as expected.

Sometimes I really wonder what some of these people learned in College, especially since I do NOT have a College degree and am mostly self taught.

One could say, "You're a programmer, why waste time learning about hardware when you can learn a new library or framework to get your job done better?" I believe that being able to make sure my development machine is functioning at it highest, at all times, is key to my productivity.

Based on what I stated above, you may be thinking that I'm a hardcore Linux guy and and when I mention drivers I'm referring to writing my own or debuging the kernel. Well, in fact I'm not a Linux guy at all, I'm a Windows / .NET developer, so I'm not referring to driver writing at all.

Also, I must mention that I rarely have issues with my own machines, but when a friend or family member calls me about an issue, I can fix it.

Update: I know I didn't mention anything about knowing how the hardware works from an electronics perspective, but that's really an advanced topic that requires you to go to school for Engineering instead of Computer Science or Programming. I have read some over the years about electronics, and want to learn much more, but I figure this is an area that's too far out there to expect the average programmer to know about; where the basics should at least be taught/learned.

flag
2  
If everyone had the same skills and knowledge, it would be rather a dull place. – Andrew Nov 1 at 12:39
5  
I think the premise of the question is wrong. Most programmers I know are perfectly able to build and maintain their own system. Also, that has little to do with really knowing about hardware. – Thomas Nov 1 at 12:44
3  
-1, silly generalisation. I don't know any programmers who can't handle at least basic hardware. I presumed your question would be about knowing CPU registers, instruction cycles, etc., which would make a little more sense. Even then, I think most programmers use abstractions wisely whilst they work, and dig into the details when they need to. – Lee B Nov 1 at 13:08
3  
Being able to build your own machine doesn't mean you know hardware and certainly doesn't make you a better programmer. – JonnyD Nov 1 at 13:23

closed as subjective and argumentative by zvolkov, bpapa, joseph.ferris, Manni, ceejayoz Nov 1 at 14:01

10 Answers

vote up 1 vote down

Sometimes I really wonder what some of these people learned in College, especially since I do NOT have a College degree and am mostly self taught.

They learned about abstractions.

link|flag
vote up 1 vote down

There was a time when having intimate knowledge of the hardware was required for most programming tasks. Unless you're developing drivers, or software for embedded systems, that's usually no longer necessary. Nowadays software is rarely written to deal directly with hardware, but with the operating system that abstracts away the hardware, and with frameworks that further abstract away the operating system.

One could say, "You're a programmer, why waste time learning about hardware when you can learn a new library or framework to get your job done better?" I believe that being able to make sure my development machine is functioning at it highest, at all times, is key to my productivity.

This is only really valid if you're working on your own, or in a very small organization. In most cases a programmer's time is much more valuable than somebody who specializes in system maintenance, so if a programmer is spending any substantial amount of time in the maintenance of his development machine(s), rather than programming, he is losing productivity, not gaining it.

link|flag
vote up 0 vote down

I'm kind of split on this one. On the one hand, I agree that it's a shame that more programmers don't know the hardware side. However, I don't agree that it has anything to do with schooling or whatever.

For my CS degree we barely touched hardware except as it related to specific programming concepts, and in most cases we used emulators anyway - a MIPS emulator is a lot cheaper than a lab full of DEC Alphas. My school didn't have an EE track, so I don't know that anyone really covered that side of it. Sure, we covered a lot of stuff about CPUs and RAM, but nothing higher-level.

However, I think what you're seeing is actually a symptom that most programmers aren't particularly curious or interested in learning new things, particularly outside of their own tunnel-vision focus. I would suggest, though, that such curiosity and interest would actually do them a great service, as most of the people I know who have that kind of curiosity turn out to be the most accomplished programmers as well. I'm not sure if that's incidental or not. My career has been 99% Microsoft-focused, but I play around with Linux pretty regularly. I've never had to build a computer from scratch for my job, but I've build all my own home PCs since the late 90's.

Meanwhile, some of these same people who can't plug in their own keyboards also can't figure out how to troubleshoot a software bug - after about 5 minutes they throw their hands up in frustration instead of digging in and refusing to give up.

link|flag
vote up 0 vote down

It's an issue of over specialization. It seems allot of companies don't look for people who are well rounded, they look for people with highly specialized skills. So universities target what companies want. Either you're a Java Swing dev, or a .NET dev, or a Windows Sys Admin, or a Linux sys admin, or a Device Driver guy, or an algorithms guy, or a oracle database guy etc..

Those ultra specialized jobs are where the big bucks are.

I have a friend who actually writes low level bit twiddling firmware style code at a multinational company and people are amazed that he can also admin his linux box that he developes on and can code perl and C.

What you're experiencing is the over specialization disease. Plus who learns low level languages and hardware or OS architecture anymore outside of Computer Engineering programs?

Watch in amazement as you ask your average Java / .NET grad what a cache line is and why fetching a series of objects stored in contiguous memory as an array will be faster than objects stored in non-contiguous memory in a linked list and a blank look comes over their faces.

link|flag
vote up 2 vote down

I think it's not necessary to know how to put a computer together.

But it is important to understand in general terms how (modern) hardware works, particularly if you're trying to write high performance software.

Understanding about Disc IO, CPU caches etc, is pretty much vital to be able to select algorithms which are likely to perform better. Regardless of whether they know how to assemble a computer or not (I did know this about 15 years ago, but technology moved on), the principles are important.

That said, things do change. New technology such as SSDs invalidates previous wisdom.

link|flag
vote up 6 vote down

Becouse Computer Science is no more about computers than astronomy is about telescopes. There is no way that "know how to put a computer together" will help to be a better programmer or computer scientist. The only thing you need to know about hardware is how the cpu do floating-point aritmetic

link|flag
+1 Dijkstra quote – Joren Nov 1 at 13:14
And having made telescopes and worked with astronomers, Dijkstra was at least right half the time. – Tim Williscroft Nov 20 at 0:04
vote up 1 vote down

More knowledge would be great, but for a few trinkets of knowledge that come up in odd places versus day to day development. As abstraction continues, developers will know less and less about how things work.

I started out learning assembly language, then C and C++. I learned how compilers generated code from higher order languages to lower order. Code linking is also a very interesting topic. However, as you get into run time engines (e.g. JVM/CLR) that knowledge means less. Its a great foundation for how the VMs work, but how often do you need it ? I find that knowledge and information popping when trouble shooting difficult problems so it isn't a total loss and like you, I remiss that a lot of younger developers don't know very much of this, it probably doesn't matter all that much.

On the plus side, it gives the system administrators something to laugh about.

link|flag
You mentioned "Younger Developers". At 28 I consider myself to be a "Younger Developers", but I suppose the abstractions of .NET/Java are still fairly new, and the curriculum in schools are changing to target them more. – Chris Pietschmann Nov 1 at 12:50
yeah, i started with legendary 'The Art of Assembly' and MASM+NASM, these days ppl start with php and such. – kar Nov 1 at 12:53
I am not that old (41), I hope. Available home computer systems in the 80s and into the 90s still pushed would be programmers into knowing how things worked. Once VisualBasic took hold, the depth of understanding necessary to get a usable program, dropped. Not a bad thing, but too many people don't realize how things work. Of course, our forefathers pushed the importance of knowing Latin for some similarly sounding reasons :-) – Jim Rush Nov 1 at 19:08
vote up 1 vote down

I went to school for a BS in Computer Engineering. We learned hardware and software. Actually we weren't really called computer engineers, we were called electronics engineers because we were being taught about anything that had a circuit.

Point being, the computer science schools I think had maybe one or two classes that dealt with hardware related concepts. It just wasn't something they concentrated on. To be clear, there were many things they took that I never did.

I don't think that justifies not knowing about hardware. I think it's important to understand what you're developing to in order to be as effective as possible. Developing on an embedded system is going to restrict you and you should be aware of those restrictions. However, there are also different levels, and I think it's just a matter of what people are comfortable with knowing.

link|flag
vote up 6 vote down

I would say they learned programming at university. You can be a quite proficient coder without knowing the first thing about hardware.

It's all about levels of abstraction.

When you write code in COBOL (for example), the "machine" you're coding for is a COBOL virtual machine. It is not a specific processor, or specific gates inside the CPU, or the electrons flowing through the transistors, or the quarks making up those subatomic particles (that's about where my knowledge of physics fades away).

Knowing how the CPU processes your machine code will not make your COBOL code any better, if you understand the level of abstraction you're working at.

Don't get me wrong, every single level of abstraction makes you a more useful person but it doesn't necessarily make you a better programmer.

link|flag
However, not knowing how the CPU works (at a high level anyway) can make your code a lot worse... Different platforms and architectures work in different ways. So if you write SQL in the same way you write COBOL, one or the other is going to suck. – GalacticCowboy Nov 3 at 11:54
vote up 0 vote down

To answer your question:

Because most programmers aren't good programmers.

link|flag
This sounds like trolling. Maybe some nuances? – Dykam Nov 1 at 12:53
no hes not, most programmes arnt actually a programmer – kar Nov 1 at 12:58
2  
And the definition of a good programmer is? For some reason it seems your definition includes the ability to build PCs, where my definition would be that he/she can build good/great programs. – Johan Nov 1 at 13:35
Sorry, it was not about building a pc, it was just about answering the title (which is quite different)! – Johannes Rudolph Nov 1 at 20:59

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