Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)NI
Nihili0 @programming.dev
Posts 4
Comments 8
devblogs.microsoft.com It's great that you provide operator overloads, but it's also nice to have names - The Old New Thing

Avoiding the need to invoke the operator explicitly as a specialized template, among other things.

It's great that you provide operator overloads, but it's also nice to have names - The Old New Thing
6

C++ Weekly - Ep 381 - C++23's basic_string::resize_and_overwrite

0

I wanted to share useful websites and resources for C++ that I use, add yours!

Hi everyone, here is a list of websites that I use for C++:

  • https://godbolt.org/: compiler explorer, allows you to quickly test code and see the disassembly, integrates many libraries and tools (PVS, clang-tidy, ...). It can even do CMake projects with multiple files!
  • https://en.cppreference.com/w/Main_Page: The C++ reference.
  • https://cppinsights.io/: see what the compiler does for you behind the scene.
  • https://quick-bench.com/: make quick comparison/benchmark

What are you all using? Post your comments :)

9
interrupt.memfault.com C++17’s Useful Features for Embedded Systems

In this article, you will find some features of C++17 that can also be helpful in the embedded world.

C++17’s Useful Features for Embedded Systems

Article by Çağlayan Dökme

1