100 Seconds of Rust | Prime Reacts

Поделиться
HTML-код
  • Опубликовано: 19 июн 2024
  • 100 seconds of RUST by non other than the GOAT himself, Fireship!
    GO SUB!!
    / @fireship
    Recorded live on twitch, GET IN
    / theprimeagen
    MY MAIN YT CHANNEL: Has well edited engineering videos
    / theprimeagen
    Discord
    / discord
  • НаукаНаука

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

  • @ThePrimeTimeagen
    @ThePrimeTimeagen  Год назад +276

    100 seconds of Rust by non other than the GOAT himself, Fireship!
    GO SUB!!
    www.youtube.com/@fireship
    He is the bestest

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

      Totally agree, and he makes it fun

    • @132_priyankrai5
      @132_priyankrai5 Год назад +1

      dude kick his ass for using windows

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

      I'd dare to say he's the bestesterest

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

      3:21 never understood the "Hello world" thing. I swear I struggled learning coding because I didn't understand what people meant by "Hello world" and why would every damn developer in the world use the same damn sentence. Please do like Jeff and use "Hi mom!" which makes more sense. Thank you! Btw, still waiting for the LegalEagle to weigh in on the Rust copyright bomb.

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

      Jeff is the best, never miss a video!

  • @yousafwazir3167
    @yousafwazir3167 Год назад +1560

    100 second video in 10 minutes

    • @RedHandedBug
      @RedHandedBug Год назад +35

      Need that Memeagen time :)

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

      If your not first your last

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

      Time... doesn't fly?

    • @Ring0--
      @Ring0-- Год назад

      People. Let the Primeagen get paid.
      I contribute for this content.
      So STFU.

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

      It's metric minutes

  • @minikame2272
    @minikame2272 Год назад +523

    Pretending not to know how to spell Phoebe so you don't risk entering the letter 'P' into the address bar first. 200 play right there.

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

      Lol I thought he quit that stuff

    • @BusinessWolf1
      @BusinessWolf1 Год назад +25

      ​@@xmvziron real addiction is not black and white

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

      @@BusinessWolf1 I didn't say anything about that, I just thought he quit that stuff since he talked about it in the past

    • @quazar-omega
      @quazar-omega 9 месяцев назад +27

      We don't talk about the photography phase

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

      Excuse me, what search do you use for pron? @jonasjonaitis8571

  • @ISKLEMMI
    @ISKLEMMI Год назад +648

    It's hard to overstate how much I appreciate cargo, having worked with St. Dennis Ritchie's blessed language and Bjarne Stroustrup's monstrosity for years. Having a single, unified build tool and package manager (that the entire community actually uses) had me thinking that there had to be a catch.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +146

      the exact same from me. its so incredible its hard to state how good it is

    • @dealloc
      @dealloc Год назад +39

      Abso-f'in-lutely. Not only is it the default tool for managing and building Rust projects, it is also very well made, even for manual build scripts. And the fact that you can easily extend it with user-land modules is the cherry on top.
      I've always dreaded having to install 10 different tools in order to configure, setup a project, targets and build pipelines when working with C and C++ code. Not to mention having to read, understand and modify someone's special syntax in each of those DSLs.

    • @theherk
      @theherk Год назад +34

      I think Rust could be a shitty language and cargo would still make it worth using.

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

      As a Android/Kotlin developer, it makes me incredibly jealous. I adore Kotlin, and gradle is okay, but I really wish we had a native build tool.

    • @ko-Daegu
      @ko-Daegu Год назад +3

      Same with go

  • @risiv4686
    @risiv4686 Год назад +266

    This guy is like Bill Burr , if Bill did Software engineering instead of standup routines.

    • @El-Burrito
      @El-Burrito Год назад +35

      He's got a similar sounding voice. I need to hear him shouting "LADY!" while moving away from the mic

    • @edgardevelops
      @edgardevelops Год назад +21

      His Dr. Disrespect of software engineering.

    • @Warpgatez
      @Warpgatez 6 месяцев назад

      All I see is Doctor Disrespect as a 10x developer.

  • @samysamy5051
    @samysamy5051 Год назад +233

    Bro managed to make a 10 min video out of a 2 min vid lmao.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +167

      This... Is a skill

    • @samysamy5051
      @samysamy5051 Год назад +15

      @@ThePrimeTimeagen An admirable one, but only because ur fun to listen to.

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

      the amazing thing was that it felt like only 2 minutes

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

      Create Content

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

      Any streamer worth their mettle does that, although it takes true skill to reach the Asmongold level of milking a video for content.

  • @JanMagnusson72
    @JanMagnusson72 Год назад +197

    Making something 'mut' does not automatically put it on the heap. In the example "let mut hello = "hi mom"; the string literal would be stored in the data segment of the binary and the size of the reference to it (hello) is known at compile time and can be stored on the stack.

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

      I don't think anybody claimed it would be allocated on the heap?

    • @parrampampam
      @parrampampam Год назад +23

      @@frydac ruclips.net/video/APfS3vgV9pU/видео.html > "However, *mutable values* or objects with an unknown size at compile time are stored in the heap memory."
      ruclips.net/video/5C_HPTJg5ek/видео.html - Original video, and people in the comments point out that the statement is incorrect.

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

      Yep, the compiler is smart enough to know that

  • @MrTyty527
    @MrTyty527 Год назад +46

    Cant stop laughing with the Windows expose moment LOLLLLL

    • @jongeduard
      @jongeduard 10 месяцев назад +1

      But he makes the Windows people scared. 😂 I hopes keeps a sharp eye at the unsubscribe count. 🤣
      Actually I noticed Rust on Windows is pretty cool too! I started learning it on Arch Linux by the way, but on the Windows side there's a lot going as well, like the windows-rs projects that basically makes all old API stuff available to the programming language for which people formerly needed Visual C++.
      I really don't expect see Rust replace any DotNet stuff, but all the native stuff has definitely a serious chance. Would be great to see Rust and C# both dominate the future on the operating system.

    • @thesenamesaretaken
      @thesenamesaretaken Месяц назад

      ​@@jongeduarddoes this mean I can compile Rust on windows now without having to download and install gigabytes of random C++ dependencies? I loved that it Just Werks® on a raspberry pi but not on windows.

  • @NotTheHeroStudios
    @NotTheHeroStudios Год назад +59

    Fireship uses windows a lot for video editing. I firmly believe he has like 10 computers at this point

  • @Leto2ndAtreides
    @Leto2ndAtreides Год назад +81

    As far as C goes - since it was among the first languages I learned, the memory allocation just felt relatively natural... You just learn how to manage memory.

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

      Yeah problem arise when you have huge projects and not necessarily precise folks working on it. 😅

    • @loicmenard9006
      @loicmenard9006 10 месяцев назад +3

      I wish C was the first language I learned. I started with Java, from there memory allocation was a bit hard to understand when you've been coding with a garbage collector for almost a year.

    • @sti3167
      @sti3167 6 месяцев назад

      @@loicmenard9006 So much relatable

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

    i freaking love your channel man; grounded and just human; love you man, keep it up

  • @first-thoughtgiver-of-will2456
    @first-thoughtgiver-of-will2456 Год назад +20

    Nah you shouldn't look it as just free and malloc. It's really that everything on the heap is tied to a stack variable, so the heap just falls off the stack like stack variables in C. How you keep it alive is returning the stack variables (part of the reason it's so darn functional despite being system lang).

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +18

      yeah, this is a "more" correct view of it, which makes it super dooper, but its all about how much lying you do to learn. you start off by learning with max lies, then you slowly peel the onion

    • @jongeduard
      @jongeduard 10 месяцев назад +2

      Technically a lot can be compared to C++ and not just C. For everything that uses the heap, the Drop trait is implemented in Rust. This compares a lot to C++ classes and their destructors. It's basically the RAII code pattern, a concept also used by smart pointers, which both languages know as well.
      The idea is that you hang the memory management of the heap behind a stack based connection of a variable, which internally frees itself by going out of scope.
      In C++ you can also directly use new and delete, or even the good old malloc and free, and you can do tons of things wrong, even worse than in C, but as a good habit you follow the above the above code pattern as much as possible to avoid most problems.

  • @T33K3SS3LCH3N
    @T33K3SS3LCH3N 11 месяцев назад +10

    2:30 one thing that seriously impressed me about manual memory management with free and malloc is just how many useful things can be done with destructors as you can predict exactly when they will be called and in which order.
    ...which also has the side effect of encouraging some programmers to put things there just because they could, even though they absolutely shouldn't.

  • @zperk13
    @zperk13 Год назад +26

    "However, mutable values, objects with an unknown size at compile time are stored in the heap memory"
    Incredible, every word of what you just said, was wrong

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

      Correct
      Now that you say that out loud... The unknown size part is correct, you have to make it known via a box

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

      @@ThePrimeTimeagen I would be terrible for performance if all mutable variables were heap allocated lol

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

      ​@@ThePrimeTimeagen I mean, there are instances of objects with unknown size at comptime, but the only example I can think of are trait objects, which is a fairly advanced topic. Neither mutability nor general heap allocation implies unknown sizes.

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

      ​@@ccgarciab slice

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

      @@dyslexicsteak897 you're right, but that's a counterexample. A slice doesn't need to be boxed or heap allocated

  • @jehadnasereddin7755
    @jehadnasereddin7755 7 месяцев назад +15

    Fireship is deeply missed... My thoughts and prayers go out to him atm with the loss he's dealing with

  • @theondono
    @theondono Год назад +65

    A lot of profesional C devs who think they know C, know relatively little of the actual language.
    I’ve met people who have been working as C devs for a decade, and have not read the C standard. They had no idea of what UB was, and a lot of times they’d blame the compiler for being buggy, when they’re the ones writing incorrect C and turning up optimizations hard.
    Heck, the people writing the standards are still learning how a lot of stuff works, things like pointer provenance are still in active development on C.

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

      I just recently learned that in C++, an infinite loop with no side effects is UB... like what?

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

      @@anlumo1 makes sense, optimizer will likely get confused

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

      @@anlumo1 it’s so the compiler can optimisé the code. It makes perfect sense.

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

      I’ve read the C99 standard as it was necessary to be able to do my job at the time (devops) but when other engineers find out that I’ve read it, they treat me like a lunatic with deviant interests. It’s really not that long.

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

      ​@@anlumo1 I have just checked this, and I still can't belive it.
      Such a weird optimization

  • @ThisIsAGoodUserNameToo
    @ThisIsAGoodUserNameToo Год назад +80

    We need a "primagen in 100 seconds"

  • @UnhingedNW
    @UnhingedNW Год назад +15

    Wel fireship is a faceless AI so idk how you could pull this off.

  • @florinmtsc
    @florinmtsc Год назад +89

    Once you start doing RUclips, you understand how hard it is what you and fireship do.
    It's unbelievably hard to communicate clearly and to explain to everyone in an easy manner.

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

    I love it !!! haha .. "why ya gotta do us like this Fireship? Not Winndowws! "

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

    the windows exposed caught me soo offguard hahah i laughed the shit out of me

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

    Appreciate both of you. It's something that should sound like "mute". Well-crafted introduction.

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

    I'm so glad my "hello world" main.exe can handle the most performance intensive system requirements.

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

    that box art is just, muaww *chefs kiss*

  • @herrbanane
    @herrbanane Год назад +10

    I think he uses Windows for content creation. (Adobe suite)

  • @heater5979
    @heater5979 11 месяцев назад +3

    Wait a minute. malloc and free are far from simple to work with. Sure in the simple case that you malloc at the top of a short scope, do something with it then free it at the end of the scope it's easy to see what is going on. But:
    1)When malloced objects are passed into or returned from functions it is not clear who is responsible for freeing them. That needs to be documented and the documentation needs to be read.
    2) When malloced objects can live on outside the scope in which they are created and then perhaps passed around to other parts of the program it can be difficult to keep track of who is responsible for freeing them. Leading to memory leaks.
    3) Like 2) but with threads thrown into the mix.
    But this is all tied up with use of pointers...
    1) Perhaps one forgets to malloc an object, perhaps thinking it was done elsewhere in the program, then we have dereferencing a null or uninitialised pointer.
    2) Perhaps one forgets an object has been freed, then we have use after free errors.
    One has to do a lot of bookkeeping, busy work, to keep track of all this in ones head. Or worse still the heads of a large team. Rust of course does all that tedious checking for you. What is not to like about that?

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

      Thanks. Gonna use this when I return to writing some C code 🙂

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

    Nit only is fireship on windows, he also used the vs code built-in terminal in his vim in 100 seconds video

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

    I work with a guy like this, while presenting he continuously nods his head to show that he's pleased with your message, then you say the smallest thing that displeases him and he explodes into a 5 minute rant about the dumbest shit you could imagine. For example, the pronunciation of "mut". 😂

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

    I didn't even realize there were people who called mut "Mutt" I always pronounced as "Mewt".

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

    Love the way you hype the people being reviewed and watch their ads rather than just leeching off them.

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

    At 1:00 the code is fine but he makes a mistake by saying mutable values need to be on the heap

  • @beerus6779
    @beerus6779 8 месяцев назад +3

    "High Level Simplicity" lmao

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

    Hihi. That Windows bit cracked me up good. 🤣

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

    more prime react please, there is a ton great dev content out there

  • @rubnm5
    @rubnm5 4 месяца назад

    What OS and/or distro are you using?

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

    Maybe invite Jeff Delaney (Fireship) on your stream? Would be amazing!

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

    2:15 I use C++ so I am familiar with new and delete, I have no problem with these functions after many years of trying, and learning, I kind of figure it out how to write very stable code that can run for decades.

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

    Honestly its so true that Fireship is just like... the best tech utuber. friggin amazing

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

    is there a clip of the ‘one more’ fireship vid at the end??

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

    Primagen: "Who uses rustc"
    Me who's only used Rust for a few months: "Right? I literally only used rustc once in my life, Cargo is always a lot more practical."

  • @Happilymarrieddad
    @Happilymarrieddad 10 месяцев назад +6

    I'm a Go engineer who's been trying to learn Rust as of a couple of days ago. I feel like even if I don't ever work in Rust, it should at least make me a better developer.

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

      So how's this going?

    • @gauravpandey3722
      @gauravpandey3722 6 месяцев назад

      How's this going?

    • @Happilymarrieddad
      @Happilymarrieddad 6 месяцев назад +2

      Hey guys. my work has been really busy so I haven't really spent much more time on it. I bought two books on Amazon and have a project I've been working on to help me learn Rust. Maybe this next weekend I'll put some more hours in. I do have to say, I really like Rust but Go still is my "Go"to... heh and I'm hoping at some point to change that.

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

    5:25 it's google's dark theme vk dr's theme; and dark reader now has "use site theme" option

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

    Every reaction video ending with having to prove you’re subscribed on your main channel

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

    Normal people:
    Char: Care
    Mut: Mute
    Gif: GIFt
    People who have no business in tech:
    Char: CHARcoal
    Mut: Mutt
    Gif: JIF
    Stop it... get some help.

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

      Gif was stated to be pronounced like jiffy by its inventor, and its a different case than just shortening a word

  • @ytho5470
    @ytho5470 4 месяца назад

    i learned C way back in late 2000s in high school and from what i remember you initialize everything at the start. which makes more sense to me in terms of organizing a document. like python i can use i for iterations an infinite amount of times as long as it's in a different loop but i can also write the same program structured 1000 different ways while C might only have a few reflections that'd work

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

    writing a berkley socket, non blocking etc.. in C yeah it is involved.. ONCE. then you have you network module and it just works. same for associative array. I have my hash module that provide half a dozen of variants, which covers all usual and unusual cases. People keep talking about C as if you had to start from scratch every time

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

    I think the dark reader bug has something to with your os or browser color scheme, try switching off or just setting it to any color scheme. Then try switching it in dark reader.

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

    mut or mutt, Rust still makes it harder to shoot yourself in the FUTT

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

    yes the photo will break the internet I will love it tow of my fav in one frame ❤❤

  • @raconvid6521
    @raconvid6521 2 месяца назад

    Rust really only works if you understand how the lower level C stuff.
    Like, I find it easier to understand borrow checker errors by asking myself “How would I implement this in assembly?”

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

    8:54 Just so you know, he has stated he was/is on a dual-boot computer during his wsl video.

  • @MrAbrazildo
    @MrAbrazildo 11 месяцев назад +1

    2:30, C++ has this automated since ever.

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

    sending this video to the rust foundation, DOING MY PART

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

    Fireship is a fire channel, thanks for appreciating it, that makes you firesome!!!

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

    Fireship can explain the reason behind his statements so well

  • @costelinha1867
    @costelinha1867 Год назад +10

    The biggest advantage and hurdle of Rust in my opinion.
    Advantage: Cargo exists.... and is already way better than python's PIP in my opinion. Like you need to manually create a virtual enviroment for your python projects and initialize it every time you work on it, meanwhile in Rust, all you need to do is type cargo new (Project name) and boom, you have a project folder with a virtual enviroment to which you can install the crates, AND a local repository all set up kinda automatically. (Also I never had any problems with cargo, but I did have a few with PIP)
    Disadvantage: Well, I know this is a beginner issue, and I am a beginner, so I'm sorry for this vent but LOOK AT THE INSANE AMOUNT OF SYNTAX THIS LANGUAGE HAVE, NOTHING MAKES SENSE WHAT THE HELL IS A LIFETIME? WHAT IS REALITY? WHAT IS GOING ON? (Still better than JavaScript tho, judging by my small experience with it, at least when I declare a float 32, I know it will always quack like a float freaking 32, and that the language won't try to add a string number to a float number.)

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

      Yeah pip is really awful.
      Even JS has a better environment/package management experience than pip/poetry/etc

    •  Год назад

      The syntax is actually very good and compact once you learn more, like Option's "and_then", "map", if let, let else, etc.

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

      its just super explicit about everything. Makes code longer but it's really easy to debug

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

      I mean for JavaScript, that's why we have TypeScript, so we don't all die by "3" + 3 = "33"

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

      lifetimes are only hard until you learn more. It is a quit moment. The only way to learn why they exist is to learn why they exist. It is painful. It is development.

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

    Cordyceps bro.
    The fungus from the last of us is ophiocordyceps unilateralis that spilled over to humans.

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

    rust fungus? so leptos is the only crate following the correct naming convention.

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

    I 1000% agree and it should be considered a crime. #StopCallingItMutt

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

    Bruh Fireship has been on windows WSL. LOL You can tell from the cursor from his vids.

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

    Perfect choice of meme

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

    how does his "var does not need to be mutable" show up next to the var line

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

    how would u use adobe software without windows ?

  • @Nintron
    @Nintron Год назад +12

    So, mut and mutt…. Do you pronounce char as ch-are or care?

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +23

      The name is thehypocriteagen

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

      @@ThePrimeTimeagen Well, atleast you’re also TheHonestagen o7

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

      bro there are psychos that say char as in "charred"

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

      I just pronounce it shaar

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

      char is obviously derived from tsarakter.

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

    8:45 main.exe in project root
    meanwhile target: exists

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

    moot, not mute, not a mutt. "Rust. Because F#@_&$# Malloc."

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

    Selfie with fireship... Do eet!

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

    The Rustiest box art!

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

    It's "mute" and it's not any other way

  • @Pedram-cy3wu
    @Pedram-cy3wu 9 месяцев назад

    Javascript [with jsdoc and nuxt/next/sveltekit frameworks] (web frontend)
    Rust (web api, system, performance critical applications)
    C++ [with unreal engine or godot] (game)
    C++ (if project depends heavily on openCV or tensorflow)
    PHP [with laravel] (web backend, web api)
    Python (data science, ai)
    Go (web api, system)
    Dart [with flutter] (mobile)

  • @andrewg.2996
    @andrewg.2996 Год назад +1

    Fireship you were the chosen one, you were that's supposed to destroy Microsoft not join them!! lol

  • @klutch4198
    @klutch4198 6 месяцев назад

    It drives him "muts!"

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

    pro tip for future streams, press K for play/pause a video :P

  • @srijanraghavula
    @srijanraghavula 13 дней назад

    did teej put that video?

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

    With an Australian accent, "mut" just feels weird rolling off the tongue.

  • @CTBell-uy7ri
    @CTBell-uy7ri Год назад

    Please break the internet. We need that photo.

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

    7:07 oooo Molly Rocket.
    Will you upload the clip of you watching that video?

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

      one is queued up!

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

      @@ThePrimeTimeagen I ended up just watching it directly from the Twitch stream.
      Will you be reacting to past 2 also?

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

    My man watching Casey Muratori

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

    bro really is the hasanabi of programming

  • @yt-1337
    @yt-1337 Год назад

    tbf fireship was always on windows, we saw this many times already

  • @krzychaczu
    @krzychaczu 6 месяцев назад

    For some reason this reminds me my *perl* scripts.

  • @jkbrodotdev
    @jkbrodotdev 6 месяцев назад

    Way back when I had a debate with friends on why the fuck isn’t Potes not short for Potions but instead its pots. No one had my back… 😔

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

    mutt and feebee :D golden!

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

    hey guys i am a java developer and i want to learn rust which books do you guys recommend.
    Also what can we build using rust like rest APIs? microservices?

    • @aodhai
      @aodhai 7 месяцев назад +1

      you can build anything in rust

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

    0:20 i appreciate my man✌

  • @Mihai-oy6oq
    @Mihai-oy6oq 6 месяцев назад

    fire ❤‍🔥

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

    concerning .exe , imagine Arch Gnome or Hackintosh runs on a monster workstation!

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

    fireship is amazing

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

    when I was in college in the year 1999 I learned C, I knew already about the importance of habits, so every time that I made a stupid mistake I started a microhabit, to avoid the problem in the future, like closing a bracket immediately after opening, like if I typed an "if" I always did like `if(){}` and then fill in the blanks, because in that time, editors had no snippets yet, at least not the cheap BorlandC++
    I shot myself in the foot with malloc/free and I took a strategy to separate "side effects" from the logic, but I didn't call it "side effects" I called it non CPU stuff so with malloc I made a function that was the context to create anything so it was like
    create((*void)dostuff(*void), size_t size) {
    void* data = malloc(size)
    dostuff(size)
    free(data)
    }
    and in dostuff I kept the lifecycle of whatever It was the data pointer referring to. and I had similar functions for FILE and other stuff, it was naive but it worked for my little projects, and this style of programing also led me to get interested in Common Lisp, the symbols in Lisp are like pointers, and not having types was "freeing" back in the early 2000s.
    I never got to work on full blown applications on C, except for a small embedded one for a bank for a card reader, but most of my job right outside college was Java.

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

    Go windows! 😂

  • @user-cx6ec2kp6u
    @user-cx6ec2kp6u Год назад +2

    When you saw him using vscode you had your doubts but you let it slide, but then when he compiled to an exe. Wooot?!?!
    🤣

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

    windows is love
    windows is life

  •  6 месяцев назад

    CHARACTERISTIC --> CAR - ASTERITIC
    CHARACTER --> CAR - ACTER
    CHAR --> CHAR

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

    Rust in 100 seconds in 148 seconds

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

    during the mut discussion. for me it sounds like a little dog.. so imagining a variable as 'mutt' sounds cute.

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

    You are surprised by the operating system he uses?
    Just wait till you see his terminal emulator, it's something you wouldn't even guess

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

    I was not expecting to be in this video

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

    I thought this was a video about the game rust 😂

  •  Год назад +5

    For me Rust is now easier than Python and Bash. I do my scripting on Rust. I'm not kidding. I have 17 years of C++ experience. Rust is my language now.

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

      17 years? Sure buddy Sure!

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

      @@romangeneral23 From 2005, and some from the University.

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

      @ Well I've been a rust developer for the past 23 years...

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

      @@romangeneral23 So?

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

      @ So ? As someone who has been coding in C++ for "17" years and is now a full time hardcore rust developer surely you would know that the language is less than 10 years old ?
      So me not believing your statement of you being a C++ coder for "17" years was verified!
      Thanks

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

    he's secretly a .NET guy