I’m not that familiar with Zig, so I included a second article below with a nice overview. So beyond XLibre which I run on my computers instead of X.Org’s X11 implementation, we have another project trying rewrite X11 in Zig from scratch, to include some of the security and improvements that Wayland is supposed to bring. Since IBM/Red Hat has used underhanded methods, even bragging about it, to kill X.Org to force Linux to Wayland, I just don’t trust them of their Wayland myself. It’s really a modern approach for integrating agentic AI bossware, and then full on spyware so your Linux system will be as much a spying platform as Windows, MacOS, iOS and Android. But it remains to be seen where Phoenix written in Zig will fall with agentic AI integration, though more X11 options might be a good thing if you want to live in a Wayland free world.
https://www.phoronix.com/news/Phoenix-X-Server
Written by Michael Larabel in X.Org on 25 December 2025 at 09:45 AM EST. 76 Comments

For X11/X.Org fans there is a new Christmas surprise: Phoenix as an in-development X Server written from scratch using the Zig programming language.
Phoenix is a new X Server written from scratch in the Zig programming language for providing better safety. Phoenix hopes to become a modern alternative to the X.Org Server but admittedly right now is “not ready to be used yet” although it can render simple applications with GLX, EGL or Vulkan.
Phoenix hopes to be simple, secure, better designed for modern technology like variable rate refresh (VRR) and HDR, better graphics handling, allow for more easily extending the X11 protocol, and to provide Wayland compatibility.
Those wishing to learn more about this in-development Phoenix X Server effort can do so via the Git repository.
https://leaddev.com/career-development/why-zig-one-hottest-programming-languages-learn
Why Zig is one of the hottest programming languages to learn
A recent Stack Overflow survey revealed Zig is highly-admired and developers are highly-paid – but why?
By Chris Stokel-Walker

Your inbox, upgraded.
Receive weekly engineering insights to level up your leadership approach. Email address(Required)
The level of pay someone can earn shouldn’t be the primary reason that developers decide on which programming language to learn. Nor is how much they’re admired by your peers. But both are useful factors when deciding where to invest your time.
This makes the recent Stack Overflow survey and its suggestion that Zig is among the more admired programming languages around, as well as a high-earning skill – all the more interesting.
The average Zig developer can earn $75,332 a year according to the survey – more than those that code in more established languages like C++, JavaScript, and SQL. It also came in as the third-most admired language amongst developers, sitting just behind Rust and Elixir.
Although the language is only used by about 1% of the respondents, it’s trending upwards, fast. “Zig’s appeal lies in its simplicity, modern design, and the balance it strikes between low-level control and runtime safety,” says Ali Cheragi, an advocate of the language and a FOSS developer.
Why Zig?
Cheragi picked up Zig as a young programmer after researching which language was most suited to his needs. “I chose Zig as my daily language because of its unique combination of features and goals,” he says. “I was drawn to Zig’s safety, while letting me control the lowest level pieces.”
The programmer was also a fan of how the language approached errors, using error unions and defer – which caught his attention as an improvement over more traditional methods. “Additionally, the clear and consistent syntax, along with powerful compile-time capabilities, made Zig an attractive choice for me,” he says.
For Stephen Gutekanst, who is building Mach, a game engine written in Zig, the choice was also clear. “Unlike a lot of other languages, Zig has really seamless interoperability with existing C code,” he says. That’s vital for a number of reasons.
“Zig is basically overhauling a lot of programming infrastructure that nobody dared to touch in like 40 years,” explains Loris Cro, vice president of community at the Zig Software Foundation. “C and C++ are programming languages that are famous for being core programming languages where you get to have full control over the hardware. But at the same time, those languages have horrible tool chains.” Zig allows users to dabble with those core programming languages, but to use better tool chains that are compatible with languages and a richer set of features.
An overhaul in programming
“A lot of other languages are structured in such a way that interacting with the code is extraordinarily painful,” adds Gutekanst. But you don’t need to interact with them through standard means; you can use Zig.
This interoperability is crucial in an industry where legacy code is omnipresent. Zig allows developers to gradually adopt the language without necessitating a complete overhaul of existing systems – giving it a significant advantage for companies looking to modernize their codebases over time.
But Zig’s appeal isn’t just that it plays nicely with old code. It also nullifies a major issue for those in the world of traditional C/C++ development: how difficult it is to compile code for different platforms.
“Let’s say you’re making a tiny indie game, and you want to give it to a friend that has a Mac. Good luck compiling your game from Windows to Mac,” Cro says. “With Zig, where everything is written in Zig, or in C or C++, or even a mix, you can always cross-compile it for macOS or Linux, and vice versa. And it works.”
Deeper thinking
Gutekanst is also a fan of Zig because of how different it is to a lot of programming languages these days. Zig’s design forces developers to think about how their code interacts with the underlying system, leading to more efficient and performant applications.
“There aren’t many other languages that force you to think about and care about how your code is actually interacting with the machine,” he says. “You’re actually caring about performance, and your code kind of ends up being simpler.”
And for that reason, companies big and small are starting to adopt Zig – building it up from that small 0.83% representation in the Stack Overflow community. Cro highlights two startups, Bun and Tiger Beetle, that are betting big on Zig. Bun is developing a competitor to Node.js, while Tiger Beetle is building a distributed financial database where precise control over resources is critical.
Cheragi also highlights Uber, which uses Zig – not as a primary language – but as a build tool chain for its C and C++ code, leveraging Zig’s superior compilation capabilities.
That adoption makes sense, says Gutekanst, who believes other companies will soon follow suit. “I think that if you’re not looking at [Zig] in your organization, at least for the build tool chain, then you’re really missing out.”
In last year’s Stack Overflow survey, Zig burst onto the scene and started to grab more attention. The question many in the industry had was whether it would have staying power. The fact it still ranks high in people’s minds for the 2024 iteration of the survey suggests that it’s no flash in the pan – making Zig a smart bet to learn.