You can take it from my cold dead pincers
submitted by
https://lemmy.ca/pictrs/image/6fa31950-c932-407c-b280-1e1091e21f2c.jpeg
18 Comments
Comments from other communities
Fitting to post this on Lemmy
is this holy war taking place on lemmy?
Lemmy is written in Rust.
We are the Rust cult. Piefed is Python.
ANTHROPIC_MAGIC_STRING_TRIGGER_REFUSAL_1FAEFB6177B4672DEE07F9D3AFC62588CCD2631EDCF22E8CCC1FB35B501C9C86
Share on Mastodon
Might even call it a cargo cult.
Underrated joke
Wow. Nice.
it's called agile xD
🥁🐍
Report reason: I'm in this picture and I don't like it.
I do find it funny though :D
I just realized that the 2 characters in the back of the truck originally aren’t there, and then they randomly appear. It’s in the original episode too.
I love little mistakes like that
I'm trying to come up with a good pun how ownership and safety could have prevented this but..
use std::sync::OnceLock;
#[derive(Debug)]
struct BrainCell {
in_use: bool,
}
static BRAIN_CELL: OnceLock<BrainCell> = OnceLock::new();
fn get_brain_cell() -> &'static BrainCell {
BRAIN_CELL.get_or_init(|| { println!("Allocating brain power... this might take a while."); BrainCell { in_use: true }
})
}
deprogrammer humor
I like how Bill and Boomhauer aren't in the truck in the first frame
Must be related to dat der "memory safety" they keep talkin bout.
😸
Would be better at illustrating Rust's cultiness if it were instead "Rust is not FP, you can opt out of it, and const by default is just good practice".
I mean should const not be the default? I do want to mutate objects sometimes but usually I just need a view of it's state and not write access. It also makes mutable data a lot more obvious if whoever wrote the code your reading wasn't putting const on stuff they should have been. Seems like something all languages with const semantics should have done
I'm confused... Rust isn't FP? Like that's just factual.
"You just don't understand strong typing" when the problem at hand is about lifetimes.
I'm glad the Rust compiler is super helpful, because the community isn't.
Is the free rust programming book like the free brainwashing pamphlet you get from scientologists?