Zig Bits

Zig Bits 0x4: Building an HTTP client/server from scratch

22 minute read Published: 2023-07-11

Let's experiment with the std.http module of Zig >=0.11 and create an HTTP server/client from scratch (along with some benchmarks)!


Zig Bits 0x3: Mastering project management in Zig

14 minute read Published: 2023-04-19

In this post, I'm sharing tips & tricks about managing/maintaining an open-source Zig project and mentioning the commonly used practices. I'm also giving a brief introduction to my first-ever Zig project "linuxwave" which led to the writing of this series.


Zig Bits 0x2: Using defer to defeat memory leaks

17 minute read Published: 2023-03-21

Let's talk about how to detect memory leaks in Zig and avoid them by using the defer statement.


Zig Bits 0x1: Returning slices from functions

10 minute read Published: 2023-02-17

I decided to start a new blog series called "Zig Bits" where I share interesting bits of information about the Zig programming language. This series will be especially for beginners because I'm also a beginner.