April 28th, 2014
0 reactions

Advanced Developers Conference C++ 4/29 – 4/30

Tarek Madkour and Daniel Griffing join other notable speakers at ADC++ in Munich, Germany this week. Tarek and Daniel each have a couple talks in the two day event agenda:

  • Keynote – Modern C++ Developement with Visual C++
  • Creating Windows 8.1 Phone and Store Apps
  • Direct X Debugging and Profiling
  • Connect your native App to the Cloud with the C++ REST SDK Casablanca

Visual C++ MVP Jochen Kalmbach will be there exploring debugging tools for Windows.

Are you attending? Share your thoughts and pictures on Twitter using hashtag #adcpp (and follow @visualc). Thanks!

Category
C++

Author

0 comments

Discussion is closed.

'; 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); }