this post was submitted on 10 Mar 2026
174 points (97.8% liked)

Programmer Humor

41350 readers
15 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 6 years ago
MODERATORS
 

idk if it is serious or not, but it is what I saw in indeed newsletter today.

you are viewing a single comment's thread
view the rest of the comments
[–] saltnotsugar@lemmy.world 41 points 3 days ago (2 children)

I need to hire someone to take this functional 15 lines code, and like make it 200 lines of unusable madness.

[–] tracyspcy@lemmy.ml 23 points 3 days ago

But fast! Very fast

[–] MangoCats@feddit.it 5 points 2 days ago (1 children)

Oh, man, I don't know how much is Claude's fault and how much is just the way the world has moved, but I coded a hobby project in C a bit over 20 years ago, brought in one library to render the graphics as .jpg files and the whole thing was like 300 lines of code.

Claude "modernized" it for me, and yeah, it shows on a browser as a PWA and it's working correctly (this time, via Opus 4.6 - first time I tried with Sonnet 4.0 it couldn't even make it work correcty) - but daaaaammn, there's like 454 files in deps, 1.4GB in the rust target folder - maybe it's just a rust thing?

[–] ferric_carcinization@lemmy.ml 2 points 2 days ago

Rust & cargo do more than just compile. For example, it basically has buit-in ccache.

It is also easier to split large libraries into multiple crates, though an average project still uses more libraries than an equivalent C project. I wouldn't be surprised if the "AI" also pulled in more libraries than needed, or has unnecessary library features enabled. I'm pretty sure that a cargo plugin for pruning unused libraries was featured on the rust blog, as a featured third-party plugin for a cargo release.