DEV Community

Discussion on: The 10x programmer is a myth

Collapse
 
andrewdtanner profile image
Andrew Tanner 🇪🇺

Can someone explain to me why such a term as '10x' exists and I only see it in the context of development? We're not the only ones who put long hours and great work in. Genuinely curious why this is such a thing in development...

Collapse
 
ghost profile image
Ghost

There is a book called "The 10x Rule" by Grant Cardone. Good reading btw, but I'm not sure it's connected)

Collapse
 
skilld18 profile image
Russell Dunk

Because programming scales so well. Take a real world comparison say you have a person digging a ditch. If they work as hard and fast as they possibly can they might finish twice as fast. As a programmer if I find an n^2 algorithm and make it run in n, that code, for 1000 inputs runs 1000 times faster. The 10x idea exists not because we are smarter or work harder but because good code is so much better than bad code.

Collapse
 
andrewdtanner profile image
Andrew Tanner 🇪🇺

That makes sense... but the term still doesn't sit well with me. It sounds... too abstract. Totally get where you're coming from though :) Thanks!