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

Ғылым және технология

Previous Episodes: kzread.info/head/PLpM-Dvs8t0Vak1rrE2NJn8XYEJ5M7-BqT
Chapters:
- 0:00:00 - Announcement
- 0:00:47 - Intro
- 0:05:04 - Hallucinating API
- 0:31:41 - Making the Code Compilable
- 0:40:00 - cmd_append
- 0:49:29 - cmd_run 1
- 0:51:20 - cmd_render
- 1:16:25 - cmd_run 2
- 1:33:17 - Windows Build
- 1:48:14 - Outro
References:
- Tsoding - nobuild - github.com/tsoding/nobuild
- Tsoding - musializer - github.com/tsoding/musializer
Socials:
- Twitch: twitch.tv/tsoding
- Twitter: tsoding
Support:
- BTC: bc1qj820dmeazpeq5pjn89mlh9lhws7ghs9v34x9v9

Пікірлер: 134

  • @charfractal9441
    @charfractal944110 ай бұрын

    i am extremely happy that a person like you exists , and does these videos , your videos and personality has been inspiring .

  • @Anubis10110

    @Anubis10110

    10 ай бұрын

    Amazing true programmer

  • @TeamUnpro

    @TeamUnpro

    7 ай бұрын

    yeah its strange, like when you start getting burnt out videos / channels like these remove that burnout

  • @__someone__3141

    @__someone__3141

    6 ай бұрын

    for real @@TeamUnpro

  • @liquidsnake6879

    @liquidsnake6879

    5 ай бұрын

    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

  • @batlin
    @batlin9 ай бұрын

    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

    9 ай бұрын

    The soulful man marches on

  • @mxjeonsg
    @mxjeonsg10 ай бұрын

    Nothing better than finishing school and eat watching your sessions.

  • @0ia

    @0ia

    10 ай бұрын

    Haha! I remember eat-watching in the past, it brought joy to my monkey-brain ;) Fun!

  • @ocaly
    @ocaly10 ай бұрын

    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

    8 ай бұрын

    Meant to imply 'whatever' in the verbal sense

  • @ecosta
    @ecosta9 ай бұрын

    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

    9 ай бұрын

    Probably are, fuck it lol.

  • @sairohit8201

    @sairohit8201

    7 ай бұрын

    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.

  • @NikolaNevenov86
    @NikolaNevenov8610 ай бұрын

    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

    9 ай бұрын

    Do you have a github to see the project?

  • @NikolaNevenov86

    @NikolaNevenov86

    9 ай бұрын

    @@mattewlefty991 sadly no...I think I even deleted the python file once I got the makefile thing figured.

  • @jasonqorbin587
    @jasonqorbin5879 ай бұрын

    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.

  • @RadicalGaming1000
    @RadicalGaming10005 ай бұрын

    The part starting around the 18 minute mark was what I needed to hear. Thank you

  • @driden1987
    @driden198710 ай бұрын

    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

    9 ай бұрын

    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.

  • @theevilcottonball
    @theevilcottonball9 ай бұрын

    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 // 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.

  • @user-yc1ke9bc6v
    @user-yc1ke9bc6v10 ай бұрын

    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!

  • @SillyOrb
    @SillyOrb19 күн бұрын

    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.)

  • @Oilhead710
    @Oilhead71018 күн бұрын

    Das beste Video was ich jemals gesehen habe

  • @dickpiano1802
    @dickpiano18029 ай бұрын

    Tsoding, you are the best!

  • @BeholdTheDevil
    @BeholdTheDevil5 ай бұрын

    "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

  • @azergante8268
    @azergante82689 ай бұрын

    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)

  • @TheRealBigYang
    @TheRealBigYang10 ай бұрын

    Library doesn't exist? Pff, we'll compile it anyway! Thanks for showing us how to do it!

  • @mattanimation
    @mattanimation10 ай бұрын

    "when did non-existence of library actually stop me from using it?" great question 😆

  • @FDominicus
    @FDominicus9 ай бұрын

    I really like this video, well done!

  • @rogo7330
    @rogo733010 ай бұрын

    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).

  • @leonardocaetano6307
    @leonardocaetano63079 ай бұрын

    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.

  • @azergante8268
    @azergante82689 ай бұрын

    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.

  • @anon_y_mousse
    @anon_y_mousse9 ай бұрын

    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.

  • @afmikasenpai
    @afmikasenpai2 ай бұрын

    3:11 simply based

  • @mithrandirek1813
    @mithrandirek181310 ай бұрын

    Привет 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

    10 ай бұрын

    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.

  • @iamdozerq
    @iamdozerq9 ай бұрын

    Epic journey!

  • @RuslanKovtun
    @RuslanKovtun10 ай бұрын

    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

  • @----__---

    @----__---

    10 ай бұрын

    wow who would have guessed

  • @TsodingDaily

    @TsodingDaily

    10 ай бұрын

    @@----__--- The least obnoxious backseater xD

  • @RandomGeometryDashStuff

    @RandomGeometryDashStuff

    10 ай бұрын

    how can c function know how many variadic args passed? edit: 35:34

  • @RickeyBowers

    @RickeyBowers

    10 ай бұрын

    @@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

    10 ай бұрын

    @@RickeyBowers>constant at compile time isn't that just a non-variadic function?

  • @cheebadigga4092
    @cheebadigga409210 ай бұрын

    Exactly!

  • @aemogie
    @aemogie10 ай бұрын

    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)

  • @goranceurukic8185
    @goranceurukic81859 ай бұрын

    for some reason i love your humour

  • @Sayan_Shankhari
    @Sayan_Shankhari5 ай бұрын

    42:12 you are correct

  • @myfavouritecolorisgreen
    @myfavouritecolorisgreen9 ай бұрын

    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?

  • @Lars-ce4rd
    @Lars-ce4rd2 ай бұрын

    I love the idea of doing an entire rewrite with the only intention of not giving a shit about the user lol

  • @efkastner
    @efkastner9 ай бұрын

    “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!

  • @joshuadonahue5871
    @joshuadonahue58719 ай бұрын

    re: rant at 17:00, Casey Muratori is always harping on this. WRITE THE USAGE CODE FIRST!

  • @gesuchter
    @gesuchter10 ай бұрын

    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?)

  • @john.darksoul
    @john.darksoul7 ай бұрын

    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
    @jamesnewman95479 ай бұрын

    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).

  • @JasonShi-xc7nu
    @JasonShi-xc7nu9 ай бұрын

    I love this man

  • @mynarco_yoyo
    @mynarco_yoyo10 ай бұрын

    hello tsoding, good stream!

  • @azergante8268
    @azergante82689 ай бұрын

    How about porting Redis to nob, or some other big project as a challenge to see if the approach scales?

  • @TsodingDaily

    @TsodingDaily

    9 ай бұрын

    I actually just ported Raylib to nob. But Raylib is a relatively simple project. I'll think about Redis, thanks!

  • @keldwikchaldain9545
    @keldwikchaldain95455 ай бұрын

    I agree end's opposite is begin, as a native speaker.

  • @LyndonWright
    @LyndonWright9 ай бұрын

    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....

  • @ZoraAlven
    @ZoraAlven10 ай бұрын

    I am literally applauding on 4:20, THATS HOW BACK TO SANITY LOOKS LIKE HATERS

  • @Peewma
    @Peewma10 ай бұрын

    holy based tsoding unlocked

  • @Mozartenhimer
    @Mozartenhimer9 ай бұрын

    This is making me want to use nobuild. So refreshing not having she'll crap.

  • @orizach01
    @orizach0110 ай бұрын

    is porth dead? or are you planning to return to it in the future? I think doing some AOC in porth would be fun

  • @shubhampawar7921
    @shubhampawar792110 ай бұрын

    For me, I always refer macros from dk window manager, they already have macros for forEach, filter, etc. Makes C look like "modern".

  • @arcxm
    @arcxm10 ай бұрын

    56:16 next project: Tsoding's libc? :)

  • @kurtmayer2041
    @kurtmayer20419 ай бұрын

    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"

  • @kristoff_t2013
    @kristoff_t201310 ай бұрын

    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

    10 ай бұрын

    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

    9 ай бұрын

    use clang !!!!!

  • @delian66

    @delian66

    9 ай бұрын

    @@ChaotikmindSrc why?

  • @ChaotikmindSrc

    @ChaotikmindSrc

    9 ай бұрын

    @@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

  • @cold_fruit
    @cold_fruit8 ай бұрын

    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

    8 ай бұрын

    > 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.

  • @user-sb5vt8iy5q
    @user-sb5vt8iy5q10 ай бұрын

    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?

  • @sportsnow8729
    @sportsnow87295 ай бұрын

    Better yet make it a C library too and allow a program to dynamically build itself

  • @ImPresSiveXD
    @ImPresSiveXD5 ай бұрын

    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.

  • @ThaLiquidEdit
    @ThaLiquidEdit10 ай бұрын

    What's the terminal font? Looks very readable, would also like to use it.

  • @Peewma

    @Peewma

    10 ай бұрын

    iosevka

  • @alexs6986
    @alexs698610 ай бұрын

    Have you watched Tom Scotts video 'Why are adverts so loud?' I wonder how much normalizing the audio via LUFS would affect the musializer.

  • @claudiusraphael9423
    @claudiusraphael94239 ай бұрын

    20 minutes in and already laughing my ass off .. Nice job! I mean i'm just here for the coding. Yes, right. Truth.

  • @ppvan
    @ppvan10 ай бұрын

    why you use clang instead of gcc?

  • @helloworld7796
    @helloworld779610 ай бұрын

    I watch your channel, just to remind myself after 15+ yrs of web development, I still don't know **it. :D

  • @test-rj2vl
    @test-rj2vl4 ай бұрын

    39:16 can you explain this how your code compiled without library?

  • @AlguienMas555
    @AlguienMas55510 ай бұрын

    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

  • @matthias916
    @matthias91610 ай бұрын

    love how you're basically complaining how c doesn't support oop lol, love the videos, keep it up

  • @rupen42
    @rupen4210 ай бұрын

    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

    10 ай бұрын

    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

    10 ай бұрын

    @@TsodingDaily it's a really good cut! I wouldn't have noticed it without the camera, probably.

  • @javawifi
    @javawifi9 ай бұрын

    Cool

  • @SP-st6tv
    @SP-st6tv2 ай бұрын

    finally I met a brilliant

  • @nage7447
    @nage744710 ай бұрын

    да форыч !

  • @homelessrobot
    @homelessrobot9 ай бұрын

    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.

  • @shakkar23
    @shakkar2310 ай бұрын

    why do you do while(0) in some of your macros?

  • @anon_y_mousse

    @anon_y_mousse

    9 ай бұрын

    It's a do{}while loop. The 0 condition means it will only execute once.

  • @mbotegichango5207
    @mbotegichango520710 ай бұрын

    THANK YOU! It's open source so if you don't like it, fork it or use something else

  • @Lars-ce4rd
    @Lars-ce4rd2 ай бұрын

    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).

  • @fishsayhelo9872
    @fishsayhelo987210 ай бұрын

    vury ged

  • @antonsimkin
    @antonsimkin10 ай бұрын

    thats me on 1:46:18 😎

  • @TsodingDaily

    @TsodingDaily

    10 ай бұрын

    Yoooo! How is your project doing?

  • @antonsimkin

    @antonsimkin

    10 ай бұрын

    @@TsodingDaily pretty good, doing my sweet sweet refactoring, hows yours?

  • @TsodingDaily

    @TsodingDaily

    10 ай бұрын

    Eh, I wish I had more time to work on them. Have to edit the VODs instead. :D

  • @veranovus
    @veranovus10 ай бұрын

    How about calling the library `no` then you can actually say its full name is no build system.

  • @cagatayguzgun3175
    @cagatayguzgun31759 ай бұрын

    Fake the library till you make the library :D

  • @anon_y_mousse
    @anon_y_mousse9 ай бұрын

    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.

  • @botbeamer
    @botbeamer10 ай бұрын

    better than CMake lol

  • @bladman9700
    @bladman97002 ай бұрын

    16:57

  • @zahash1045
    @zahash104510 ай бұрын

    Naaah.... he definitely smoked something before the stream

  • @varshneydevansh
    @varshneydevansh10 ай бұрын

    Zeroth 🎉😂

  • @monad_tcp
    @monad_tcp8 ай бұрын

    can you fix web development so it doesn't suck anymore

  • @grincha09
    @grincha0910 ай бұрын

    dlbon

  • @lrdass
    @lrdass8 ай бұрын

    hey tsodin.. all of the sudden telling me to go >use maven you could just tell me to f*** myself chill dude

  • @AdventuresOfPepero
    @AdventuresOfPepero9 ай бұрын

    8:08 don't give a shit about other people opinions.

  • @rogo7330
    @rogo733010 ай бұрын

    апенд

  • @developerdeveloper67
    @developerdeveloper679 ай бұрын

    You should never have cared to begin with. Conventions are for mid devs who care about "clean code" 😂

  • @issussov
    @issussov10 ай бұрын

    How cool is it to be the bully in a youtube 2h recording? It must be hard.

  • @herrdingenz6295
    @herrdingenz629510 ай бұрын

    why are you always trying to re-invent the wheel?

  • @TsodingDaily

    @TsodingDaily

    10 ай бұрын

    Cause the wooden one those mfs invented thousands of years ago sucks when you want to travel actually long distances.

  • @Jakub7

    @Jakub7

    10 ай бұрын

    because he's based

  • @ax13h

    @ax13h

    10 ай бұрын

    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

    10 ай бұрын

    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

    9 ай бұрын

    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.

  • @abdwyer
    @abdwyer10 ай бұрын

    New C (23) feature that is hopefully gonna be cool: embed!!! I want it NOW.

  • @theevilcottonball

    @theevilcottonball

    9 ай бұрын

    Best one in C23.

  • @fhools
    @fhools7 ай бұрын

    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