• 0 posts
  • 2 comments
Joined 1 year ago
Cake day: July 11th, 2025
  • Had my iPhone 12 for about 6 years, hoping to make it last at least 10 years. Case, screen protector and a battery replacement last year have kept it going strong for not much money.

    The only struggle is the 64GB storage - large updates require me to offload lots of apps, and delete/re-download saved music. Otherwise I could get much better camera quality with a new phone, but it’s good enough for me.

  • We’re keen to use stacked PRs at work.

    We’re using agentic coding heavily, but still reviewing code to help us steer the software architecture and keep our understanding of the implementation. We generate large changes quickly, but need to break them into smaller, logically ordered PRs for review.

    It’s nice for the reviewer to be able to look ahead through the full change, so they see can check the big picture, rather than merging a couple of PRs and then spotting that the abstractions are wrong.

    PR stacks work very well for providing this kind of visibility, but are annoying to merge. After one PR in the stack is merged, the next PR needs to be rebased onto and targeted to the updated main branch. With our branch protection rules, this triggers another CI run and dismisses the PR approval, requiring human intervention.

    It would be much nicer to have the reviewer go through all the PRs and then merge the stack in one go.