vote up 22 vote down star
6

Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. He was/is smarter than me or certainly more educated.

Since then I found out he applied to Microsoft and when they had him do a doubly linked list implementation, he wrote it without indentation or comments, stating that he did not have time to worry about style. ( It was an email submission for which there were 2 hours to complete )

Microsoft did not call him back..... How do you think they responded, how would you respond?

Anyone from Microsoft on here that can suggest what they would do in this case?

flag
show 6 more comments

45 Answers

1 2 next
vote up 3 vote down

I would try flattering him, tell him that because he can do more complex stuff than other programmers he needs to comment it and lay it out nicely so that the rest of us can understand it.

I think if someone demonstrated that kind of attitude to me in an interview I would think very carefully about hiring him. I'm sure that even Microsoft want team players.

link|flag
vote up 3 vote down

In an interview, it is perfectly fine to not indent or comment your code. In fact, I would be surprised if you had time to do that-- we normally don't give that much time.

As a general practice, however, I fully expect you to indent your code and add comments where necessary. In fact, our build machine will fail on minute things like including tabs instead of spaces in your code.

Code readability is important. Just like no one likes reading one big paragraph (instead of small, structured paragraphs), no one likes reading one big lump of code with no formatting.

link|flag
show 8 more comments
vote up 9 vote down

There's little excuse for not commenting and none for not indenting. Indentation is handled by most of the best editors and commenting should come as second nature for somebody who MS might like to hire.

They're certainly both disciplines that people get into (either naturally or through schooling) so not showing either, perhaps, shows a lack of discipline, or, at least effort to express it.

