Learn C++ With Breaking Dependencies: The SOLID Principle by Klaus Iglberger (CppCon 2020) Video
November 29, 2020
SOLID consists of the five most essential software design principles namely:
(S)ingle Responsibility
(O)pen-closed Principle
(L)iskov Substitution Principle
(I)nterface Segregation Principle
(D)ependency Inversion Principle
These five principles have been established to be an effective collection of guidelines for nearly two decades. It was initially implemented as object-oriented programming…
Learn C++ With The Future of C++ Parallel and Concurrency Safety Guidelines by Michael Wong and Ilya Burylov (CppCon 2020) Video
November 28, 2020
The guidelines for safe parallel/concurrency C++ has never been established. It is a challenge that has taken the most of time, especially with the constant change of the C++ standard. This video talks about the developing rules, which has yet to be finalized, but can give…
Learn C++ With Closing the Gap between Rust and C++ Using Principles of Static Analysis by Sunny Chatterjee (CppCon 2020) Video
November 27, 2020
The safety benefits of Rust language are commonly familiar for C++ developers. In the system programming languages, both Rust and C++ perform in high quality. However, customers and security researchers say that C++ is more secure when it comes to safety and correctness.