|
|
|
|
|
by mafribe
4070 days ago
|
|
It's useful to get human feedback on one's code, but human attention
is scarce, and human judgement is influenced by many non-technical
factors (e.g. mood, politeness or hostility) that do not derive directly
from code quality. For these reasons, I recommend complementing internet-based code
review by measurement:
Use (automated) testing in multiple forms, unit, integration,
randomised. Count the number of bugs you encounter. Classify the bugs
you find, track how the numbers and classes of bugs in your code
evolve over time. Compare those statistics with other coders. This not only
gives you ideas about your relative coding ability, but will also reveal areas where you could try and improve your abilites. |
|