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!
|
2
|
|||||
|
|
|
A lot of new programmers are still working at a very low level of abstraction, learning the trade. That's something everyone has to go through. It takes a while to "move up the stack" so to speak. Once programmers realise that they spend most of hte time solving the same problems as someone else already did, and the goal is to realise "business value", then they can really appreciate the value a good library brings. |
||||||||
|
|
|
When you're still learning the ins and outs of a new language, also having to learn how to use a 3rd party library can look like too much work. Also, libraries tend to be badly documented - or at least have documentation that seems totally opaque to a new(er) programmer. So, faced with trying to solve problem X, saying "use a library" can sound a lot like "solve problem Y THEN problem x". (Also, their professors told them not to. I managed to get all the way though my undergrad in C++ without learning the STL existed. Boy, did THAT cook my noodle.) |
||||||
|
|
|
Almost always it's because their professor has told them that they can't. Sometimes it's just because they want to learn it themselves, but I'd say that's rare. |
|||
|
|
It's the learning curve. |
|||
|
|
|
|
Seriously - this is a reasonable way for a newbie, already overwhelmed by new language, programming environment, paradigms, keystrokes, etc. to react to the suggestion to use a library. If you've got a solution, but it's not working, there are many potential sources of error; sorting through them is a challenge. Adding to them can seem irrational. "Use a library" means find the library, download it, install it in your project, and call the necessary function. Not hard, if you're used to it (and there aren't corporate policies against it, and you have reason to trust the vendor, and the library itself has minimal dependencies, etc.). But if it's all new to you, when you ask a programming question and get back a system configuration answer, it can seem unhelpful (even if it is not, in fact). |
|||
|
|
|
|
For many poorly documented libraries that are either implemented loosely or in languages that don't allow you to control containment and visibility very well, it can be quite difficult to guess just how the library is supposed to be used. After you've used it for a while, you've gotten used to the quirks or read other source code that taught you the right way; but until then it can be pretty irritating to use a poorly put-together/designed library. (or even a well designed one that isn't terribly well documented). If you don't have the source code to the library, that's another problem--you have no control over the ability to keep your program working. This is much more rare these days, but still happens in the case of a purchased library. |
|||
|
|
|
I always have this urge to do it myself, but sometimes I can see my own limitations. Just recently downloaded a library to create PDF documents, but thats pretty much the only time I can remember. At least for me, (trying to) do things myself, is my way of learning. My impression is that many newbie programmers wouldn't consider it their own work if they were to use someone elses libraries. |
|||
|
|
|
|
More libraries = less billable hours. |
||||
|
|
|
I don't think that this is necessarily a bad thing. Using libraries is great; it saves time, effort, bugs, etc. However, you learn very little in the process, and for new programmers, learning is the goal. To answer the question, I think that they tend to shy way from libraries simply because they are not used to using them and perhaps they don't know that they exist. |
||||
|
|
|
I think there's a lot of time that needs to be invested in understanding the library's purpose - yes, a learning curve, but it's more that newbie programmers probably don't know what they need until they have a lot more experience. |
|||
|
|
|
|
I remember shying away from several libraries simply because I wanted to see if I could create my own algorithm. I didn't want to just give up and let someone do the work for me but rather I wanted to learn from my mistakes. Once I had come up with a solution I was happy with, I looked into the libraries. So for me it was simply wanting to see if I could do it. |
||||
|
|
|
Most of the points covered off (for me the main one is the learning curve) but one other I think plays a part: Because learning about a library is less exciting than coding the same functionality yourself. |
|||
|
|
|
|
In my eyes another factor is that additional libraries add complexity. Programs tend to get harder to understand, harder to maintain and buggier when getting more complex. I think what makes especially new programmers shy away from libraries is that adding library code increases complexity more than adding your own code - simply because understanding how the library works is still out of their grasp. So it seems to be a problem of both skill and psychology. |
||||
|
|
|
I think the professors want them to stick to the basics. When I graduated from under-grad school, I knew C++, Java and some other languages but had no clue about libraries and frameworks being used in companies. It was like do you know java..yes..can you write a servlet..no. |
|||
|
|
|
|
Because part of maturing as a developer is learning to quickly identify problems which can be solved by a library or existing solution and which need personal attention. |
|||
|
|
|
|
For speed demons they rarely use 3rd party libraries and new programmers are usually looking to squeeze every once of speed of of their code. I think if they don't have control over their code they can't get the performance that they are looking for. At least thats why i avoided libraries when I first started to program. I remember programing my first DAL and avoided all the other free libraries out on the web because I wanted my code to perform at top speed. Later, I discovered that usually its not the code thats the bttleneck its actually the database. |
||||
|
|
|
I'm a programmer, not a psychologist! :) It was a long, long time ago for me, bu it was because I wanted to learn and experience. I didn't want to use something I did not understand, so if I didn't think I understood the library and could program it myself, I tried not to use it. There might have been a bit of fear too, programming gives you a feeling of control, using a library is like giving away this control. |
|||
|
|
|
|
When you're trying to learn how to do things, anytime something is accomplished "magically" by calling AwesomeClass.doAwesomeStuff(), you end up giving away a portion of control. When you are "new" and don't know what you're giving away or why it can be unsettling. This was my primary knock against Rails when I was first learning it. So many things just "worked" and I didn't know why without digging through lots of Rails source (which I generally didn't have time to do). At least, that's my take on it. |
|||
|
|
|
|
Some open source libraries are buggy or not as efficient as others. |
|||
|
|
|
|
Libraries often come with the overhead of learning some API and it's paradigm. It can get complex fairly quickly, and I could easily understand that beginners would prefer something a bit more in their comfort zone. From my experience, I found most libraries & frameworks seem to do a great job abstracting some tedious routine, but when I need to either extend this functionality, or use it in a way that's not intended, it can be a handful. I think it's one of those things where "practice makes perfect". |
|||
|
|
|
|
Because it's fun. |
|||
|
|
|
|
The same reason that more experienced developers do - Because it can often be as difficult to learn how to use a library as to write the part of it you need yourself. And at least then you can understand how it works when it doesn't do what you expect. An experienced developer just has experience at understanding how to use libraries so more likely to consider it. An inexperienced developer it's one more thing to learn... |
||||
|
|
|
Its not always easy to compormise 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 its already been implemented in frameworks like JQuery and prototype and you can easily reuse them.. Cheers Ramesh Vel |
|||
|
|
|
|
I think more fundamental issues can be recognized as a deterrant to using existing libraries.
|
|||
|
|
|
|
I've read somewhere:
I am trying to stick to that. |
||||||||
|
