@[email protected] to Programmer [email protected] • 1 month agoWhy indeedlemmy.mlimagemessage-square207fedilinkarrow-up11.55Karrow-down126cross-posted to: [email protected]
arrow-up11.52Karrow-down1imageWhy indeedlemmy.ml@[email protected] to Programmer [email protected] • 1 month agomessage-square207fedilinkcross-posted to: [email protected]
minus-square@[email protected]linkfedilinkEnglish21•1 month agoSome devs will include a whole library for one thing instead of trying to learn another way to do that thing.
minus-squarechraebslilinkfedilink13•1 month agoA whole library which was meant to to 10 things, but you only use one. And that for x libraries
minus-square@[email protected]linkfedilinkEnglish7•1 month agoNowadays libraries are built with tree-shaking in mind, so when it’s time to deploy the app only the code that’s actually used gets bundled.
Some devs will include a whole library for one thing instead of trying to learn another way to do that thing.
from * import *
A whole library which was meant to to 10 things, but you only use one. And that for x libraries
Nowadays libraries are built with tree-shaking in mind, so when it’s time to deploy the app only the code that’s actually used gets bundled.