Still on my new Windows 10 IoT LTSC setup, I found a page which seems to have a large amount of Firefox tweaks. I’ve tried most of them, and honestly I didn’t notice any improvement, but I hope it pays off in the long term:
Monday, May 25, 2026
Sunday, May 24, 2026
Disable Win global hotkeys
Today I installed a new 1 TB SSD drive, since my old 120 GB one capacity was out of control. Windows 10 IoT LTSC was the OS of my choice, along with the incredibly smooth massgrave.dev aid.
One thing that didn’t work was the global shortcuts of foobar2000.. At first I thought it could be related to the newer 64-bit version I finally installed, but ChatGPT – first time on this blog – told me that IoT LTSC is stricter about hijacking Win hotkeys. And it gave me directions on how to disable them globally, which I didn’t even know it was possible. Create a new key under:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced
- New, String Value
- DisabledHotkeys
- AS
The above will disable Win+A and Win+S global hotkeys, which is amazing.
Tuesday, April 7, 2026
Reusing code in const and non-const methods, C++17
I found the code below from this great answer in StackOverflow. It allows you to implement the const method with your logic, then use this one-liner to implement the non-const method. It’s a trick from the great Scott Meyers:
const T& f() const {
return something_complicated();
}
T& f() {
return const_cast<T&>(std::as_const(*this).f());
}
I’m using this thing everywhere.
Thursday, April 2, 2026
Project templates in Visual Studio 2022
After configuring C and C++ projects countless times, base on these settings, I finally bit the bullet and created a reusable template in Visual Studio 2022. And it’s surprisingly simple: create the project and then go Project → Export Template.
The project name itself can be used inside files with $safeprojectname$ string. In order to have it replaced even inside .rc files, edit the .vstemplate and add:
<TemplateContent>
<Project TargetFileName="ayylmao.vcxproj" File="ayylmao.vcxproj" ReplaceParameters="true">
<ProjectItem ReplaceParameters="true">RES\$safeprojectname$.rc</ProjectItem>
</Project>
</TemplateContent>
There’s no GUI for deleting a template, though. One must manually remove the zip files from two different locations:
- Documents \ My Exported Templates
- Documents \ Templates \ Project Templates
To restore a template, simply copy the zip back to:
- Documents \ Templates \ Project Templates
Sunday, February 15, 2026
The Rust doc_cfg fiasco
In WinSafe, Cargo features are used extensively to gate the DLL modules which are currently implemented. This is good because you specify only the modules you need, reducing your compiler effort. The Rust documentation doc_auto_cfg unstable feature was extemely useful, applying tags on each entity specifying the required feature for it.
Then, at some point of October 2025, doc_auto_cfg was merged into doc_cfg. And it’s now completely broken.
I filled an issue at the official repo. I’m not the only one missing that feature, but no one seems to care. This is so demotivating I stopped WinSafe development completely.
I found a workaround by pinning the compiler version using rust-toolchain.toml, along with the last version where doc_auto_cfg works, which I painfully found out:
[toolchain] channel = "nightly-2025-09-27" components = ["rust-docs"] targets = ["x86_64-pc-windows-msvc"]
With the above file, the command line to generate the docs is:
RUSTDOCFLAGS="--cfg docsrs" cargo doc --all-features
Or even better, directly specify the toolchain the command line:
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly-2025-09-27 doc --all-features
This compiler has the 1.92.0-nightly version, and it seems I’m gonna using for a long time.
Update: after 4 months, the bug was finally fixed.
Friday, November 21, 2025
Windows 10 SDK 10.0.20348.0 is gone
I was caught by surprise today after updating Visual Studio 2022 to version 17.14.11. All my projects failed to compile, because the SDK files disappeared. I first thought something broke with VS Code support, but then I saw that Visual Studio itself had the same problem.
Turns out the Windows SDK I was using – 10.0.20348.0 – was simply deprecated and removed in this update, according to here, and the release note itself. Indeed, Visual Studio Installer won’t show it anymore.
Apparently, now I’ll have to install a Windows 11 SDK, even if I’m running Windows 10. I hope this doesn’t break my stuff.
Wednesday, November 5, 2025
Non-movable and non-copyable C++20 classes
On my fantastic journey implementing WinLamb v2, I’m diving deep into C++20, grasping a lot of concepts I never understood before, and having a lot of fun along the way.
One of the things that I implemented was the idea of non-copyable and non-movable classes, at first, using macros. This felt inelegant, so I implemented P2895 paper with utility classes. It ultimately failed with the nested ListView classes, so I discarded the idea too.
My final solution was to = delete move constructor, which will prevent all copy and move. The hard rules are not particularly easy to memorize, so I’ll let them here for further reference:
- The two copy operations are independent. Declaring copy constructor does not prevent compiler to generate copy assignment and vice versa. (Same as in C++98.)
- Move operations are not independent. Declaring either one of them prevents the compiler to generate the other. (Different from copy operations.)
- If any of the copy operations is declared, then none of the move operations will be generated.
- If any of the move operations is declared, then none of the copy operations will be generated.
- If a destructor is declared, then none of the move operations will be generated. Copy operations are still generated for reverse compatibility with C++98.
- Default constructor generated only when no constructor is declared. (Same as in C++98.)
Example:
class Foo {
private:
Foo(Foo&&) = delete; // non-copyable, non-movable
};