2
js420
4y

I have a personal opinion and correct me if I'm wrong
Why does a programmer need to learn behind the scenes stuff (memory allocation).
I know it helps to understand the concepts better.
Why would I learn how the engine of a car works in order to drive a car ?.
And the only task is required from you to drive a car.
And literally you can code without knowing any of these stuff and since companies only need clean and efficient code.
Will it be really helpful to enhance your coding skills if you know behind the scenes stuff ?

Comments
  • 6
    Being a driver is a great example. If you don't understand the basics of how cars and engines work, you probably just turn your car on and go, you use the cheapest non-synthetic oil, fill it up with 89 octane, never clean your air filter, ride it constantly at too high rpm, or strangulate it by not understanding where the torque bands are.

    It gets better though: you have a grinding sound that won't go away, but can't identify it. Mechanic looks at it, says you need a new rotating assembly. They replace half of your car and your timing belt, pulleys, etc etc and bill you for it because they can, you don't know any better. The mechanic also know that the problem was just a tie rod end that was improperly tightened, so he took a torque wrench to it, fixed the actual problem in about 2 minutes and you're none the wiser. But hey, the problem is gone. All good, right?

    If you can't reason about the memory usage of your algorithms, you're guaranteed to paint yourself into a corner. You'll be that kind of person that needs tons of vendor support tickets, you'll buy more hardware when you could have just optimized a method or introduced a throttle or some strategic caching. You'll have no choice but to accept bullshit answers from framework and hardware vendors because you don't know any better.

    There's also the bit that you're supposed to be the expert, they're paying you for that. I can tell you within a few mb what the operational profile of my applications, and therefore my jvm memory settings should be with some simple back of the napkin math. That's delivering value.

    The you in this context is euphemistic and general, not the actual *you* 😉
  • 5
    @SortOfTested "you're supposed to be the expert they are paying your for that" sigh if all people would take that to heart rather than just give excuses or take sudden one week leaves the world will a better place.
  • 5
    If you don't want to know what's under the hood, stick to SPA and NodeJS and drive the car till it catches fire, and trade it in for a new model, that's fine, just another useless dev in the market as far as I'm concerned.

    Learning what your application can do, how to find optimisations that are abstracted away from you due to frameworks and vendors and how to make that process that takes 4 hours because some useless dev wrote it, and turn that into < 5 minutes.... that's a game of its own you're being paid for.

    Your profile says fullstack, yet you claim you don't need to know the fullstack 🤷‍♂️
  • 2
    @iamai
    Indeed. Honestly the better analogy isn't even one of driving your car, but driving professionally. As engineers, we're closer to the level of racecar driver than bus driver, chauffeur or truck driver. It's our job to diagnose the "vehicle," which is in this case our application. You may not need to know how to make a harness wiring harness, or machine components, but you need to be able to identify where low level problems are to effectively communicate with the pit crew (vendors, framework, language and system teams, as well as other teams within your company). It's the difference between a quick resolution and being out of the race.

    If your company leans open source, you'll have the advantage of being able to test and fix the issues yourself and submit PRs and tests to the project itself, saving you even more time since you don't have to wait for a vendor patch.
  • 1
    @C0D4 he has typos on his profile. Maybe he's a fullsack developer
  • 1
    Speed, optimization of resources, (re-)writing an algorithm or function tailored to your own needs and specs, the list goes on... And the bigger the data you work with and the more time-sensitive your application, the more critical memory management and execution time will become for example.
Add Comment