c

Intrusive Data Structures in C and C++

11 minute read Published: 2025-07-22

This article discusses the benefits and shortcomings of intrusive data structures and the implementation of a type-safe container_of in c++.

Intrusive Data Structures in C and C++

11 minute read Published: 2025-07-22

This article discusses the benefits and shortcomings of intrusive data structures and the implementation of a type-safe container_of in c++.

C++ Async Programming with Asio: the Lifetimes Problem

20 minute read Published: 2025-07-01

This article introduces the Asio library for convenient C++-native asynchronous programming and suggests an approach for solving common use-after-free bugs.