
Python
Learn here!

Java
Learn here!

C#
Learn here!

C++
Learn here!

JavaScript
Learn here!

Flutter
Learn here!

Master the CRTP in C++ — learn static polymorphism, mixin classes, compile-time interface enforcement, and…

Master C++ placement new — learn how to construct objects in pre-allocated memory, build memory…

Learn C++ custom memory allocators — why the default allocator is slow for some workloads,…

Master the C++ memory model — learn happens-before, sequentially consistent execution, data races, memory ordering,…

Master C++ atomic operations — learn std::atomic, memory orders, compare-exchange, lock-free data structures, and when…

Master C++ condition variables — learn how threads wait and notify each other, implement producer-consumer…

Master C++ thread synchronization — learn std::mutex, lock_guard, unique_lock, shared_mutex, deadlock prevention, and RAII locking…

Learn C++ multithreading from scratch — how to create threads with std::thread, pass arguments, join…

Learn C++20 Concepts — how to constrain template parameters, write named concepts, use requires clauses,…

Master SFINAE in C++ — learn what substitution failure means, how enable_if works, how to…

Master C++ template metaprogramming — learn compile-time computation, type traits, recursive templates, constexpr, and real-world…

Learn variadic templates in C++ — how to write functions and classes that accept any…

Learn C++ lambda expressions from beginner to advanced — syntax, capture lists, mutable lambdas, generic…

Master rvalue references and perfect forwarding in C++ — learn T&&, universal references, std::forward, reference…

Master C++11 move semantics — learn move constructors, move assignment operators, std::move, and how to…

Learn what lvalues and rvalues are in C++, how value categories work, why they matter…

Learn the RAII principle in C++ — what it is, why it matters, and how…

Learn how C++ smart pointers work — unique_ptr, shared_ptr, and weak_ptr — with clear examples,…

Master virtual inheritance in C++. Learn what the diamond problem is, why it occurs, and…

Learn how multiple inheritance works in C++, when to use it, common pitfalls like the…

Master the C++ using directive and using declaration. Learn when to use each, the risks…

Master C++ namespaces—declare, nest, extend, and use them to organize code and prevent naming conflicts.…

Master C++ file I/O with fstream, ifstream, and ofstream. Learn reading, writing, appending, binary files,…

Master C++ exception handling with try, catch, and throw. Learn exception types, custom exceptions, RAII,…

Master C++ iterators—the universal interface connecting containers and algorithms. Learn iterator categories, operations, custom iterators,…

Master C++ STL algorithms—sort, find, transform, count, accumulate, remove, and more. Learn how to use…

Master C++ std::set and std::unordered_set. Learn unique element storage, fast lookup, set operations, ordering, and…

Master C++ std::map and std::unordered_map. Learn key-value storage, lookup, insertion, deletion, iteration, and when to…

Master C++ vectors—the most-used STL container. Learn initialization, insertion, deletion, iteration, resizing, and performance with…

Master the C++ Standard Template Library (STL). Learn containers, iterators, and algorithms—vector, map, sort, find—with…