Ask HN: How many LOC are you personally responsible for?
Question came up through complaining that I don't have enough shared responsibility with code I maintain. For how many LOC does the buck stop with you? I'm at 33,000 that I maintain daily and have zero support for (let alone documentation). It feels big but I've no idea how others compare.
5 comments
[ 3.2 ms ] story [ 23.2 ms ] threadAnd when comparing between people, what does "maintain" entail?
I figured maintain to cover having originally written it and are charged with its ongoing use.
And maybe normalize for each by the lines of code for each component and some constant factor after twiddling.
Basically LoC by itself is meaningless. When you gauge responsibility you want to look at how many features are owned, how complex those features are (unit tests) and how critical those features are to the system/product (integration tests). With complexity/criticality being weighted much higher than feature count.
Of course like all metrics this is easy to game. But that's what code review is for.