CommunityTips and Tricks

C++ Modules: What it promises and reasons to remain skeptical

TL;DR C++ Modules, introduced in C++20 and expanded in C++23, aim to replace the traditional #include a system with a more efficient and structured approach. By compiling code once and importing it where needed, modules reduce redundant parsing, improve build times, and create cleaner, more maintainable dependencies especially in large-scale projects. However, despite these advantages, adoption in…
Read more
Build Announcements

Visual Assist 2025.1 release post

VA 2025.1 enhances usability with smarter navigation, better C++ module support, and more flexible refactoring options. The updated first-run dialog, configurable test snippets, and a refreshed UI improve the overall experience. Additionally, several key fixes address…
Tips and Tricks

How to Query File Attributes 50x faster on Windows

TL;DR If your app scans thousands of files, the way you fetch file attributes can quietly destroy performance. Standard methods like GetFileAttributesEx or even std::filesystem are convenient but painfully slow at scale. By switching to faster Windows APIs like FindFirstFileEx or GetFileInformationByHandleEx , you can retrieve attributes while iterating directories, cutting expensive system…
Read more
Tips and Tricks

Getting started with how to use C++ for embedded systems in financial services

TL;DR From ATMs and payment terminals to real-time trading systems, a huge part of modern financial technology still runs on C++. This blog explains why the language remains so important for embedded financial systems, where speed, reliability, and low-level hardware control matter the most. It also explores the real challenges developers face with performance, memory management, and debugging…
Read more
Build Announcements

Visual Assist 2024.4 release post - ARM Support

It’s our pleasure to announce a new Visual Assist release, headed by a major addition—supporting ARM! We hope you find this release useful. Visit our website to download the release. ARM support Big news for Visual Assist’s device support! Windows ARM is now supported starting this release, Visual Assist 2024.4. Visual Assist is now available as a fully ARM-native plugin, fully supported in…
Read more