Streamed Live on Twitch: / tsoding Enable CC for Twitch Chat Panim Playlist: • Panim Support: BTC: bc1qj820dmeazpeq5pjn89mlh9lhws7ghs9v34x9v9 Pay for my VPS: zap-hosting.co...
Пікірлер: 204
@demolazer6 ай бұрын
I read the book clean Architecture. It has a great section near the beginning about programming paradigms where the author shows how you can implement all the OOP behavior in C. Very fascinating
@JoseDaviCorreiaPassos6 ай бұрын
@@СергейДехтярёв-ъ4нjust read again and you Will find the nome of the book
@cslearn30446 ай бұрын
Bruh @@СергейДехтярёв-ъ4н
@lowlevelcodingch6 ай бұрын
@@СергейДехтярёв-ъ4н He literally said it
@AbdessamadBelm6 ай бұрын
Can u please provide the full title of the book
@skeleton_craftGaming6 ай бұрын
People think this is some sort of Revelation, all of your OOLs compilers/interpreters are written in C [or c++ which's compiler was written in C originally]
@tripplefives14026 ай бұрын
@30:36 I started learning C from reading the manual for LCC-win32 IDE as a PDF on an Palm PDA while on night shift. It even explained how to do win32 api stuff from scratch.
@miroaja19516 ай бұрын
BREAKING NEWS: c programmer discovers dynamic dispatch in the lord's year 2024
@GaryChike6 ай бұрын
Very nice! Reminds me of an article on Quora on "Object-Oriented Programming in C: A Deep Dive" by Khanno Mikhail: "...there are actually THREE ways to accomplish OOP in C (aptly named): Open style. Pointer style. and GTK style (GObject style). There are also three ways to apply function/method polymorphism in C as well: Struct style. Disjoint style. and Interface style ..."
@juanmamani21106 ай бұрын
absolutely agree with your phrase "you can do anything in C"
@garryiglesias40746 ай бұрын
No, you can't do "generics" (meta programming).
@filip145286 ай бұрын
@@garryiglesias4074 You could write a c program that inputs c code with generics and outputs c code
@gumz41836 ай бұрын
@@garryiglesias4074 the video is literally about implementing oop in C. You think the same can’t be done for generics?
@garryiglesias40746 ай бұрын
@@gumz4183 Show me. Make some template, please. (Some context: I program in C for more than 30 years, and I've done full GUI in OOP/C for video games in 1997... So you won't be taken by surprise...)
@RandomGeometryDashStuff6 ай бұрын
@@garryiglesias4074macro like arena_da_append?
@PhthaloJohnson6 ай бұрын
A very interesting idea and quite elegant implementation! It's rather amazing that hot reloading can work so well in a typed and compiled language like C that doesn't have much features. I wish modern languages put some thought on making this a feature because it is so convenient for creating web servers, gui's and other highly interactive and visual applications.
@zetroks6 ай бұрын
Это замечательно! С удовольствием посмотрел на всю эту дичь. На удивление это крайне просто работает. Никогда не пытался имплементить что-то такое в своей жизни, максимум все заканчивалось указателями на функции, по причине ненадобности. Но какой же классный видос
@neshkeev6 ай бұрын
It only makes sense to define the Task struct's function members to accept Task itself so it looks similar to `self` in Python and besides you can call other task's functions from a Task's function
@StevenMartinGuitar6 ай бұрын
Honestly seeing classes and virtual methods implemented in C was really freaking cool
@asakhar6 ай бұрын
Tsoding, you don't actually need a dynamic array for vtable, or even register it at runtime, just store it in global library plain array variable and define it inplace. This way "dynamicness" is achieved through loading the lib itself, you just recompile the lib itself and vtable gets reloaded, then you just resolve it like you already do with function symbols. This way you can add vtable entries, but can't reorder or delete stuff from that just like in your implementation. I can provide an example via PR but unfortunately can't find public repo of panim, please consider making it public so people like me can f around with it)
@chri-k5 ай бұрын
That's actually a very good idea
@user-hk3ej4hk7m6 ай бұрын
Wouldn't be a C video without a segfault 10 minutes in
@Brad_Script6 ай бұрын
you wouldn't be coding anything significant if you never get segfaults
@user-hk3ej4hk7m6 ай бұрын
@@Brad_Script Yes, in C you wouldn't. Anything remotely useful is segfault galore.
@araarathisyomama7876 ай бұрын
@@user-hk3ej4hk7m Is your OS a segfault galore?
@user-hk3ej4hk7m6 ай бұрын
@@araarathisyomama787 You must be confused, I don't develop OS'. Running production ready software is not the same as developing it.
@shakkar236 ай бұрын
For the tag implementation, you can make the tag an enum, as well as make the data a union of pointers to the types that inherit it, this allows the vtable to be off of the heap as you now know the size in compile time, as well as you can use designated initializers to have a more well defined offset of all of the pointers for your vtable.
@Adoblem6 ай бұрын
😊😊😊😊😊😊
@DVRC6 ай бұрын
Looking at old codebases I've seen many cases of OOP in C: - Sun Pixrect is a low level library for drawing on the framebuffer, and for each framebuffer there is a different implementation. At the creation of a Pixrect object, it is dispatched with the function table to manipulate it - Still from Sun, X/NeWS has a graphics library called Shapes, that replaced the CScript (the PostScript graphic layer) + Pixrect combo, and it has plenty of macros to declare classes in C and dispatch all the methods. This package handles shapes, paths and framebuffers - At CMU, a preprocessor called "Class" was made for the Andrew project. It enriched C with Object-Oriented specific syntax (similar but different from both C++ and Objective C). I guess this was used for the Andrew Toolkit and other applications of the suite
@Jack_in_the6 ай бұрын
are the captions the live chat?? that's cool af
@СергейФёдоров-щ8ш6 ай бұрын
Why do I need a chat if I came to watch/listen to the streamer. The streamer is interested in this, but the audience is not...
@nothappyz6 ай бұрын
@@СергейФёдоров-щ8ш yeah this doesn't really make sense. Perhaps it's just a proof of concept
@adokce6 ай бұрын
@@СергейФёдоров-щ8ш exactly why it's great. if anyone cares, they can turn on the captions. they are not hard-embedded in video
@lolcat696 ай бұрын
@@СергейФёдоров-щ8ш Maybe, just maybe, it's because in a stream, the streamer talks with the chat, and reads it, and people recommend him to do X or Y and he tells why yes or why not to do it that way, and if you can't read that then it makes no sense? Just saying
@john.darksoul6 ай бұрын
Where is the book, Zozin? Where is it? You'd never give it to an ordinary citizen!
@martinparrish53926 ай бұрын
There is no book, only Zuul!
@ThatGuy-fq8cn6 ай бұрын
Congrats you invented GObject
@Do_It_Stupidly6 ай бұрын
I've been waiting for this for a loooong time😭
@garryiglesias40746 ай бұрын
But it's a well known knowledge since the 70's...
@SeasonalMike16 ай бұрын
Why did i click this video. Obviously i'm not gonna watch a 2 hour video at 12:57pm, also i have to wake up at 7am for school.
@aemogie6 ай бұрын
am?
@sortof33376 ай бұрын
@@aemogie its literally 1 am. his brain is clearly borked. :)
@aidennwitz6 ай бұрын
how did not watching the video go?
@Maverick569126 ай бұрын
you're so lucky. I've to wake up at 6am 😢
@SeasonalMike16 ай бұрын
@@aidennwitz pretty cool, decided to watch a minecraft creepypasta at 2am instead :)
@blastygamez6 ай бұрын
Nice, see all you need is C and a Tsoding
@OCTAGRAM6 ай бұрын
When Tsoding does C, it's not C but Ts
@pyajudeme92455 ай бұрын
"You can do anything in C" - Since (almost) everything is made in C, I guess you are right. hahaha If there are programming structures that are not available in C, one can write his/her own programming language in C, and call it something like "Python"," Ruby", "C++" or "Perl" - This is how it has been done since 1972. At the end stands (almost) always C.
@SaidMetiche-qy9hb6 ай бұрын
Now your bottleneck is the compiler being slow lol
@AloisMahdal6 ай бұрын
A huge problem with OOP is that virtually all basic tutorials go right away into stuff like inheritance and abstract classes, but in reality you should avoid that as much as possible (use interfaces and composition in 99% of cases). Then there's a ton of stuff such as composition, solid and "OOP design patterns" and *some* part of Clean Code... Lot of it is actually useful and applicable to most languages, OOP or not.
@kaotiskhund6 ай бұрын
Thank you! For inspiration and laughs! Proposal: maybe animals poop in various places. Abstract the toilet?
@matthijshebly6 ай бұрын
Professor Dr Tsoding, lead researcher in the field of Scatology
@bbq14236 ай бұрын
The boilerplate in C for the animal example could have been a bit smaller if you would have stuck to what C++ does a bit closer. In C++ it would inline the dog and cat data into the same allocation as for animal, meaning Animal effectively becomes a "Animal_Methods**" with some extra data to the right of it. Dog and Cat would also need the vtable pointer in the struct definitions, but this could be mitigated via the use of the butterfly technique in the utility methods. Initialization code for the tags could also be simplified if you used the C++ approach.
@pedrokalil44106 ай бұрын
Oh my god, you launched this video right as i am making async oop in C. Tho i am making it more as an general purpose language (i think i will create my lang and transpile to this subset of c i created)
@alexw50932 ай бұрын
1:17:42 I could not stop laughing from this point on. Well done sir. Well done.
@oserodal270225 күн бұрын
EOLang dude just rediscovered Smalltalk (without the images).
@satyajeetjena67586 ай бұрын
2 uploads in one day😮😮😮😮
@snowcrash-6 ай бұрын
I love your content dude it's just so good.
@MyriadColorsCM6 ай бұрын
Unfathomably cool.
@jannemyllyla12236 ай бұрын
This kind of code not only exists, it is being standarized (there is upcoming ble smart toilet profile).
@NotherPleb4 ай бұрын
Well, a understand where the gatekeeping accusations come from. When people ask that kind of stuff it's not like they don't know how to search on the internet, it's more what to search, they want some advice about where to start looking because they are overwhelmed. They want a good root concept that branches to other concepts to learn, if you start at a leaf it's confusing, and often you find your way up to the root yourself, but it takes more time and it's more painful. I guess they can search for that advice on the internet too, but if they come to you it's because they trust your advice.
@Nop_90h5 ай бұрын
you reinvented tweens! gz your prize is VELOSIPED
@theevilcottonball6 ай бұрын
I just discovered that Chat is in the subtitles. Make of that what you will.
@OCTAGRAM6 ай бұрын
The most advanced OOP in C was in IBM System Object Model
@SeishukuS126 ай бұрын
I played around with something similar a number of years ago, it's kinda fun... Not *super* practical, but fun. Though these days, I do still kind of lay out my data and functions in a similar manner, just without the "virtual functions"/function pointers... So if I ever become unlazy, I can just toss everything into classes and be with the hipsters and use C++. :D
@zeno79056 ай бұрын
GATEKEEPER!! Give me the book NOW!!!
@z0rdex7015 ай бұрын
the folder name is magnificent
@leshommesdupilly6 ай бұрын
Man, I can't wait to see c adding classes
@ooichu_2 ай бұрын
Всё, что необходимо для реализации ООП в C, - это макрос container_of().
@RockyDesigne5 ай бұрын
Yo, very informative vid, you're a great teacher, thanks!
@CoderDBF6 ай бұрын
Dude, seriously, I would buy your book.
@santitabnavascues86735 ай бұрын
In fact C++ is just a huge template over C 🤣
@bbq14236 ай бұрын
Now that you have a way to run tasks in parallel.. Time for multicore support in nob?
@thehady16 ай бұрын
I like this guy irl like this guy ! Keep it up bro
@jiraibozo6 ай бұрын
0:08 The APNIM
@hubstrangers34506 ай бұрын
Thank you....
@tandeepdas92116 ай бұрын
The best reply from the Gate_Keeper👍
@johnsonogbu86976 ай бұрын
I left python to be here. I want to know and learn how it all started. Thank you tsoding.
@tripplefives14026 ай бұрын
What do we do if the toilet code has a stack overflow?
@kibels8946 ай бұрын
Nice that turned out really clean.
@ahmadzaklouta6 ай бұрын
Do you have any videos explaining OOP in C and desing pattern from the beginning
@velikanskaglava20876 ай бұрын
Thank you!
@kibels8946 ай бұрын
Could you also solve it by getting the arena from the main executable's memory space? Or does that only ensure the pointers aren't unreachable, but they will still be garbage after reloading?
@drdca82636 ай бұрын
56:06 : I don’t understand why registering task wait wasn’t just added to the task_vtable_rebuild procedure?
@error-45186 ай бұрын
zozin should write a book about how to google, name it "art of googling" or something.
@ddruganov6 ай бұрын
1:14:33 bruh that caught me off guard
@ahmadzaklouta27 күн бұрын
what is the name of the previous stream (the animation programming engine)
@delicious_seabass6 ай бұрын
Heresy!
@skeleton_craftGaming6 ай бұрын
C++ is not an object oriented language, you can do oop like things in c++ but when you strip away the abstractions you just get C [which is why it is so fast; I say in regards to objects specifically] A C++ programmer... Thats who wrote the Vtable wiki page...
@RandomGeometryDashStuff6 ай бұрын
59:15 by "no code" do you mean Node_graph_architecture (wikipedia)?
@mjpthetrucker948511 күн бұрын
You will need pointers. 😂
@gempf2 ай бұрын
which is the previous video from this serie?
@kikawet6 ай бұрын
Is there any source code access so far? I am struggling a bit following all these concepts about virtual tables and wanted to take a look into it directly
@_ami_dad_32896 ай бұрын
using enum for indexs and naming of methods seems to be easier for me
@kenneth_romero6 ай бұрын
i tried doing this with specialized types with Odin but for a game framework. couldn't get it working though, probably misunderstood something.
@Toby-ve6gp2 ай бұрын
wtf is the second half of the stream?! lmfao.
@johnnysmith47142 ай бұрын
Yo just write 1000s more lines of code so you can do object.do_stuff() instead of do_stuff(object). OOP is a meme.
@ddruganov6 ай бұрын
it seems as though you do not use any kind of lsp, is that intentional?
@GiammarcoAgazzotti6 ай бұрын
very cool C stuff and a very good programming exercise as long as you just want to fiddle around and have fun. for any real world need c++ has you covered in a safer way already (and I'm sure we all know this)
@чистюля-л2и6 ай бұрын
Как ты зумишь экран?
@skittle726 ай бұрын
hell nah💀
@TheBusttheboss6 ай бұрын
Based Emacs user.
@constant_teen97745 ай бұрын
what is !g for at the end of search bar at 1:04:22?
@RatanBasak-f8hКүн бұрын
Why don't you build an OS
@brambasiel6 ай бұрын
1:31:27 out of context zozin when?
@vkatasonov6 ай бұрын
Не буду спрашивать почем и откуда «стимуляторы», но программируя на Си всего полгодика чистого времени, понимаю, что с Си и сознание расширять не надо;)
@xProsek6 ай бұрын
13:18 ofc we know vtable ;P 26:33 maybe 2d and 4d to make it obv for newbies Thx
@ceruleansky66703 ай бұрын
Just make an OS at this point that uses your own libraries and framework to create a system that does exactly what you want from the ground up.
@YASYTU5 ай бұрын
And all that work for nothing. He should have stopped and thought about what he es setting out to do, to realize that this is a waste of time. You do not want OOP.
@levvayner45096 ай бұрын
I have full control of what languages I use, what paradigms I use, etc. And OOP is not click-bait; it is a very logical way to program, creating analogies from the real world of objects that have properties and actions or methods. I didn't watch the whole podcast, but if you wanted to write your squares as OOP, The squares would contain their own position on the screen, and expose methods like Move(x,y) Color(color) and whatever else you'd want to do with them.
@BugbountyPOCs416 ай бұрын
i see arch with dwm
@nil0bject6 ай бұрын
i hate that vtable thing. just use generic objects instead of reinventing the wheel for everything
@xarax79506 ай бұрын
How did you make constructor and destructor in C ??? video is long ...
@IgneousGorilla6 ай бұрын
Probably malloc and free? Lol
@xarax79506 ай бұрын
@@IgneousGorillamalloc free MANUALY it's not a constructor and destructor !
@tripplefives14026 ай бұрын
@@xarax7950 You have to allocate the struct first then invoke an init function, which can be placed inside of a create function so you invoke one function which performs the task of being a constructor.
@javierflores096 ай бұрын
@@xarax7950 how are constructor and destructors not manual, there's nothing automatic about them
@BetaChri5Ай бұрын
@@javierflores09well eg in C++ they get called automatically when an object enters/leaves scope, also the compiler derives default constructors for classes. That what they mean I think
@walkertest75036 ай бұрын
Wait it's all struct...
@purpasmart_483128 күн бұрын
Always has been.
@Randy_McShandy6 ай бұрын
Hot reloading AKA Shared Object Oriented Programming, we love SOOP
@anon_y_mousse6 ай бұрын
Honestly, at this point it's kind of scary how similar my data structures library was to your OO in C code. Also, quite similar to the code I would hand students that asked for homework help in the chat room I frequented. For some reason, they were constantly asking for help with linked lists. So I wrote a joke implementation which perfectly demonstrated the concept and worked without any errors but was a giant stream of FOAD's in various forms and at one point even had a little poem. I really miss Yahoo chat rooms. Those were some of the best times I spent online. Even found a really awesome MUD through various people back then. I really wish I could remember the address or name of it because it was an amazingly detailed MUD that allowed you to dismember your enemies and even cook their bits over a fire. Who knows, maybe I'll write one myself. As to the original subject, I think you should write a proper animations programming language and implement a VM to run it. I already know you won't, but I think you should.
@VictorPK1006 ай бұрын
Do not try and read the book. That's impossible. Instead... only try to realize the truth. There is no book.
@twitchy99486 ай бұрын
I lost it at 1:50:50 XD
@tianned6 ай бұрын
That’s so cool omg
@nyyakko6 ай бұрын
Pog
@JoshuaF.6 ай бұрын
what a da fu
@leshommesdupilly6 ай бұрын
You should call it "c = c + 1"
@valshaped6 ай бұрын
Nice object oriented shitposting
@mashroom_6 ай бұрын
just use Vala bruv
@sabitkondakc91476 ай бұрын
I love C, however freedom has consequences.
@patchy-oss6 ай бұрын
no
@pemrograman-cepat33936 ай бұрын
OOP in C?? Cool 😮😮😮
@OneMilian6 ай бұрын
I don't need as much specific programming paradigm's as i need good filenames and a clean order. Edit: specific