Short tutorial videos to get up to speed on Rust if you know basic programming concepts

I recently came across these playlist on Rust and thought I’d share it with the community. The videos are short(most under 3 minutes) and too the point. I’ve done some basic programming in the past, but nothing as in-depth as what’s going on with the SAFE Network. Even though I’m a major programming noob, I still liked to look at Maidsafe’s code in Github occasionally. Watching this playlist has helped me better understand what I’m looking at now and I hope it’ll help others also.

21 Likes

Another resource for learning Rust, from the French government :slight_smile:

I came across this a few days ago and forgot to post it. It’s cool that they are accepting contributions!

8 Likes

In English, not even a French version, strange. Not that I’m complaining.

2 Likes

When the decision was made to go to Rust I was a immensely disappointed because of the delays it brought with it. Now after just a couple of days of watching videos on Rust I understand how powerful this language is and glad that switch was made.

4 Likes

For francophones exist this good tutorial:

2 Likes

Just came across this guide from IBM, thought I’d post it here :slight_smile:

https://www.ibm.com/developerworks/library/os-know-rust/index.html

4 Likes

Thanks to you guys for posting these resources. I’ve been interested in learning about Rust for some time now, and it’s great to know that Mozilla supports it.

3 Likes

Seems like a great resource for quickly seeing what Rust is like!


Got curious when I saw this example on that resource:

let y: Vec<i32> = [4, 5, 6];

But it yields: note: expected type std::vec::Vec<i32>!

1 Like