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

Rust Programming

8172 readers
23 users here now

founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 18 hours ago (1 children)

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.

[–] [email protected] 1 points 18 hours ago (1 children)

I'd love to browse your code. Do you have any of this in a public git repo?

[–] [email protected] 1 points 18 hours ago

Sure, the web server is here and the tauri project is here. The syncing and tauri bit is pretty immature right now, but its getting there. There was an issue with media playback on android that had me blocked for a few months, but that's solved now.