How I Stopped Caring and Just Improved My Project (Nob Ep.01)

  Рет қаралды 49,442

Tsoding Daily

Tsoding Daily

Күн бұрын

Пікірлер: 137
@charfractal9441
@charfractal9441 Жыл бұрын
i am extremely happy that a person like you exists , and does these videos , your videos and personality has been inspiring .
@Anubis10110
@Anubis10110 Жыл бұрын
Amazing true programmer
@TeamUnpro
@TeamUnpro 11 ай бұрын
yeah its strange, like when you start getting burnt out videos / channels like these remove that burnout
@__someone__3141
@__someone__3141 10 ай бұрын
for real @@TeamUnpro
@liquidsnake6879
@liquidsnake6879 9 ай бұрын
It's not like there's a lot more to do in Russia, if i lived in Russia i'd probably just code for fun as well forget going outside where it's -30 degrees or something
@khana.713
@khana.713 4 күн бұрын
He's in US, just speaks russian
@batlin
@batlin Жыл бұрын
Projects like this are a reminder from Tsoding to us programmers who have been worn down by industry that creativity is important and valuable, even if you're often limited in how creative you can be at most companies.
@rolandinnamorato1953
@rolandinnamorato1953 Жыл бұрын
The soulful man marches on
@ecosta
@ecosta Жыл бұрын
The idea of writing code for myself always has that "am-I-crazy" feeling attached. Hearing good engineers saying that out loud helps me keeping my sanity. Thanks for the good work!
@foggy7595
@foggy7595 Жыл бұрын
Probably are, fuck it lol.
@sairohit8201
@sairohit8201 11 ай бұрын
totally relatable, i have totally automated a build process while i was working a little bit on reverse engineering android apps , i felt a lot of times why am i even writing these things but at the end i did it anyway and it was a great experience and got to know recently that whatever we learn will never go to waste or anything. WE SHOULD ALWAYS KEEP LEARNING.
@mxjeonsg
@mxjeonsg Жыл бұрын
Nothing better than finishing school and eat watching your sessions.
@0ia
@0ia Жыл бұрын
Haha! I remember eat-watching in the past, it brought joy to my monkey-brain ;) Fun!
@BeholdTheDevil
@BeholdTheDevil 9 ай бұрын
"If you don't like the C way of programming. Fucking skill issue, don't use this shit, go use Gradle or Maven..." New favorite quote acquired, might put it on my wall
@NikolaNevenov86
@NikolaNevenov86 Жыл бұрын
Just watched the intro to 20min mark. When I first started with C about 2+ years a go, that's the thing I hated the most...having to learn Make. Once I realized Make is just compiling a string and executing that string as a command I asked myself "Ok..can't I do the same in python and not struggle with this shit"(because even now Make has some weird logic where you have to struggle to resolve dependencies with different pattern folders). Ended up making a compiler in python and even had the thing check for changed dependency files so it recompiles them. But I gave up on that project because people kept saying it won't be as fast as Make since it's single threaded and Make has multithreading and stuff...so it's fast. So I'm really happy you started doing this in C!
@mattewlefty991
@mattewlefty991 Жыл бұрын
Do you have a github to see the project?
@NikolaNevenov86
@NikolaNevenov86 Жыл бұрын
@@mattewlefty991 sadly no...I think I even deleted the python file once I got the makefile thing figured.
@jasonqorbin587
@jasonqorbin587 Жыл бұрын
I am trying to learn CMake yet again and the absurdity of it is now dawning on me. Now that I have an understanding of what it's actually doing (thanks to you) I keep asking myself "Why do I even need this build tool?" Thanks for enlightening me.
@driden1987
@driden1987 Жыл бұрын
The design is so simple yet effective! I work using gradle and don't understand everything it does and I'm probably only using 1% of the features.
@iamdozerq
@iamdozerq Жыл бұрын
It's awesome how easily you can embarrass programmer with this shit. Why on the fuck you should use ANOTHER language to even run program on your language? Can you use ONE ANOTHER language to run build system language to run your code? What even a point to it? Wtf is going on generally with this? I use maven and gradle with groovy and kotlin for 3 last small pet-projects and spend time with them more than actual programming of what i want. Not a single one of them makes sense.
@RadicalGaming1000
@RadicalGaming1000 9 ай бұрын
The part starting around the 18 minute mark was what I needed to hear. Thank you
@miguelparra-t4b
@miguelparra-t4b Жыл бұрын
I like watching your videos even if I do not understang (almost) anything about C. :) I would really love watching a playlist of a C course from you!
@theevilcottonball
@theevilcottonball Жыл бұрын
Since the variadic argument types are homogenous you can do this: #define cmd_append(command, ...) _cmd_append(command, sizeof((char*[]){__VA_ARGS__})/sizeof(char*), (char*[]){__VA_ARGS__}) void _cmd_append(cmd* commmand, size_t length, char* strs[]) { for (size_t i = 0; i < length; i++) { // do something with strs[i] } } You get some type-safety and you do not need a sentinel, but most importantly there is no need to remember whether it is va_start or va_begin.
@ocaly
@ocaly Жыл бұрын
Haven't seen it yet but just wanted to say: dont let anyone get into your head, they can criticize, whine, do whatever they want, except verbally attack you. There's a fine line between those.
@ocaly
@ocaly Жыл бұрын
Meant to imply 'whatever' in the verbal sense
@azergante8268
@azergante8268 Жыл бұрын
cool project! FWIW I think using plain C is better than trying to imitate bash. More generally I am wary of DSL tools, they force you to install something, learn a whole new syntax and then work against you as soon as you need to do something a bit complex.
@mattanimation
@mattanimation Жыл бұрын
"when did non-existence of library actually stop me from using it?" great question 😆
@TheRealBigYang
@TheRealBigYang Жыл бұрын
Library doesn't exist? Pff, we'll compile it anyway! Thanks for showing us how to do it!
@azergante8268
@azergante8268 Жыл бұрын
Funny thing you pick on rust, you might still get inspired by the following: - the Command implementation in the Rust standard lib (similar to your Cmd) - the cc crate that is used to build & link against c or c++ libraries (rust already supports building rust project in rust by via build files)
@azergante8268
@azergante8268 Жыл бұрын
How about porting Redis to nob, or some other big project as a challenge to see if the approach scales?
@TsodingDaily
@TsodingDaily Жыл бұрын
I actually just ported Raylib to nob. But Raylib is a relatively simple project. I'll think about Redis, thanks!
@RuslanKovtun
@RuslanKovtun Жыл бұрын
7:18 - you can always use variadic arguments to do this for you, when you need to add more than one argument at a time
@----__---
@----__--- Жыл бұрын
wow who would have guessed
@TsodingDaily
@TsodingDaily Жыл бұрын
@@----__--- The least obnoxious backseater xD
@RandomGeometryDashStuff
@RandomGeometryDashStuff Жыл бұрын
how can c function know how many variadic args passed? edit: 35:34
@RickeyBowers
@RickeyBowers Жыл бұрын
@@RandomGeometryDashStuff There are many ways: it could be constant at compile-time; use a sentinel; start and end pointer; or pass a count.
@RandomGeometryDashStuff
@RandomGeometryDashStuff Жыл бұрын
@@RickeyBowers>constant at compile time isn't that just a non-variadic function?
@myfavouritecolorisgreen
@myfavouritecolorisgreen Жыл бұрын
how does one even reach this level of profound depth in programming (and C) apart from the obvious passion and years he has put in?
@SillyOrb
@SillyOrb 4 ай бұрын
The "hallucination" technique is more commonly described as writing the use case first, then doing the implementation, which is quite handy in API design. Casey does it on Handmade Hero, iIrc. By the way, there's some overlap of Casey's and Alexey's C programming topics, which is a good thing, because they both do it each in their own way, as does Allen a.k.a. Mr. 4th Programming. So have a look, if you're new to this. (I am aware that Alexey knows Handmade Hero.)
@mithrandirek1813
@mithrandirek1813 Жыл бұрын
Привет Tsoding! Libc implements obstacks, which are basically dynamic arenas, usefull for growing objects. So they can be used both for arena style allocations or as a dynamic array for your growing structures. They are also tunable and optimized, not like your naive implementations. All things said, I like that you show these ideas and implementations so that other devs get their things togeher! Желаю удачи в дальнейшем, твое творчество мне помогает справляться с дермокодом, который заставляют писать в универе! P.S. If you don't like stdargs, just write your own)
@andresconrado
@andresconrado Жыл бұрын
Bro, I don´t care how slavic you are, you can't just drop a word like дермокодом and walk away. I need more information. What the actual fuck.
@Lars-ce4rd
@Lars-ce4rd 6 ай бұрын
I love the idea of doing an entire rewrite with the only intention of not giving a shit about the user lol
@rogo7330
@rogo7330 Жыл бұрын
I programmed once in Warcraft 3 pre-lua language. It's funny thing very similar to very old C, you even need to first define everything in function and then goes all the code. Also all its functions for Warcraft 3 leking everywhere and has stupid limits that you still can bypass (like search objects in the area, if Im not mistaken).
@DelgardAlven
@DelgardAlven Жыл бұрын
I am literally applauding on 4:20, THATS HOW BACK TO SANITY LOOKS LIKE HATERS
@efkastner
@efkastner Жыл бұрын
“Api-first” is how I’ve done things for decades. Like you said, how can you know how it feels without “using” it first. I really really like re-framing it like chatgpt hallucinations!
@KristOFF-T
@KristOFF-T Жыл бұрын
On windows, the gcc executable is in the bin folder of mingw. So if I add it to the path variable, i just need to write "gcc". On linux I added an alias in my bashrc, so I don't have to write it out.
@Radgerayden-ist
@Radgerayden-ist Жыл бұрын
If you install msys2 with scoop it's all taken care of for you, just type mingw to get into the appropriate shell
@ChaotikmindSrc
@ChaotikmindSrc Жыл бұрын
use clang !!!!!
@delian66
@delian66 Жыл бұрын
@@ChaotikmindSrc why?
@ChaotikmindSrc
@ChaotikmindSrc Жыл бұрын
@@delian66 Can cross compile without any hassle , very good error messages (ggc improved a lot lately tho), also one very important thing is to allow some stuff that is considered UB but always has worked correctly in the past (access to unions for one, but there is many more), gcc in that regards is extremely aggressive, completely removing UB code
@LyndonWright
@LyndonWright Жыл бұрын
Would it not be easier to just use a string cmd_append(&cmd, "-o musializer"); why type all the extra "-o", "musializer" saves all problems with multiple arguments cmd_append function later... (I know you will have a good answer!) Your coding is truly inspirational....
@aemogie
@aemogie Жыл бұрын
name it knob - idk what it could mean tho, but maybe - kooler nobuild, kind nobuild, knightly nobuild, or my personal favourite kissable nobuild. (adjectives powered by chatgpt)
@anon_y_mousse
@anon_y_mousse Жыл бұрын
I often use that same development technique myself. I'll write the outline for something and when I need a function I'll just use it and worry about implementing it later.
@joshuadonahue5871
@joshuadonahue5871 Жыл бұрын
re: rant at 17:00, Casey Muratori is always harping on this. WRITE THE USAGE CODE FIRST!
@SunHail8
@SunHail8 2 ай бұрын
DuuuuuuDE, You have this fKing point :) actually, C has only weak point == not complete Env, but C is only one which can be the AIO. *THANK YOU & GOOD LUCK TO YOU* :)
@kurtmayer2041
@kurtmayer2041 Жыл бұрын
tsoding: "you shouldn't need a build system" me: "i don't like having to call gcc myself, so i configured make to work anywhere without a makefile"
@leonardocaetano6307
@leonardocaetano6307 Жыл бұрын
This is a cool project, actually. I hate dealing with build tools, I use shell scripts and considered it the most clean way to do it, but yours seems to be even more cleaner.
@cold_fruit
@cold_fruit Жыл бұрын
When you realise how C works "under the hood", the varargs stuff makes a lot more sense. Arguments are pushed onto the stack by the caller, and then popped by the callee. va_arg() is basically just a `pop` instruction with type punning (although it's probably implemented as a SP dereference instead). The compiler is "getting out of the way" and letting you access the raw variadic nature of the C calling convention. Of course one could dream up much smarter ways to handle variadic arguments that are more "user friendly", but C is intended to be computer friendly - not human friendly!
@user-ux2kk5vp7m
@user-ux2kk5vp7m 11 ай бұрын
> but C is intended to be computer friendly - not human friendly! uh, no it’s not. C was made to be human friendly, it just so happened that this is what we called human friendly 50 years ago, because 50 years ago the guys that made C were low-level people that liked low-level things.
@arcxm
@arcxm Жыл бұрын
56:16 next project: Tsoding's libc? :)
@Mozartenhimer
@Mozartenhimer Жыл бұрын
This is making me want to use nobuild. So refreshing not having she'll crap.
@goranceurukic8185
@goranceurukic8185 Жыл бұрын
for some reason i love your humour
@rupen42
@rupen42 Жыл бұрын
33:23 wow I never noticed your videos are edited. Must be a lot of work to go through such long vods. I wonder what got cut there
@TsodingDaily
@TsodingDaily Жыл бұрын
I think I got distracted by the neighbors making noises. I felt that it kind of ruined the pacing. Might've actually left it in.
@rupen42
@rupen42 Жыл бұрын
@@TsodingDaily it's a really good cut! I wouldn't have noticed it without the camera, probably.
@Peewma
@Peewma Жыл бұрын
holy based tsoding unlocked
@Oilhead710
@Oilhead710 4 ай бұрын
Das beste Video was ich jemals gesehen habe
@john.darksoul
@john.darksoul 11 ай бұрын
37:00 In a similar situation I created an array literal from __VA_ARGS__ and passed it to a function along with its length (sizeof(arr) / sizeof(*arr)) 🙃
@jamesnewman9547
@jamesnewman9547 Жыл бұрын
Well tsoding, if we're including the scripting languages of games - then mine might be startcraft and warcraft III also. Hard to say, because I also messed with some MUDs around that time in VB4 (pirated from early limewire, and 6 was already standard at the time).
@AlguienMas555
@AlguienMas555 Жыл бұрын
Jajajaja, how many persons say anything whithout see what they do for themself? Who cares whether you do for you or for teach, is your election. I am happy that persons like you do this kind of content
@orizach01
@orizach01 Жыл бұрын
is porth dead? or are you planning to return to it in the future? I think doing some AOC in porth would be fun
@alexs6986
@alexs6986 Жыл бұрын
Have you watched Tom Scotts video 'Why are adverts so loud?' I wonder how much normalizing the audio via LUFS would affect the musializer.
@ImPresSiveXD
@ImPresSiveXD 9 ай бұрын
can you do a tutorial on how to organize your code as a beginner? For me it was hard to follow how you jumped from file to file.
@FDominicus
@FDominicus Жыл бұрын
I really like this video, well done!
@iamdozerq
@iamdozerq Жыл бұрын
Epic journey!
@anon_y_mousse
@anon_y_mousse Жыл бұрын
Now that I've woken up and watched the whole video, I just have one additional note. If you wanted to check for naughty characters: if ( strpbrk( cmd, naughty_list ) != NULL ) { /* wrap stuff in quotes */ } // Although I must admit that if the arguments to a variadic function are going to be all one type, the cast of __VA_ARGS__ to a type[] is definitely my preferred method. I usually avoid variadic functions and macros, but when they're the same type it's not so bad.
@afmikasenpai
@afmikasenpai 6 ай бұрын
3:11 simply based
@helloworld7796
@helloworld7796 Жыл бұрын
I watch your channel, just to remind myself after 15+ yrs of web development, I still don't know **it. :D
@homelessrobot
@homelessrobot Жыл бұрын
saying c and c++ are the same language is like telling your dear sweet mother you got her a vacuum cleaner, a frying pan, and a new dresser for her birthday to put all of your freshly pressed laundry into after she is done vacuuming, cooking for you, and washing your clothes.
@keldwikchaldain9545
@keldwikchaldain9545 9 ай бұрын
I agree end's opposite is begin, as a native speaker.
@test-rj2vl
@test-rj2vl 8 ай бұрын
39:16 can you explain this how your code compiled without library?
@cheebadigga4092
@cheebadigga4092 Жыл бұрын
Exactly!
@claudiusraphael9423
@claudiusraphael9423 Жыл бұрын
20 minutes in and already laughing my ass off .. Nice job! I mean i'm just here for the coding. Yes, right. Truth.
@matthias916
@matthias916 Жыл бұрын
love how you're basically complaining how c doesn't support oop lol, love the videos, keep it up
@Sayan_Shankhari
@Sayan_Shankhari 9 ай бұрын
42:12 you are correct
@shubhampawar7921
@shubhampawar7921 Жыл бұрын
For me, I always refer macros from dk window manager, they already have macros for forEach, filter, etc. Makes C look like "modern".
@ThaLiquidEdit
@ThaLiquidEdit Жыл бұрын
What's the terminal font? Looks very readable, would also like to use it.
@Peewma
@Peewma Жыл бұрын
iosevka
@football69247
@football69247 9 ай бұрын
Better yet make it a C library too and allow a program to dynamically build itself
@lalmiahmed3573
@lalmiahmed3573 2 ай бұрын
Does anyone know why he is using clang and not gcc ?
@gesuchter
@gesuchter Жыл бұрын
What kind of keyboard do you use (and if it's mechanical, what kind of switches are you using, how do you like these switches?)
@JasonShi-xc7nu
@JasonShi-xc7nu Жыл бұрын
I love this man
@mynarco_yoyo
@mynarco_yoyo Жыл бұрын
hello tsoding, good stream!
@ppvan
@ppvan Жыл бұрын
why you use clang instead of gcc?
@user-sb5vt8iy5q
@user-sb5vt8iy5q Жыл бұрын
You said your first language was Warcraft 3 map language? I still sometimes play the classic one to this day (none of that reforged bullshit), and I'm wondering if you have any of your warcraft 3 projects somewhere?
@SP-st6tv
@SP-st6tv 6 ай бұрын
finally I met a brilliant
@shakkar23
@shakkar23 Жыл бұрын
why do you do while(0) in some of your macros?
@anon_y_mousse
@anon_y_mousse Жыл бұрын
It's a do{}while loop. The 0 condition means it will only execute once.
@veranovus
@veranovus Жыл бұрын
How about calling the library `no` then you can actually say its full name is no build system.
@antonsimkin
@antonsimkin Жыл бұрын
thats me on 1:46:18 😎
@TsodingDaily
@TsodingDaily Жыл бұрын
Yoooo! How is your project doing?
@antonsimkin
@antonsimkin Жыл бұрын
@@TsodingDaily pretty good, doing my sweet sweet refactoring, hows yours?
@TsodingDaily
@TsodingDaily Жыл бұрын
Eh, I wish I had more time to work on them. Have to edit the VODs instead. :D
@nage7447
@nage7447 Жыл бұрын
да форыч !
@Lars-ce4rd
@Lars-ce4rd 6 ай бұрын
I don't know, you C enthusiasts seem to have a lot of problems that I easily solve by installing 9000 dependencies in my beautiful nodejs application that I update three times a day (not adding features, just to continue being able to build it).
@abdwyer
@abdwyer Жыл бұрын
New C (23) feature that is hopefully gonna be cool: embed!!! I want it NOW.
@theevilcottonball
@theevilcottonball Жыл бұрын
Best one in C23.
@fishsayhelo9872
@fishsayhelo9872 Жыл бұрын
vury ged
@javawifi
@javawifi Жыл бұрын
Cool
@mbotegichango5207
@mbotegichango5207 Жыл бұрын
THANK YOU! It's open source so if you don't like it, fork it or use something else
@botbeamer
@botbeamer Жыл бұрын
better than CMake lol
@cagatayguzgun3175
@cagatayguzgun3175 Жыл бұрын
Fake the library till you make the library :D
@zahash1045
@zahash1045 Жыл бұрын
Naaah.... he definitely smoked something before the stream
@monad_tcp
@monad_tcp Жыл бұрын
can you fix web development so it doesn't suck anymore
@bladman9700
@bladman9700 6 ай бұрын
16:57
@varshneydevansh
@varshneydevansh Жыл бұрын
Zeroth 🎉😂
@AdventuresOfPepero
@AdventuresOfPepero Жыл бұрын
8:08 don't give a shit about other people opinions.
@lrdass
@lrdass Жыл бұрын
hey tsodin.. all of the sudden telling me to go >use maven you could just tell me to f*** myself chill dude
@grincha09
@grincha09 Жыл бұрын
dlbon
@rogo7330
@rogo7330 Жыл бұрын
апенд
@developerdeveloper67
@developerdeveloper67 Жыл бұрын
You should never have cared to begin with. Conventions are for mid devs who care about "clean code" 😂
@issussov
@issussov Жыл бұрын
How cool is it to be the bully in a youtube 2h recording? It must be hard.
@herrdingenz6295
@herrdingenz6295 Жыл бұрын
why are you always trying to re-invent the wheel?
@TsodingDaily
@TsodingDaily Жыл бұрын
Cause the wooden one those mfs invented thousands of years ago sucks when you want to travel actually long distances.
@Jakub7
@Jakub7 Жыл бұрын
because he's based
@ax13h
@ax13h Жыл бұрын
Every car you see on the road 're-invented the wheel' as part of designing its literal road wheels. It's a natural result of evolving techniques and requirements.
@williamanthony7224
@williamanthony7224 Жыл бұрын
You should always try and recreate tools you use everyday to get an appreciation of what they are actually doing and how they work. If even a few ‘React developers’ tried to write react themselves as en experiment the web would be a better place. Maybe you should try it
@vxcute0
@vxcute0 Жыл бұрын
I hate this, and it seems there is alot of a$$holes saying it on the internet for anyone who is actually doing something in his life when they are just sitting ranting about others and produce nothing because they have a skill issue.
@fhools
@fhools 11 ай бұрын
you just invented hallucination-driven-programming. write the code using an API you hallucinated that you have, pray a better version of you can implement the hallunicated code
Military Grade Build Tool for C (Nob Ep.02)
2:06:50
Tsoding Daily
Рет қаралды 29 М.
I regret doing this...
1:20:07
Tsoding Daily
Рет қаралды 82 М.
UFC 308 : Уиттакер VS Чимаев
01:54
Setanta Sports UFC
Рет қаралды 912 М.
Who's spending her birthday with Harley Quinn on halloween?#Harley Quinn #joker
01:00
Harley Quinn with the Joker
Рет қаралды 7 МЛН
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 15 МЛН
I tried React and it Ruined My Life
1:19:10
Tsoding Daily
Рет қаралды 146 М.
Being Competent With Coding Is More Fun
11:13
TheVimeagen
Рет қаралды 105 М.
Reverse Engineering Data Files
1:59:16
Tsoding Daily
Рет қаралды 39 М.
The Best Coding Interview Question Ever
1:21:27
Tsoding Daily
Рет қаралды 38 М.
How I learned to love build systems
16:31
fasterthanlime
Рет қаралды 133 М.
Will Ada Replace C/C++?
44:57
Tsoding
Рет қаралды 95 М.
My Viewers DDoSed my Go App
2:36:31
Tsoding Daily
Рет қаралды 59 М.
Zig for Impatient Devs
9:48
Isaac Harris-Holt
Рет қаралды 100 М.
Hash Table in C
2:11:31
Tsoding Daily
Рет қаралды 68 М.
fixing my old game engine that apparently doesn't work
13:56
The Cherno
Рет қаралды 76 М.
UFC 308 : Уиттакер VS Чимаев
01:54
Setanta Sports UFC
Рет қаралды 912 М.