• burnso@lemmy.world
    link
    fedilink
    arrow-up
    29
    arrow-down
    2
    ·
    edit-2
    8 months ago

    Then teach us. Advocate for us. Help us improve and understand.

    A very large part of the problem is that the people who are knowledgeable are often the ones that bought into the whole lone wolf coder shtick.

    Most junior people I work with are interested and want to learn, but between high demands, no time to do it and senior devs who focus only on their own problems - it’s very hard to know how to learn and improve.

    We can and need to solve this but it requires that we work together and actually sit down to bridge the knowledge gap.

    • lysdexic@programming.dev
      link
      fedilink
      English
      arrow-up
      8
      arrow-down
      1
      ·
      8 months ago

      A very large part of the problem is that the people who are knowledgeable are often the ones that bought into the whole lone wolf coder shtick.

      I’d add that a large part of the problem is that we have people complaining about perceived problems without being able to present any kind of solution.

    • Redkey@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      8 months ago

      I think a part of it is how we look for information in the first place. If you search/ask “How do I do (task) in (environment)?”, you’re going to find out about various libraries/frameworks/whatever that abstract everything away for you. But if you instead look for information on “How do I do (task)?”, you’ll probably get more generalized information that you can take and use to write your own stuff from scratch. Try only to look for help related to your specific environment/language when you have a specific implementation issue, like how to access a file or get user input.

      We also need a willingness to learn how things actually work. I see quite a few folks who seem to be so worried that they’ll never be able to understand some task that they unwittingly spend almost as much or even more time and effort learning all the ins and outs of someone else’s codebase as a way to avoid what they see as the scarier unknown.

      Fortunately, I’ve seen an increase in the last year or two of people deliberately giving answers or writing tutorials that are “no-/low-library”, for people who want to know what’s actually going on in their programs.

      I would never say to avoid all libraries or frameworks, because many of them are well-written (small, modular, stable) and can save us a lot of boilerplate coding. But there are at least as many libraries which suffer from “kitchen-sinkism”, where the authors want so much for their library to become the pre-eminent choice that it becomes a bloated tangle, trying to be all things to all people. This can be compounded by less-experienced coders including multiple huge libraries in one program, using only a fraction of each library’s features without realizing that there’s almost complete overlap. The cherry on top is when the end developer uses one of these libraries to do just one or two small tasks that could’ve been done in less than a dozen lines of standard code, if only someone had told them how, instead of sending them off to install yet another library.