Тёмный

The BEST way to learn Rust 🦀👩‍💻  

warpdotdev
Подписаться 68 тыс.
Просмотров 33 тыс.
50% 1

Наука

Опубликовано:

 

24 янв 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 34   
@kitgary
@kitgary 5 месяцев назад
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?
@JennaHasm
@JennaHasm 4 месяца назад
What is your rating of the book, compared to other manuals?
@vickypandey3597
@vickypandey3597 3 месяца назад
it's one of the best resources, supplemented with let's get rusty on yt, rustlings
@lordawid
@lordawid Месяц назад
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
@warpdotdev
@warpdotdev 5 месяцев назад
Are you learning Rust this year?
@MaverickDriver95
@MaverickDriver95 5 месяцев назад
I'd love a similar video for other languages! React, vue, angular, solid, liquid, php...
@JustAlis
@JustAlis 5 месяцев назад
Yes, I've just started to read the Rust book. Thank you for more useful sources I didn't know about!
@jimbo5437
@jimbo5437 5 месяцев назад
No, it's unnecessary
@steveoc64
@steveoc64 5 месяцев назад
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
@AungBaw
@AungBaw 4 месяца назад
Please put resources links in the description, thanks for your videos.
@cbbcbb6803
@cbbcbb6803 Месяц назад
Can Cobol applications be easily retooled into Rust?
@WillDelish
@WillDelish 5 месяцев назад
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 :)
@WhyOhWhy123
@WhyOhWhy123 Месяц назад
Thank you 😊
@adrianscarlett
@adrianscarlett Месяц назад
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.
@herozero777
@herozero777 5 месяцев назад
Great video man
@rusty-coder
@rusty-coder 5 месяцев назад
Thank you for the video. Can you please suggest some good resources for web3 with rust
@Mugruokgt
@Mugruokgt 5 месяцев назад
Do you need to say rust foundation every time or you'll get sued?
@gryffinsyme6357
@gryffinsyme6357 Месяц назад
it’s just good to know who makes the resources, so you can find the right ones and to know they’re quality resources
@REAZNx
@REAZNx 5 месяцев назад
Doing web servers in Rust ain’t it chief.
@jimbo5437
@jimbo5437 5 месяцев назад
Rust is so cringe
@wiillou
@wiillou 5 месяцев назад
why
@jimbo5437
@jimbo5437 5 месяцев назад
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.
@wiillou
@wiillou 5 месяцев назад
@@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
@steveoc64
@steveoc64 5 месяцев назад
@@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
@wiillou
@wiillou 5 месяцев назад
​@@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