Tag
The blog post reflects on attending Zigtoberfest and provides tiered advice for using the Zig programming language, focusing on systems thinking, design depth, and software perfection.
Vercel announces Grok 4.7 on its AI Gateway with a 40% discount until September 27th and introduces fx, a tiny open-source coding agent harness written in Zig for performance and embeddability.
This article compares the compile-time reflection capabilities of C++, Zig, and C3 programming languages. It demonstrates how each language handles tasks like enum to string conversion and struct introspection with code examples.
Safari 27 introduces JSPI, a WebAssembly capability for synchronizing native code with asynchronous promises, and highlights fx, an open-source coding agent tool that can run in the browser via WebAssembly.
Antfly has rewritten their search-and-inference database from Go to pure Zig for improved performance and zero dependencies. The article details their technical decisions, first principles, and implementations of vector search algorithms.
Revo is a programming language featuring clean data flow, error-as-values, compile-time execution, and fiber-based concurrency. It is built using Zig and offers optional typing with strong inference.
The Zig devlog introduces pointer stability for ArrayLists to prevent memory safety bugs caused by pointer invalidation during reallocation.
The article discusses how LLMs are reducing friction in programming language choice, leading developers to adopt performance-oriented languages like Rust and Zig for fast, small software and enabling work with complex technologies previously considered difficult.
Release of fx v0.0.5, a tiny open-source coding agent written in Zig that fits in 2 floppy disks, now includes a most-asked feature and ships tomorrow.
An experienced Rust developer shares their journey of learning Zig by reimplementing a JSONPath tool, highlighting differences in IDE support and code organization.
A new open-source coding agent tool named fx, compiled with Zig, features a tiny 6.3MB binary, instant startup in 10µs, and WebAssembly support for optimized performance and embeddability.
fx is a tiny, open-source coding agent CLI tool written in Zig, optimized for minimalism, performance, and embeddability with a small binary size and fast cold start.
Zig Day Seattle is a full-day event focused on collaborative learning and software development using the Zig programming language.
Writergate is the informal name for Zig's I/O interface overhaul, which replaces generic types with concrete types and vtables to address design flaws and enable features like async I/O. The changes are breaking and require updates to existing code.
A concise Zig idiom for printing comma-separated lists by conditionally printing the comma before each item except the first.
The author argues for a Rust FFI that speaks the Fil-C ABI, enabling safe interop with recompiled C/C++ libraries, and calls for cross-ecosystem collaboration among Rust, Fil-C, Zig, and Nix/filnix communities.
EuroZig is a new European community for Zig enthusiasts, aiming to host conferences, workshops, and support the Zig ecosystem. They are currently registering as a German non-profit and planning Zigtoberfest 2027.
An opinion piece discussing the Bun migration from Zig to Rust, Andrew Kelley's critical response, and a broader philosophical debate about whether software engineering is a craft or industrial process.
A blog post discusses the fragility of depending on centralized hosts like GitHub, explores forking and vendoring as mitigation strategies, and questions who should pay for reliable source code availability.
Article discusses Zig's std.Io.Threaded, an implementation of Zig's Io interface that uses blocking syscalls and supports cancellation via signals, contrasting concurrency and parallelism.