vote up 7 vote down star
5

I am new to work but the company I work in hires a lot of non-comp-science people who are smart enough to get the work done (complex) but lack the style and practices that should help other people read their code.

For example they adopt C++ but still use C-like 3 page functions which drives new folks nuts when they try to read that. Also we feel very risky changing it as it's never easy to be sure we are not breaking something.

Now, I am involved in the project with these guys and I can't change the entire code base myself or design so that code looks good, what can I do in this situation?

PS> we actually have 3 page functions & because we do not have a concept of design, all we can do is assume what they might have thought as there is no way to know why is it designed the way it is.

I am not complaining.I am asking for suggestion,already reading some books to solve the issues Pragmatic Programmer; Design portion from B.Stroustrup; Programming and principles by B.Stroustrup;

flag

6  
What makes a 3-page function C-like? – Alan Oct 15 at 22:24
7  
Hope they dont read Stack Overflow? – NickAtuShip Oct 15 at 22:35
It seems as "3-page function C-like" that is not literally; just an exagaration to drive home a point. However, there are 3 page functions/methods out there, I have seen a 2,000-line code with no comments and I have seen pages that do about 6 different things. – Phil Oct 15 at 22:38
Nick, changed the name ;-) , thanks! – KaluSingh Gabbar Oct 15 at 23:26
hehe no problem – NickAtuShip Oct 15 at 23:40

10 Answers

vote up 25 vote down check

The best and most important thing you can do is lead by example. Do things the right way and try to improve things slowly. You aren't going to fix anything overnight.

Make sure every piece of code that you are responsible for is better after you are done with it. Over time, the system will tangibly be better because of your efforts.

After you build a strong reputation with your co-workers, try go start some code reviews or lunch-training sessions to get everyone up to speed on better ways to do things.

In a nutshell: it will be difficult and frustrating, but it's possible. Good luck.

link|flag
14  
Not every piece of code. If these old-timers have any sense of ownership at all, they'll resent the new kid making gratuitous changes. You'll be creating a conflict that will cause your style to be treated with contempt, whatever its merits. Do lead by example with any new code though. – Mark Ransom Oct 15 at 22:30
2  
@Mark that's actually a really good point (although, I must admit, I hate that it's true)... Check edits. – Robert Greiner Oct 15 at 22:33
2  
What is the most annoying thing you can experience? That somebody comes and rewrites your code /because they think they are better/ and then causing some bug to be introduced which senior guy then needs to fix... – Anders Karlsson Oct 16 at 8:28
@Anders you are 100% correct assuming that the new kid doesn't know better and that the original code is of good quality. I don't think the OP is just another cocky kid, I think he really sees some poor code that he feels he can make better. The situations are different but not necessarily mutually exclusive. – Robert Greiner Oct 16 at 16:02
Andres, I am not asking to change their existing code neither I can change it for better, these guys are all PRO with 15+ years experience. but the code is not structured and we have to read it (makes it impossible) in our day-to-day life. I am trying to do something which will allure them to adopt process/standards/convention as they still are writing new code in the same way, of course you can't go and correct all code your self as you have your own work to do. or your manager kicks you out ;-). it kills all motivation of doing things systematically – KaluSingh Gabbar Oct 16 at 22:55
vote up 8 vote down

If you're a junior dev, then the only thing you can really do is write code as elegantly and readable as possible.

If your style is indeed better, other people might notice and say "hey we should adopt this formula"

Actions speak louder than complaints, which is something I noticed.

link|flag
vote up 0 vote down

This is how it is, get used to it or quit and find a place where it isn't like that. You will be marginalized if you criticize their efforts and they may feel threatened if you do indeed write your own, better code or improve theirs. At the end of the day they deliver code and management sees a black box that works and that's all that matters. Plus, you'll be just another kid from college who thinks he knows something about development at a business and laughed at and ostracized when not around. Honestly, a lot of the times these systems are built like this because of shaky requirements, lots of functionality bolted on with time and managements lack of respect for a stable software development process.

Not all companies are like this. I'd start looking for a new job to be honest.

link|flag
Leaving a steady position (especially directly out of school) is not often a good decision - regardless of the existing codebase. Adaptation and the eagerness to inject change will get you much further in life. – ezpz Oct 15 at 22:34
I'm saying start searching for new opportunities. I've worked in environments like that and it isn't qualitative at all. Adapting to poor coding standards and design is not helpful. My advice to this kid is stick around if need be but don't expect anyone to respect his opinion if he's fresh out of school. And calling other developers out with his current status is dangerous and not beneficial. He either has to put up with it and face the reality he won't learn much from these types or he can start searching for a new place to work where people share his values. – Nathan Z Oct 15 at 22:44
nathan, totally agree with you. – KaluSingh Gabbar Oct 19 at 23:49
vote up 6 vote down

Being enthusiastic to code the right way is a good trait to possess and in the software industry we will always encounter other developers who write code that is not quite in line with our "perfect way" of coding. This should never be interpreted as rubbish code, or inept coders, because we all start out like that in some shape or form.

