• rumschlumpel@feddit.org
    link
    fedilink
    arrow-up
    2
    ·
    10 hours ago

    But, yes. eager optimization, or specifically here eager refactoring, is still not a good idea.

    Beware premature optimization, indeed! Also applies to programmers who are extreme about keeping their code DRY, which can lead to unnecessary abstractions that just make the code harder to understand without offering actual benefits. IME some languages suffer from this more than others, e.g. Ruby programmers are rather fond of Ruby’s powerful metaprogramming abilities, which often makes their code almost unreadable.

    • vanillama@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      10 hours ago

      I had a senior in my last Ruby job who told me to keep metaprogramming to the minimum and after learning more about design and architecture I’m so glad he taught me that mindset lol. Metaprogramming is very tempting when you have a lot of repeated code that could be drastically reduced, but the whole team needs to be able to understand and work on it too, and not everyone is familiar with these features, nor should they.