Top 5 Rust books you MUST READ!
3:46
Rust stole C++'s best features
8:47
Where is Rust being used?
11:46
3 ай бұрын
US Gov to convert all C to Rust
2:32
My favorite Rust design pattern
7:00
The magic of Rust's type system
9:01
Solving Rust’s biggest problem
3:29
Why do developers hate Rust?
8:20
Should you learn Rust in 2024?
8:33
Fatal C error took her life
10:07
11 ай бұрын
AWS now officially supports Rust!
2:36
Rust 1.74.0
3:55
Жыл бұрын
The Rust Survival Guide
12:34
Жыл бұрын
Пікірлер
@YourCRTube
@YourCRTube 7 сағат бұрын
6. Slow compile time
@stumblinzz
@stumblinzz 21 сағат бұрын
add a 1s buffer between each clip of you just breathing or idling and this video would be better. You talk through these concepts back to back and even setting the video to 0.75 speed feels awkward because there is no natural spacing between the things you're saying - so you're missing natural pausing.
@kevinchadwick8993
@kevinchadwick8993 Күн бұрын
Ada blows them both out of the water on clean syntax and e.g. zero cost generics.
@agailloty
@agailloty Күн бұрын
I learn so much from your videos. Thanks
@agailloty
@agailloty Күн бұрын
Thank you
@keizbot
@keizbot Күн бұрын
I definitely think cybersecurity and aerospace are the industries that would benefit most from Rust
@jimcain349
@jimcain349 2 күн бұрын
Just found your channel. You're definitely the most handsome Rustacean I've come across.
@cympanion1232
@cympanion1232 2 күн бұрын
"100.00 subs is a dream". Now u have 132K bro! I got u!
@OlegKorsak
@OlegKorsak 2 күн бұрын
why the hell I have to use "tup.1" while for an array it is "arr[1]" ?? first sign how ugly Rust syntax is
@kushalmondal618
@kushalmondal618 2 күн бұрын
For Cosmic there is Only ❤❤❤❤.....and Respect for System76....that they are trying to rewrite the gnome fork from their prior popOS....And also making available in Fedora and Arch is a community driven that helps to have Cosmic without Debian based feel......Currently on Alpha-3 ....and its a Beast.....Well there are certain little pixel malfunctionaing parts in the panel, Settings app....Byt what i have felt using it as daily(Well i have HyprL as other Session) ....The Battery on laptop is certainly better with cosmic than Plasma or Gnome.....the default out-of-box look is pretty glowing and easy to change even a little details ......like changing the top panel transparency we just change the opacity of panel from settings>Appearance.....for Gnome we need Extensions app, tweak app, browser ext.. blur my shell....for plasma move the panel edit position.....Surely there are other improvements...the lockscreen from cosmic-greeter supports showing Battery Percentage in a laptop....which in GDM or SDDM is not present default..Cosmic can enhance Linux desktop experience
@InMemoryOfNeo
@InMemoryOfNeo 3 күн бұрын
i remember that the first time i watched this video. my brain was so confused about rust, it was difficult to understand most basic things about it etc... after two years i'm working at huawei as rust developer :) thanks bro
@distrologic2925
@distrologic2925 3 күн бұрын
Go is not even comparible to Rust because it throws "nil references" around everywhere and there are no safeguards other than the "if not nil" statements you are required to put after basically every function call
@distrologic2925
@distrologic2925 3 күн бұрын
Rust requires you to write good code so its a skill issue
@Afief
@Afief 3 күн бұрын
Code is not blazingly fast! From the documentation of unique(): Clones of visited elements are stored in a hash set in the iterator. Storing clones is not good, especially when in this case there is a much better solution: Since we want the list to be sorted anyway, we can first sort and then remove adjacent duplicates. This can be accomplished using iter.sorted().dedup(), which is just as easy to write as the unique() path, but is much more efficient. Of course there are cases where you don't want to sort the iterator, in which case unique() is the appropriate solution, but not in this example.
@agailloty
@agailloty 4 күн бұрын
C# dev here, I really appreciate your channel. Rust is cool but sometimes the syntax is really cryptic. The lifetime 'a syntax is really disturbing and I wonder if there is any alternative to it ?
@michaelsegel8758
@michaelsegel8758 4 күн бұрын
It would have been nice if you had gone into some of the deeper stuff in your discussion. Under the covers you are adding complexity to your code. It would have been interesting to see how Rayon handles locking and inter-thread communication since you are implementing the classic librarian / reader problem. Also, even if you are not using multiple cores, depending on the task, you can also gain performance if you are doing some parallelism. (e.g a thread is blocked on a wait state so another thread could work while the first thread is waiting. )
@matthewb192
@matthewb192 4 күн бұрын
Let's get CRUSTY! That's the nickname I used to call my ex.
@normalhumanbeing6066
@normalhumanbeing6066 4 күн бұрын
how will this fix my divorce
@m_the_pig
@m_the_pig 5 күн бұрын
Me using String for everything 🗿
@stanrock8015
@stanrock8015 5 күн бұрын
Wow. Hadn’t heard of thos
@ercntreras
@ercntreras 6 күн бұрын
Good video, currently learning Rust full time
@itachikapitaji9055
@itachikapitaji9055 7 күн бұрын
how long does it take to learn rust good enough to get a job if you have a programming/ web development background.. anyone?
@lowLevelCoder99
@lowLevelCoder99 7 күн бұрын
Should I stop thinking to plan learning Rust in the next week for the sake of creating Solana's Smart Contracts? Or these are just influencers things like negativity? What should I do like I am JavaScript and TypeScript Developer as well as I know Java well. Please guys what's your opinion for me? Please pin this comment because a lot of developers or beginners would want to know about this same problem!
@albizutoday2754
@albizutoday2754 8 күн бұрын
m.kzbin.info/www/bejne/m2HbcqCIlM58d9U
@PanopticMotion
@PanopticMotion 8 күн бұрын
You don't need to learn all this stuff to get in Rust! This is too dramatic :)
@Zimeftw
@Zimeftw 8 күн бұрын
I've been in the field for about 8 years professionally.(Internal web applications, tools, ect) I've worked with C#, JavaScript, done projects in python and some react here and there. I also have a personal project. I love learning Rust. You can do so much with it. The fact that it was build to fix an elevator system speaks volumes. I think it has a lot of future potential. I have adopted working with Rust into my workflow at work and my personal project's backend is built entirely in Rust.
@theyellowarchitect4504
@theyellowarchitect4504 9 күн бұрын
On better languages, should add Nim. Perhaps new video comparing Rust and Nim?
@kevinchadwick8993
@kevinchadwick8993 9 күн бұрын
Performance and safety like no other language. I guess you never heard of Ada or prefer to pretend it doesn't exist. Ada is a much nicer language to use.
@mjpthetrucker9485
@mjpthetrucker9485 9 күн бұрын
Had no idea this was being adopted on this scale. I started learning it just because I am using Tauri. 😮
@Apeeps
@Apeeps 9 күн бұрын
i thought this is about Rust Game from Facepunch
@ChronicWhale
@ChronicWhale 9 күн бұрын
That redirect cracked me up
@熊育霆
@熊育霆 9 күн бұрын
Bro explains the chapter clearly
@lifelessclayman6823
@lifelessclayman6823 9 күн бұрын
JetBrains products are a paid bugs festival in recent years
@local_communist
@local_communist 9 күн бұрын
Been pirating their products for 8 year and this is not true.
@lifelessclayman6823
@lifelessclayman6823 9 күн бұрын
@@local_communist Maybe bugs implemented only for licence owners
@local_communist
@local_communist 8 күн бұрын
@@lifelessclayman6823 you probably used a beta version but most of their IDEs currently are very mature
@LuizDahoraavida
@LuizDahoraavida 9 күн бұрын
Pre requisite be gay
@MattThiessen
@MattThiessen 10 күн бұрын
Perfect!
@inmonolife8361
@inmonolife8361 11 күн бұрын
배우기 시작하기전에 배우지말라고 말하는 것 같음. 나같은 바보들은 arc mutex 를 써먹는데 1년이 걸리더라
@mjpthetrucker9485
@mjpthetrucker9485 12 күн бұрын
Plan to use Tauri as the idea of using html css and javascript for cross platform guis makes my mouth water. Rust is being added to the repertoire. End of discussion.
@ramsey2155
@ramsey2155 12 күн бұрын
C also has many many many different types for strings
@潘呈祥-l9l
@潘呈祥-l9l 12 күн бұрын
I think...Importing anything is the hardest thing.
@secahl
@secahl 12 күн бұрын
i think jetbrains made it free for noncommercial.
@Le_Dislike_Button
@Le_Dislike_Button 12 күн бұрын
As a fanatical C-supremacist i approve of this move. When rustfags screw everything up, it will bring me job security
@PeteHope
@PeteHope 13 күн бұрын
I don't normally crap on people's videos. I appreciate the time and effort put in, especially the high production value. But I have a real problem with this video in particular. You're presenting these 5 things as though they're a barrier to entry. They really are not. Why? Because the 'official' way to learn Rust - The Rust Book - covers every one of these concepts and it does so in an incredibly easy to understand way, using analogies, as well as directly addressing how Rust works with the concepts and why they're important. Chapter 4 of The Rust Book has possibly the best breakdown of the stack and the heap that I've ever seen, and then goes on to show you exactly what you need to know. This video, and many of the comments below it, are seriously off-putting to newcomers. Don't be put off! Just follow The Rust Book, make notes, do the exercises, and you'll be well on your way!
@agnesakne4409
@agnesakne4409 13 күн бұрын
What's the value of your videos if the content is exactly that from the book?
@rexsybimatrimawahyu3292
@rexsybimatrimawahyu3292 4 күн бұрын
Tbh thats a fair question, maybe this vid is for those who are lazy reading the Book
@janakaone
@janakaone 13 күн бұрын
When you have a hammer in your hand everything looks like a nail. 😂
@kevinchadwick8993
@kevinchadwick8993 14 күн бұрын
Glad to see this but has Google and Android evaluated Ada like Nvidia did or just mindlessly jumped on the Rust hype train. Ada comes with more safety, less developer friction and results in more maintainable code bases.
@blanky_nap
@blanky_nap 16 күн бұрын
I must admit learning rust coming from Python was extremely hard. But now I must say I understand Python even better and would like to have rust as my first language. It really forces you to to things right. I still like Python but first using rust I had a feeling of how good the product is done. From single command which installs everything you need to the awesome documentation. For me rust became not the programming language but a well done development ecosystem.
@goshen8783
@goshen8783 16 күн бұрын
Thank you for this
@Nadim-qk4sh
@Nadim-qk4sh 16 күн бұрын
intro go crazy on this one
@MrJloa
@MrJloa 17 күн бұрын
We need rust 2.0, same concept, same speed but with typescript syntax coz rust compared to ts looks like bs really
@Deepz007
@Deepz007 17 күн бұрын
I am new to Rust, read ownership chapter twice, got the concepts of ownership, reference and moves but still wasn't confident. This video did the trick and made everything crystal clear. Thanks a ton!