Zig and HTTP 8 February 2026·6 mins Language/Zig Zig/0.15.2 Zig/Http Making HTTP requests (GET, PUT, POST, DELETE) in Zig and why a wrapper is useful here.
Zig and JSON 6 February 2026·4 mins Language/Zig Zig/0.15.2 Zig/Json Working with JSON in Zig, the std.json.Parsed wrapper, memory management, and what breaks when your JSON doesn’t match your struct.
Reading from files using buffers in Zig 3 February 2026·2 mins Language/Zig Zig/0.15.2 Zig/Buffers Zig/Files Learn how to read from a file in zig using a buffer for temporary store of bytes.
Writing to files using buffers in Zig 2 February 2026·4 mins Language/Zig Zig/0.15.2 Zig/Buffers Zig/Files Learn how to write to a file in zig using a buffer for temporary store of bytes.
Zig Juice Has Arrived in 0.16.0 20 January 2026·3 mins Language/Zig Zig/0.16.0 Zig’s new Init and Minimal structs for accessing command line arguments and environment variables in main.
Zig Iterators 28 October 2025·3 mins Language/Zig Zig/0.15.1 Zig/Comptime Zig/Slice Building a custom iterator for a generic slice type in Zig.
Error Handling in Zig 19 September 2025·3 mins Language/Zig Zig/0.14.0 Zig/Error-Handling Zig error handling mechanisms using try, catch, switch, panic, unreachable, and C-style return codes.
To Owned 9 July 2025·2 mins Language/Zig Zig/0.14.0 Implementing a toOwned() method in Zig to copy data from managed buffers to heap-allocated memory.
Sliding Window 12 April 2025·2 mins Language/Zig Algorithms/Sliding-Window Implementing a sliding window algorithm in Zig.
Stack Data Structure using Zig 8 March 2025·7 mins Language/Zig Zig/0.14.0 Zig/Data-Structures Zig/Comptime How I built a generic stack data structure in Zig using comptime.
Advent of Code: Day 1 1 December 2024·6 mins Language/Zig Zig/0.13.0 Advent-of-Code/2024 Solving Advent of Code 2024 Day 1 in Zig.
Zig Optionals 26 November 2024·2 mins Language/Zig Zig/0.13.0 Zig/Optionals Learning how to declare and unwrap zig optionals to access the underlying values using if, while, orelse and .? notation.
Zig Structs 14 October 2024·5 mins Language/Zig Zig/0.13.0 Zig/Structs Let’s learn zig structs. How to declare them, add methods, instantiate them, and @This() super powers.