cpluspluscourse
cpluspluscourse copied to clipboard
C++ Course Taught at CERN, from Sebastien Ponce (LHCb)
We have this table on the slides:  However, testing for a specific feature should be done via [feature test macros](https://en.cppreference.com/w/cpp/feature_test). We should add a slide explaining how this is...
Should we add a few slides on the standardization process of C++? That there is a committee which reviews papers and they will be eventually voted into an ISO standard.
In C++20 we got the new header [``](https://en.cppreference.com/w/cpp/header/numbers), which among other things defines `std::numbers::pi`. This replaces the common use of unportable constants like `M_PI`.
Hello @bernhardmgruber, @sponce, when I did the operator exercise, I arrived at a bit different solution, and I wanted to post it here to figure out if the two approaches...
Following best practices e.g. from vCHEP'21 we should add a privacy notice page a la https://cern.service-now.com/service-portal?id=privacy_policy&se=IT-administration¬ice=vCHEP to the front pages of the events.
I just saw that the PDF built by the Github actions is slighly different from the one I build locally. Also the size is quite different. E.g. Github action: ...
I do not know what would be the right solution, but it is a problem that the stl exercise cannot be compiled until every hole is completed.
I would like to add some more standard library components to the overview on this slide:  Specifically: threads mutexes, atomics, regular expressions, filesystem access, random number engines and distributions,...
It is my strong feeling that the use of raw C arrays makes the syntax uselessly complex, and divert the learners from what we want to demonstrate. It would rather...