and then you end up spending more time getting that library to work than if you coded it yourself. classic
@ivaniliev2272Күн бұрын
What kind of library. Because good luck replacing complex 3d libraries like open cascade or VTK with something written on your own.
@waschbar550910 сағат бұрын
@@ivaniliev2272npm package is_even , is_odd, ...
@bitonic5892 күн бұрын
I code my own things even when I can use a library for multiple reasons: 1. Fun 2. I usually only need one function from that library, and I can usually code that one function better than the library did 3. I can trust the code 4. It will take up less space and make my code readable
@TheEmolano3 сағат бұрын
Two is usually false. The library a lot of times will be faster since their code will be optimized. Sometimes they even use faster languages in critical points (Python libraries using C++, C++ libraries using assembly). The rest of the points are very valid.
@bitonic5893 сағат бұрын
@@TheEmolano By libraries I don't mean things built-in to the language, I just mean libraries made by other people, such as CryptoJS for one example
@AndrewGaming587YT20 сағат бұрын
That’s why I use my own libraries.
@NI-ko5ktКүн бұрын
My first professor never let us use the libraries for the first fundamental classes. He'd have us figure out everything on our own, and I am immensely grateful to him for it.
@mousesunset3 күн бұрын
"What this function do" "What that thing do" "Damn, this shit is a bloatware"
@Tayoky2 күн бұрын
solution use only library that have one function
@sweatshirt49742 күн бұрын
Surprise: the function in question is 10,000 lines long.
@CxmplexeКүн бұрын
the hard part is getting half of the library to work properly.
@Manny732112 күн бұрын
It just ends up looking unintuitive when you can write the exact same function, just a bit more verbosely and have it so intuitive to you and most of your friends
@the.hehe2Күн бұрын
And then you go into node_modules and somehow manage to successfully fix it 😭
@yeysoncano2002Күн бұрын
When you install a heavy library for a single functionality
@Jackflack-fj8wmКүн бұрын
I think of libaries and frameworks more as complex tools than actual coding
@lunarology9158Күн бұрын
Bruh i swear using a repo or copy of any program for anything sucks cuz you also get the mistakes
@evancleary33152 күн бұрын
Libraries also add dependencies
@ViewportPlaythrough2 күн бұрын
if all you need is to have the code running, its ok if you didnt write the code. whats wrong with it is not understanding how that library works then trying to disect a bug not knowing that its a limitation of that library. also, on big teams, there are times that you have to use libraries and functions that others inside that team have made. you have to be flexible for that. thats why proper documentation is important.
@BlueBrawler02 күн бұрын
Nose bubble like a cartoon.
@llIl1llll3 күн бұрын
Nothing in my project...😪
@CodeVenture73 күн бұрын
:/
@nazgeellКүн бұрын
Do you know what else is MASSIVE?
@watnou3462 күн бұрын
Explain to noobs please.
@Pxlarizar2 күн бұрын
Libraries are external heaps of functions that you don’t have to write. By importing or using a library, you can call functions from that library and it’s less annoying than writing out functions for everything, however importing a library is also clunky and you don’t know how everything works (I think, I don’t really get this one.)
@FFKUNAL5449WКүн бұрын
Well this is like you are going to code for calculator but someone already written it's functions like add,subtract,etccc,and you only have to take input and pass values that take less time but compiling code with library creates error many time and you also don't know how that method or function because what is logic inside you only know output.