@@RandomGeometryDashStuff You know that guy who says they can code and make all these things but then you see his code and it's clear he only knows how to copy/paste code and fit it together enough to barely work/run. Basically that. They're the type of person that is why is-even has 16 million downloads on NPM.
Or - hear me out - the statistics only say that people using Rust professionally love Rust more than developers using other languages professionally like those languages. Which actually makes a ton of sense - because you'd have to be a weird fanatic to want to write Rust for your actual job.
Writing a compiler in University was probably a turning point for me, where I truly understood how memory works and why languages work the way they do. It's probably 80% of the knowledge you need to write an os from scratch. The other things are probably standard mechanisms to load programs, filesystems, networking, etc. I obviously wrote it in rust 🤣
I think the logic behind the stack overflow surveys is that rust devs dont have to use stack overflow nearly as much thanks to actually useful compiler messages.
I opted out of OS class after about a month due to too many other classes. First assignment was about file systems and since I was the only Linux fan boy in the class I did mine on my favorite: XFS (though it would have been ReiserFS, if not for some, uh, legal problems…). Years later I regret not realizing it was buggy and dealt with silly corruption issues until I dumped it for ext4 and began making productive life choices haha
That protobuf thing is seriously underrated, especially when combined with grpc. You have one source of truth for all data types and you can also communicate between them using a single endpoint created in grpc in any language of your choice. We use protobuf and grpc for intercommunication between our Kotlin backend, typescript front-end and flutter based apps all using same type definitions and intercommunicating using grpc endpoints written in Kotlin.
@@ishaanmalhotra3008 grpc-web is good enough. It doesn't have any less or more features than your traditional REST API of course, but it keeps the entire project in sync, especially if you have multiple front-ends such as Flutter, cli apps using the same grpc endpoint. It saves a lot of hassle. I kinda dig it.
i am migrating my nodejs backend to rust, there is some method function that cannot migrated at the moment. And yup, grpc is come for help. so i am using two language JS and Rust.
For those who are curious about the ceremonial with the AirPods, it’s just because the noise canceling is really amazing. Sometimes I use them with nothing playing just to be in a quiet place.
I can just hold my hand over the side of my Sony 1000-xm5 and hear you without taking it off. AND I could buy two of those for the price of one pro max apple thingy
Prime, we use noise-cancelling earplugs _specifically_ so we don't hear anything. I hate ot when coworkers are talking/laughing/eating/walking/making noise/breathing when I'm trying to concentrate.
@@ThePrimeTimeagen didnt watch the part where you said you will make a compiler before i comented this, i think thats a great project idea and i wish you a good luck
all I learned in OS class was semaphores. Lots of semaphores. We forked an open source OS and implemented some base functionality in it. Was one of my more favorite classes since it was getting into the nitty gritty.
I took the operating system class in college as a sophomore with my suite mates. I was lost, but I did get a full curriculum list. We all quit after two weeks. Back in the day, you had to have a wide vocabulary to get all the slang and synonyms when in "System Operations". Which is why Seniors or even graduates were in that class. We immediately knew this class might be too much. We were lost. Had to quit before the deadline. Instead we all decided to install freebsd on my ibm aptiva (that I bought from circuit city); it was a store return. God I was poor, but I was the richest in the suite because I had a job.
10:10 there are several people working on Rust who are pretty much fully dedicated to only working on improving error messages. the infrastructure is so good that they can usually fix this kind of stuff really quickly, so if you think an error messages is bad, report it!
Just saw a clip from primeReview’s vid of you saying “you want to word drop things for new devs to look up” and you are succeeding in that regard immensely. Feel like I’ve learned so much just from googling things you say, and also just things I see on your screen and even things people write in chat. Thank you!
In the last 4 weeks I learned Go instead of Rust (after seeing that people struggle to do the basic things in Rust), I didn't want to be unproductive. Now I can build a server that locally sends a simple json of 5 objects at 9300req/s (reading from Postgres, middleware etc, a full server), and at 2000req/s deployed on Hetzner VPS. Uncached. If I cache the response, it's 48000req/second (forty eight thousand). I tried bun, but only got 230req/s (maybe I'm doing something wrong? The hello world performance was insane, something like 60K req/s, but as soon as I connect to postgres and read from it, it's 230).
Me was an old Dinosaur explorer, OS course and Rust fitted nicely. Imagine doing resource (memory) contention and has language that do gatekeeping for you is real nice. Another OG tile for a ComSci practitioner was DragonSlayer, I don't know whether the terms still valid nowadays.
I have os and embedded systems,distributed systems subjects for next 2 semesters . We did some assembly programming,vhdl and all of the students hated it. Surely frontend web devs withs years of experience will have a very easy doing embedded systems😂.
Love it. ❤ One day I too hope to be on a level good enough to be roasted by prime himself. LetsGetRusty was boring in the beginning, but now, he is great. Great production, informative and fun. 👏
shoutout to struci at 10:48 saying rust is "definitely not low-level" lmao. Meanwhile rust in both linux and future windows kernels is quite happily going brr
The OS course in college doesn't tell you how to write an OS, it teaches you the theory behind what a filesystem is, what virtual memory is, how multiple processes run simultaneously, etc.
haven't watched this dude in forever, got bored of his vids since they applied more to intro rust devs rather than intermediate. though, pretty good vids. highly recommend him and his cheatsheet he has edit1: prime really roasted me... idk how i should feel 0:35 ... i like airpods bc they just super convenient and i use macos which makes it even more convenient. also one of the best wireless earbuds for the price. Though I do wanna try the sony donut earbuds edit2: the reason i want to learn rust is to gain a deeper understanding of what happens whenever you do things rather than depending on what scanf or whatever does on their own. though i still am pretty new to it, though, i feel like it can offer a lot to understanding what happens in general. edit3: zig compiler is also what i want to do.
Whoever strucci is in the comments, he's wrong. Rust is low-level. It can do anything C can. It can manipulate memory directly. You can even invoke the assembler.
Hey about the EarPods. I have misophonia and sound sensitivity. They make my ability to work in an office 10x better. Please be understanding of those who need em. I actually don’t listen to music but mostly just silence or brown noise.
I actually like C++, but mostly because I know it REALLY well. Like to my colleagues template metaprogramming is my solution to everything and I don't always understand how my colleagues don't understand the code, because to me it's like an open book. Probably a point against me and C++, but there's that. The code is not complex, I'm just using features that you don't know. "what's this bitset, just use a bitshift", No, stop hurting yourself. "Why do you make this template twice and call the other template?" It's called template realisation and it's been in there since C++11. Can't handle the Neutron style?
OS class was very cool and informative, it gave me knowledge about how the whole system works. But also compilers.. that sh*t was enlightening, it gave me knowledge about how programing languages works. with i can have a good guess on what a code is doing, without being an expert at the language or seeking deep in the documentation.
In regard to Rust being the most popular language on SO, I have a theory. I used to browse /g/ back in the day, and I will always remember the overall absolute love for Rust over there. A large portion of the posts were just about how you were wrong if you didn't develop in Rust etc. I wouldn't put it past the fellas over there to organise a Survey Bombing. It definitely wouldn't be the first time.
Can't find the report/research that Prime said from Intel about time spent on server was mostly copying memory. Does anyone have any leads? Really curious about it.
ultimate soy boy hating on hisself...lollllll. I eat green smoothies erry day! Loving the content Prime, we know you really care, deep down, about us lesser mortal devs. About 3/4 year into my first professional software engineering job and you're helping me along. Thank you.
America: We can find you and put behind bars. N korea: you are one mistake away.... hehe China: Gets deleted from eath for mistake. then say anything about rust PrimeAgen : *Exists*. (I'm gonna destroy this man's whole career) starts YELLING LIKE CRAZY* You will regret that you ever existed****
8:45 I agree CMake is great, but only on Linux and Mac. On windows cargo is still much more convenient than vcpkg. So at the end we just decided to cross-compile our app in mingw. And we have a paradoxical situation: app is developed on Linux, built on Linux, but shipped only for MacOS and windows.
I like Rust but I DO NOT see it as a lowlevel systems programming language! Not do I see C++ as that. It’s a general programming language that can do (with some strong arming that crippled both language’s core usability and sensibility) to do systems program. C and Zig are systems programming languages. Zig even more so because it’s standard lib is so incredibly lean, there’s hardly and fat to be found. Unlike C and especially unlike Rust where the standard lib is just a tad too heavy. No of course you don’t need the standard lib in most lowlevel applications. But then why not develop in assembly is my argument. It it’s just IO and basic maths than I can do that in assembly just fine.
Rust will be next! in my journey learning c++, it's disappointing that the more I program in c++ the nastier error messages get! Time to join c++ hate cult lol
I know this comment's old, but in case you're still wondering, he's probably talking about Writing a Compiler in Go. He's talked about it elsewhere and I think even was giving out a promo code (that apparently he makes no commission on, ie he's not just getting paid to promote) for the ebook. It's the sequel to another book, Writing an Interpreter in Go. I bought both a while back before hearing him recommend it, and I read through the first half of the interpreter book. It's very good, as far as I can tell - it doesn't gloss over the things you need to know to really understand what you're doing, but it also isn't some impenetrable textbook that requires you to already know a lot about interpreters/compilers to understand. It's also about interpreting/compiling a language similar to javascript (the author invents his own language for the books), so it's not like resources on writing a lisp compiler (something I've done before, and is much simpler) that don't require a lot of the features that an interpreter/compiler for a non-functional language requires. Would definitely recommend, based on what I've read so far, if you're looking to get into the subject but don't have much prior knowledge.
Man your voice is your voice. That's some important thing of you as a person. also I like your "🔥🔥🔥BLAZINGLY FAST🔥🔥🔥" Dont change your voice. And dont change your moustache bcs you look like Mario.
@@MCDyma +copilot + [other nvim plugins and language servers]; he actually almost made me use [copilot] (but I installed and tried out [codedium] instead).
2:40 That's such an exaggeration. Yeah it sucked sometimes, but declarative templates are A LOT better than imperative spaghetti template updates with vanilla JS or jQuery.
@@Patrick_Bard I am a GDE for Angular, but after React announced hooks and before Angular announced signals I had a preference for React. React hooks can do almost everything that RxJS can do. I just like declarative code in any form.
@@ThePrimeTimeagen right. after read a blog post from mozilla (2021) which mention the creation of rust foundation, also mention the new css engine Stylo made in rust ; 😉
Breaking News: Soydevs angry at term Soydevs because Soydevs considered harmful by Soydevs
what is soydev?
Norm dev: Why I switched from Js to rust? Boss told me we’re doing Rust now. 🤷♂️
It’s kind of like saying soyboy but it basically means type of developer I don’t like
It's spanish, for I'm dev
@@RandomGeometryDashStuff You know that guy who says they can code and make all these things but then you see his code and it's clear he only knows how to copy/paste code and fit it together enough to barely work/run. Basically that. They're the type of person that is why is-even has 16 million downloads on NPM.
"Do not be a React-Dev!" says Developer who i mostly know from the content where he reacts to stuff
Haha, I think he was referring to the JavaScript framework, React.
@@gabrielmendietahernandez3320You worry me.
@@gabrielmendietahernandez3320 And I think that the comment from Maric18 was a joke.
Hey! I see what you did there!
Rust is the most loved language in the Stack Overflow Survey because people spend less time in Stack Overflow when they use Rust.
That’s because no one understands rust enough to post answers on stackoverflow.
😏
@@kasper_573 speak for yourself, and you're just wrong because the results come from a survey that includes all SO users.
Of course, you have to spend years waiting for it to compile before you know if it has any errors.
@@KoltPenny better than finding bugs when the program is running for 3 days already and taking down prod
Or - hear me out - the statistics only say that people using Rust professionally love Rust more than developers using other languages professionally like those languages. Which actually makes a ton of sense - because you'd have to be a weird fanatic to want to write Rust for your actual job.
He put the word Rust in the title!
How am I supposed to know he's not part of the core team?!
clearly he is part of the core team
@@ThePrimeTimeagen This video is not endorsed by the Rust Foundation.
Oh god I hope he's not carrying a firearm, the foundation will dissappear him.
He refers to iron oxide in the title
...and how are we supposed to know you are not part of the core team?
Prime, I find the phrase "soy dev" very problematic because it implies they're devs.
"I am dev".
ember... i am going to follow you on twitter now
Wait till the almond devs and oat devs find out about this.
😂😂😂so cold
Nicely worded line. Punch came with the very last syllable. Kudos
This guy is like if Doctor Disrespect and Bill Burr had a love child that learned how to program.
Exactly was my thought about Bill Burr resemblance in first 3 mins
This actually is Dr disrespect
Writing a compiler in University was probably a turning point for me, where I truly understood how memory works and why languages work the way they do. It's probably 80% of the knowledge you need to write an os from scratch. The other things are probably standard mechanisms to load programs, filesystems, networking, etc. I obviously wrote it in rust 🤣
Weird thought but can’t you have the ram itself copy memory in bulk, does memory have to be touched by the processor and cache to be moved and copied?
@@aoeu256 ram is memory, can it copy itself?
Took me several months of watching this guy to realize he is the programmer reincarnate of Gilbert Gottfried
That's offensive
Prime's voice is not nearly as annoying
Exactly defined
Nah its Bill Burr who can code lol
@@StasPakhomov-wj1nn wow indeed!!
@Stas Pakhomov perfect analogy
I think the logic behind the stack overflow surveys is that rust devs dont have to use stack overflow nearly as much thanks to actually useful compiler messages.
I opted out of OS class after about a month due to too many other classes. First assignment was about file systems and since I was the only Linux fan boy in the class I did mine on my favorite: XFS (though it would have been ReiserFS, if not for some, uh, legal problems…). Years later I regret not realizing it was buggy and dealt with silly corruption issues until I dumped it for ext4 and began making productive life choices haha
Windows have also accepted Rust in their core I heard
The register: "Microsoft is busy rewriting core Windows code in memory-safe Rust"
That protobuf thing is seriously underrated, especially when combined with grpc.
You have one source of truth for all data types and you can also communicate between them using a single endpoint created in grpc in any language of your choice.
We use protobuf and grpc for intercommunication between our Kotlin backend, typescript front-end and flutter based apps all using same type definitions and intercommunicating using grpc endpoints written in Kotlin.
Typecript frontend for web browser? Doesnt grpc have problems with running on browser or is grpc-web good enough?
@@ishaanmalhotra3008 grpc-web is good enough.
It doesn't have any less or more features than your traditional REST API of course, but it keeps the entire project in sync, especially if you have multiple front-ends such as Flutter, cli apps using the same grpc endpoint.
It saves a lot of hassle. I kinda dig it.
i am migrating my nodejs backend to rust, there is some method function that cannot migrated at the moment. And yup, grpc is come for help. so i am using two language JS and Rust.
For those who are curious about the ceremonial with the AirPods, it’s just because the noise canceling is really amazing. Sometimes I use them with nothing playing just to be in a quiet place.
I can just hold my hand over the side of my Sony 1000-xm5 and hear you without taking it off.
AND I could buy two of those for the price of one pro max apple thingy
The noise cancellation is not as amazing but yea they’re the best in noise cancellation compared to all other earbuds
good to know...
I hate noise cancellation feature...
will avoid
@@lastmanstanding5423 it’s optional, dude android fanboys are something else.
@@PanosPitsi hate android as well
Prime, we use noise-cancelling earplugs _specifically_ so we don't hear anything. I hate ot when coworkers are talking/laughing/eating/walking/making noise/breathing when I'm trying to concentrate.
You should try doing a project where you need to do unsafe, maybe something like embedded and compare to zig.
i am ackshually practicing zig much more now and will get good at it...
i will create some videos about this.
@@ThePrimeTimeagen didnt watch the part where you said you will make a compiler before i comented this, i think thats a great project idea and i wish you a good luck
Or cyclically linked graphs perhaps.
No he is definitely need to explain why Rust should be in linux kernel
all I learned in OS class was semaphores. Lots of semaphores. We forked an open source OS and implemented some base functionality in it. Was one of my more favorite classes since it was getting into the nitty gritty.
I took the operating system class in college as a sophomore with my suite mates. I was lost, but I did get a full curriculum list. We all quit after two weeks. Back in the day, you had to have a wide vocabulary to get all the slang and synonyms when in "System Operations". Which is why Seniors or even graduates were in that class. We immediately knew this class might be too much. We were lost. Had to quit before the deadline.
Instead we all decided to install freebsd on my ibm aptiva (that I bought from circuit city); it was a store return. God I was poor, but I was the richest in the suite because I had a job.
10:10 there are several people working on Rust who are pretty much fully dedicated to only working on improving error messages. the infrastructure is so good that they can usually fix this kind of stuff really quickly, so if you think an error messages is bad, report it!
Just saw a clip from primeReview’s vid of you saying “you want to word drop things for new devs to look up” and you are succeeding in that regard immensely. Feel like I’ve learned so much just from googling things you say, and also just things I see on your screen and even things people write in chat. Thank you!
Dear lord, MooTools and IE:6... *Eye Twitching* WHY DO YOU MAKE ME RELIVE THOSE YEARS
your voice is similar to Bill Burr's especially when you scream or try to immitate others :D
Yes. I was just about to comment that.
His voice is probably the most iconic voice I hear on RUclips
Kinda like Jim Bruer
In the last 4 weeks I learned Go instead of Rust (after seeing that people struggle to do the basic things in Rust), I didn't want to be unproductive. Now I can build a server that locally sends a simple json of 5 objects at 9300req/s (reading from Postgres, middleware etc, a full server), and at 2000req/s deployed on Hetzner VPS. Uncached. If I cache the response, it's 48000req/second (forty eight thousand). I tried bun, but only got 230req/s (maybe I'm doing something wrong? The hello world performance was insane, something like 60K req/s, but as soon as I connect to postgres and read from it, it's 230).
You almost got me to learn rust, but if this involves eating those fish oil thingies... Not so sure anymore.
Me was an old Dinosaur explorer, OS course and Rust fitted nicely. Imagine doing resource (memory) contention and has language that do gatekeeping for you is real nice. Another OG tile for a ComSci practitioner was DragonSlayer, I don't know whether the terms still valid nowadays.
I am honored
Webdeveloper guy learns Rust and suddenly thinks he can work on low level OS code and embedded systems. Humbleness just got a whole new meaning.
I have os and embedded systems,distributed systems subjects for next 2 semesters . We did some assembly programming,vhdl and all of the students hated it. Surely frontend web devs withs years of experience will have a very easy doing embedded systems😂.
Love it. ❤ One day I too hope to be on a level good enough to be roasted by prime himself.
LetsGetRusty was boring in the beginning, but now, he is great. Great production, informative and fun. 👏
My dude! I mean this in the best way possible. You are the programming Bill Burr.
Primeagen proves once again a master at generating engagement :D
shoutout to struci at 10:48 saying rust is "definitely not low-level" lmao. Meanwhile rust in both linux and future windows kernels is quite happily going brr
Casual, have you ever programmed in logic gates?
@@gercius
Why???
The OS course in college doesn't tell you how to write an OS, it teaches you the theory behind what a filesystem is, what virtual memory is, how multiple processes run simultaneously, etc.
"I learn low level programming then I know how to make OS" :) Riiight. How to spot a junior dev starter kit.
The programming version of Doctor Disrespect!
Primero is correcto, being a great coder means the actual code being use doesn't matter. You will just be limited by features depending on the stack 🎉
haven't watched this dude in forever, got bored of his vids since they applied more to intro rust devs rather than intermediate. though, pretty good vids. highly recommend him and his cheatsheet he has
edit1: prime really roasted me... idk how i should feel 0:35 ... i like airpods bc they just super convenient and i use macos which makes it even more convenient. also one of the best wireless earbuds for the price. Though I do wanna try the sony donut earbuds
edit2: the reason i want to learn rust is to gain a deeper understanding of what happens whenever you do things rather than depending on what scanf or whatever does on their own. though i still am pretty new to it, though, i feel like it can offer a lot to understanding what happens in general.
edit3: zig compiler is also what i want to do.
Whoever strucci is in the comments, he's wrong. Rust is low-level. It can do anything C can. It can manipulate memory directly. You can even invoke the assembler.
I've seen so many AirPods that have fallen out of people's ears onto the ground and been left behind.
Pulling off the big headphones is way more based
Hey about the EarPods. I have misophonia and sound sensitivity. They make my ability to work in an office 10x better. Please be understanding of those who need em. I actually don’t listen to music but mostly just silence or brown noise.
We need a primeagen supplements stack and workout routine video XD.
shirtless vitamin salesman coming 2024
I actually like C++, but mostly because I know it REALLY well. Like to my colleagues template metaprogramming is my solution to everything and I don't always understand how my colleagues don't understand the code, because to me it's like an open book.
Probably a point against me and C++, but there's that. The code is not complex, I'm just using features that you don't know.
"what's this bitset, just use a bitshift", No, stop hurting yourself. "Why do you make this template twice and call the other template?" It's called template realisation and it's been in there since C++11. Can't handle the Neutron style?
OS class was very cool and informative, it gave me knowledge about how the whole system works.
But also compilers.. that sh*t was enlightening, it gave me knowledge about how programing languages works.
with i can have a good guess on what a code is doing, without being an expert at the language or seeking deep in the documentation.
In regard to Rust being the most popular language on SO, I have a theory. I used to browse /g/ back in the day, and I will always remember the overall absolute love for Rust over there. A large portion of the posts were just about how you were wrong if you didn't develop in Rust etc. I wouldn't put it past the fellas over there to organise a Survey Bombing. It definitely wouldn't be the first time.
They hate it now because "it's too woke", and it's still on top of the survey, so no.
I love your show man, I feel the same about everything you said. It's nice to have someone experienced share their world view in an amusing way
This guy is the Dr Disrespect of tech😂😂 please don't change G🔥
Prime what we want is a Zig v. Beef v. Odin. That's what we want baby.
Can't find the report/research that Prime said from Intel about time spent on server was mostly copying memory. Does anyone have any leads? Really curious about it.
it came out the same year i did the NodeConf EU talk about FlatBuffers, i think i even cite it in my talk.
Hey Prime, what year did this happened? 2022? I couldn’t find anything on RUclips nor Google (just an image on your Twitter)
speaking of headphones, what headset are you using? looks like AKG.
0:27 Sir I cannot "walk up to my coworker;" I am remote
ultimate soy boy hating on hisself...lollllll. I eat green smoothies erry day! Loving the content Prime, we know you really care, deep down, about us lesser mortal devs. About 3/4 year into my first professional software engineering job and you're helping me along. Thank you.
We all have to go through the web / mobile soy boy phase to get out of it. To recognize that js is soyboy technology means you're growing.
America: We can find you and put behind bars.
N korea: you are one mistake away.... hehe
China: Gets deleted from eath for mistake.
then say anything about rust
PrimeAgen : *Exists*. (I'm gonna destroy this man's whole career) starts YELLING LIKE CRAZY* You will regret that you ever existed****
The Zero2Prod book the prime flashed around is a great book.
Customized neovim
5:20 I feel attacked.
May be worth noting, I'm watching this on my day off while working on my personal Rust project.
0:04 He also has a better hoody.
4:50 Get a teapot which can pour into many cups or one day you'll end up using a docker-in-docker image which eats 15gb ram
I might try Rust since I live in the Rust Belt and deal with Rusty cars, might as well incorporate Rust in every aspect of my life.
whats the better future proof language? rust or golang ? or just infra DevOps?
golang lacks some key features of rust that will inflate the amount of code you have to write and maintain
I love you too ❤
Your wife should wear a green morph suit to deliver your smoothies...
dark years of web development I guess he has never used JSF or JSPs :P
JSF/JSP better than javascript, simply didn't like javascript at all.
Any of that [J word] crap (like tomcat, jetty, glassfish, wildfly crap). I wonder do people still use that stuff?
How about CGI scripts in Perl?
"switching from js to rust" is a craaaazzyyyyy statement - wtf projects were you using JS for?
8:45 I agree CMake is great, but only on Linux and Mac. On windows cargo is still much more convenient than vcpkg. So at the end we just decided to cross-compile our app in mingw. And we have a paradoxical situation: app is developed on Linux, built on Linux, but shipped only for MacOS and windows.
At least he moved on from AngularJS, I'm still stuck in the middle of it.
I like Rust but I DO NOT see it as a lowlevel systems programming language! Not do I see C++ as that. It’s a general programming language that can do (with some strong arming that crippled both language’s core usability and sensibility) to do systems program. C and Zig are systems programming languages. Zig even more so because it’s standard lib is so incredibly lean, there’s hardly and fat to be found. Unlike C and especially unlike Rust where the standard lib is just a tad too heavy.
No of course you don’t need the standard lib in most lowlevel applications. But then why not develop in assembly is my argument. It it’s just IO and basic maths than I can do that in assembly just fine.
omg these rust influencers finally met
This was never in the soy category. Just listen to that voice Prime 😂
Typescript is both type safe and not type safe until it's observed.
The mere mention of IE6 made me physically unwell...
First time hearing Soy Dev. Love it. I want an ironic sticker of this for my Mac now lol
"dude use cmake, cmake is great" ... well, compared to cargo or quite anything, "cmake" feels like from the steam age
Oh men! Mootools and prototype! Men! That was a long a go!
lmao at the bill burr style delivery
tofu's pretty good, actually
Rust will be next! in my journey learning c++, it's disappointing that the more I program in c++ the nastier error messages get! Time to join c++ hate cult lol
That's okay I tried rust and hated it, lol
@@IamusTheFox me too, until I actually used it for a real world application :)
What is the compiler book you're talking about at 13:00 ??
I know this comment's old, but in case you're still wondering, he's probably talking about Writing a Compiler in Go. He's talked about it elsewhere and I think even was giving out a promo code (that apparently he makes no commission on, ie he's not just getting paid to promote) for the ebook. It's the sequel to another book, Writing an Interpreter in Go.
I bought both a while back before hearing him recommend it, and I read through the first half of the interpreter book. It's very good, as far as I can tell - it doesn't gloss over the things you need to know to really understand what you're doing, but it also isn't some impenetrable textbook that requires you to already know a lot about interpreters/compilers to understand. It's also about interpreting/compiling a language similar to javascript (the author invents his own language for the books), so it's not like resources on writing a lisp compiler (something I've done before, and is much simpler) that don't require a lot of the features that an interpreter/compiler for a non-functional language requires. Would definitely recommend, based on what I've read so far, if you're looking to get into the subject but don't have much prior knowledge.
@@voskresenie- I found the book back then. Indeed it's very nice. Thanks for the reply anyway.
I switched from Kotlin to Rust months ago and I LOVE it
@0:52 Amen brother...preach it!!!! Serious I do hate that too....
Is it me or does prime remind anyone of an Anchorman character?
for me, he is total Charlie Kelly from Always Sunny :D
The soyboy joke is awesome, laughed so hard :D
I just learned a new word today: Soydevs. Whata great word!
Mootools was awesome. Now, Dojo was the Dark Lord of those dark years.
I've been doing mobile dev since 2011. The Soy Boi thing cracks me up every god damn time. 🤣😂😂🤣🤣. 10/10
but for real, RN IS for soy bois.
Become more than one library.. 🤠** react devs **
Have you ever considered doing voice-over for the raccoons? You've got the talent 😜
Cackling as I watch the Viteagen down 5k mg of fish oil
😂😂😂 mootools, jquery and ie6 - know that pain all too well
All netflix devs just bought AirPods
10:33 *D* *R* *I* *N* *K* *I* *N* *G* *V* *O* *I* *D*
In the end PHP is the real one. (but cobol might be better)
Cobol absolutely is the pinnacle of programming
You know you are a boomer when you have to take fish oil pills and vitamins. By the way, I also take them, so I'm just being real.
boomer life
How and why does someone just switch from JS to rust? They are completely different languages with completely different use cases
Man your voice is your voice. That's some important thing of you as a person.
also I like your "🔥🔥🔥BLAZINGLY FAST🔥🔥🔥"
Dont change your voice. And dont change your moustache bcs you look like Mario.
I spent hours debugging a cmake error. Now, I don’t know why, but it compiles perfectly. I get segfault now
I like C++ but jeez getting a project to build is a nightmare for me, even with CMake
Which IDE is primeTime using? those error messages in the editor are neat!
nvim
@@MCDyma +copilot + [other nvim plugins and language servers]; he actually almost made me use [copilot] (but I installed and tried out [codedium] instead).
@@MCDyma thanks!
only real ones remember IE 5.2
2:40 That's such an exaggeration. Yeah it sucked sometimes, but declarative templates are A LOT better than imperative spaghetti template updates with vanilla JS or jQuery.
By your profile pic I'm guessing you're a little biased. But I agree though
@@Patrick_Bard I am a GDE for Angular, but after React announced hooks and before Angular announced signals I had a preference for React. React hooks can do almost everything that RxJS can do. I just like declarative code in any form.
Hi Prime,
The current js engine of Firefox is made in RUST, right?
So why Firefox still slow compare to Chromium base browsers? 🤔
its not, justn the css portion
@@ThePrimeTimeagen right. after read a blog post from mozilla (2021) which mention the creation of rust foundation, also mention the new css engine Stylo made in rust ; 😉
"I hate when Bill grabs his airpod to move it out of his ear."
*continuously yanks around his boom arm
I like how the last frame of the video has someone screaming "EWWWWWWW" at the comments xD