←back to thread

92 points endorphine | 5 comments | | HN request time: 0.624s | source
1. meling ◴[] No.43537030[source]
I love the last sentence: “…, if you set yourself the goal of crossing an 8-lane freeway blindfolded, it does make sense to focus on doing it as fast as you possibly can.”
replies(2): >>43537714 #>>43544408 #
2. mananaysiempre ◴[] No.43537714[source]
That is more glib than insightful, I think: the programming equivalent of “as fast as you can” in this metaphor would likely be measured in lines of code, not CPU-seconds.
replies(2): >>43538129 #>>43539188 #
3. z3phyr ◴[] No.43538129[source]
Always think from the users perspective. For a lot of applications, when a user does something, it should happen with minimal latency.
4. skavi ◴[] No.43539188[source]
in certain situations, latency is an aspect of correctness. HFT and robotics come to mind.
5. ptsneves ◴[] No.43544408[source]
Most comments like this, fall into a form of scarecrow fallacy. They assume performance in C/C++ can only come at the cost of correctness and then go on to show examples of such failures to prove the point, and there are so many. On the other hand the event space also has sets of cases where you can be correct and get faster.

There are also sets of events where the failing risk is an acceptable tradeoff. Even the joke can come up empty, if you want to cross the 8bit lane the fastest possible and dont mind failing/dying some times it might be worth it.

Also all the over emphasis on security is starting to be a pet peeve of mine. It sounds like all software should be secure by default and that is also false. When I develop a private project or a project with a threat scenario that is irrelevant i dont want to pay the security setup price, but it seems nowadays security became a tax. Cases in point:

I cannot move my hard disk from one computer to another because secure boot was enabled by default without jumping hoops.

I cannot install self signed certificates for my localhost without jumping hoops.

I cannot access many browser APIs from an HTTP endpoint even if that endpoint is localhost. In that case i cannot do anything about it, the browser just knows better for my safety.

I cannot have a localhost server serving mixed content. I mean come on why should i care about CORS locally for some google font.

I cannot use docker build kit with a private registry with HTTP but to use a self signed certificat I need to rebuild the intermediate container.

I must be nagged to use the latest compatibility breaking version library version for my local picture server because of a new DoS vulnerability.

[...] On and on, and being a hacker/tinkerer is a nightmare of proselytizing tools and communities. I am a build engineer at heart and even I sometimes just want to develop and hack, not create the next secure thing that does not even start up

This is like being in my home and the contractor forcing me to use keys to open every door to the kitchen, bedroom or toilet. The threat model is just not applicable, let me be.