vote up 30 vote down star
8

I am often amazed at how little some of my colleagues know or care about their craft. Something that constantly frustrates me is that people don't want to learn any more than they need to about the programming languages they use every day.

Many programmers seem content to learn some pidgin sub-dialect, and stick with that. If they see a keyword or construct that they aren't familiar with, they'll complain that the code is "tricky."

What would you think of a civil engineer who shied away from calculus because it had "all those tricky math symbols?"

I'm not suggesting that we all need to become "language lawyers." But if you make your living as a programmer, and claim to be a competent user of language X, then I think at a minimum you should know the following:

  • Do you know the keywords of the language and what they do?
  • What are the valid syntactic forms?
  • How are memory, files, and other operating system resources managed?
  • Where is the official language specification and library reference for the language?

The last one is the one that really gets me. Many programmers seem to have no idea that there is a "specification" or "standard" for any particular language. I still talk to people who think that Microsoft invented C++, and that if a program doesn't compile under VC6, it's not a valid C++ program.

Programmers these days have it easy when it comes to obtaining specs. Newer languages like C#, Java, Python, Ruby, etc. all have their documentation available for free from the vendors' web sites. Older languages and platforms often have standards controlled by standards bodies that demand payment for specs, but even that shouldn't be a deterrent: the C++ standard is available from ISO for $30 (and why am I the only person I know who has a copy?).

Programming is hard enough even when you do know the language. If you don't, I don't see how you have a chance.

What do the rest of you think? Am I right, or should we all be content with the typical level of programming language expertise?

Update: Several great comments here. Thanks. A couple of people hit on something that I didn't think about: What really irks me is not the lack of knowledge, but the lack of curiosity and willingness to learn. It seems some people don't have any time to hone their craft, but they have plenty of time to write lots of bad code.

And I don't expect people to be able to recite a list of keywords or EBNF expressions, but I do expect that when they see some code, they should have some inkling of what it does. Few people have complete knowledge of every dark corner of their language or platform, but everyone should at least know enough that when they see something unfamiliar, they will know how to get whatever additional information they need to understand it.

flag

11 Answers

vote up 14 vote down check

Kristopher, I do admire your passion around this issue and empathize. I do tend to be more in line with Rob's thinking, specifically the use of Google/the Internet for accessing information about your language when needed.

In perhaps a tangential manner of thinking in relation to this issue, I generally feel most junior programmers are way out of touch with the underpinnings of how things work with languages, environments, protocols, even computers in general -- you name it. I think that underlying knowledge is so critical to designing well performing systems and writing good code, and goes back to having an understanding of why something is done a certain way as opposed to only how it is done.

I think it's become easier since Visual Basic ushered in the era of RAD development to the masses to screw things up more. This was a critically important event in software development, no doubt, but I think this path of evolution, while making good developers more productive, allows others to be productive enough without necessarily fully understanding what they are doing. Am I making sense?

I've always been a believer that if someone was a student of computer science, then they ought to be able to code in any language and understand the importance of knowing the nuances of differently languages. I think this may be perhaps more important than knowing all the keywords and syntactical forms (with Rob's notable exception).

So, I too have similar frustration with programmers who don't quite get what's really happening. I could add to your list of items:

  • How many of those programmers don't know how HTTP works in it's simplest form? How many of them don't know you can get RFC's online that specify all of these protocols and roll your own clients and servers and mail readers, etc?
  • How many of those programmers don't understand why it's important to minimize your database calls or get as much data as you need in one round-trip to the database and ideally no more than is required? (Or for any remote call for that matter!)

These are a couple of my pet peeves. I'm sure there are more.

link|flag
vote up 14 vote down

Since this is a bit of a longer question / rant I'm going to break things up a bit.

What are all the keywords of the language?

I think that you would be hard pressed for find someone that can name every single keyword and what they for all of the languages that they work with off the top of their head. However, I think that if you specialize in a given language (e.g. A C++ programmer) that this should be the case. In the case of someone that works with several languages on a daily basis, knowing all of the major ones and being able to quickly find documentation on the rest of them should be sufficient.

What are all the valid syntactic forms?

Likely depends on the language you are working with - if you are working with Perl where, there is more than one way to do it, then I definitely hold it against anyone to not know anything. However, this is also another area where I think that a good programmer should know the major syntactical forms and be able to look-up the rest of them if need be. At a bare minimum they shouldn't think that it is invalid just because it doesn't follow the most common syntax.

How are memory, files, and other operating system resources managed?

This is one area where I agree with you in that I think that you should have a good understanding of how these things work in the language you are working with. When I first started working with ASP.NET I encountered a number of bugs in my applications that where entirely due to me not fully understanding the page life cycle; however, once I took the time to read up on it, I was able to better understand things. Also, this becomes even more important in some environments where an algorithm might not be as fast as you thought it might be due to how the system is storing arrays.

