2
What do you code in Rust? (lemmy.blahaj.zone)

I've only been coding with Python/Javascript since I started my career. I do APIs and websites frontend. I don't really understand what is interesting in learning an other language. For example, I could learn Ruby, but I'd do the same thing I already do.

Rust, C/C++ tho seem to me to be languages to code other things. Hence my question : what do you code? If possible, make distinction between personal projects and professional projects.

top 5 comments
sorted by: hot top controversial new old
[-] Ephera@lemmy.ml 2 points 4 months ago

My initial motivation to learn Rust was gamedev. Ultimately, you want high performance for games, which Rust can deliver.

Another area where Rust will be pretty much unavoidable in ten years is embedded computing.
So far, pretty much everything in embedded was implemented in C/C++, because you don't have a filesystem there, so you can't use a runtime, like Python, Java et al need. Rust doesn't require a runtime either and is finally a more modern language, with much better tooling.

Well, and where Rust (or C/C++) not requiring a runtime comes in handy, too, is for writing libraries. You can use it to create libraries, which can be called from virtually any language (via the C ABI).

But yeah, as the others said, essentially anything can be implemented in Rust. Moreso than most other languages.
At $DAYJOB, we've got a distributed system with edge components and a backend, as well as a CLI and a web frontend. All of it is implemented with Rust (and some HTML+CSS). For the web frontend, we're using WebAssembly (via the Leptos framework).
That is genuinely a solid reason for us to implement this in Rust, because we only need to know one language.

[-] pr06lefs@lemmy.ml 1 points 4 months ago

I wrote a web server to store markdown documents with links between them, a sort of 'zettelkasten'. Now I've made it into a tauri app that runs on my phone, web server and all, and can sync with the main server in the cloud. Documents everywhere! Front end is in elm and not rust tho.

I've made a few other projects in rust, did a audio dsp thing that is a delay with web controls, made a blinky sketch for the rp2040.

Rust is cool because you can write pretty high level code in it, with lots of libraries to help out, or you can write bare metal code with no OS for embedded.

[-] algernon@lemmy.ml 0 points 4 months ago

Anything and everything, really.

I wrote an idle inhibitor in Rust, a GUI WiFi connection manager for my wife, an API client for WriteFreely, I contributed to a Wayland compositor (niri), wrote a library & CLI tools to talk to Kaleidoscope-powered keyboards. I wrote the frontend of my personal search engine in Rust too.

But I also built a Tauri application where the backend and the frontend were written in Rust too. No HTML or JavaScript in sight, not in the sources at least.

Professionally, the answer's the same: if I am allowed to write it in Rust, I will write it in Rust, whether it is a low-level library that talks with hardware, a GUI application, or some web related thingy, or anything inbetween.

[-] ClusterBomb@lemmy.blahaj.zone 0 points 4 months ago

Oh! That's nice. I have a question. Why Rust above all the other languages for web-related stuff?

Again, I do not have any opinion on this, all I know is Python so ๐Ÿ’€

I have a project idea so you may convince me to try to code it in Rust ๐Ÿ˜…

[-] algernon@lemmy.ml 1 points 4 months ago

I use Rust mostly because I am comfortable working with it. It hits a sweet spot of often letting me write in a functional style, at often zero or very low cost. It has a lot of high quality libraries, for almost any purpose. And the language itself comes with great things too. Traits, Option, and Result are all things I miss when working in other languages like Go.

It's also a memory safe language that is also fast, approachable, and has a ton of good documentation. What's not to like?

this post was submitted on 18 Nov 2024
2 points (100.0% liked)

Rust Programming

8635 readers
16 users here now

founded 6 years ago
MODERATORS