• remotelove@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    3 months ago

    Some people, like me, are not built to be developers. I can sculpt code in any language I need for whatever problem I need to solve, but maintaining code over a long period of time, with others, is not my thing.

    The drive to do additional changes is just too high and the tendency for typos or obvious logic errors is too common. (There is one little improvement. It’s right there. One line up. Just change it now while you are in there…)

    I am not stupid and regard myself as a decent engineer but my brain is just wired in a more chaotic way. For some things that is ok. For developing code on a team, not so much.

    Security is the field I am most comfortable with because it allows for creative chaos. Rule breaking is encouraged. “Scripting” is much more applicable and temporary.

    • Faresh@lemmy.ml
      link
      fedilink
      English
      arrow-up
      0
      ·
      3 months ago

      When using git and are working on a feature, and suddenly want to work on something else, you can use git stash so git remembers your changes and is able to restore them when you are done. There is also git add -p this allows you to stage only certain lines of a file, this allows you to keep commits to a single feature if you already did another change that you didn’t commit (this is kind of error prone, since you have to make sure that the commit includes exactly the things that you want it to include, so this solution should be avoided). But the easiest way is when you get the feeling that you have completed a certain task towards your goal and that you can move on to another task, to commit. But if you fail you can also change the history in git, so if you haven’t pushed yet, you can move the commits around or, if you really need to, edit past commits and break them into multiple.

      • remotelove@lemmy.ca
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        3 months ago

        I do. Also, I am old(ish) so I have had many years to come to terms with what I can do well and where I struggle.

        In this case, I didn’t want to use it as a crutch or an excuse. After reading the number of awesome replies this morning, I realized I should have probably framed my comment differently.

        People here put some real time and effort into giving some solid advice and I didn’t expect that.

        Edit: As a pure example, this is the third or fourth edit of this comment. Words are challenging, and programming is very similar in that regard.