Where is the official language specification and library reference for the language?

In this day an age with so much information being only a Google search away, I would likely raise an eyebrow a someone that was a programmer and couldn't find this information.

As for the larger part of your question, in some cases I don't think you should be entirely content with some of the programing language expertise; however, in the case of some junior developers I think that it is just something that you have to expect and perhaps even mentor them to develop this expertise. Once you start to get more experience under your belt though and make the transition away from being a junior developer, you lose some of this expectation and indeed you should be able to expect a experienced developer to know most of these things. As such, I think that the more experienced you are as a developer, the more that is expected of you in terms of knowledge and it is reasonable for an experienced developer to have a good, but not necessarily prefect, understanding of all of these things.

link|flag
vote up 5 vote down

I usually try to learn everything about a language that I use regularly, like C#, Visual Basic, or JavaScript. But then there are languages that I don't use that often, like Python, about which I probably don't know everything. I still try to find out at least what's possible to do with the language so if I ever have the need to do something that I don't know the syntax or idiom for, I'll know that it exists and look it up.

But the bare minimum for any language is declarations, operation definitions, operation invocation, common types, conditional construct, and loop construct.

If you know only that much but know everything there is to know about the programming library you care about then you can probably do just as much in the library's domain as someone who knows all about a language and how to best implement various algorithms but knows next to nothing about the library.

Have a look at Java: most Java programmers probably don't even know or care much about generics but they can do a lot with Java's class library as well as knowing the numerous frameworks at their disposal.

link|flag
vote up 4 vote down

Having programmed for 28+ years and in many many languages I don't believe there are any that I knew every keyword (maybe C and Action) or all valid syntactic forms. I'm really strong in the environment that I work on (Windows) but there is a lot I don't now about management of memory, files, and OS resources in general.

I would say that a better way to look at it is not what they know, but how they behave when they don't know something. If your co-workers give up and complain then maybe it's definitely time to look for another job. If they do their best to learn and then ask for guidance/assistance, cut them some slack and help them out. You'll learn by doing that and so will they.

link|flag
vote up 2 vote down

I would say that you need to take it even a step further and learn everything you can about the environment around your language: the operating system, the hardware, the database, networking, everything. Some engineers are always learning, constantly buying books, constantly improving. Some aren't. Some people are content to stick with what they know if they are getting their job done with it. But give it some time, and those are the people who are sitting down in cubicle #8 waiting for you to tell them what to do next. It's not a mentality that you can force on someone, but it is a mentality that is rewarded in this field.

link|flag
+1 for "give it some time, and those are the people who are sitting down in cubicle #8 waiting for you to tell them what to do next" – Andreas Grech Aug 31 at 1:11
vote up 1 vote down

You seem like a switched on and passionate. Two attributes I would consider important in this profession. If your co-workers aren't as passionate as you, consider looking for employment elsewhere where you can find like-minded people who care about their profession as much as you do. I think you'll have a lot more fun and wouldn't need to rant so much :)

link|flag
vote up 1 vote down

I've been using C# for the past four years and I'm still learning new things about both it and the .NET system libraries everyday. It's not so much as I was irresponsible but one has to balance work, e.g., learning what is necessary, with learning what is new, cool, and nifty.

Knowing this when C# 3.0 came out last year I made an active effort to learn everything (well, almost) new about the language, and I can say that I have a fairly good grasp of what is available. I'm spending a lot of time teaching/sharing these to colleagues, especially lambda expressions/LINQ, which are essentially basic concepts for the language but hard to grasp for people who have been programming imperatively all their career.

link|flag
vote up 1 vote down

I'd say that perhaps one shouldn't know every keyword and valid syntactic form of the language they are working with, but they should know all the common ones, and when they encounter something new they should have a willingness to learn more about the particular keyword or syntactic form.

Having the correct reference material on hand, and using google to search for and learn about unfamiliar language features or implementation is important. I don't personally have a copy of the ISO C++ specification on hand, but because I write applications for Windows using C++ I always have a link to MSDN on hand.

God developers have a willingness to learn and have proper references at hand. I don't think every developer need be an expert, but they should at least have that quality and those resources.

link|flag
vote up 0 vote down

This is a wrong question to ask at the wrong place. I bet everyone in the stackoverflow beta care about the tools of their trade to some extent.

link|flag
vote up 0 vote down

and then there's the question of either being a flexible coder, of a hardcore coder..

link|flag
vote up 0 vote down

I think i know very well java Lenguaje, i work with it every day, i have 2 Sun certifications, which the first one is directly related to languaje syntax, the threads issues and how the heap is managed. And i allways have the Java 1.6 javadoc page open.

Sadly Java is the only languaje i domine, follow by far by PL/SQL

link|flag

Your Answer

Get an OpenID
or

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