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.
