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++:

What are you all using? Post your comments :)

20 points · 9 comments · view on lemmy.world

9 Comments

fievel@vlemmy.net · 8 pts · 3y (1 reply)

Same as yours +

  • https://wandbox.org : an alternative to God bolt, when just needing to quickly test something (i.e. not needing the disassembly and multiple options of godbolt, just see if it compiles, or behave like expected on several compilers - I use that very often when writing code review comments to be sure not to advise rubbish...)
  • https://regex101.com/ : not specifically for c++ but useful as well

Some great blogs too:

One must see YouTube video: https://youtu.be/2olsGf6JIkU

Perhaps some others I'll look tomorrow on my work computer.

Nihili0@programming.dev · 4 pts · 3y

Nice ones, for regex I also use https://regexr.com/ but regex101 is great too

Yeah, lots of interesting talk freely available: CppCon videos, ACCU, C++Weekly

also some git repo:

phirus@feddit.de · 6 pts · 3y

The https://hackingcpp.com/cpp/cheat_sheets.html cheat sheets for std::algorithms and containers always save me a lot of time.

jeaye@programming.dev · 4 pts · 3y

To plug shamelessly:

balder1993@programming.dev · 2 pts · 3y
fievel@vlemmy.net · 1 pts · 3y

One more I forgot is https://cppinsights.io : this online tool takes C++ code and output C++ code, the goal being to make the "magic" of the compiler visible (for example for(auto vi : std::vector...) is expended to iterators and the tool make it visible). It can help sometime when struggling with a difficult to understand issue.

cgtjsiwy@programming.dev · 1 pts · 3y

I wish cppreference had better search. I usually end up using it through google/ddg to find what I really need. For example, searching chunk_view gives no results.