I have read the rust book but i find that rust projects on Github are quite difficult to read, the generic syntax, lifetime notation, etc are getting me crazy, any suggestions for beginners to read large scale Rust project?
@JennaHasm8 ай бұрын
What is your rating of the book, compared to other manuals?
@vickypandey35977 ай бұрын
it's one of the best resources, supplemented with let's get rusty on yt, rustlings
@lordawid5 ай бұрын
imo, dont learn to read large scale projects. Make a large scale project (or, just a mid-scale, at least) and you'll get a much better understanding
@RenderingUserАй бұрын
Rustlings
@warpdotdev9 ай бұрын
Are you learning Rust this year?
@MaverickDriver959 ай бұрын
I'd love a similar video for other languages! React, vue, angular, solid, liquid, php...
@JustAlis9 ай бұрын
Yes, I've just started to read the Rust book. Thank you for more useful sources I didn't know about!
@jimbo54379 ай бұрын
No, it's unnecessary
@steveoc649 ай бұрын
No. I have already learned it, because I need to fix 3rd party rust code that we are being forced to use. Will we be using Rust for any new projects? Hell no ! There is no compelling use case for rust, when you consider the other choices available. Rust fails to be best of breed for any problem
@AungBaw8 ай бұрын
Please put resources links in the description, thanks for your videos.
@WillDelish9 ай бұрын
Way I see it coming from pip/npm world, we’re trading mental pains: 1. Version management of node/python. These have very poor backwards compatibility 2. Dependency hell 3. Typing - let me restart my TS server and troubleshoot that tsconfig again 4. Ahh unit testing. Which framework to pick? Rust’s cargo just is a better dx out of the box. Now, all your mental energy can be on rust concepts/code I plan to practice more rust this year :)
@adrianscarlett5 ай бұрын
Rust is amazing, but a lot of package documentation needs serious attention, especially ones that introduce breaking changes, but don't update their examples to reflect the changes.
@dylanjayatilaka85332 ай бұрын
Hey. Rust looks nice. Traits are better than OO --- or at least offers something different --- especially in regards to GUI design. But I would highly recommend the No Boilerplate KZbin videos hich are *short* for people who already have understood several languages. Multi choice with examples is the quickest way. Then the final way is to write something based on the BTS you have already learned. Just my 2c. Everything on the web is stupefyingly slow and boring. Except for No Boilerplate.
@erlangparasu633917 күн бұрын
too many moving object in this video.. please reduce it to increase viewer focus.. thanks
@Mugruokgt9 ай бұрын
Do you need to say rust foundation every time or you'll get sued?
@gryffinsyme63574 ай бұрын
it’s just good to know who makes the resources, so you can find the right ones and to know they’re quality resources
@keilmillerjr970118 күн бұрын
@@gryffinsyme6357 It makes you wonder if this is a paid advertisement.
@cbbcbb68035 ай бұрын
Can Cobol applications be easily retooled into Rust?
@WhyOhWhy1235 ай бұрын
Thank you 😊
@shayokhshorfuddin257623 күн бұрын
No thanks, I would like to preserve my sanity.
@giuseppelannaАй бұрын
and what about rustonomicon?
@rusty-coder9 ай бұрын
Thank you for the video. Can you please suggest some good resources for web3 with rust
@viktorkot99224 күн бұрын
Solana
@ProgrammingwithKaranKharodeАй бұрын
Can you or someone please summarise the points in the video with links Unable to understand what he's saying, no offense, there should be some official captions
@ProgrammingwithKaranKharodeАй бұрын
I've added all the links in another comment so you can check that
@ProgrammingwithKaranKharodeАй бұрын
I've added all the links in another comment so you can check that
@ProgrammingwithKaranKharodeАй бұрын
My comment with the links was removed!
@herozero7779 ай бұрын
Great video man
@yomanthunderАй бұрын
Why don't people talk about rust by practice, is not good enough??
@Takatou__YogiriАй бұрын
But their crate doc sucks 90% of the time. Beginners can't even understand wt f is going on.
@REAZNx9 ай бұрын
Doing web servers in Rust ain’t it chief.
@jimbo54379 ай бұрын
Rust is so cringe
@wiillou9 ай бұрын
why
@jimbo54379 ай бұрын
It's unnecessary, that's why. We are literally at the point where we have enough languages that can do what we need done catering to each task. Rust is just bloat.
@wiillou9 ай бұрын
@@jimbo5437 not.. really? Rust does a lot of things that are completely unique from other languages and make a lot of sense. I mean, there's always going to be new languages that come out and I don't see how that's a bad thing, especially with the huge innovations they bring and how much most programmers love these more modern and Intelligently designed languages
@steveoc649 ай бұрын
@@wiillouthere is not 1 single feature in Rust that is unique or new. It’s all been done before in other languages. Its sole purpose was to create a tool for rewriting 1 particular codebase (Firefox) from C++, with a tonne of concepts jammed in from older languages that solved some types of problems that Firefox found themselves in. That rewrite didn’t go so well either
@wiillou9 ай бұрын
@@steveoc64"not one single feature" I can think of a few from the top of my head - Borrow checker based around lifetimes (swift has a borrow checker but it is ARC based) - A compiler with detailed errors and hints that cover a lot of the errors you may see Also, taking inspiration from other languages is not a bad thing