@daedalus The person to speak to is Robert C. Martin. It's from Clean Code. I've personally recorded programming sessions (not just mine) and noticed just how much time nothing happens on the screen during "coding" sessions. Various sources (e.g., The Mythical Man- Month, and this one https://blog.ndepend.com/mythical-man-month-10-lines-per-developer-day/) estimate average dev lines of code per day at between 10 - 100. Let's call it 55 LOC/day. Average words in a LOC: ~5. 275 words per day. At 30 wpm, < 10 mins of typing code/day.
@clacke@daedalus@jasongorman@sabik If you've ever run the old https://dwheeler.com/sloccount/ tool you've seen estimates based on the COCOMO model. It's fun to come up with numbers estimating how many person-years your code might take to construct from scratch and how much those engineers might get paid for that time, but I don't know that those numbers have any useful relationship with reality…
@jamey Aha, I don't know that tool but I know some analysis websites that operate on open source codebases provide an estimate of how much the code would cost to reproduce. I guess that's a similar model.