Nov 25, 2025 Post comments count7 Post likes count5 The apocryphal origins of the Hot Dog Stand color scheme Raymond Chen Challenge accepted.
Nov 24, 2025 Post comments count5 Post likes count4 Why does XAML break down when I have an element that is half a billion pixels tall? Raymond Chen You've far exceeded the design goals and have even exceeded the expressive ability of a float.
Nov 21, 2025 Post comments count6 Post likes count2 Maybe somebody can explain to me how weak references solve the ODR problem Raymond Chen I don't see it.
Nov 20, 2025 Post comments count11 Post likes count3 In the commit-on-demand pattern, what happens if an access violation straddles multiple pages? Raymond Chen The access violation exceptions will continue until commit improves.
Nov 19, 2025 Post comments count3 Post likes count8 Is WriteProcessMemory faster than shared memory for transferring data between two processes? Raymond Chen Shared memory is the copy-free solution.
Nov 18, 2025 Post comments count1 Post likes count5 Microspeak: Little-r Raymond Chen Harkening back to a very old mail program.
Nov 17, 2025 Post comments count21 Post likes count3 How can I detect that Windows is running in S-Mode, redux Raymond Chen Doing it on hard mode.
Nov 14, 2025 Post comments count9 Post likes count3 I can use WM_COPYDATA to send a block of data to another window, but how does it send data back? Raymond Chen They can send it back with their own WM_COPYDATA message, or they can put it in an agreed-upon shared location.
Nov 13, 2025 Post comments count4 Post likes count2 Could we use CTAD to simplify the use of WRL’s Callback function? Raymond Chen Not directly, but maybe indirectly.
Nov 12, 2025 Post comments count5 Post likes count6 Non-recursively deleting a binary tree in constant space: Rotating the tree Raymond Chen Preserving in-order while linearizing.