Always respect your peers around you as you want them to respect you. It's certainly not easy to do in an environment that highly regards ego, but attempting to approach a topic like this is never easy.

It's how you communicate

Try different approach angles, remember you are there to learn as much as to render a service.

So commenting on the "poor" code style in an "in-your-face" kind of approach might not be the result you were looking for. So then back up a bit and try approaching the topic with "I was considering the style of code used and have a few suggestions..." and see the difference that gives.

Where I work now, the one thing I've learnt is that it's fine to comment on something that's might not be good quality but then I had better have a better solution to present.

In other words, be prepared to back up your words with useful solutions and not because you feel so.

link|flag
thanks Mike, I definitely do not fight but I am worried about my growth. If I don't see how a good Code looks like, how I am going to write that way. – KaluSingh Gabbar Oct 15 at 23:22
Reading other people's code is a good way to find out what is good and what is bad. Remember it takes a number of years for a tree to grow, we are no different. Read and learn. That's a good starting point, and as a developer, don't be afraid to ask questions. :) – Mike J Oct 16 at 8:19
vote up 1 vote down

I fervently hope, this is the best opportunity to grow by facing the challenge.As Robert said,try to lead by example.If possible let them adopt your pattern.

link|flag
vote up 11 vote down

Your best bet is to NOT to handle it at all. Here are potential problems if you try:

  1. You will be criticized for doing something you were not told to (makes performance reviews go real bad.)
  2. You will have less time to do your own work.
  3. You will not advance your career by cleaning working code- if it is not broke then do not touch it.
  4. Never make enemies with people who control your career- unintentionally implying they are obsolete morons does not help your cause (especially in a bad economy).

Focus on making your own code great. Battling poorly written code is part of the ill of being a Software Engineer. You are in the wrong profession if you will not stand for it.

A little off point but important- You may need to switch jobs or teams if possible once the economy picks up. Mixing with a truckload of bad coders who do not bother to update their knowledge and practices dulls your own programming skills and weakens your marketability.

link|flag
vote up 5 vote down

The present is embodied in Hexagram 47 - K'un (Oppression): Despite exhaustion, there may yet be progress and success. For the firm and correct, the really great man, there will be good fortune. He will fall into no error. If he make speeches, his words cannot be made good.

The future is embodied in Hexagram 6 - Sung (Conflict): Though there is sincerity in one's contention, he will yet meet with opposition and obstruction. If he cherish an apprehensive caution, there will be good fortune. If he prosecute the contention to the bitter end, there will be evil. It will be advantageous to see the great man. It will not be advantageous to cross the great stream.

link|flag
2  
Odd, but I like it. Please continue to post. – brone Oct 15 at 23:42
This makes no sense. – Phil Oct 22 at 20:53
vote up 1 vote down

This is the most basic reason why establishing coding standards and code review processes are a good idea.

I will not write three page functions no matter what coding standards and processes are established, but some people will. They will create 20 local variables at the beginning, without initializing any of them. You'll have pointers and integers with unspecified values. You won't know the exact meaning and scope of each variable. Etc etc.

Try to convince your manager and, later, your team, with solid arguments. Maybe you could start with a shared reading of Effective C++ or C++ Coding Standards. Try to stress the point that, when working this way and creating better code, everybody wins. If they see this as a win-win situation, they will be more open to the change.

link|flag
vote up 0 vote down

You are not alone. I too faced recently, luckily we have support from Senior Management for Code Reviews. 1. Even a single line change for Bug fix should be reviewed online.

  1. Comments on code can be classified as CodingStandard/Suggestion/Clarification/Major/Minor etc

  2. While giving comments to senior you can start with Clarification/CodingStandard rather than Major

link|flag
vote up 0 vote down

I can empathize.

I'm below two senior programmers who have very unique styles that I find frustrating. We have code that consists of one main function that's 1000 lines long. (That is not a typo.) Our coding standards discourage globals, so we make every program one App object. Now our globals are member variables! When we need an iteration interface for C++ classes, why should we use the begin, end, and operator++ conventions, when First, AtLast, and Next can be used instead. We've wrapped up third party libraries in custom interfaces for no good reason. (We've wrapped log4cxx and lost functionality for no reason I can tell, and one of our date classes consists of a shared pointer to a boost::date object with a fraction of the functionality.)

Here's how I've kept my sanity. I've focused on the new languages and tools. This is our company's first project involving Python, and I've spent my time writing utilities and programs there. While the senior programmers code in what they're familiar with, I've got near free rein of all the Python code. I couldn't stand the C++ APIs we use, so I duplicated most of the same functionality in Python in a much more friendly way, and the other developers prefer it too.

Likewise, we have little familiarity with log4cxx and less with boost-build, both of which I've taken time to study in depth and know good enough that people come to me with questions. I've written a handful of resources on our wiki giving usage tips for log4cxx and numpy and other tools.

link|flag

Your Answer

Get an OpenID
or

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