Jun 19, 2023 6 1 Why am I being told about a signed/unsigned comparison, and why only sometimes, and how can I fix it? Raymond Chen How the compiler back-end can influence warnings.
Jun 16, 2023 0 1 The case of the invalid handle despite being managed by an RAII type, part 2 Raymond Chen Avoiding using an object after is has destructed, and maybe using a less-well-known corner of the C++ language.
Jun 15, 2023 0 1 The case of the invalid handle despite being managed by an RAII type Raymond Chen The handle remains valid for the object's lifetime, but what is the object's lifetime?
Jun 14, 2023 3 0 How expensive is it to create a Windows performance counter? Raymond Chen The cost depends on the performance counter.
Jun 13, 2023 2 1 SIDs are really just another a fancy way of creating unique IDs in a decentralized way Raymond Chen Keeping them from colliding with each other.
Jun 12, 2023 4 1 The move constructor that you have to declare, even though you don’t want anyone to actually call it Raymond Chen Forcing named return value optimization.
Jun 9, 2023 4 1 Reordering C++ template type parameters for usability purposes, and type deduction from the future Raymond Chen You want them to go first, but you also want to deduce them.
Jun 8, 2023 8 1 How can I register a program to auto-relaunch if it crashes or is terminated?, redux Raymond Chen You can get a little bit of the way there.
Jun 7, 2023 11 0 Pulling sleight of hand tricks in a security vulnerability report, episode 2 Raymond Chen I see what you did there.
Jun 6, 2023 4 0 How can I make WiFi passwords per-user rather than per-system? Raymond Chen A little-known system configuration setting.