April 15th, 2025

Pure Virtual C++ 2025: Full Schedule

Sy Brand
C++ Developer Advocate

Pure Virtual C++ is our free, one-day, virtual conference for the whole C++ community. This year, it is running on the 30th April. We’re pleased to announce the schedule of live talks:

  • 14:00 UTC: Welcome to v1.0 of the meta::[[verse]]! with Inbal Levi
  • 14:30 UTC: Proxy: Next Generation Polymorphism with Mingxin Wang
  • 15:00 UTC: Making unfamiliar C++ code familiar with GitHub Copilot with Sinem Akinci
  • 15:30 UTC: C++ Modules Myth Busting with Cameron DaCamara
  • 16:00 UTC: constexpr everything?! with Hana Dusíková

You can find abstracts for all the talks and register for the conference with the button below.

Keep an eye out for on-demand pre-conference content coming soon on YouTube.

Category
C++

Author

Sy Brand
C++ Developer Advocate

Sy Brand is Microsoft’s C++ Developer Advocate. Their background is in compilers and debuggers for embedded accelerators, but they’re also interested in generic library design, metaprogramming, functional-style C++, undefined behaviour, and making our communities more inclusive and welcoming.

0 comments

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }