• @[email protected]
    link
    fedilink
    581 year ago

    My favorite part is looking at my ancient code and thinking “Holy hell I don’t remember being that smart. What happened?”

    • @[email protected]
      link
      fedilink
      311 year ago

      Everyone knows that debugging is twice as hard as writing a program in the first place. So if you’re as clever as you can be when you write it, how will you ever debug it?

      Brian Kernighan - The Elements of Programming Style, 2nd edition, chapter 2

    • @[email protected]
      link
      fedilink
      111 year ago

      A similar phenomenon is knowing you’re going to need to go back and update some older section of code and when you finally get around to it, it turns out you wrote it that way to begin with. It’s like… I didn’t think I knew about this approach before…

    • Punkie
      link
      fedilink
      41 year ago

      This right here. Plus stuff like “this is the functions section” and “this is the main script” helps make shell scripts more readable because functions have to come first, and if you just want to get to the main point, you can skip the functions section.