• 0 Posts
  • 179 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle







  • I never once had a manager who even pretended to be a coder, and I’ve worked for a wide variety of companies ranging in size from a few people to tens of thousands. The only technical manager I’ve ever witnessed was myself when I managed teams of developers (and that only happened by accident when I wasn’t really paying attention). Even then I was less of a technical manager and more of a lead developer who also took on management functions because there was nobody else around to do it.

    It certainly seems like a manager with actual technical skills would make the best manager of a team of developers, as long as they also have the people skills to do it. And didn’t harbor the desire to fire everybody and just do everything themselves - like I did.

    or was it that they hired “career managers” whose only skill was to organise things?

    My best manager was a former dentist who quit the profession after just two months because he couldn’t stand the idea of sticking his hands in peoples’ mouths all day long. I don’t think he had anything resembling formal qualifications for management.






  • ChickenLadyLovesLife@lemmy.worldtoProgrammer Humor@lemmy.mlComenting code
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    2
    ·
    edit-2
    1 month ago

    if the code changes and the comment isn’t updated accordingly, it can be ambiguous.

    People always cite this as a reason comments are bad. In 30+ years as a developer I have seen (and participated in) a lot of failed software projects, but not once has a mismatch between comments and code been the actual cause of the failure. Moreover, the same logic could be applied to the names of methods and variables (“if the code changes and the method and variable names aren’t updated accordingly, it can be ambiguous”) but nobody ever suggests getting rid of that. At the end of the day, comments are useful for imparting information about the code to future developers (or yourself) that is too complicated to be adequately communicated by a method name.