Latest News
⚑ Report a ProblemTech news from the best sources
Zig's Build System-Driven Package Management: A Game-Changer for Developers
Originally published on tamiz.pro . Introduction Zig's innovative approach to package management through its build system represents a paradigm shift …
You have been zigged (series) : Forking a child process
This program is about the POSIX fork() syscall. Zig favors standard library functions std.process.spawn() and std.process.run() functions instead of u…
You have been zigged (series) : Writing to spawned child process's stdin
In this blog, we will explore how to spawn a child process and write content into its stdin. // sortusingpipe__main.zig const std = @import ( "std" );…
You have been zigged (series) : Run a child process
In this blog we will see how to run a child process from a zig program. There are two std lib functions that allows us to do this - std.process.run() …
You have been zigged (series) : Linking static library
Blog no. 05 In this blog, we will explore how to link a zig library statically and dynamically. First lets create a library that contains a function m…
You have been zigged (series) : Introduction and hello world
Blog no. 01 Introduction So recently I watched the YouTube videos of Andrew Kelly ( link-1 , link-2 ) and became a fan of zig. I tried the ziglings ex…
I Replaced 70MB Node.js Log Viewer with a 172KB Zig Binary
Log files are the debugging reality of production systems. You stare at them daily, curse the noise, and grep until your eyes bleed. The problem? Most…