Dev ToolsTips and Tricks

AI Coding Assistants for Large C++ Codebases: What Works, What Breaks, and How to Split the Work

AI Coding Assistants for Large C++ Codebases: What Works, What Breaks, and How to Split the Work AI tools are everywhere. They’re in your phone, your car, your office, and it even made its way into software development. It’s being pushed as a do-it-all solution for coding, and in many cases it does solve, or the very least,  speeds up the busywork. The benefit is real and it’s…
Read more
Tips and Tricks

How to Set Up a Fully Local AI in Visual Studio

TL;DR   Set up a fully local AI coding assistant in Visual Studio using VA Intelligence, Ollama, and Gemma3. This guide walks you through the installation process, enabling AI-powered code explanations and code edits and configuring your environment for optimal performance. By running everything locally on your GPU, you can boost productivity while keeping your source code private and secure. VA…
Read more
NewsTips and Tricks

Visual Assist’s AI Assistant: Things You Can Do with VA Intelligence Right Now

If you’ve been following Visual Assist for a while, you might have noticed something a little different about the last few releases. Alongside the navigation improvements, refactoring updates, and parser optimizations, there’s a quieter but important thread running through it all: VA Intelligence. We introduced Explain with AI a few releases back, and with 2026.3 we just shipped Change…
Read more
Tips and Tricks

Why Are Pointers Used in C++? A Practical Guide for Modern Developers

TL;DR Pointers are one of the biggest things that confuse new C++ developers, especially if they started with languages like Python or Java where memory management mostly stays hidden. This guide breaks down why pointers still matter in modern C++, how they help with performance, memory control, dynamic data structures, and low-level system programming, and why they are still heavily used despite…
Read more