August 10, 2024
Today I learned how to use a debugger to debug Zig programs.
The lldb way (gdb style) First, I learned how to use lldb, the debugger provided by the LLVM project.
August 4, 2024
In the last post, I told you how I learned the basics of generating a WAVE file, both in Python and Zig.
July 29, 2024
Today I set out to learn how to create a WAVE file.
I had recently gone through an article about reading and writing wave files in Python, which whet my appetite to do somewhat the same in Zig.
July 21, 2024
Today I decided to get some practice using Zig’s data structures from the standard library, building an old friend: a bc style calculator, implementing the algorithms to evaluate reverse Polish notation expressions and converting from infix to that notation.
July 20, 2024
In my Zig learning journey, I’ve managed to not use allocators for anything yet.
I’ve watched this great video of Dude The Builder explaining the basics of allocators in Zig.