Feb 6, 2025 7 0 The default C locale is not a very interesting one Raymond Chen It barely understands anything.
Feb 5, 2025 7 0 On exactly when XAML bindings are evaluated if an element is not yet loaded Raymond Chen It depends on which abstraction you prefer.
Feb 3, 2025 2 2 On trying to log an exception as it leaves your scope Raymond Chen You can't watch it from an object on the outside.
Jan 31, 2025 1 1 Creating a generic insertion iterator, part 2 Raymond Chen Satisfying the iterator requirements, perhaps with a little cheating.
Jan 30, 2025 0 1 Creating a generic insertion iterator, part 1 Raymond Chen We provide the boilerplate; you provide the smarts.
Jan 29, 2025 6 1 How do I create an inserter iterator that does unhinted insertion into an associative container like std::map? Raymond Chen Curiously missing from the standard library.
Jan 27, 2025 9 2 A pattern for obtaining a single value while holding a lock Raymond Chen The immediately-invoked lambda that returns a value.
Jan 24, 2025 0 4 A brief and incomplete comparison of memory corruption detection tools Raymond Chen A short overview, definitely incomplete.
Jan 23, 2025 0 2 Memory corruption from outside the process looks like space aliens Raymond Chen The write isn't visible to your process, just the effect of the write.
Jan 20, 2025 1 3 Reminder: When a C++ object fails to construct, the destructor does not run Raymond Chen If you need to run after a failed construction, you have to put it in a base class or member variable.