• gaael@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      1 year ago

      Except if your adhd includes the perfectionist trait, because then you will never get to write the next line of code.

    • fusio@lemmy.world
      link
      fedilink
      arrow-up
      5
      ·
      1 year ago

      and how you could test it easily! it’s incredible how much it helps for cleaner architectures

    • railsdev@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      1 year ago

      I also think a lot about how I might extend whatever I’m implementing. It’s helped me to make classes more generic and keep things laser-focused so that blocks/methods/classes are reusable.

      Nothing grinds my gears like seeing the same block all over a codebase especially if each are just slightly different (time to subclass).

      • nous@programming.dev
        link
        fedilink
        English
        arrow-up
        4
        ·
        1 year ago

        I don’t find this helps. More often your assumptions about how something might change are wrong and when the actual change comes in you can end up causing yourself more work undoing the abstractions you made. IMO keep things simple as you can for as long as you can and add in abstractions when they are needed and remove them when they are not. Write code that is easy to change when change is needed, not code that tries to account for all possible future changes as this is impossible to do.