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

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024

Комментарии • 136

  • @charfractal9441
    @charfractal9441 Год назад +219

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

    • @Anubis10110
      @Anubis10110 Год назад +16

      Amazing true programmer

    • @TeamUnpro
      @TeamUnpro Год назад +4

      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 месяцев назад +2

      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 24 дня назад

      He's in US, just speaks russian

  • @BeholdTheDevil
    @BeholdTheDevil 9 месяцев назад +5

    "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

  • @batlin
    @batlin Год назад +28

    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.

  • @mxjeonsg
    @mxjeonsg Год назад +24

    Nothing better than finishing school and eat watching your sessions.

    • @0ia
      @0ia Год назад +2

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

  • @ecosta
    @ecosta Год назад +36

    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 Год назад +7

      Probably are, fuck it lol.

    • @sairohit8201
      @sairohit8201 11 месяцев назад +5

      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
    @NikolaNevenov86 Год назад +17

    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 Год назад +8

    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
    @RadicalGaming1000 10 месяцев назад +1

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

  • @miguelparra-t4b
    @miguelparra-t4b Год назад +14

    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!

  • @ocaly
    @ocaly Год назад +27

    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 Год назад +1

      Meant to imply 'whatever' in the verbal sense

  • @driden1987
    @driden1987 Год назад +13

    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.

  • @theevilcottonball
    @theevilcottonball Год назад +9

    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.

  • @azergante8268
    @azergante8268 Год назад +7

    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.

  • @azergante8268
    @azergante8268 Год назад +1

    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
    @TheRealBigYang Год назад +2

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

  • @mithrandirek1813
    @mithrandirek1813 Год назад +3

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

  • @azergante8268
    @azergante8268 Год назад +7

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

    • @TsodingDaily
      @TsodingDaily  Год назад +6

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

  • @SillyOrb
    @SillyOrb 5 месяцев назад

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

  • @myfavouritecolorisgreen
    @myfavouritecolorisgreen Год назад +3

    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?

  • @rogo7330
    @rogo7330 Год назад +1

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

  • @mattanimation
    @mattanimation Год назад +8

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

  • @LyndonWright
    @LyndonWright Год назад +3

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

  • @leonardocaetano6307
    @leonardocaetano6307 Год назад +1

    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.

  • @efkastner
    @efkastner Год назад +1

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

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

  • @aemogie
    @aemogie Год назад +5

    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)

  • @RuslanKovtun
    @RuslanKovtun Год назад +8

    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  Год назад +17

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

    • @RandomGeometryDashStuff
      @RandomGeometryDashStuff Год назад +1

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

    • @RickeyBowers
      @RickeyBowers Год назад +4

      @@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 Год назад +5

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

  • @joshuadonahue5871
    @joshuadonahue5871 Год назад +1

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

  • @KristOFF-T
    @KristOFF-T Год назад +8

    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 Год назад +1

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

  • @DelgardAlven
    @DelgardAlven Год назад

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

  • @Lars-ce4rd
    @Lars-ce4rd 7 месяцев назад +1

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

  • @SunHail8
    @SunHail8 3 месяца назад

    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* :)

  • @Mozartenhimer
    @Mozartenhimer Год назад

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

  • @kurtmayer2041
    @kurtmayer2041 Год назад +2

    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"

  • @arcxm
    @arcxm Год назад +3

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

  • @Oilhead710
    @Oilhead710 5 месяцев назад

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

  • @rupen42
    @rupen42 Год назад +3

    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  Год назад +3

      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 Год назад +2

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

  • @ImPresSiveXD
    @ImPresSiveXD 10 месяцев назад

    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.

  • @cold_fruit
    @cold_fruit Год назад +2

    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 Год назад +2

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

  • @orizach01
    @orizach01 Год назад +2

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

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

  • @FDominicus
    @FDominicus Год назад

    I really like this video, well done!

  • @AlguienMas555
    @AlguienMas555 Год назад +3

    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

  • @goranceurukic8185
    @goranceurukic8185 Год назад

    for some reason i love your humour

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

  • @afmikasenpai
    @afmikasenpai 7 месяцев назад

    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

  • @cheebadigga4092
    @cheebadigga4092 Год назад +1

    Exactly!

  • @keldwikchaldain9545
    @keldwikchaldain9545 9 месяцев назад

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

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

  • @ThaLiquidEdit
    @ThaLiquidEdit Год назад +2

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

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

  • @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".

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

  • @test-rj2vl
    @test-rj2vl 9 месяцев назад

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

  • @iamdozerq
    @iamdozerq Год назад

    Epic journey!

  • @football69247
    @football69247 9 месяцев назад

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

  • @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 Год назад +1

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

  • @Sayan_Shankhari
    @Sayan_Shankhari 10 месяцев назад

    42:12 you are correct

  • @mynarco_yoyo
    @mynarco_yoyo Год назад +1

    hello tsoding, good stream!

  • @JasonShi-xc7nu
    @JasonShi-xc7nu Год назад

    I love this man

  • @ppvan
    @ppvan Год назад +1

    why you use clang instead of gcc?

  • @lalmiahmed3573
    @lalmiahmed3573 3 месяца назад

    Does anyone know why he is using clang and not gcc ?

  • @shakkar23
    @shakkar23 Год назад +1

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

    • @anon_y_mousse
      @anon_y_mousse Год назад +2

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

  • @mbotegichango5207
    @mbotegichango5207 Год назад

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

  • @SP-st6tv
    @SP-st6tv 6 месяцев назад

    finally I met a brilliant

  • @Lars-ce4rd
    @Lars-ce4rd 7 месяцев назад

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

  • @nage7447
    @nage7447 Год назад +1

    да форыч !

  • @javawifi
    @javawifi Год назад

    Cool

  • @antonsimkin
    @antonsimkin Год назад +2

    thats me on 1:46:18 😎

    • @TsodingDaily
      @TsodingDaily  Год назад +5

      Yoooo! How is your project doing?

    • @antonsimkin
      @antonsimkin Год назад +2

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

    • @TsodingDaily
      @TsodingDaily  Год назад +3

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

  • @cagatayguzgun3175
    @cagatayguzgun3175 Год назад +1

    Fake the library till you make the library :D

  • @fishsayhelo9872
    @fishsayhelo9872 Год назад +1

    vury ged

  • @zahash1045
    @zahash1045 Год назад

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

  • @veranovus
    @veranovus Год назад +3

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

  • @abdwyer
    @abdwyer Год назад +1

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

  • @botbeamer
    @botbeamer Год назад +1

    better than CMake lol

  • @monad_tcp
    @monad_tcp Год назад

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

  • @varshneydevansh
    @varshneydevansh Год назад

    Zeroth 🎉😂

  • @lrdass
    @lrdass Год назад

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

  • @bladman9700
    @bladman9700 7 месяцев назад

    16:57

  • @grincha09
    @grincha09 Год назад

    dlbon

  • @AdventuresOfPepero
    @AdventuresOfPepero Год назад

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

  • @developerdeveloper67
    @developerdeveloper67 Год назад

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

  • @rogo7330
    @rogo7330 Год назад

    апенд

  • @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  Год назад +21

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

    • @Jakub7
      @Jakub7 Год назад +1

      because he's based

    • @ax13h
      @ax13h Год назад +3

      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 Год назад +3

      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 Год назад

    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