I’m looking to get a lemmy bot figured out for posting sports scores in real-time (or near it) like Reddit had for NHL games. The lemmy api reference states that rust has the api as a loadable library, but I’ve only ever done C/C++ and python. Anything Coursera style to get a basic overview of how to get started in Rust?

I did also see lemmy-bot but it looks like it doesn’t handle post editing at the moment, and not sure i really want to learn how to use npm to be honest.

If you have a JetBrains IDE you can install this plugin, which interactively works you through the rustlings course: https://plugins.jetbrains.com/plugin/16631-learn-rust/about

TehPers
link
fedilink
English
61Y

There are a few resources out there, but a good starting place is the book. There’s also Rust by example which has example snippets for doing various tasks.

Also, keep in mind that Rust is a very different language from C, C++, and Python. It’s going to be hard to learn it if you try to treat the higher level concepts (structs, enums, traits, etc) like how other languages you know work. Take your time, it takes most people a lot longer to learn Rust than to learn most other traditional languages.

@socphoenix@midwest.social
creator
link
fedilink
English
21Y

Thank you! And thank you for the tip I had a feeling it looked just similar enough to be deceiving.

TehPers
link
fedilink
English
21Y

I had a feeling it looked just similar enough to be deceiving.

I think there’s a few places where this is true in Rust especially. For example, coming from a C-style language (and Python) the enum keyword throws a lot of people off. In Rust, while you can use an enum to represent a set of “constant” values, it’s more common to use it to represent a tagged union, making it more like type from F#:

// a union:
enum Response {
    Html(String),
    Text(String),
    Json(serde_json::Value),
}

// or a more C-style enum:
#[repr(u16)]
enum StatusCode {
    BadRequest = 400,
    NotFound = 404,
    // ...
}

You might find that some concepts look and feel similar to what you might see in traditional OOP languages, but often end up working more like something out of a functional language.

RandomBit
link
fedilink
English
31Y

If you would like to use this project to learn Rust, go for it! However, there are utilities that will convert Lemmy’s TypeScript to Python. There are also a few Lemmy Python packages on GitHub.

Gil (he/they)
link
fedilink
English
31Y

I recommend checking out fasterthanlime’s “A half-hour to learn Rust” if you want a brief breakdown of Rust syntax and key features, in addition to The Book and Rust by Example.

@natecox@beehaw.org
link
fedilink
English
71Y

More votes here for “the book”, it got me through publishing my first community app quite nicely.

thejevans
link
fedilink
English
31Y

In addition to what others have said, rustlings are great. https://github.com/rust-lang/rustlings

sophs [she/her]
link
fedilink
English
11Y

I learned using Rustlings and The Book. Also a few youtube videos on specific topics I wanted to learn about.

Create a post

All things programming and coding related. Subcommunity of Technology.


This community’s icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

  • 1 user online
  • 7 users / day
  • 7 users / week
  • 14 users / month
  • 121 users / 6 months
  • 1 subscriber
  • 295 Posts
  • 2.14K Comments
  • Modlog