Manuel Herrmann ✅

@0x17de
3 Followers
5 Following
3 Posts
Software Engineer (C++). Interested in servers & security, arts and (game) design.
Websitehttps://www.manuel-herrmann.de/
Birdsitehttps://twitter.com/0x17de
@andaroth Code::Blocks was nice - get nightly builds from the forums if you do - and CMake works quite well as a projekt generator for it. https://www.youtube.com/user/CppCon that one is also a really nice source to learn stuff - avoid anything before C++11 (thats a whole different language). A lot of things are coming like std::string_view, concepts or template type deduction for constructors. Also have a look at the sources of e.g. yaml-cpp or github.com/whoshuu/cpr
CppCon

Visit cppcon.org for details on next year's conference. CppCon sponsors have made it possible to record and freely distribute over 300 sessions from 2014 to ...

@andaroth
Tried to fit everything into 500 characters (*phew*) - actually impossible ;)
I could provide more if you have any/specific questions. At what point of learning that language are you at the moment? You already decided on your platform and IDE?

@andaroth
Hey, here are some things i'd recommend on your path of mastering #modern #cpp

Get rid of any new/delete
See: https://en.wikipedia.org/wiki/C%2B%2B11
Advanced stuff: shop.oreilly.com/product/0636920033707.do
Read some every day: https://cplusplus.com/reference
Test your knowledge: https://herbsutter.com/gotw And Follow that pattern: https://en.wikipedia.org/wiki/Resource_acquisition_is_initialization
Know your tools: use/learn cmake

Feel free to ask anything :)

C++11 - Wikipedia