The Old New Thing
Practical development throughout the evolution of Windows.
Latest posts
Oct 24, 2023
Post comments count
2
Post likes count
4
Why is there a hash of a weak password in the Windows cryptographic libraries?
They're part of an internal self-test.
Oct 23, 2023
Post comments count
2
Post likes count
4
How do I add a non-copyable, non-movable object to a std::map or std::unordered_map?
Fancy emplacement.
Oct 20, 2023
Post comments count
0
Post likes count
1
On the failed unrealized promise of RegOverridePredefKey
An early attempt to sandbox the registry for a process.
Oct 19, 2023
Post comments count
3
Post likes count
2
What’s the difference between setting a page’s protection to PAGE_NOACCESS and freeing it?
Nobody can access it, but it's still there.
Oct 18, 2023
Post comments count
3
Post likes count
3
How can I check if I’m on a DispatcherQueue’s thread if I can’t call HasThreadAccess?
Looking at the tools you have available.
Oct 17, 2023
Post comments count
5
Post likes count
2
Microspeak: The As-Appropriate (AA) interviewer
So, how are things going so far?
Oct 16, 2023
Post comments count
9
Post likes count
3
API design principle: Reading a property or adding an event handler should not alter observable behavior
Don't punish people for looking.
Oct 13, 2023
Post comments count
0
Post likes count
2
On detecting improper use of std::enable_shared_from_this
Playing around with the standard library.
Oct 12, 2023
Post comments count
0
Post likes count
1
I created an overloaded operator for my C++/WinRT class, but it’s not working
Take a closer look at what you are overloading.