Skip to content

Instantly share code, notes, and snippets.

@humb1t
Created April 10, 2020 15:44
Show Gist options
  • Save humb1t/086cbba82ef3220f08d9899ce1f1deca to your computer and use it in GitHub Desktop.
Save humb1t/086cbba82ef3220f08d9899ce1f1deca to your computer and use it in GitHub Desktop.
Rust Users Team Samara Meetup

Rust User Team Samara - &Meetup[1]

How to and why you need to learn Rust

Rust learning curve

  • Evolution
  • Competition
  • Are you insane? Rust is awesome!!!

Reasons to learn

Fast + Safe + Concurrent

How Fast? Super Fast!

Thanks Ownership

https://www.youtube.com/watch?v=TCUBSbJENO4&

https://youtu.be/TCUBSbJENO4

error[E0382]: use of moved value: `s1`
 --> src/main.rs:5:28
  |
3 |     let s2 = s1;
  |         -- value moved here
4 |
5 |     println!("{}, world!", s1);
  |                            ^^ value used here after move
  |
  = note: move occurs because `s1` has type `std::string::String`, which does
  not implement the `Copy` trait

Modern ecosystem

I told you so

How to

Read the Book https://doc.rust-lang.org/stable/book/ Look at Examples https://doc.rust-lang.org/stable/rust-by-example/ Do the Course

https://github.com/fmoko/rustlings

Watch some Videos

https://www.youtube.com/channel/UCaYhcUwRBNscFNUKTjgPFiA

Write some Code

struct Code {
  spaghetti: String,
}

impl Code {
  fn write(clean_code: &str) -> Self {
    Code {
      spagetti: clean_code,
    }
  }
}

Write some useful Code

https://github.com/trending/rust?since=daily

Read the Newsletter https://this-week-in-rust.org/ Explain the code https://jrvidal.github.io/explaine.rs/

What’s next

Choose your domain

https://www.rust-lang.org/learn

Await https://rust-lang.github.io/async-book/ https://tokio.rs/docs/getting-started/hello-world/ https://book.async.rs/ https://cfsamson.github.io/books-futures-explained/

https://www.youtube.com/watch?v=skos4B5x7qE&

https://youtu.be/skos4B5x7qE Find a Job https://rustjobs.rs/#jobs This week in Rust LinkedIn @Никита П

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment