• 7 Posts
  • 645 Comments
Joined 2 years ago
cake
Cake day: July 1st, 2023

help-circle





  • For me, I’ll hop onto a new git branch and start renaming functions and variables to what they actually do.

    I might drag some blocks of code out into new functions, just a real rough refactor to get both the flow and my understanding of each block in place.

    Big if conditions get their own function, named what the intent is.

    I work in Xcode, so we can add extra context to breakpoints. I recently discovered the bookmarks that are built in, and you can annotate them too!

    Make a change, start from the top and make sure it reads ok and still makes sense.

    It’s eating an elephant on repeat.