How well do skills transfer between sub-fields (specifically those in low-level programming)?
Posted by Ok-Cartographer-5544@reddit | ExperiencedDevs | View on Reddit | 15 comments
I currently work in web dev, and am interested in the following: {Cybersecurity, Quant, Game Dev, Robotics}. All of these do primarily low-level work. I am very interested in the knowing the details of systems front to back, and would enjoy finding and patching security holes, optimizing trading algorithms, doing optimization for games, etc.
I am currently training to enter one of these fields (Quant), and I am wondering if working a job in another low-level area like Security, or simply doing miscellaneous dev work on low level systems or working with C++ would be beneficial.
Do these skills transfer well, or is a depth in a single field only able to be obtained from working in that specific field for many years? Thanks in advance for the info.
Few-Conversation7144@reddit
Cybersecurity is not low level and most cyber folks can barely use Linux, let alone understand low level fundamentals.
Game dev is also pretty high level…
Low level implies you’re working with the hardware not an abstracted language.
Grounds4TheSubstain@reddit
Cyber security is not low level? Are you familiar with reverse engineering?
wonkynonce@reddit
There are some impressive cyber security people, but the money is in the dreariest auditing and compliance work, and that's what most people are doing.
TangerineSorry8463@reddit
At some point we as a community gotta decide what counts and what doesn't count as fundamental understanding of CS.
eslof685@reddit
Wtf does game dev have to do with low level code?? xD it's the literal opposite
kbn_@reddit
How exactly do you think game engines work? The only reason people think of game dev as high level code is because there are a couple insanely smart people who do all the low level madness and encapsulate it nicely for the rest of us.
eslof685@reddit
game engines exist to abstract complex math and low level code. the reason why people think of game dev as high level code is because that part is abstracted away into game engines, as a game dev you develop games, not graphics libraries
Ok-Cartographer-5544@reddit (OP)
Doesn't a large amount of game dev go into optimization and handling graphics, etc?
Maybe this has changed recently, but I have heard that game dev uses a lot of C++ and requires low-level expertise.
eslof685@reddit
C++ doesn't have to be so complicated if everything is already provided for you. No need to know any physics calculations to add a Rigidbody3D to an entity, no need to know quaternion math when you can just do rotation.eulerAngles.x += 30; and stuff like player. LookAt(target) et.c.
Is very rare for game developers to do things like writing graphics libraries or physics simulation engines, auro sprites atlas comes in almost any game framework or engine et.c. because you want to focus on the actual game.
kbn_@reddit
This is fair but, as someone who has several colleagues who have built game engines, they describe themselves as "former game developers" even though they only worked on the engines and not the high level scripting that made up the game itself.
malfive@reddit
Regarding cybersecurity: there are low level opportunities in the field, but these positions are more rare compared to the typical network/policy cybersec jobs.
I work in hardware security, writing crypto abstraction layer libraries to interface with secure elements on embedded devices. Previously I worked with hardware security modules (HSMs) as part of a large PKI system. It was all C/C++, a lot of openssl/mbedtls integration, and PKCS11 in the case of the HSMs.
But like I said, this isn't what most people think of when they hear 'cybersecurity' and in some companies, it might not even fall under that department. You might want to look into 'applied cryptography' or embedded positions that focus on security to find things like this.
David_AnkiDroid@reddit
Not as beneficial as pursuing one subject in depth. But you're defining quant dev as low-level, so you probably want to do more research in general.
FWIW: I know gamedevs & security experts who have moved to quant firms, and people in quant firms who moved to gamedev.
Dimencia@reddit
It's hard to generalize, and especially because cybersec as I know it usually means securing networks, not securing code... but as a general rule, yes, depth in a single field comes from experience in that specific field. I wouldn't trust a game dev to write enterprise code, and vice versa; those are so similar and yet so different that knowing one can ruin you for the other if not handled carefully. Robotics and software dev might be helpful to eachother, but only vaguely, better than having no experience but not better than actual experience in the role. Cybersec (networking) would be useful for a dev, but being a dev would not be useful for cybersec. Etc, it's all very specific, and I'm not even sure what 'Quant' means here
It might could be the factor between two otherwise equal candidates, but if one of them has even a year more experience in the specialized field vs the other, I would expect no amount of auxiliary experience would make up for it
codemuncher@reddit
Kinda but a solid grounding in the computer science fundamentals is always good.
stevemk14ebr2@reddit
The 4 you list are all very different. But yes mastery of low level systems knowledge opens the door. Now go deep on the specialization (one of them)