Edit: 2 hours for a linked list?! I see he meant now... Fitting in all that formatting in the remaining one hour, fifty minutes would have been pretty tough! (I'm only playing around - I assume there was more to the interview than a linked list!)

link|flag
show 5 more comments
vote up 3 vote down

Programming without identing and a readable style is like writing a book without paragraphs and pagebreaks. It's just a great bunch of text and I would never take time to understand it.

I fully understand the reaction of Microsoft - I wouldn't call him back too.

link|flag
vote up 7 vote down

Programming style is very important. Comments even more so. Even if you are working by yourself, on your own project, you should comment your code, because a month later you will not remember what you did and why. And if you work in a team, then unclear, unformated, and uncommented code can cause a disaster.

link|flag
vote up 2 vote down

I find it hard to believe anyone would think no indentation is a good idea. That is just dumb, I wouldn't call him back either if he did that for me on an interview.

Comments are a little greyer, great code is self documenting to a large extent. IF you write great code then comments should only be places sparingly in places where what is going on is truly complex and hard to follow.

link|flag
vote up 0 vote down

If you spend more time on indenting code than actually writing it, it could be a problem. But source code styling, conventions and consistency across the solution is important.

That is why I rely on a tool to do that. Resharper allows me to reformat all my code by pressing Ctrl+F, E keys combination.

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

Code is read by three entities: The computer, the programmer, and ultimately the maintainer.
Style and Formatting is irrelevant to the computer, possibly important to the programmer, but it is certainly important to the maintainer, who has to try and comprehend the program's functionality.
Refusing to accommodate other developers by making code readable is disrespectful.
Creating organized code with meaningful variable names and comments is a form of common courtesy to anyone else who reads it.

link|flag
vote up -2 vote down

When it comes to coding when applying for a job, I think it's a bit harsh to dismiss a candidate for not commenting/indenting the code he wrote, except in a situation where he was explicitly asked to do it.

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

No programmer is an island. Someone is going to have to read their code one day. It's been repeated here many times before:

Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Martin Golding (maybe)

That said, if their style is adequate, there are other much more important things to evaluate when hiring a programmer. But if they utterly refuse to use comments or attempt to make their code readable to others, it is a deal-breaker.

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

If want to throw away your source-code after writing it, it's OK to ignore styles. That applies for fast scripts, that you make for your task, that really runs only once. On the other hand, how often it happens, that the task that was supposed to run only once will be reused later.

Reusing may be OK, but it will later hard to understand what happens. If you want to modify the code later, you are lost without some style.

How important a proper styling is, depends on how long you will use and modify the code and how many will work on it.

If you work in a team, speak about which styles should be applied.

link|flag
1  
I would say not even then. I think you want your code to run correctly, even if it's one-off. If there are any errors in your code, you're gonna want to format it well enough so you can debug it. Also, with Python, you don't have the option not to indent. – Christopher Mahan Jan 12 '09 at 13:23
vote up 1 vote down

Your friend needs to get his prioritys right, and in my opinion I believe microsoft would care more then you seem to think they would.

link|flag
vote up 0 vote down

Style that emphasis on readability is important. Extremely important.

Many programmers argue over frequency and use of comments, but most argue that they are needed.

link|flag
vote up 3 vote down

I would fire him, but luckily, he would never actually be hired.

I would prefer that he spent 2 hours writing clean, almost functioning code, than for him to slap something together that works.

Programming style is important, especially when working on a team.
It becomes critical when supporting legacy applications, written by several people.

Part of being a professional, and not just some script-kiddie, is caring about the code. It's about realizing someone else will read this code (Maybe even you!) six months from now. Therefore, you should make it as easy as possible to maintain.

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

I wouldn't expect an interviewee to comment their code (assuming they were writing it on the spot in the interview). If I was interviewing someone experienced though, and they failed to indent the code, then that would certainly count against them. I wouldn't expect the indentation to be perfect, or in a style I liked, or anything else. But it had better be indented. It's part of writing code.

If I'm recruiting someone non-experienced (and I usually am) then it doesn't matter. But I'm not going to ask them to write a doubly linked list either.

link|flag
vote up 2 vote down

Absolutely, style is important. Especially when it comes to things like indenting and whitespace. Code should be easily readable by a person, since it is a person that has to maintain that code later. The more readable the code is, the easier it is to maintain and the higher the quality of that code will eventually become.

There is a psychological factor that comes in to play with code style. When the code is "ugly" and hard to read/understand you want to take less ownership of that code, so there is less personal incentive to do your best work. As the code becomes more readable/easy to understand, you feel better about the work you've done and want to take more ownership. The more ownership of the code you feel, the more personally important it becomes to write better code.

As far as how Microsoft responded, I would have responded in exactly the same way. I think their response of not calling him back was probably perfectly justified (and there may have been other factors than the lack of code style, although I'm sure that was a contributor).

link|flag
vote up 2 vote down

Well, the fact is that the software life cycle phase in which it lives the longest is maintenance. During that time it is mostly read and analyzed by humen trying to fix it, reuse it, enhance it, etc. That is the best reason to keep it easily readable and understendable. Someone stating that he has no time to worry about style, which explicitly influences readibility, shows only his immaturity as software engineer. Or maybe simply no understanding of software life cycle.

link|flag
vote up 0 vote down

I think so much of what we are judged on is looks or style, it would be hard to look at a piece of code without indentation or comments and see the genius in it. Most people would look at it and think ughhh this is way too overcomplicated, lets rewrite it.

I would probably read the Microsoft code style guide before submitting it. Just as you would not walk into an interview with dirty clothes, I would not submit unindented unreadable code

Whats the saying.... Writing new code is like sex, fast and exciting... Maintaining code is taking care of the child that arises from sex, long, difficult, and extremely frustrating at times.... oh rewarding and fun too...

link|flag
vote up -3 vote down

No

Programming style is absolutely not important. What matters is maintainability and readability.

To ensure you'll stay on track, you must enforce your team with an homogeneous and readable code format. Which one doesn't matter : you can't please anybody and there are software to change the code format.

If a language accepts several paradigms, don't try to choose only one. As long as code is well commented and does the job, who cares it the guy used a functional or an imperative style ?

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

Programming style is very important. Clean code pleases the eye and improves maintainability of the program. Therefore it's directly bound with the quality and the architecture of the program itself.

Even in a language that forces indentation one can really broke everything with bad style. Bad style may not therefore be lack of indentation or comments. Actually, I rarely use comments, I much rather prefer docstrings and overall writing better documentation. I associate comments to small notes you spread around the code if you really see there's something to fix or wonder about in there.

I'd rather see bad style as not letting the programming language do some of your stuff for you. Proper, cleanly written macro in a place or two is really good style rather than bad.

link|flag
vote up 1 vote down

I've always felt that the one thing you can count on is that the people who look at your code after you are gone will think you are an idiot. The key thing is to maximize the time between when the code is first viewed and when they make that determination.

Good formatting is one way to increase N, helpful comments are another.

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

It's all a matter of who is the intended audience of the source code. The correct answer is "other programmers" (maintainers, etc). Your collegue thought it was not important and I fully understand why MS didn't hire him. I would be surprised if any big company would hire him at all!

I remember an old article titled "Typographic style is more than cosmetic" appeard on "Communications of ACM" that made experiments on the impact of good formatted code on productivity.

They took a group of programmers and gave them a test to rank them. Then they divided the group in two the two group the same assignment: modify a piece of software to add some functionality.

Only that the first group got a nicely formatted source code to work on and the others had a rather messy version of the same code.

They measured their productivty again and the end result was that the WORST programmer of the first group scored better than the BETTER programmer of the second group.

Since then, I always put extra effort in makingmy code clear to read for other humans.

For those interested in the topic I suggest reading about literate programming, intentional programming and other related concepts.

link|flag
vote up 0 vote down

Commenting is something I'd see as a double edged sword since too much comments can certainly lead to less readability. Jeff wrote a excellent article on this

Indenting on the contrary never hurts and increases readability big time. That's one reason why so many people like Python with it's significant whitespace.

link|flag
vote up 0 vote down

Prgramming style does not limit only to code identation and commenting.
Code identation is indeed very important for code lizibility. I never saw un-indented code that was easy to read :).
What's also very important is the code to be self-explanatory, comments should be used only when the implementation becomes for various reasons cryptical or where the code doesn't reflect clearly WHY the author wrote it that way. I saw lots over-commented code, and I can tell you, seeing comments almost on every line is like reading pages of insults.
Anyway, I doubt that Microsoft rejected your colleague just because he didn't comment a double linked list implementation.

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

There is another reason why code style is important. It can act as a proxy for determining a programmer's professionalism. Just as a peacock's tail feathers demonstrate his health and virility (an unhealthy organism wouldn't be able to devote scarce resources into building a plush tail), a program's style can reveal a lot regarding the person who wrote it.

When I see badly formatted code with inconsistent naming conventions and scarce comments, I steer away from it not only because such code is inherently unreadable, but also because the code is quite likely to harbor even worse problems beneath this troublesome surface.

link|flag
vote up 1 vote down

About "style" (which I'd rather call "formatting"): it is largely a matter of personal taste, but working in team is very important defining some guidelines which EVERYONE must follow, bending his/her personal preferences if needed (in Eclipse we export the formatter configuration and with a keypress we get the file formatted). Very soon everyone will get used to the standard and reading code will be very less fatiguing.

About comments: I prefer a good naming for my methods, but a comment on two on the most obscure parts are mandatory.

link|flag
vote up 1 vote down

You can argue that well written code does not need comments, or at least very few comments. But a lack of indenting is not acceptable. The compiler does care (in most cases), but the people maintaining the code do.

link|flag
vote up 0 vote down

I try to use the IDE formatting style. So, we avoid new and boring definitions about how to write code and consequently, unnecessary merges due to differences in indenting and format.

Documentation is mandatory even on the most fool code. It could be nice have a template to generate documentation lines inside your code. Standardization and organization agreement inside a team is the best style.

link|flag
vote up 9 vote down

A developer who doesn't care about style is like an artist, a painter, who doesn't care about color.

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

Formatting doesn't take any time whatsoever. It's a crappy excuse. Just let your editor format it when you're done for the sake of the violent psychopath.

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.