TL;DR
This webinar walks through how to set up an Unreal Engine 5 project in a way that actually scales once more people join the team. It covers practical things like choosing the right engine setup, organizing Perforce correctly, avoiding asset conflicts, handling large files, and creating workflows that do not fall apart halfway through development. The session also explains why many studios…
How Visual Assist Supercharges Your C++ Development in Visual Studio
September 22, 2025
Introduction
C++ is one of the most powerful and complex programming languages in the world—but that power often comes at a cost. If you’re building in Visual Studio, you’ve likely felt the friction: endless scrolling through files, sluggish navigation, fragile…
What did we learn? A back-to-school update about Visual Assist's latest from our GM
September 11, 2025
New season, fresh start
As Fall approaches, it’s not just students heading back to school. it’s also a perfect time to evaluate your coding tools. Which ones are ready for advanced coursework, and which might need some upgrading? You might find that some of those…
Why Readable C++ Code Outlives Clever Shortcuts: The Key to Maintaining Legacy Systems
September 3, 2025
TL;DR
Maintaining legacy systems is a necessity and readable C++ code is a big factor in reducing debugging time, simplifying onboarding and making future updates safer. Clever shortcuts, macros, nested ternary operators, and overly compact code may save a few lines today, but they often create technical debt that becomes expensive to pay back in the long run. Using clear variable names, writing…
C++ Coroutines for Async Development: Why You Should be Excited
August 22, 2025
TL;DR
C++ coroutines bring a smarter way to write async code by letting functions pause and resume naturally, so your logic stays clean while handling thousands of tasks efficiently. Instead of messy callbacks or heavy threads, you get code that reads simple but performs…
TL;DR
You don’t need C++ to start with Unreal Engine since Blueprints let you build full games without coding. But if you want more control, better performance, and advanced features, C++ becomes a powerful addition to the quick prototyping provided by blueprints .
The…
Visual Assist 2025.3 release post
July 3, 2025
TLDR
Visual Assist 2025.3 continues a series of productivity enhancements in the spotlight, such as a more flexible Extract Method that allows developers to customize parameters before creating a new method. This release also features macro expansion previews on hover, better support for auto pointers, a new Options dialog and improved line highlighting. On top of the usability improvements, it…
How to get a job as a game developer in 2025 – Part 2: Insider advice from a studio game director
June 25, 2025
TL;DR
Entering game development in 2025 butting heads with a post-pandemic slowdown, increased use of AI, and a crowded job market. Studios are still hiring junior developers, but they want candidates who understand team dynamics, are flexible, fit the company culture and…
The best part of working in dev tools? Hearing directly from the people who use them. Over the past several months, we here at Whole Tomato have had the privilege of speaking with C++ professionals across many industries: gaming, fintech, agtech, manufacturing, and…
TL;DR
Pattern matching, widely used in functional languages like Rust and Haskell, is gaining attention in C++ as a way to write cleaner, more expressive, and safer code by combining conditionals, type checks, and data destructuring into a single construct. While C++ doesn’t yet have native support, developers rely on tools like std::variant, std::visit, and libraries like Mach7 to replicate it…
You must be logged in to post a comment.