Join the 2025 Maine AI 'unconference' on June 13 in Orono for face-to-face discussions whose topics will be democratically chosen by the attenders. (We've got expert panels too.) Register by this Friday—more at https://www.linkedin.com/posts/jonippolito
The feeling when you find the root cause for a problem that has been bothering you for months. And it turns out to be fixable by adding a single letter. (To turn an "unsigned long" literal into an "unsigned long long" one.) (Actually I made it use the UINT64_C() macro from <cstdint>.)
Writing portable code is hard. And thanks, Windows, for keeping "long" as 32 bits even in 64-bit code.
Now, if only Clang or gcc on Linux would warn about such po…