Welcome to Zig NEWS!
This is a self-hosted instance of Forem (the same CMS used by dev.to) managed by yours truly. The idea is that if you want to create written content about Zig, this instance can help you with promoting it without any extra effort on your part.
I strongly believe that having your own blog (aka owning your own content) is largely preferable to giving up the fruit of your work to someone else by posting it on their platform, but I also know that there are a lot of people who maybe wouldn't mind writing about Zig occasionally, but who are also not interested in doing all the work necessary to set up their own thing.
This is what Zig NEWS is for.
Hopefully Zig NEWS can become a fun way of sharing parts of your Zig jurney with other Ziguanas.
PS
Check out the FAQs.
Art credit: DerTee from the Zig SHOWTIME Discord server.
Oldest comments (40)
Hello World, everyone :D
Yay! It's exciting to be part of such a fantastic community of Ziguanas, thanks for the invite Loris! ❤🎉🦎
All your articles are belong to us
Did i join the party too late?
No
Not necessarily planning on doing it, but what are your thoughts on cross-posting here and on a personal blog (with a cross-link at the top)?
Feel free to do whatever you prefer. Forem has support for setting a "Canonical URL" for each post so that it's properly marked also for search engines etc.
Great idea Loris - I think (once again), you have perfectly read the mood of a lot of devs, and put this up right at the right time.
Thank you
Thanks!
Congrats! Also I think this deserve a news post on ziglang.com
Hej världen!
Ciao!
Hi there!
Hello World!
Hey hey!
Hey @kristoff make sure to keep this Forem instance up-to-date. We're making improvements and you should seek to regularly update it.
Otherwise things continue to look great!
I was joining looking for an inclusive community around a nice new programming language, only to find that this community promotes and allowed racism, sexism, and cisphobia if it's directed at someone "non-marginalized". This is a very bad policy that creates hostile environments. If you're saying that the comfort of "reverse"-ists are more important than my safety, than you are not following your own rules. I accept the code of conduct, EXCEPT for this part. I will criticize it where I see it. Hopefully it doesn't come to that.
Wow, what a wrong way to see the world, as if racism can only be directed at some people. If you are only against some racism, you are not against racism; you are just against (some other) people ('s race).
Thanks, Dylan, for pointing out this horrible passage.
I have a genuine question regarding Zig:
How is zig able to keep syntax so so friendly while still managing to be a systems language that's as fast as C? I especially mean to compare it to rust which does the same thing, but suffers from vastly complex language syntax...
Thanks..
It's a matter of philosophy: in Zig the programmer is expected to be explicit and type more code to implement complex interactions. This is sometimes a blessing and sometimes a curse. In Rust you can trivially declare that a type fits a given interface by declaring that it implements a
Trait
, in Zig you have to do structural equality. On the flipside Rust keeps getting features that add magic to the language which make it harder for devs to have full knowledge of the language.In my opinion C also meant to have a philosophy similar to Zig's, but it also features an endless chain of footguns and funky syntax that detract from its goal of simplicity.
Thanks @kristoff
I personally favor simplicity and visibility.
Explicit is better than implicit
. A language should be minimal, yet, complete. Rest everything should go into standard library, if needed.Rust "almost" became a perfect language across all domains. But, the complexity of the language itself takes that perfectness away. We need a language like Rust, but without it's complexity. I believe Zig does fit really well here :)