vote up 7 vote down star
2

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!

flag
8  
Commonly known as libraryphobia, the fear of libraries. – Alex Aug 27 at 23:46

25 Answers

vote up 33 vote down check

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.

link|flag
5  
Well put, in my view. – Noldorin Aug 28 at 0:12
I disagree! Those who can achieve that stage are good developers; most won't. So you would see senior developers whose "are still working at a very low level of abstraction". – Ngu Soon Hui Aug 28 at 1:10
Sure, there are times where your senior guys are working at a low level... but those are the times where its worth their time to the business. Also, by Senior Developer, I don't mean people have been programming for a long time... – Nader Shirazie Aug 28 at 1:55
vote up 11 vote down

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.)

link|flag
I shudder at the thought of teaching C++ without assorted STL features. Without things like vector<> and auto_ptr<>, C++ is no safer to work with than C. – David Thornley Sep 2 at 14:04
1  
LESS safe, I'd say, since it made so much less sense. Discovering the STL was mind-blowing. I've never been so happy to throw away hundreds of lines of custom code in my life. ("I didn't have to write my own hashtable? EXCELLENT! etc.") – Electrons_Ahoy Sep 2 at 17:55
vote up 10 vote down

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.

link|flag
1  
+1, no it isnt rare, but you are right(teachers are good example) – Cleiton Aug 28 at 0:46
great point, plus if you use library ur teacher should learn it also to understand ur code. teachers are not into learning new things, because they already know everything. – 01 Sep 2 at 13:12
vote up 9 vote down

It's the learning curve.

link|flag
vote up 7 vote down

Some people, when confronted with a problem, think “I know, I'll use a library.” Now they have two problems.

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).

link|flag
vote up 6 vote down

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.

link|flag
A cursory glance at (some) of the Boost library documentation illustrates your first paragraph well. – sheepsimulator Aug 27 at 23:56
vote up 5 vote down

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.

link|flag
vote up 4 vote down

More libraries = less billable hours.

link|flag
1  
That's a very short-sighted vision, but it may hold true for less-experienced programmers. In truth what you should do is get past the re-inventing the wheel bit as soon as possible in order to provide true business value to your client (and they DO notice). – Esti Aug 29 at 3:49
vote up 3 vote down

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.

link|flag
You learn to use libraries, which is a valuable thing in itself. Nor is the problem that people don't know about libraries, but that they refuse to use them. – David Thornley Sep 2 at 14:05
Learning libraries is not all that useful for a beginner. – Ed Swangren Sep 2 at 17:08
vote up 3 vote down

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.

link|flag
vote up 3 vote down

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.

link|flag
1  
Same thing here – computergeek6 Aug 28 at 1:41
vote up 2 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
Adding library code increases complexity less than writing one's own - for every other person that will ever touch the code. Only obnoxious prima donnas and newbies that don't know better yet will avoid libraries for that reason. – David Thornley Sep 2 at 14:07
I dare to partly disagree. If it's a small library doing exactly what you want and nothing more, you are totally right, but bigger libraries do add complexity and their contents are out of your control if you don't invest time reading their source code. If you only need a single feature it might indeed be the better choice to code it yourself instead of adding the code and complexity of a whole library. Regarding code quality, adding an established library to do the job might be better than tinkering on your own - especially if you're a newbie. – Kage Sep 3 at 10:24
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
1  
A well-implemented library is likely faster than whatever code an inexperienced person is going to write. It is almost certainly more robust and has fewer bugs, and I don't think giving those up for the possibility of a little more speed is a good principle. – David Thornley Sep 2 at 14:13
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Some open source libraries are buggy or not as efficient as others.

link|flag
vote up 1 vote down

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".

link|flag
vote up 0 vote down

Because it's fun.

link|flag
vote up 0 vote down

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...

link|flag
2  
I'm pretty sure it's almost never as difficult to learn how to use a library as to write it yourself - it just seems like that when you start out because you're not aware of all the aspects of the problem, and because programmers always underestimate debugging. – Michael Borgwardt Aug 28 at 10:13
vote up 0 vote down
  • newbie programmers not only means guys who just started learning programming, there are cases include people just started learning new lanugages..

    • learning curve is acceptably the most preferred one, apart from that, people learning new language often doesnt have that luxury to go to the frameworks suggested.

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

link|flag
vote up 0 vote down

I think more fundamental issues can be recognized as a deterrant to using existing libraries.

  1. Part of this as "newbie programmers" is a lack of exposure to libraries. If you don't know they exist, how do you know to use them?
  2. Number Of Options Available. Let's say I'm really interested in learning more about MVC, but if I have to choose between cakephp and smarty and zend and ... well you can quickly see the gears work to discover a way to achieve the goal without investing the time experimenting. Take a look at Freshmeat or SourceForge to get a better understanding at the daunting selection of libraries available.
  3. Questionable support combined with sketchy/outdated documentation for the libraries. Do I want to use this tool that may no longer work or may be abandoned in the future? It is likely that a project will evolve, and so it will for the project of a library too. Will its usefulness last the lifetime of my project or will I be required to re-do this work again?
link|flag
vote up -1 vote down

I've read somewhere:

"You shouldn't use a library that you are not able to fix".

I am trying to stick to that.

link|flag
3  
Yet you use compilers which you can't usually fix on your own. The compilers make you more productive than working in assembler. – DanM Aug 28 at 1:49
Being able to fix a library makes you understand it. If you understand it, it would be more difficult to misuse it. btw, Who's talking about compilers? – Macarse Aug 30 at 11:54
I see you either are a supergenius, or haven't worked with some libraries. The computational geometry libraries we use are in general beyond my ability to fix, but they're far beyond my ability to reproduce in any vaguely reasonable time frame. Either I use libraries I can't fix, or I find another job. – David Thornley Sep 2 at 14:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.