Posts tagged with: zig

Back to all posts

Read Directory Contents With Zig

Oct 6, 2024 4 Minutes

Learn how to read the contents of a directory in Zig using the page allocator.

Zig is the Next Big Programming Language

May 11, 2024 7 Minutes

Zig is an amazing programming language that has the potential to become huge in the coming years. Learn more about Zig and why you should consider using it.

Building Blocks Of Zig: Understanding Structs

May 29, 2024 5 Minutes

Structs are a fundamental building block of Zig and are used to group related data together in a logical and structured way.

Zig Allocators Explained

May 8, 2024 7 Minutes

A dive into how Zig handles memory allocation and how you can use Allocators to control it. Learn more about Zig's unique approach to memory management.

Building Blocks Of Zig: Unions

June 29, 2024 5 Minutes

Zig unions are a powerful way to represent multiple possible types of a value in a single variable.

Building Blocks Of Zig: slices

June 3, 2024 6 Minutes

Slices are a core building block of Zig and are used to represent a contiguous sequence of elements. Learn how to create, access and iterate over slices in Zig.

Why Zig Feels More Practical Than Rust for Real-World CLI Tools

Sept 23, 2025 8 Minutes

Why I reach for Zig first for my CLI tools lately

Zig Error Handling

Sept 9, 2025 7 Minutes

Error handling in Zig is simple, explicit, and powerful.

Accidentally Made a Zig dotenv Parser

Oct 7, 2025 6 Minutes

How I ended up creating a dotenv parser while working on a CLI argument parser