Building a TCP Port Scanner in F#
Introduction One of the best ways to understand TCP networking is by building a simple port scanner. A port scanner attempts to connect to remote TCP ports and determines whether they are available. W

Search for a command to run...
Introduction One of the best ways to understand TCP networking is by building a simple port scanner. A port scanner attempts to connect to remote TCP ports and determines whether they are available. W

Introduction Linux kernel development is traditionally associated with topics such as synchronization, locking, atomicity, interrupt handling, and race condition prevention. Modern cloud infrastructur

Introduction Writing Linux kernel code is very different from writing user-space applications. The kernel runs with direct access to hardware, supports multiple CPUs, handles interrupts, and manages s

Understanding Spinlocks, Data Races, Global Variables, and ISA Detection in Linux Kernel Modules When developing Linux kernel modules, understanding synchronization and system architecture is essentia

Understanding Critical Sections, Exclusive Execution, and Atomicity in Linux Kernel Programming Modern Linux kernels execute on multicore systems where multiple CPUs, kernel threads, interrupts, and w

This Program manages object lifecycles across distinct parallel execution layers. It bridges lockless reader threads with a serialized writer thread and an asynchronous memory reclamation subsystem.

Building a Mini Linux Kernel Object Registry Using SLAB, RCU, Hash Tables, Shrinkers, and Procfs Modern Linux kernels manage massive numbers of dynamically created objects. Examples include: Inodes D

Building a Simple Linux Kernel Object Cache Using SLAB Allocator Linux kernel development is very different from user-space programming. In user space, developers typically use: malloc(); free(); Ins

Introduction Most Linux kernel tutorials focus on writing kernel modules directly in C. Most compiler tutorials focus on parsers, ASTs, and code generation. What happens when we combine both? This pro
