this post was submitted on 17 Dec 2025
512 points (96.2% liked)

Programmer Humor

30013 readers
2147 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
[–] victorz@lemmy.world 8 points 2 months ago (2 children)

Did they change it after the acquisition? Or is python why it's still so freaking slow?

[–] boonhet@sopuli.xyz 8 points 2 months ago (2 children)

Lol @ YouTube being slow

Look at the amount of data that goes through their servers every millisecond. It's ridiculous. All things considered, YouTube is lightning fast.

Maybe the UI isn't as snappy as it could be, but the blame there lies solely on throwing more and more javascript at it to add "features" that end users don't really want.

[–] victorz@lemmy.world 3 points 2 months ago

Aaand artificially slowing down video loading by several seconds, last but not least.

[–] CheesyFox@lemmy.sdf.org 2 points 2 months ago (1 children)

is it tho? Or youtub is just profitable enough to neglect the compute overhead cost?

[–] BuboScandiacus@mander.xyz 1 points 2 months ago

YouTube is surprisingly not very profitable

[–] sping@lemmy.sdf.org 6 points 2 months ago* (last edited 2 months ago) (1 children)

Things is you don't crunch numbers in Python code, you do that in libraries called from Python.

It's a few statements of orchestration and any heavy lifting is encapsulated compiled code.

You don't do tight loops on Python, or if you do you're using it wrong.

[–] victorz@lemmy.world 1 points 2 months ago

This was mostly tongue in cheek, probably not very clear 😅

But yeah, fully agree with you.