• dsemy
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    26
    ·
    5 months ago

    You think your code is higher quality with more dependencies? All you’re doing is offloading complexity to a separate project.

    If you make a program that does “something worth doing”, but you need some specialty library to actually do it (which you didn’t implement yourself), than sorry, but it wasn’t you who did it.

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      27
      arrow-down
      3
      ·
      5 months ago

      Yes, offloading complexity to a separate project which has already invested more time into code quality than I could possibly justify.

      As for your second point, I don’t care who solved the problem. If you care, I hope you’re smelting your own sand to build your own CPU and assembly language. But I’m obviously also not solving the exact same problem as the library already solved.

      Why are you looking for conflict?

      • Azzk1kr@feddit.nl
        link
        fedilink
        English
        arrow-up
        8
        ·
        5 months ago

        If you want to build something from scratch, you first have to invent the universe :) (paraphrased from Carl Sagan)

      • dsemy
        link
        fedilink
        English
        arrow-up
        11
        arrow-down
        5
        ·
        5 months ago

        My problem was with the first line of your comment:

        Yeah, I’ve given up trying to know all the libraries in my projects.

        This leads me to assume that you don’t actually know that those dependencies are as well maintained as you claim.

        Obviously dependencies are important and make sense to use in many cases, but using trivial dependencies to speed up development isn’t good.

        As for your second point, I don’t care who solved the problem. If you care, I hope you’re smelting your own sand to build your own CPU and assembly language. But I’m obviously also not solving the exact same problem as the library already solved.

        I was just saying it isn’t you who solved the problem in that case, really, as the hard work was done for you. Honestly though, it was pointless and rude so I apologise.

        • Ephera@lemmy.ml
          link
          fedilink
          arrow-up
          3
          ·
          5 months ago

          Apology taken.

          This leads me to assume that you don’t actually know that those dependencies are as well maintained as you claim.

          Well, I can’t guarantee that none of them are buggy, unmaintained etc… But that’s why I prefixed that sentence with “I feel”.
          On average, it seems to me like the code quality is a good bit higher than I’m able to produce under money/time constraints.

          In particular, even the worst libraries tend to be not as bad as they may be in many other languages, because Rust’s strict type system + compiler enforces quite a bit of correctness on its own.
          Well, and the good libraries are just obsessed with correctness and performance, so they drag code quality upwards, even if they introduce a mild risk of a transitive dependency being a dud…

    • Carol2852@discuss.tchncs.de
      link
      fedilink
      arrow-up
      9
      arrow-down
      1
      ·
      5 months ago

      This assumes that I could implement something as well as the maintainers of the library I use. I agree that something trivially should be implemented on your own, but if there is special knowledge required (the obvious example is cryptography, but also something like HTTP requests) I rather rely on a widely used library than my own code that I now have to maintain and check for security issues instead of just updating the dependency version whenever a CVE is published.

      Also if there is. A client by an API provider for my language, why shouldn’t I use it instead of rolling my own?

      Another example is a framework like React or Angular or Svelte, which brings along a whole lot of dependencies. Sure, I could not use something like that and write everything from scratch.

      But where is the value of all that code to customers? If I want to roll my own HTTP server up from the sockets, I can do that as a play project. But not using libraries for a real world project to solve business needs is a bit of an odd take.

      Anyways, that’s enough of a rant. Have fun in the replies. 😎

      • Carol2852@discuss.tchncs.de
        link
        fedilink
        arrow-up
        6
        arrow-down
        1
        ·
        5 months ago

        Oh, I forgot one thing:

        sorry, but it wasn’t you who did it.

        This sounds like you want to prove something. That you can do it better than the maintainers of the library. That you can solve hard problems on your own instead of relying on other people.

        That’s all great and sometimes it’s good to do hard things on your own and make sure you could do it just in case. But it’s not always necessary to do everything yourself and learn every lesson yourself. It’s a valid way to build on knowledge and work of others to achieve your goals.

        • folkrav@lemmy.ca
          link
          fedilink
          arrow-up
          1
          ·
          5 months ago

          Holy shit this. I’ve observed a lot of competent devs go through that phase, trying to be clever and come up with what inevitably ends up being pale imitations of existing established solutions. Yes, we do avoid pulling in dependencies when we can avoid it, but this reeks of “Real Programmers Don’t Use Pascal”, without the tongue in cheek tone lol