• Limonene@lemmy.world
    link
    fedilink
    arrow-up
    41
    arrow-down
    1
    ·
    5 days ago

    When I worked on OpenStack for a few years, 80% of the bugs I fixed were type errors that could have been prevented by Python being staticly typed.

    • Scrubbles@poptalk.scrubbles.tech
      link
      fedilink
      English
      arrow-up
      30
      arrow-down
      1
      ·
      5 days ago

      Yeah strong disagree with this meme. 15 years into my career and everything gets a data type.

      The only engineers I know who still don’t like strong types are engineers who haven’t lost a weekend due to a stupid type issue. Once you have one or a few of those, you start to like types again.

      • Rednax@lemmy.world
        link
        fedilink
        arrow-up
        7
        ·
        5 days ago

        I remember a javascript library where the was a function that returned, according to the documentation, “a color”. Did it return an object with 3 fields? Were those fields RGB or some other color scheme? Is it a string encoding a color? What format is that string? None of these questions could be answered without just running the code, and analyzing the object you got back.

  • Redkey@programming.dev
    link
    fedilink
    arrow-up
    7
    ·
    5 days ago

    ASM doesn’t care about your variable types, because it doesn’t care about your variables. What’s a variable, anyway? There is only address space.

  • wise_pancake@lemmy.ca
    link
    fedilink
    arrow-up
    9
    arrow-down
    17
    ·
    edit-2
    5 days ago

    Lately my approach to dev is “I don’t care about your language feautures, I’m going to treat it like lua and just stuff objects with data and write bare functions to process them”

    Unless I need to engineer something complex, everything is dict[any:any].

    • GTG3000@programming.dev
      link
      fedilink
      arrow-up
      2
      ·
      5 days ago

      Man, I love lua, but after switching to a different job on typescript I feel like lua could only benefit with a similar type system. So many bugs avoided just because I know for a fact what a function returns and expects.