I've noticed many questions on here from new programmers that can be solved using libraries. When a library is suggested, often times they respond "I don't want to use X library" Is it the learning curve? or ? Just curious!
|
|
I consider myself a mid-level programmer, mostly self-taught, almost exclusively working on my own. I've started to use libraries, but fairly recently. A major barrier to this was a lack of understanding of different design patterns - or even of the concept. I would determine an approach to solving the problem my own way, starting coding along the way. If I did look at a library, I would often think "Hey, that looks handy, but it won't fit my design." It took a fair bit of reading and experience trying to apply new ideas to realize two things:
|
||||
|
|
|
Maybe I'm still a beginner, I sometimes still avoid using certain libraries. Some libraries introduces too many abstractions, forcing you to put in more effort to get around it or forcing you to do things in a certain way and I think that's bad. When I'm doing Javascript I'm used to not relying on any libraries. I do, however, copy and paste bits and pieces of code from them and construct my own "mini" commonly-used functions. One of my argument is because some libraries introduces too much "bulk" making web pages load slower. However when doing C/C++ I tend to not afraid of using libraries. But still, when having a choice between a leaner, smaller library to a huge complex library that does almost the same thing, I would choose the former. |
||||
|
|
It's not always easy to compromise your managers to go ahead with the new framework. It requires lot of testing and have to study how this should fit in to your needs. See my case, I am basically a c# programmer and started learning javascript for my work. Some time ago here in stack I have asked a question about the javascript puplisher/subscriber pattern. Most guys responded telling me it's already been implemented in frameworks like JQuery and prototype and you can easily reuse them. |
||||
|
|
|
I'm not entirely a newbie programmer, but a lot of times I like to implement something myself first, so I understand at least one way of how it works. Then when I have to use it for client work I would go ahead and use a library's implementation of whatever needs to be done. |
|||||
|
|
I'm probably close enough to a new programmer to be able to comment, and personally at least, I have to say I don't like using libraries because I'd rather get the experience doing it myself for now. I'm not doing anything to a schedule, so the time's not a problem. I'll use libraries when I know I understand an area completely, and can't get anything out of using someone else's code. |
||||
|
|
|
Well, as perhaps the most 'newbie' person to respond, I can answer what my hesitation is...I'm trying to learn the very basics of programming, and so I feel like even though I "can" use a library, I feel like I need to still have a better understanding before I can even dive into those. I'm not sure if that makes sense, but imagine that a library is...well...like a physical library. It is full of information and anything I can want to learn is easy to find...right? But if you don't yet know how to read-or more accurately-comprehend the sentences you are reading, then a library is useless. I'm still learning how to read. :-D |
||||
|
|
|
Some newbies feel that if they use libraries they'd be missing on some kind of fun. They have this IWIIOMO (I-want-to-implement-it-on-my-own) syndrome. |
||||
|
|
|
I'd say they find them sort of intimidating. And if they're new to a language diving into more libraries may seem like bitting off more than they can chew. Not to mention more steps involved in getting the environment to work with the library. D: And from my education experience, (assuming most of these newbies are students) they really don't get much exposure to them. I sure didn't (while in the classroom). :/ |
||||
|
|
|
A few potential reasons (as a newbie):
|
||||
|
|
|
Believe it or not, when I was doing college I'd made my own libraries in C++. Yea that is right. I'd made this myself. It had include many different types that DOS C++ did not support or it was supported by some third party Header files. Why I did? The same question was asked by my teacher and I'd to tell him that look I want to know the basic, I want to learn the basic, I want to build my ground. If I use someone else code I will not be able to understand the thing going on.. the cycle the love the geeky. I cannot be geeky when I like to type my key board faster or If I don't want to sit for 12 hrs our mores. He was quite impressed and I was impressed too. I know things by doing it. That was the beginning of when I started writing of my own. What I do now? Well libraries are good. We must used it. However, one must not compare and try to use from the school age. They are good for business but probably not good for individual! How would you define that if you don't know the basic of HTML and you can manipulate Html tags without some editor? So I suppose Library should be used for learners, and I will count junior program, less than 1-2 years to re face their through libraries and see the magic. |
||||
|
|