this post was submitted on 11 Aug 2025
563 points (98.6% liked)

Programmer Humor

25699 readers
1233 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
[–] kautau@lemmy.world 7 points 3 days ago

Lol yeah working in enterprise software for a long time, it's more like:

  1. Import what you think you need, let the CI do a security audit, and your senior engineers to berate you if you import a huge unnecessary library where you only need one thing
  2. Tree shake everything during the CI build so really the only code that gets built for production is what is being used
  3. Consistently audit imports for security flaws and address them immediately (again, a CI tool)
  4. CI

Basically just have a really good set of teams working on CI in addition to the backend/frontend/ux/security/infrastructure/ whatever else teams you have