this post was submitted on 06 Oct 2023
-17 points (33.3% liked)

Rust Lang

709 readers
1 users here now

Rules [Developing]

Observe our code of conduct

Constructive criticism only

No endless relitigation

No low-effort content

No memes or image macros

No NSFW Content

founded 1 year ago
MODERATORS
 

JFC. When will open source projects like @rustlang learn that putting toxic people like this in positions of ANY authority is unacceptable. https://github.com/marshallpierce/rust-base64/issues/213 . He's showing you who he is, and you're not listening.

top 11 comments
sorted by: hot top controversial new old
[–] [email protected] 21 points 1 year ago

How is the Rust team responsible for some random GitHub dude having a strong opinion? Literally anyone can make a repo on GitHub and be a jerk.

[–] [email protected] 12 points 1 year ago

I'm confused. What makes you think they have been put in a position of authority? Anyone can simply create a fork, or a separate project completely, and go a different direction. You're not obligated to use any third party crate.

I do agree that they handled that interaction pretty poorly, though.

[–] [email protected] 7 points 1 year ago

JFC. When will people learn that there will be toxic people in ANY community of sufficient size.

Also, as far as I know this crate isn't official in any capacity. Not to mention that base64 isn't terribly complicated if you don't like this crate (https://en.m.wikipedia.org/wiki/Base64)

This post just sounds like trolling.

[–] colonial 6 points 1 year ago* (last edited 1 year ago)

... Why are you digging up random drama from nearly a year ago?

Also, this guy isn't affiliated with the Rust team AFAIK. And even if he was, this is his crate, not rustc - he can do whatever he wants with it, and you can fork it if you disagree.

Edit:

> Account created 11 months ago

> This is its only interaction

Seems legit.

[–] [email protected] 4 points 1 year ago (1 children)

I want to learn Rust so I can better enjoy the drama surrounding it.

[–] [email protected] 3 points 1 year ago

I was thinking the same thing when I was trying to use the new base64 code instead of the deprecated version: it's unnecessarily complicated. I remember thinking "why is this so hard, so convoluted?".

[–] lwuy9v5 2 points 1 year ago (1 children)

Any good forks yet? Open-source is great at solving problems when you can move on from assholes...

[–] cspiegel 1 points 11 months ago

simple-base64. It works the way you'd expect:

use simple_base64 as base64;

...

let decoded = base64::decode("YmFzZTY0")?;