My First Zig Interface

  Рет қаралды 42,237

TheVimeagen

TheVimeagen

Күн бұрын

Пікірлер: 122
@Blaisem
@Blaisem 7 ай бұрын
1:25:30 It's funny that prime was watching a youtube video at 1.5x speed, and I am watching Prime at 2x speed, so the KZbin video runs at 3x speed, and at this exact moment that youtube video has 3x speed highlighted on its screen.
@AloisMahdal
@AloisMahdal 7 ай бұрын
i could not understand the guy so i slowed down that part to 0.5 speed, making Prime kinda drunk
@LatterDay-Soldier
@LatterDay-Soldier 6 ай бұрын
I start to think about it in my head because I was like “No way 1.5 x 2 is 3” then i realised it was but was still confused then I thought “1.5 + 2(3.5) is more then 1.5x2(3)” now I’m more disturbed then anything.
@ckpioo
@ckpioo 6 ай бұрын
​@@LatterDay-Soldier what are you trying to do 😂
@LatterDay-Soldier
@LatterDay-Soldier 6 ай бұрын
@@ckpioo a lot of things man, a lot of things
@rosehogenson1398
@rosehogenson1398 7 ай бұрын
It's kind of based how interfaces in Zig are just structs and you have to raw-dog the vtable
@smushy64
@smushy64 3 ай бұрын
it's the same approach I used to take in C, it's so much better than C++ virtual functions cause I can control exactly how I want to construct the vtable. that being said, the more you program in a procedural language, the more you realize how few cases actually benefit from using a vtable at all.
@blarghblargh
@blarghblargh 7 ай бұрын
Interfaces can be nice, when the language supports them, but I think they're just not something I'd really want to use unless the language directly supported them. I'd probably usually just use a struct of function pointers, and then only at library boundaries.
@ForeverZer0
@ForeverZer0 7 ай бұрын
I tend to agree. I have been writing a lot of Zig the past few months, and have encountered a few scenarios where an interface might be convenient, but overall I get by just fine without them using other features that are more idiomatic That said, It would be nice to see some Zig features that alleviated some of the pain in implementing interface-like types. I have gotten by using comptime features to enforce the contract of the "interface" (i..e. wrapper type), but it always feels kind icky.
@steveoc64
@steveoc64 6 ай бұрын
Most times, you can just use anytype .. relax and trust the compiler to enforce the interface contracts, and let you know if your code is missing anything. There is generally no need to re-implement interfaces from scratch. The compiler will do that for you implicitly
@cagataykaydr3015
@cagataykaydr3015 5 ай бұрын
This is true for functions, but for structs that need a field with an anytype that implements some functions, here you need an interface because anytype is not available in struct fields.
@steveoc64
@steveoc64 5 ай бұрын
@@cagataykaydr3015 yes true - storing an interface type is an absolute pain. Currently doing exactly that - options are store an *anyopaque and fiddle the casting at the callsite (YUK) ... or create a union that wraps over them. No good options there. But then again, in Go, I would steer clear of trying to store interfaces anywhere, or returning interfaces from a function, if possible. Agree with you though - life isnt always simple :)
@cagataykaydr3015
@cagataykaydr3015 5 ай бұрын
@@steveoc64 Yeah, I wish there was an interface sytnax in this delicious language. Started to coding a 16 bit virtual machine in Zig, and I must say that Zig is a great experience and I learned so much about writing a virtual machine. But right now I'm writing a memory mapper, and it definitely needs an interface type for mapped memory to check if it has read and write functions. Oh god I just started to learn v-tables, I guess it's gonna take some time :) But you're right, it's a pain and if possible, using anytype is so much better
@luizpbraga
@luizpbraga 7 ай бұрын
"inline switch" is a time-saver
@zcizzorhandz5567
@zcizzorhandz5567 5 ай бұрын
You don't need interfaces in Zig. It's just not necessary you're only wanting them because that's what you're used to.
@pierre-antoineguillaume98
@pierre-antoineguillaume98 4 ай бұрын
Can you make generic types like a relationnal database handle ? Sql request in, tuples out ? Edit: i guess that could be an enum
@andrewdunbar828
@andrewdunbar828 6 ай бұрын
.Pointer is an enum. Struct fields use the same naming scheme. The . prefix makes parsing context-free.
@kenneth_romero
@kenneth_romero 7 ай бұрын
i'm doing the same thing in my project, though with Odin. been messing around with the reflect core library and specialized structs to achieve an interface to allow easier addition of mods to my game.
@pistonsoup3749
@pistonsoup3749 3 ай бұрын
Union enum + inline switch is what I have been doing. Then in whatever struct I have, I have a method that returns self as a the interface enum, to prevent nested initialization.
@MrKlarthums
@MrKlarthums 7 ай бұрын
There's going to be a certain type of developer who thinks the approach from the blog is really cool yet hates design patterns. This is literally a design pattern for Zig, but probably something you'd codegen instead of writing by hand because this is cursed, poorly maintainable code.
@blarghblargh
@blarghblargh 7 ай бұрын
not every pattern, but a lot of them are just a workaround for not having a feature directly supported in the language
@stgatilov
@stgatilov 7 ай бұрын
This is how interfaces were/are done in pure C, with some Zig specifics on top of it. All the boilerplate written by hand...
@AloisMahdal
@AloisMahdal 7 ай бұрын
i sort of assume that at some point (some size of Zig community), we're just going to have some library for creating interfaces... right? (not sure if it's possible with language like Zig)
@benjaminblack91
@benjaminblack91 5 ай бұрын
Tagged unions are generally superior to interfaces anyways. Some types of libraries/modules are better with interfaces, but as long as you get used to tagged unions, the need for interfaces will decrease massively.
@Ellefsen97
@Ellefsen97 5 ай бұрын
@@AloisMahdalI don’t see how it can be impossible given that we can create interfaces this way. It might be difficult to cooperate with the compiler and LSP if the “interface lib” is made by a 3rd party tho
@Chiramisudo
@Chiramisudo 6 ай бұрын
It's freaking insane how fast you move around in your code. I MUST learn how you do that. I would love to see you teach a course, or maybe you already have, on how you setup your environment to achieve those speeds. Particularly how to do DRILLS to increase keying speeds... Also, that's probably, at least in part, why you suffered from RSI. I can only top out at around 50-70 WPM, depending on the day, and never have issues.
@0xc0ffee_
@0xc0ffee_ 7 ай бұрын
Aren't there videos on youtube of previous work on this project in zig?
@alexpyattaev
@alexpyattaev 7 ай бұрын
When &dyn Trait in is a 2 hour session, and people still say rust is hard...
@Alguem387
@Alguem387 7 ай бұрын
Its not hard its just verbose
@Presenter2
@Presenter2 5 ай бұрын
2 hour session *learning* how to implement an interface, not just implementing one. Rust's trait system with trait boundaries, dyn and impl may (and in the most cases will) take longer to learn than just understanding how dyn works under the hood (it is essentially what Prime is doing in this video). In the end, it is just a pointer to data and a pointer to a vtable, nothing more.
@alexpyattaev
@alexpyattaev 5 ай бұрын
@@Presenter2 em... if you know what vtables and type erasure are, &dyn Trait takes 5 min to explain. Granted, if you dive into complex trait bounds you can get confused, but the basic type erasure is super straightforward. And stuff that would use complex trait bounds would become total nightmare fuel if written by hand.Getting that stuff correct in rust/c++ would be trivial, and in zig... well... you'd have to get good I suppose.
@Presenter2
@Presenter2 5 ай бұрын
@@alexpyattaev Well, you're correct. What I wanted to tell is that implementing an interface in Zig does not take 2 hours. It took that long because there's a big difference between knowing a theory and implementing this theory in practice (creating your own vtable, creating a fat pointer structure and some helper method to quickly instantiate the fat pointer). *Rust and C++ will do this for you, which will decrease required time and cognitive pressure.*
@alexpyattaev
@alexpyattaev 5 ай бұрын
@@Presenter2 yeah, that is true, if you know exactly what you are doing getting the actual lines down is not particularly tricky.
@Chiramisudo
@Chiramisudo 6 ай бұрын
1:24:50 LOL! I was already watching at 1.5x, so when you doubled your speed, I was then watching the nested video at 3x. A bit fast.
@Hoowwwww
@Hoowwwww 4 ай бұрын
doing vtable manually is source of bugs, they definitely need to have some compiler help there
@albizutoday2754
@albizutoday2754 2 ай бұрын
The best part, the syntax will change! 🤣🤣🤣🤣🤣
@AndrewErwin73
@AndrewErwin73 7 ай бұрын
"somehow you got that joke wrong!"
@Chiramisudo
@Chiramisudo 7 ай бұрын
54:54 Nah bro, you be Zigglin.
@bpunsky
@bpunsky 7 ай бұрын
zig is a quiche language
@dmitrysim
@dmitrysim 7 ай бұрын
It would be nice to have token leak section
@TankorSmash
@TankorSmash 7 ай бұрын
Wasn't there another video on the channel a minute ago? Something about 2000 people playing Doom at the same time
@TankorSmash
@TankorSmash 7 ай бұрын
Oh it's a main channel video
@marcomongalo3328
@marcomongalo3328 7 ай бұрын
How refreshing. A community with no one saying "First!"
@darukutsu
@darukutsu 7 ай бұрын
glad that only people who watch prime are well behaved gentlemen 🗿🎩☕
@tomislavtumbas8360
@tomislavtumbas8360 7 ай бұрын
Yeah, we yell CHROOT CHROOT CHROOT
@thesilverbot9439
@thesilverbot9439 7 ай бұрын
Sneaky one there ;)
@nathanfranck5822
@nathanfranck5822 7 ай бұрын
Zeroth it is
@AronOrri
@AronOrri 7 ай бұрын
First!
@christopher8641
@christopher8641 7 ай бұрын
For some reason the .Foo syntax of zig just wrecks my brain. Im all for low level control but I really don't care to implement my own vtable. Definitely seems like the language has a lot of other neat tricks though
@i-am-linja
@i-am-linja 7 ай бұрын
I really don't see what's so hard about it. It's just a struct.
@christopher8641
@christopher8641 7 ай бұрын
​@@i-am-linja I did not say anything is difficult. I said my brain doesnt read something well, and said the other thing is tedious
@AloisMahdal
@AloisMahdal 7 ай бұрын
I think the .Foo thing is just about enum (or tagged union, in the .Pointer case where Prime was confused). since it's a typed language, it already knows the type of LHS so if it's enum, on RHS you can just type the second part of enum name, which i think is actually pretty cool.
@ImmaterialDigression
@ImmaterialDigression 7 ай бұрын
What I'm learning is that I'm too dumb to learn Zig.
@TankorSmash
@TankorSmash 7 ай бұрын
Zig is great if you know C. There's very little affordance given to the developer otherwise. The compiler is not very delightful and the docs are barren, and hard to look up. But man does it run fast
@i-am-linja
@i-am-linja 7 ай бұрын
@@TankorSmash It was the position a few years ago (not certain if it still is) that while decentifying the docs is obviously a precondition to 1.0, it's unwise to do it _too_ quickly as a) while things are as unstable as they are all you do is double the churn, and b) a more accessible language means a large influx of new devs, which the existing small community might not be equipped to effectively help.
@lmnts556
@lmnts556 7 ай бұрын
Nah man, I code in C and when I look at the syntax of zig I would honestly rather keep coding in C, it is just so bad. Zig could have been great, but they messed up the syntax completely.
@TankorSmash
@TankorSmash 7 ай бұрын
@@lmnts556 Syntax is the most shallowest possible thing to complain about at least, what else do you not like about Zig? Errors-as-values is a a big step up IMO
@lmnts556
@lmnts556 7 ай бұрын
@@TankorSmash That is the exact reason why so many people ditched java, so no you are mistaken. If the way you write the code is bad it will turn away a lot of potential coders because they really can't be arsed to write it lol.
@cobrab1978
@cobrab1978 6 ай бұрын
Why people say zig is verbose? It is possible yo provide a example?
@salim444
@salim444 5 ай бұрын
to print to stdout you have to 1. get stdout 2. (optional) get buffered writer 3. write try stdout.print("{} ", .{}); 1. is because zig is explicit and 3. has alot of punctuations with the try keyword and the dot after the apostrophe which is again because zig is explicit about allocations. beside that, zig isn't unnecessarily verbose
@benjamin7853
@benjamin7853 6 ай бұрын
Why is bro implementing binary search on a data structure where insertion is O(N) anyways 💀💀💀
@salim444
@salim444 7 ай бұрын
learned Zig before C#. L take. But in all seriousness, Zig is great and you are cool prime. TOKIOOOOOO in Zig when with liburing
@morjor-1
@morjor-1 6 ай бұрын
people say rust is difficult and it can be but zig is difficult in it's own ways. i would personally rather deal with the borrow checker.
@MrTechHaus
@MrTechHaus 7 ай бұрын
last++
@zlice0
@zlice0 7 ай бұрын
this looks worse than c++ templates...
@theoriginyt4869
@theoriginyt4869 7 ай бұрын
Interfaces are more comparable to virtual classes, instead of templates. But yeah, Zig is VERY verbose, like now I know how a VTable works under the hood 😅
@albizutoday2754
@albizutoday2754 2 ай бұрын
Zig is more BS
@allanpaiz3348
@allanpaiz3348 7 ай бұрын
SECOND!
@AloisMahdal
@AloisMahdal 7 ай бұрын
59th!
@sloth19938
@sloth19938 7 ай бұрын
last
@username0218-e2x
@username0218-e2x 7 ай бұрын
I hate how verbose it is
@lmnts556
@lmnts556 7 ай бұрын
Same, I would rather just stay with C. Lots of YTers try it and just ditch it for c or other languages.
@lmnts556
@lmnts556 7 ай бұрын
Zig syntax feels like java, I hate it.
@gronki1
@gronki1 7 ай бұрын
have you seen Java
@lmnts556
@lmnts556 7 ай бұрын
@@gronki1 Yes, and writing it and Zig feel similar.
@СергейГордиенко-п4д
@СергейГордиенко-п4д 7 ай бұрын
​@@lmnts556not gonna protect zig syntax but how can it look like java 's
@lmnts556
@lmnts556 7 ай бұрын
@@СергейГордиенко-п4д It just feels similar to write, verbose and clunky.
@wondays654
@wondays654 6 ай бұрын
What specifically makes it seem "verbose" to you? It doesn't look more "verbose" than rust, C# or C++. I'm asking because I write Zig almost exclusively and haven't noticed anything verbose about it.
@Purely_Andy
@Purely_Andy 7 ай бұрын
last
Learning Zig | Day 1
2:07:11
TheVimeagen
Рет қаралды 24 М.
I hated Zig's build system when I first started learning Zig
8:03
Code With Cypert
Рет қаралды 2,4 М.
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
I AM SUCH A BAD PROGRAMMER
1:46:52
TheVimeagen
Рет қаралды 53 М.
Master Golang with Interfaces
21:54
Kantan Coding
Рет қаралды 20 М.
Zig For the Uninitiated: Zig Interfaces
11:56
Tyler Calder
Рет қаралды 2,3 М.
Designing My First Game w/ Casey Muratori
1:42:46
ThePrimeTime
Рет қаралды 202 М.
Zig 0.13.0 - Overview and Updates
8:25
Zig Is Great
Рет қаралды 21 М.
Andrew Kelley   Practical Data Oriented Design (DoD)
46:40
ChimiChanga
Рет қаралды 155 М.
Being Competent With Coding Is More Fun
11:13
TheVimeagen
Рет қаралды 126 М.
i fell for mocks again...
9:08
TheVimeagen
Рет қаралды 30 М.
Programming... DAY 018 - Concurrency Video
39:16
ErorrProne
Рет қаралды 6