Hacker News new | ask | show | jobs
by Wilem82 2490 days ago
I've only ever watched one programming talk by a lady. The talk was about Rust, so I was interested. I thought: a lady, wow cool, let's hear it out. Like 5 minutes in, she said something like "we know Nodejs is fast..." and I did a double take. What? Who in their right mind would claim that, except frontend devs who don't know better? And this talk is about Rust, which is even more bizzare, as it's full of competent people who won't take such bullshit. I did not watch until the end, got quite disappointed. So... where are those excellent female specialists? In 15 years of programming, I've met exactly one and that's in a 20 million population city with tons of programming jobs.
1 comments

You could take a look at the talk about Entity Component System in Rust, by one of the creators of starbound(as far as i remember), she is a woman. And i don't understand your rage about nodejs. It's in fact very fast. That's wrong about that?
Very fast compared to what? Certainly not to Rust, and that was a Rust conference. Anything with a VM, even if it has JIT, is slower than a systems-level programming language that got no runtime overhead. VMs are slow by its very nature, simply because there an additional layers and more work needs to be done. If she meant support for non-blocking IO, that got nothing to do with Nodejs, it's an OS-level feature that's been around for almost 20 years. JVM can use non-blocking IO, doesn't make JVM fast, it's still relatively slow due to being VM in the first place.