DEV Community

Discussion on: What Makes A Senior Software Engineer

 
pauljlucas profile image
Paul J. Lucas

This forum seems to be quite annoying...

Nobody is putting a gun to your head either to read it or reply. If it's that annoying to you, stop.

I quite specifically said you should focus on the important bits...

And I quite specifically said you have to know a breadth of things to know which bits are the important bits.

Thread Thread
 
erebos-manannan profile image
Erebos Manannán

You definitely do not need to know the low level details of C strings to know which bits are the important bits for you to focus on, unless you're working on some very low level implementations using C strings, and most people aren't.

Thread Thread
 
pauljlucas profile image
Paul J. Lucas

That was merely one example. There are plenty of others. One is some developer was putting expensive function calls as arguments to a debug print function, so even when the debug printing was disabled, the function arguments were still being called (and their results discarded). In this case, he obviously didn't know that function arguments are always evaluated. That's a fairly low-level thing, but it can kill your performance.