Hacker News new | ask | show | jobs
by intelVISA 1165 days ago
> Very little insight of how the underlying OS and fundamental computing stacks works and yet [...] good fast code.

What domain is this? That's near impossible in most!

2 comments

If you have enough abstraction (like with the web) and understand basic performance principles, like instructing the computer to only do, what is neccessary, then one doesn't need to understand the system beneath, to get performant code.

It is mostly enough to know that method A is expensive (e.g. drawing a big image) so if you avoid it, than this what brings you good enough performance.

So sure, no one is talking about high performance low level graphic engine code. For this you clearly need to understand the bare bone metal interface. And of course the baseline is pretty low these days. The ordinary web is full of horrible inefficient ways of doing things, so you are probably already above standard, if you avoid the worst habits..

Frontend web mostly doesn't care about OS performance. Should care, but nearly anything works nowadays :V