• 0 Posts
  • 14 Comments
Joined 1 year ago
cake
Cake day: July 11th, 2023

help-circle


  • By joining hands with Activision Blizzard, we hope to achieve our vision of enabling people to connect and play fabulous gambling games anytime, anywhere, and anyhow they like.

    (emphasis mine)

    So the CEO of Microsoft obviously has no idea about the difference between gaming and gambling. Fair enough, nobody has to care about every possible hobby. But it is a bit wild that they just took that quote and ran with it and nobody said “Hey, is it ok to slightly edit it so it is less obvious you don’t know jack shit about this topic?”.





  • Nowhere in that text does it say “managers are the real software architects”. What it does say is “what managers do affects software architecture”. Sure you can extrapolate that to delusions of grandeur, but if you take into account the explicit call for collaboration it is much more likely what was meant is more along the lines of “we can mess things up if we ignore the architecture, so let’s talk to the real software architects before making org decisions”.

    About the comic: That one does have the line “management designs software architecture”, much closer to the negative interpretation; but that too can be interpreted in a more positive way as “… and we are not good at that, so let’s make sure to bring in the people who are good at it at important points”.






  • About comments:

    Please please please, do not always write comments. Try to write code that does not need comments whenever possible. Proper variable, class and method names go a long way. If you think a block of code needs a comment, turn it into a method and give it a proper name instead.

    Comments should be a last resort for cases where making the code self explanatory is not possible, and those should be rare.

    About optimization:

    Optimal code is code that fulfills it’s purpose without observable issues.

    If you try to make something faster without any prior complaints or measurements indicating that it being slow is an actual issue, you are not optimizing, you are just engaging in mental masturbation.