Design Patterns are interchangeable design elements that can help to make the program more manageable, scalable, and extensible. In this video, you will be learning the basics of the trends of artistic, structural and behavioral design. This talk is targeted at beginners who…
Learn C++ With Quickly Testing Qt Desktop Application with Approval Tests by Clare Macrae (CPPCon 2020) Video
April 4, 2021
This video will discuss the problems and possible sources of error that are unique to the code, which the Qt cross-platform graphical user interface library uses, and then explain how to defend against them. The video will also briefly discuss some other resources that can…
Learn how to better integrate TwineCompile with your C++Builder IDE for maximum productivity. TwineCompile is available for 10.4 and newer through the GetIt Package Manager for developers with Update Subscription.
TwineCompile lists its features as:
Advanced compile system uses multi-threading technology and caching techniques to make C++ compiles 50x faster!
Automatic background…
Learn C++ With A Relaxed Guide to memory_order_relaxed by Paul McKenney and Hans Boehm (CPPCon 2020) Video
March 30, 2021
Over the years, the out-of-thin-air (OOTA) and read-from-untaken-branch (RFUB) properties of the memory order relaxed specification have caused considerable consternation. While there are no known instances of full-blown OOTA activity and no known RFUB-induced production…
Learn C++ With Techniques for Moving Work to Background Threads by Anthony Williams (CPPCon 2020) Video
March 28, 2021
You need a short and quick code that responds to UI events if you are writing a GUI Application and want the interface to feel responsive. If you control network I/O, you cannot want a single request to be processed to prevent the system from collecting additional data. This…
Learn C++ With Just-in-Time Compilation: The Next Big Thing? by Ben Deane and Kris Jusiak (CPPCon 2020) Video
March 27, 2021
JITting code is a characteristic of several languages but has not yet landed on C++. But some work has been done to incorporate Hal Finkel’s JITting into Clang. C++ is also in the early stages of testing the capabilities of JIT. In this video, you will be learning the limits and possibilities of JITting in C++ by combining the C++20 features with the Clang-jit complier work implemented in…
Learn C++ With Dynamic Polymorphism: Metaclasses and Code Injection by Sy Brand (CPPCon 2020) Video
March 23, 2021
This talk will present a potential future design for interface-based form erasure in C++ that blends the simplicity of inheritance with the advantages that otherwise would be missing. It will add the code injection and metaclasses facilities proposed for inclusion in C++…
Learn C++ With Constructing Generic Algorithms: Principles And Practice By Ben Deane (CPPCon 2020) Video
March 9, 2021
This video explores how to make your own algorithms. Starting with the raw loop that solves a nontrivial problem and turn it into a generic algorithm without removing the ability to perform. It will make you understand algorithm patterns and how to organize the pattern. You will also be inspected where existing algorithms fall short, including slight changes or wrappings that gives extra…