Floréal's Blog

smalloc: A Minimalist Memory Allocator

Dive into the world of memory management with smalloc, a custom-built minimalist allocator. Learn how I implemented a dynamic memory manager that works entirely within a fixed-size buffer, showcasing ingenuity in constrained environments.

Backend-less: The True Serverless

Learn how to build complex, data-driven applications without a traditional backend. In this article, I share how I eliminated the need for a backend in the second version of my France Termes webapp, saving on server costs and simplifying security concerns.

FatArena: Simplifying Memory Management in C

Explore a novel approach to memory management in C that challenges conventional wisdom. FatArena offers a streamlined alternative to traditional malloc and free paradigms, promising improved performance and reduced complexity in certain scenarios.