Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
cordenr
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
cordenr
11mo ago
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.
▲
by
cordenr
2y ago
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, maybe a computer flag would allow you to disable them
3.
▲
by
cordenr
2y ago
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 other reason to not do this?
4.
▲
by
cordenr
2y ago
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 a human. How long will this last....? Currently,
5.
▲
by
cordenr
2y ago
There's quite a few videos.... Can you link to the specific one your thinking of? Cheers.
6.
▲
by
cordenr
3y ago
>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 should search around my old backups to see if I
7.
▲
by
cordenr
3y ago
+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 as much of the energy as possible should be used
8.
▲
by
cordenr
3y ago
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 how they're used. [0] https://youtu.
9.
▲
by
cordenr
3y ago
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 agree with it. But as it happens, MISRA C++:2023 doesn&
10.
▲
by
cordenr
3y ago
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 example showing its correct use. MISRA might either prohibit it&#x
11.
▲
by
cordenr
3y ago
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 version.
12.
▲
by
cordenr
3y ago
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 Lleida to Madrid return for €40, but I've also paid more
13.
▲
by
cordenr
5y ago
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 I known this in advance I probably wouldn
14.
▲
by
cordenr
5y ago
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 << 97". This is unfortunate. I imagine it came ab
15.
▲
by
cordenr
5y ago
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 and think it could be true!
16.
▲
by
cordenr
6y ago
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 the hierarchy operate on that - and so need the resource t