Live data from Hacker News

Viewing profile — witcher_rat

witcher_rat

HN member
Joined
Mon, Jun 20, 2022, 8:19 PM UTC
HN karma
18
Public activity
8 items

About witcher_rat

No profile information was provided.

Recent public activity

  1. comment
    Comment #31944316

    Uhh... you do realize tons of safety-critical systems in use today were written in C and C++, right? As in _most_ of them, for the past ~30 years? Airplane systems, telecom equipme…

  2. comment
    Comment #31898490

    They're better now than they were years ago, but yes they're still bad. And they're still second-class citizens for git commands. Git has been adding more config settings to try to…

  3. comment
    Comment #31891591

    One reason is if you need to launch a subprocess with a timeout but don't want to use up CPU in the python script while that subprocess runs. The regular subprocess module will bus…

  4. comment
    Comment #31882368

    If I recall correctly, for approx two decades in the 1990's and 2000's, ITRON was the most popular operating system in the world by a wide margin. It was more widely installed than…

  5. comment
    Comment #31828126

    You say that like it hasn't been going on since the mid 1990's, when it got deployed. I'm not blaming BGP, since it prevents far more outages than it causes, but BGP-based outages …

  6. comment
    Comment #31817620

    > Has to be one of the biggest library design blunders in the history of the industry May I introduce you to std::regex? Although to be fair, that one's not so much a blunder due t…

  7. comment
    Comment #31817462

    > being able to create pointer to objects inside the map (I never did that, but do other people really do that?) Yes, we do it at my day job in several places, where we take advant…

  8. comment
    Comment #31815426

    If you use Ninja, you can create a job pool for linking, separate from compiling, and restrict how many simultaneous linker jobs are run. You can even create and set job pools for …