this post was submitted on 13 Aug 2025
525 points (98.0% liked)

Programmer Humor

25671 readers
1980 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Jestzer@lemmy.world 20 points 1 day ago* (last edited 1 day ago) (2 children)

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.

[–] CeeBee_Eh@lemmy.world 8 points 1 day ago

I love little mistakes like that

[–] CsJ5NPkuvE@lemmy.zip 6 points 22 hours ago

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 = 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 } }) }