Modern C++ Made Simple

Whether you're new to coding or switching careers, we've got you covered. Learn C++ from the ground up starting with our introductory course.

Intro to C++ Programming

Beginner Course

Intro to C++ Programming
Become a software engineer with C++. Starting from the basics, we guide you step by step along the way
Progress0 of 61 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Intermediate Course

Managing C++ Projects Using CMake
Manage complex, cross-platform builds using industry-standard tools. Create scalable build systems that automate the entire development lifecycle.
Progress0 of 61 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Intermediate Course

Game Development with SDL3
Learn C++ and SDL development by creating hands on, practical projects inspired by classic retro games
Progress0 of 132 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Intermediate Course

Professional C++
Comprehensive course covering advanced concepts, and how to use them on large-scale projects.
Progress0 of 128 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Recent Updates

New content is added on a regular basis, and we consistently update, improve, and revise what's already available.

Practical Algorithm Analysis

Data Structures & Algorithms

An introduction to data structures and algorithms from a practical, hardware-first perspective. Learn how the physical layout of your data in memory impacts performance.

• New
View
Practical Algorithm Analysis

CPUs, Memory, and Locality

Understand how our code interacts with physical hardware. Learn about virtual memory, the stack vs. heap, cache lines, and prefetching.

• New
View
Practical Algorithm Analysis

Polynomial Algorithms

Learn how input size affects execution speed and the most common class of algorithms.

• New
View
Practical Algorithm Analysis

Logarithmic and Linearithmic Algorithms

Working with massive datasets using divide and conquer strategies, and the the required trade-offs.

• New
View
Practical Algorithm Analysis

NP-Hard and Approximations

Learn why some problems are impossible to solve exactly and how we can use approximations like Monte Carlo simulations to cheat.

• New
View
Professional C++

Creating Custom Iterators using C++20 Concepts

A detailed guide to implementing a custom iterator type from scratch, using modern recommended techniques

• Updated
View
Intro to C++ Programming

The #include Directive

Discover how the #include directive helps us include library features and split our project across multiple files.

• Updated
View
Google Benchmark for C++

Analyzing Benchmark Data

Learn to interpret CPU time, variance, and the trade-offs between insertion speed and read speed.

• Updated
View
Intro to C++ Programming

Function Overloading

This lesson provides an in-depth look at function overloading in C++, covering its importance, implementation, and best practices

• Updated
View
Managing C++ Projects Using CMake

Using Shared Libraries

Adding support for user-configurable library types and an initial introduction to target installation.

• Updated
View
Google Benchmark for C++

Configuring a CMake Project

Separate our core logic into libraries, configure CMake for multiple targets, and apply hardware-aware optimizations.

• New
View
Google Benchmark for C++

Integrating Google Benchmark

Integrate the industry-standard Google Benchmark library into a CMake project to capture nanosecond-precision timings.

• New
View