Why learn Zig?

  Рет қаралды 14,380

Kodaps Academy

Kodaps Academy

Күн бұрын

Пікірлер: 66
@pratikshares
@pratikshares 5 ай бұрын
But, didn't answer the question: Why Zig pays more?
@hand-eye4517
@hand-eye4517 2 ай бұрын
probably because of tiger beetle look it up
@christosbinos8467
@christosbinos8467 2 ай бұрын
It's due to low supply. If you need Zig specifically, you don't have a big pool of candidates.
@d1zputed23
@d1zputed23 11 күн бұрын
I think it's because there's few people uses it so any small fluctuation affects the average easily. It is also the reason vatican city has the highest murders per capita. Can't remember the name of the phenomenon.
@SoulExpension
@SoulExpension 3 күн бұрын
I'm loving it. I think the code is reviewable. No overrides, and I'm not writing exception code to escape Rust's paradigm, the borrow-checker liability boundary. That makes the code idiomatic, and alloc/defer a straightforward positive process. I'm simply not fighting the Zig code. It seems to be code trick detox for me. Async is missing. Don't sweat it; that makes it safe right now. io_uring in the kernel is being security patched. You can try libxev, libuv, or mess with C's s_task.
@theevilcottonball
@theevilcottonball 5 ай бұрын
Well, having tried both C and Zig, I would argue that C is the better language. In C you can do things your way. (Unlike in the video, you do not have to use integers for error handling, you can do it the way you prefer (tagged unions, out parameters, a thread local error log, ...). Also saying that Zig solves UB is just plain wrong, in some respects Zig has more UB (although more consistent) like Zig has undefined behaviour for unsigned integer types, whereas C does not. Both languages offer some tooling to deal with that (releasesafe, UBSAN). The advantage of C is, that it is still the language of native system interfaces, it has a stable ABI so it can act as intermediary between languages and it is standardised. It has many problems, for sure, but they are well known and good C programmers know how to work around them. On the other hand, I think Zig's killer features are comptime, builtin slices, async and null safety. BTW: I do not like the Zig developer experience, it has no ways to configure compiler warnings (it just has errors, and even complains about minor details like whitespace), it's error messages are not that good, it is slow to compile (gcc is fast especially for unity builds, but everyone talks about GO's compilation times). The syntax is a little noisy too. Zig's greatest feature is actually the builtin C compiler, it makes it easy to compile your C code cross-platfrom, it is easy to install and takes up little space (I am looking at you Visual Studio C). some people use Zig as their build system, I have not tried that though, and it does not solve the fragmented landscape of C and C++ build systems.
@minma02262
@minma02262 4 ай бұрын
There are a bunch of examples of people porting their c/c++/make/ninja/etc build into just zig. Its very streamlined.
@zwjna
@zwjna 4 ай бұрын
You can manage your errors the C way in Zig if you want, of course. With the extra that you will have tuples to return multiple values instead of using out parameters (which you still can if you want) and the brand-new syntax to "destructure" it, as well as defer, and errdefer, and the killer features you mentioned.
@pietraderdetective8953
@pietraderdetective8953 5 ай бұрын
any plan making a Zig tutorial series? would be awesome since current Zig references are a bit difficult to find...another plus Zig looks to be the hype of 2024. Major devTubers / devTwitchers are covering it.
@MatthisDayer
@MatthisDayer 4 ай бұрын
read language reference, if you have experience with c, c++, rust or go you thrive, if not you should really learn c first before going to zig
@djchocolatethunder
@djchocolatethunder 4 ай бұрын
@kodaps what’s crazy is I just commented on another video before this one asking why and what and who, etc. and this video answered it very well. Now I gotta decide if C is worth learning for my goals hence if I should be thinking about learning ZIG. Thank you and well done.
@Leonhart_93
@Leonhart_93 5 ай бұрын
I would love to use Zig for bigger stuff IF it was less annoying about the dev experience and normal debugging techniques. A random unused variable or a var that never mutates being considered breaking compiler errors without any way to turn it off feels extremely tedious, when you have no intention of commenting and removing everything like that with every compile.
@metaphoricallyalive8109
@metaphoricallyalive8109 5 ай бұрын
Isn't that for better safety? I'd guess rustc makes you do the same?
@Leonhart_93
@Leonhart_93 5 ай бұрын
@@metaphoricallyalive8109 What safety? So that I can't comment a function call to debug it because 3 vars get unused and I go to comment them which causes another 2 to get unused? Forcing that for dev builds with no way to turn it off is anti user experience. And I think Rust has them as warnings, not sure.
@testing-nj2ne
@testing-nj2ne 5 ай бұрын
@@Leonhart_93 I totally agree with you. For someone, just starting out it's highly annoying and soul destroying. But in professional code it's pretty much a "must have". It's a shame we can't have a -professional or -amateur switch on the zig build.
@Leonhart_93
@Leonhart_93 5 ай бұрын
@@testing-nj2ne It's perfectly possible. If C allows it and they get optimized by the compiler anyway, then what's the problem? Besides, that's why there are dev builds and release builds. Only that for these new languages there are no dev builds anymore, everything you write has to be no-chill.
@theevilcottonball
@theevilcottonball 5 ай бұрын
@@metaphoricallyalive8109 Rustc issues a warning. Zig does not have the concept of warning it straight up refuses to compile. An unused variable by itself is not safety critical. It is just annoying to get the error while developing, for production code not having them is the right approach imho.
@gabrielkwong1878
@gabrielkwong1878 5 ай бұрын
I can see a future with zig especially with embedded programming, tho I wonder if rust will somehow make a really good developer experience tho comptime in rust is... well. Anyway on the other hand Odin seems interesting would recommend checking it out, its competitive in the computer graphics space but I wonder if there is a future with embedded systems programming for Odin.
@Leonhart_93
@Leonhart_93 5 ай бұрын
Rust's good developer experience is purely subjective. I can tell quite clearly, it's not popular with those developers that don't like to be told what to do by some layers of abstraction. From my point of view it's either low level control or not, not much in between. That being said Zig also has some annoying stuff built-in, forcing you to do things in specific ways in your own code. Like unused vars being hard errors, it's incredibly disrupting for debugging.
@hand-eye4517
@hand-eye4517 2 ай бұрын
programming in c, heck even reading c code and compiling it/ reading up on the issues surrounding it/ the surrounding ecosystem of tools and dependencies really makes me not wanna use it in the modern age(maybe im just not smart enough still) . Zig for me solves this by letting me get out of the hell of a zillion make tools to choose from and amazing interoperability with existing C making it it an exceptional addition to your toolbelt without the fear of missing out of the C ecosystem . i believe zig is the future of systems programming due to all the problems it eases and solves. And FYI rust doesn't replace zig /zig doesn't replace rust.. they both have a place in the future of low level programming.
@eduardabramovich1216
@eduardabramovich1216 5 ай бұрын
what's your opinion of Odin if you have checked it?
@testing-nj2ne
@testing-nj2ne 5 ай бұрын
A problem with Odin, is that it is "owned" and funded by a company. A company has to extract money for it's shareholders. It might start with a "Don't be evil" motto. But legally they have a fiduciary responsibility to the bottom line. Zig is owned by a non profit. A non profit has to put it's profits back into the mission.
@hifumi-chan5193
@hifumi-chan5193 4 ай бұрын
@@testing-nj2ne owned? funded? company? shareholders? what the fuck are you talking about?
@GingerGames
@GingerGames 3 ай бұрын
@@testing-nj2ne It is not owned by anyone but myself. And Odin is mostly funded by donations too. Please stop saying nonsense.
@Jankoekepannekoek
@Jankoekepannekoek 2 ай бұрын
Clickbait title.
@Pismice
@Pismice 5 ай бұрын
its not true to say the concurency is a native language feature in zig, async/await has been dropped since 0.11 if i remember correctly
@nothke
@nothke 5 ай бұрын
It has been TEMPORARILY removed because there are some big issues to solve. These problems are not impossible to solve but it takes time. But they're definitely planning to add them back. Check the 0.12 change log it's mentioned there.
@Pismice
@Pismice 5 ай бұрын
@@nothke it is not 100% sure that they are going to add it, there is a github discussion I couldnt find where they discuss if they truly want this or not.
@hifumi-chan5193
@hifumi-chan5193 4 ай бұрын
@@nothke where does it says "TEMPORARILY"? changelog itself says async/await future is unclear lol
@boy_deploy
@boy_deploy 2 ай бұрын
Concurrency is not just about async/await. You can easily spawn a Thread in Zig without knowing the intricate implementation details of it. I.e. windows,posix,linux,wasi implementations. It is a native language in Zig. Just read the documentation you'll easily find it in Zig Standard Library. And that is why he mentioned "multi-threaded applications"
@science_trip
@science_trip 5 ай бұрын
ok. but breaking changes in every sub-version is not a good idea. But of course I prefer it more than Rust
@KodapsAcademy
@KodapsAcademy 5 ай бұрын
That was (partly) my point in the conclusion :)
@basit005
@basit005 5 ай бұрын
I agree but Zig is a much newer language and only like v0.12. I'm sure rust also had breaking changes at that version
@KodapsAcademy
@KodapsAcademy 5 ай бұрын
@basit005 sure. But the underlying question is : is it stable enough to warrant investing time in at this stage ?
@basit005
@basit005 5 ай бұрын
@@KodapsAcademy I really don't know the answer to that. Perhaps we should hold off on making really ambitious software in it right now, but as a counterexample - bun
@UliTroyo
@UliTroyo 5 ай бұрын
Yeah but the goal is to be finished at 1.0. I love the idea of a finished language.
@Takatou__Yogiri
@Takatou__Yogiri 9 күн бұрын
the macro thing in rust is making things impossible for me to learn. so i'm will learn zig once it hits 1.0.
@meka4996
@meka4996 5 ай бұрын
In short, if you have existing C projects, use Zig to fix it. If not, use Rust for new projects.
@iatheman
@iatheman 3 ай бұрын
Rust is better for it's maturity. Zig is more promising.
@Noel-g2q
@Noel-g2q 3 ай бұрын
The problem with Rust is a lot of people don't like Rust.
@neshkeev
@neshkeev 5 ай бұрын
Nothing will replace C in low level programming as long as we go with the Von Neumann architecture although Rust fanboys are trying to convince everyone otherwise
@staynjohnson4221
@staynjohnson4221 5 ай бұрын
how are you highlighting the screen with boxes and arrows ?
@KodapsAcademy
@KodapsAcademy 5 ай бұрын
Hi, I'm using a piece of software called "Presentify" setapp.sjv.io/c/4172596/849350/5114 :)
@staynjohnson4221
@staynjohnson4221 5 ай бұрын
​@@KodapsAcademythanks!
@CatsAndCode
@CatsAndCode Ай бұрын
Dude, People rushing to Zig and Rust just like they did with Go and other languages. You cant compare C as if its another language
@thanosfisherman
@thanosfisherman 3 ай бұрын
Can Zig pay my bills?
@KodapsAcademy
@KodapsAcademy 3 ай бұрын
Only the auto-mow bills :D
@mschwanitz
@mschwanitz 5 ай бұрын
Love your vids! Keep em coming.
@Alex.Shalda
@Alex.Shalda 5 ай бұрын
Thanks for the vid ❤
@KodapsAcademy
@KodapsAcademy 5 ай бұрын
Glad to be of service :)
@dustee2680
@dustee2680 5 ай бұрын
it looks quite intimidating to a lowly c# pleb like myself but it peaks my interest
@KodapsAcademy
@KodapsAcademy 5 ай бұрын
I'm gad the video intrigued you, I hope it ends up being useful in the long term :)
@mgord9518
@mgord9518 5 ай бұрын
You might be surprised. I had only used Go and Python previously, picked up Zig fairly quickly. Once you start understanding manual memory management it gets really easy
@guitargyro
@guitargyro 4 ай бұрын
I think we already have a robust, proven language like this: it's called Rust.
@KodapsAcademy
@KodapsAcademy 4 ай бұрын
@@guitargyro Zig’s main strength here is its interoperability with C, which doesn’t really exist with Rust
@guitargyro
@guitargyro 4 ай бұрын
@@KodapsAcademy Sure it does. It has an extensive FFI to interop with C. I've personally written Rust code that calls into C and C code that calls into Rust.
@KodapsAcademy
@KodapsAcademy 4 ай бұрын
@@guitargyro I get your point. The difference is that FFIs function on a binary to binary level, whereas Zig's interop is at the code level. But I guess your point still holds :)
@TheFreshMakerHD
@TheFreshMakerHD 3 ай бұрын
Zig compiler compiles c/c++ in the hopes to clean up the build system and make os portability much easier. As for your rust argument, I think we already have a robust, proven language like this: it's called c++
@catto-from-heaven
@catto-from-heaven 3 ай бұрын
Yeah, if you're willing to sacrifice all your productivity, and spend months learning the language, Rust is fine
@arson5304
@arson5304 5 ай бұрын
i think your notion about zig's error handling is misinformed, it's meant to be a replacement for exception handling in other languages, not to inherently protect you from memory related issues. rust has this same feature so it's not really contrasting in that sense.
@rsalmei
@rsalmei 5 ай бұрын
Rust is much more complete, Rust doesn't have NULL, and Rust doesn't have exceptions, it is all part of the type system.
@3bdo3id
@3bdo3id 5 ай бұрын
you should have said I'll zig you in this next video instead of I'll C you in this next video
@KodapsAcademy
@KodapsAcademy 5 ай бұрын
Clearly a missed opportunity :D
@ws9691
@ws9691 3 ай бұрын
C is old so use Zig - if that's your main excuse then go ahead...
zig will change programming forever
9:34
Low Level
Рет қаралды 338 М.
Intro to the Zig Programming Language • Andrew Kelley • GOTO 2022
50:14
Это было очень близко...
00:10
Аришнев
Рет қаралды 7 МЛН
Try Not To Laugh 😅 the Best of BoxtoxTv 👌
00:18
boxtoxtv
Рет қаралды 7 МЛН
НИКИТА ПОДСТАВИЛ ДЖОНИ 😡
01:00
HOOOTDOGS
Рет қаралды 3,1 МЛН
У вас там какие таланты ?😂
00:19
Карина Хафизова
Рет қаралды 14 МЛН
Why I Chose Rust Over Zig
33:18
ThePrimeTime
Рет қаралды 199 М.
Trying Zig Part 1
1:30:00
TheVimeagen
Рет қаралды 107 М.
Just enough C to have fun
39:29
Kay Lack
Рет қаралды 57 М.
Object Oriented Programming is not what you think it is. This is why.
13:36
Async Rust Is A Bad Language | Prime Reacts
28:46
ThePrimeTime
Рет қаралды 105 М.
When Zig Outshines Rust | Prime Reacts
23:31
ThePrimeTime
Рет қаралды 143 М.
What's a Memory Allocator Anyway? - Benjamin Feng
48:30
Zig SHOWTIME
Рет қаралды 56 М.
Paid Zig Stream
3:20:37
Tsoding Daily
Рет қаралды 97 М.
Go vs Rust: Which To Learn In 2024?
6:27
Kodaps Academy
Рет қаралды 167 М.
Это было очень близко...
00:10
Аришнев
Рет қаралды 7 МЛН