日常开发中的小习惯

Small habits matter more than big rewrites in day-to-day development.

Write Down Decisions

When a choice is not obvious, I try to leave a short note near the code or in the pull request. It saves time later when the same question comes back.

Keep Changes Focused

Small changes are easier to review, test, and roll back. They also make it clearer which decision caused which behavior.

Test the Risky Part

I do not need a test for every line, but the part most likely to break deserves a direct check.