Live data from Hacker News

Viewing profile — cordenr

cordenr

HN member
Joined
Wed, Jan 26, 2011, 10:24 AM UTC
HN karma
6
Public activity
16 items

About cordenr

No profile information was provided.

Recent public activity

  1. comment
    Comment #45844401

    RAII is so before 2020s! Now it's SBRM* *Scoped bound resource management... which I had to look up because I never remember it!

  2. comment
    Comment #42397288

    In C++ they're alternative tokens and should be keywords, so maybe googletest is providing them as macros as workaround for a compile that didn't support this? In other words, mayb…

  3. comment
    Comment #41106646

    Doesn't gdb allow breakpoints to be made to be conditional? Add a breakpoint somewhere in the code, say added as breakpoint #2. Then; condition 2 (x_id == 153827) Or is there some …

  4. comment
    Comment #40880412

    In Spain I get at least 4 or 5 calls a week from different providers. Luckily at the moment, there's still a delay after you answer the call as (I assume) you're being connected to…

  5. comment
    Comment #40655455

    There's quite a few videos.... Can you link to the specific one your thinking of? Cheers.

  6. comment
    Comment #38891082

    >You can type 84 words per minute (After a few attempts) I self learned to type using "Iankey"[0] (the manual[1]). In my opinion, it is one of the best training tools I tried - I s…

  7. comment
    Comment #38693136

    +1 The "fully charged show" sometimes have videos on this and similar topics. This [0] video goes through the pros and cons of using hydrogen in different ways My takeaway is that …

  8. comment
    Comment #38680640

    Andreas Weis gave a talk at cppnow [0] describing how they develop software for cars. It's eye opening. I would imagine all languages will have at least some guidelines relating to…

  9. comment
    Comment #38680587

    SE/SE is called out explicitly in the ISO26262 documents (functional safety in road vehicles). This makes it easy to defend the inclusion of such a guideline, even if you may not a…

  10. comment
    Comment #38680530

    Definitely a generalisation, but i would see them as two sides of the same coin. If Cert has something about an API, then it will have an example of misuse of it and then an exampl…

  11. comment
    Comment #38680458

    It's an unfortunate coincidence. 2023 just happens to be when the MISRA committee finalised the document. The good news is that it's very unlikely to happen for any future document…

  12. comment
    Comment #37995441

    They seem to use a similar model to low cost airlines. Depending on when you travel and when you buy the ticket, the price varies dramatically. I recently travelled midweek from Ll…

  13. comment
    Comment #30203842

    NB: TrueSound requires an iPhone, it doesn't work in the Android app. I had to have a friend run the setup for me. I didn't read/notice this when I researched soundbar options. Had…

  14. comment
    Comment #28796719

    You're right! That's the thing with C++ - you learn something new everyday. I had misread your original post. I thought the example was something like "std::cout This is unfortunat…

  15. comment
    Comment #28782868

    C++ is the language I use most for my day job. I am definitely on the "love" side of the "Marmite" argument. What is scary is, I don't doubt that some people will read your comment…

  16. comment
    Comment #23269764

    Virtual inheritance changes the order that sub-objects are constructed and destructed. This might be used where a base class manages the lifetime of a resource and other types in t…