Blog
-
C++ I/O Optimization Cheatsheet | sync_with_stdio·cin.tie
C++ I/O optimization for coding test TLE prevention.
-
Modern C++ (C++11~C++20) Core Syntax Cheatsheet | auto
Modern C++ C++11~C++20 core syntax cheatsheet.
-
C++ Chrono Detailed Complete Guide | 'Time Library' Guide
std::chrono is a C++11 library that handles time intervals and points in a type-safe manner using duration, time_point, and clock.
-
C++ Chrono Complete Guide | 'Time' Library Complete Guide
Development blog post summarizing C++ Chrono. #include <chrono> #include <iostream> using namespace std; using namespace chrono;.
-
C++ Chrono Literals | 'Time Literals' Guide
How to write duration readably with C++14 chrono literals (1s, 500ms, 2h, etc.). Covers std::chrono_literals, unit operations, and practical examples.
-
C++ Classes and Objects: Constructors, Access Control,
Learn C++ OOP from scratch: classes, constructors, public/private access, destructors, const member functions, and the Rule of Three/Five with working.
-
C++ CTAD | Class Template Argument Deduction (C++17)
Learn C++17 CTAD: omit template arguments for pair, vector, and custom types.
-
C++ CMake Complete Guide | Mastering Cross-Platform Build Systems
A comprehensive guide to building C++ projects with CMake for cross-platform compatibility.
-
C++ CMake Quick Start | Minimal CMakeLists
Short CMake tutorial for C++: minimal CMakeLists.txt, static/shared libs, subdirectories, install—stepping stone to full CMake and cross-platform builds.
-
C++ CMake find_package Complete Guide | Integrating External Libraries
A complete guide to finding and linking external libraries with CMake find_package. From integrating Boost, OpenSSL, and Qt to writing custom FindModules.