this post was submitted on 18 Jun 2023
13 points (100.0% liked)

C++

1721 readers
7 users here now

The center for all discussion and news regarding C++.

Rules

founded 1 year ago
MODERATORS
 

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

What are you all using? Post your comments :)

top 7 comments
sorted by: hot top controversial new old
[–] fievel@vlemmy.net 8 points 1 year ago (1 children)

Same as yours +

  • https://wandbox.org : an alternative to God bolt, when just needing to quickly test something (no need for the disassembly and multiple options of godbolt)
  • 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 3 points 1 year ago* (last edited 1 year ago)

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 points 1 year ago

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 points 1 year ago

To plug shamelessly:

[–] fievel@vlemmy.net 2 points 1 year ago

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.

[–] balder1993@programming.dev 1 points 1 year ago
[–] cgtjsiwy@programming.dev 1 points 1 year ago

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.