vote up -2 vote down star
1

I am a developer who is having a lot of friction with its team leader, mainly because he wants to impose how to do things even when he has failed to earn the respect (as a person, leader and developer) of me.

His resume is impressive: a lot of years with involvement in the open source community and a lot of experience working as a freelancer way before he finished college, however, he has code impressive little gems that are worthy of a post in thedailywtf, and because of this, he has failed to earn my respect. Here is one of the gems i just talked about:

    $res = $this->_mysqli->query($query);
if($this->_mysqli->error) {
  try {
    throw new Exception("MySQL Error ".$this->_mysqli->error, $this->_mysqli->errno);
  }catch(Exception $e) {
    $error = '';
    $error .= "\n------ ERROR ". $e->getCode() . " -----\n";
    $error .= sprintf("Error message: %s\n", $e->getMessage());
    $error .= "\n--- Error query -----\n" . $query . "\n";
    $error .= var_dump($res);
    $error .= "\n--------------\n";
    echo $error;
    Utils::mail_bugreport($error);
    exit;
  }
}

The guy who wrote this wants to tell me what is best to do, and he will not listen to my ideas whenever he makes up his mind on a solution for a given problem. He is cocky, arrogant, and does not have a very good grasp of very basic concepts. Today an argument scaled up and he told me to "Shut up" in a very commanding way.

I have very little experience dealing with this sort of people (i have been rather successful at avoiding them, until now), any advice on how to deal with this kind of coworkers and situation?

Thank you very much.

flag
1  
You should mark this as community-wiki, as it has no technical solution and is very subjective. – womp Aug 20 at 3:20
4  
I think it is time for you to grow up. – David McEwing Aug 20 at 3:25
1  
I'm not sure what you are hoping to get out this. All we have is your side of the conversation and one snippet of code. People can offer you advice based on their experience, but it is useless to you because every situation is unique because people are unique. the only bit that you could use is "quit" or "find a new position". But what's to stop the next guy from being "cocky", "arrogant", etc.? – Justin Rudd Aug 20 at 3:31
2  
Earn your respect? Perhaps you should earn his respect, and in turn, you will expand your circle of influence. For what it's worth, I've fired multiple programmers for having an attitude/perspective like this. However, I would encourage you to read "7 Habits of Highly Effective people" -- if you took it to heart, you would find this whole situation turned around in your favor. There is a great story about a vice-president in your shoes, and the chief always micromanaged. But by expanding his circle of influence, he eventually became the most trusted in the company. Patience, and good luck! – gahooa Aug 20 at 3:38
1  
It sounds like you have the problem. Assuming coding ability is what makes a worthwhile team leader is an extremely narrow (and wrong) view. The person who understands the business at hand, the users/customers, and how to translate/interpret incoming tasks & requests makes for the better team leader than a good coder. – hythlodayr Aug 20 at 3:50
show 2 more comments

closed as not programming related by Dana the Sane, gnovice, deceze, David, Jason Aug 20 at 3:39

8 Answers

vote up 0 vote down

Sounds like you may have reached a point of no return here, but you really should try hard to get along and collaborate as much as possible. Tune the conflict waaaay down, try to find things you can agree with him about, common interests and so on.

If you do find a point of technical disagreement that really is important (these are far fewer than you'd imagine), try the indirect approach. Dig up an expert's advice (eg if this code were in Java you could look to Joshua Bloch's "Effective Java" for advice on exception handling) and share it with him in a non-threatening manner, asking him what he thinks about it and just listening, even if you think he's wrong.

Eventually you'll gain some mutual respect and be able to help each other out with technical advice, or you'll learn some diplomatic skills that would help you on your next job. Good luck!

link|flag
vote up 0 vote down

I have given up dealing such issues at individual level. Now I code it the way I know for sure is the best way to do. And then write an email or a wiki article and send it to all the developers suggesting it might be a better way to do. Chances are there that if there is such an asshole in the team, there probably are other good developers too who are always looking for better ways to do things. Sooner or later, you will find a bunch of people who think just like you or at least respect your views or have even better ideas.

I think, at some level, you have to build your own reputation and earn others trust. If nobody in the team really gets it, then its time to move.

link|flag
vote up 0 vote down

I think just do it the way , your boss wants the thing to be done ... EVEN if you know there is a better way of doing it .

In one project I was working I tried using Windows SDK messsage like below, in a .NET/ C# project

SendMessage(hWnd , WM_SETMARGN, EM_SETMARGIN, 0 )

The lead saw this and told me , why are you using such heavyweight message .

Anyone would agree with me, that Windows sdk messages are the basic way of message sending, and therefore it is the lightest .

However, my lead did not even know it ...So thats the scenario

link|flag
vote up 5 vote down

Read "How to win friends and influence people" by Dale Carnegie.

link|flag
+1: An excellent recommendation! – Jim Ferrans Aug 20 at 3:40
vote up 1 vote down

After being in this business a while, I began to realize that no one will judge me based on the code I'm forced to write at any particular job. No one asks for code samples or architecture outlines (since I'm not applying as an architect). They just want my knowledge.

So if I'm forced to do things in a way I consider wrong, it's a good time to remember who's writing my paycheck.

link|flag
vote up 1 vote down

I swear I wrote a book on this subject. :) "Managing and Leading in Silicon Valley". You have to be very careful. This kind of person is hard to deal with. I would recommend attempting to find a way to find common interests and form a better connection. Throughout my career, many of the people that were quite harsh actually were very different once you got to know them. That being said, some of them most definately were not.

I would recommend trying to find some common ground and attempt to connect on that basis. See what happens. Does everybody feel the same way? Are there some people that get along? I would also recommend being careful that you approach issues with facts and calmly to not escalate the situation.

I wish you success.

Jacob

link|flag
vote up 1 vote down

yawn! Almost everyone on SO will at some point of their lives have gone through the exact same situation that you are in.
Mostly, the advice will be, grin and bear it.. projects/assignments dont last forever.

However, don't miss this opportunity to develop your soft skills. This situation will not be unique in your lifetime.

link|flag
vote up 1 vote down

Find a new team.

link|flag

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