205
you are viewing a single comment's thread
view the rest of the comments
[-] tourist@lemmy.world 32 points 4 days ago

My friend from university sends me his Rust code snippets sometimes. Ngl it looks like a pretty cool language.

There was also that tldr reimplemention in Rust that is a gatrillion times faster than the original.

I really want to give it a try but I have executive dysfunction and don't have any ideas of what I could use it for.

[-] ScreaminOctopus@sh.itjust.works 23 points 4 days ago

The main issue I have with rust is the lack of a rust abi for shared libraries, which makes big dependencies shitty to work with. Another is a lot of the big, nearly ubiquitous libraries don't have great documentation, what's getting put up on crates.io is insufficient to quickly get an understanding of the library. It'd also be nice if the error messages coming out of rust analyzer were as verbose as what the compiler will give you. Other than that it's a really interesting language with a lot of great ideas. The iterator paradigm is really convenient, and the way enums work leads to really expressive code.

[-] snaggen@programming.dev 13 points 3 days ago

As someone that have worked in software for 30 years, and deplying complicated software, shared libraries is a misstake. You think you get the benefit of size and easy security upgrades, but due to deployment hell you end up using docker and now your deployment actually added a whole OS in size and you need to do security upgrades for this OS instead of just your application. I use rust for some software now, and I build it with musl, and is struck by how small things get in relation to the regular deployment, and it feels like magic that I no longer get glibc incompatibility issues.

[-] ScreaminOctopus@sh.itjust.works 2 points 3 days ago

Maybe for your use cases that's OK, but there are many situations where the size and ease of upgrading provided by shared libraries is worthwhile. For example it would suck to need to push a 40+ GB binary to a fleet of systems with a poor or unreliable internet connection. You could try to mitigate this sort of thing by splitting the application up into microservices, but that adds complexity, and isn't always a viable tradeoff if maximizing compute efficiency is also a concern.

[-] calcopiritus@lemmy.world 1 points 2 days ago* (last edited 2 days ago)

I'm not so sure that dynamic libraries always reduces the size. Specially with libraries that are linked by a single binary.

With static libraries, you can conditionally compile only the features you're gonna use. With dynamic libraries, however, the whole library must be compiled.

EDIT: just to clarify, I'm not saying that static libraries result always in less size. I'm saying that it's not a black and white issue.

[-] 0x0@programming.dev 3 points 3 days ago

due to deployment hell you end up using docker

Maybe tackle that deployment hell instead of band-aiding it with docker?

[-] FizzyOrange@programming.dev 0 points 3 days ago

He is. By using statically linked binaries.

Technically this is conflating two things: bundling dependencies and static/dynamic linking. But since you have to bundle your dependencies to use static linking, and there's little point dynamic linking if you bundle your dependencies... most of the time they are synonymous.

Exceptions are things like plugins, but that's pretty rare.

[-] nous@programming.dev 15 points 4 days ago

Documentation is generally considered one of the stronger points of rust libraries. Crates.io is not a documentation site you want https://docs.rs/ for that though it is generally linked to on crates.io. A lot of bigger crates also have their own online books for more in depth stuff. It is not that common to find a larger crate with bad documentation.

[-] ScreaminOctopus@sh.itjust.works 2 points 2 days ago

One specific example I encountered was ndarray. I couldn't figure out how to make a function take an array and an arrayslice without rewriting the function for both types. This could be because I'm novice with the language, but it didn't seem obvious. I ended up giving up after trying to dig through the docs for a few hours and went back to C++.

[-] asdfasdfasdf@lemmy.world 5 points 4 days ago* (last edited 4 days ago)

Why not just use the C ABI?

And what libraries are you referring to? Almost all the ones I've used have fantastic docs.

[-] ScreaminOctopus@sh.itjust.works 5 points 3 days ago

In my understanding, you can't interface with the C abi without using an unsafe block.

[-] FizzyOrange@programming.dev 1 points 3 days ago

I think there are some crates that wrap the unsafe code for you, e.g. https://github.com/rodrimati1992/abi_stable_crates/ (I haven't ever tried it).

[-] calcopiritus@lemmy.world 0 points 2 days ago

You can just use an unsafe block though. Or make a thin wrapper that is just safe functions that inside just have an unsafe block with the C ABI function.

Even if rust had a stable ABI, you would still need that unsafe block.

[-] Kacarott@aussie.zone 17 points 4 days ago

Rust is definitely a really cool language (as someone who has played with it just a little) but it's quite headache inducing, at least for me at the moment.

[-] itslilith@lemmy.blahaj.zone 14 points 4 days ago

It has a steep learning curve, but it's super nice to use once you're over the initial bump

[-] asdfasdfasdf@lemmy.world 1 points 3 days ago

What's causing the most headache for you?

[-] Kacarott@aussie.zone 2 points 3 days ago

Mostly the ownership model, trying to remember which functions expect borrowed types or not, etc.

The error messages in rust are really good, so I can usually make the code work quickly, but I need to properly understand the reason behind the error in order to learn, so that's when I get headaches

[-] SpaceNoodle@lemmy.world 3 points 3 days ago

Of course its rewrite is nearly infinitely faster than the original JavaScript.

[-] tourist@lemmy.world 4 points 2 days ago

oh

lol

didn't cross my mind that someone would make a CLI program in js

I mean, I've done it, but I am a registered dunce cap owner.

[-] SpaceNoodle@lemmy.world 2 points 2 days ago

Well, so is that guy.

[-] caseyweederman@lemmy.ca 11 points 4 days ago

fn executive() {}

this post was submitted on 10 Nov 2024
205 points (92.5% liked)

Programming

17314 readers
75 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS