A library is usually a package of methods and/or objects to be used in another application or program.

learn more… | top users | synonyms (1)

677
votes
117answers
38k views

Most useful free .NET libraries? [closed]

I have used a lot of free .NET libraries, some from Microsoft itself! Which ones have you found the most useful? Mathematics Math.NET Numerics - special functions, linear algebra, probability ...
258
votes
23answers
141k views

A better Java JSON library? [closed]

Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything ...
163
votes
34answers
59k views

Good PHP ORM Library?

Is there a good object-relational-mapping library for PHP? I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the ...
88
votes
13answers
26k views

SVG vs CANVAS, where is the Web World going towards?

I need to pick one of two technologies (svg, canvas) for an ongoing project of mine. I would prefer to pick the technology that is more maintained and in active development rather then choose a ...
70
votes
14answers
28k views

Good Java graph algorithm library? [closed]

Has anyone had good experiences with any Java libraries for Graph algorithms. I've tried JGraph and found it ok, and there are a lot of different ones in google. Are there any that people are actually ...
69
votes
12answers
29k views

Face recognition Library

I'm looking for a free face recognition library for a university project. I'm not looking for face detection. I'm looking for actual recognition. That means finding images that contain specified ...
53
votes
18answers
21k views

What is the best image manipulation library? [closed]

I would love to find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin ...
52
votes
15answers
22k views

When to use dynamic vs. static libraries

When creating a class library in C++, you can choose between dynamic (.dll) and static (.lib) libraries. What is the difference between them and when is it appropriate to use which?
50
votes
40answers
2k views

Why do newbie programmers seem to shy away from libraries?

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 ...
50
votes
46answers
5k views

What is the most useful .net library you've found?

The .net framework comes with a bunch of really useful libraries, but there's always something better out there. What 3rd party libraries have you found that you can't live without now? is it C5? ...
49
votes
23answers
3k views

What modern C++ libraries should be in my toolbox?

I've been out of the C++ game for about 10 years and I want to get back in and start on a commercial app. What libraries are in use these days? User interface (e.g, wxWidgets, Qt) Database General ...
49
votes
8answers
25k views

Best XML parser for Java [closed]

I need to read smallish (few MB at the most, UTF-8 encoded) XML files, rummage around looking at various elements and attributes, perhaps modify a few and write the XML back out again to disk ...
46
votes
14answers
8k views

Looking for a Command Line Argument Parser for .NET [closed]

I'm looking for a command line argument parser, such as "Command line parser" from http://www.sellsbrothers.com/tools/Genghis/ . Features I'm looking for: Auto-generation of usage Should able to ...
44
votes
5answers
4k views

Should I use Java date and time classes or go with a 3rd party library like Joda Time?

I'm creating a web based system which will be used in countries from all over the world. One type of data which must be stored is dates and times. What are the pros and cons of using the Java date ...
43
votes
4answers
5k views

What are the pros and cons of the leading Java HTML parsers?

Searching SO and Google, I've found that there are a few Java HTML parsers which are consistently recommended by various parties. Unfortunately it's hard to find any information on the strengths and ...
43
votes
14answers
43k views

Available iPhone Web Application JavaScript UI Library/Frameworks

I'm starting a web application that will target Mobile Safari on iPhone/iPod Touch. I'm evaluating the available client-side JavaScript/CSS libraries/frameworks that are currently out there. These ...
41
votes
13answers
13k views

What is the most efficient Java Collections library?

What is the most efficient Java Collections library? A few years ago, I did a lot of Java and had the impression back then that trove is the best (most efficient) Java Collections implementation. But ...
40
votes
39answers
4k views

What is your “favourite” Java API annoyance? [closed]

What is your "favorite" API annoyance or missing feature or misengineered part?
40
votes
8answers
37k views

Any open source C# OCR library?

I couldn't get anything out of google, so I ask: Do you know some free open source C# OCR library? edit I need C# option, no coding of wrappers from C++ or similar stuff. the google library's website ...
40
votes
5answers
12k views

What is the best way to remove accents in a python unicode string?

I have a unicode string in python, and I would like to remove all the accents (diacritics). I found on the Web an elegant way to do this in Java: convert the unicode string to its long normalized ...
40
votes
10answers
12k views

Which java YAML library should I use?

There are at least 4 YAML implementations listed at yaml.org. Which one of these (or another) would you recommend, and why? There are two ways you could answer this question, either by voting for ...
40
votes
15answers
8k views

What is the difference between a framework and a library?

What is the difference between a framework and a library? I always thought of a library as a set of objects and functions that is focussed around solving a particular problem or around a specific ...
40
votes
21answers
33k views

Best C/C++ Network Library [closed]

I haven't done work in C/C++ for a little bit and was just wondering what people's favorite cross platform libraries are to use. I'm looking for something that is a good quick and dirty library as ...
38
votes
10answers
33k views

C++: what regex library should I use?

I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.) QUESTION: What ...
37
votes
3answers
4k views

What are the big improvements between guava and apache equivalent libraries?

We currently use apache collections, string utils, etc. I need to decide if we should switch from the apache foundations implementation. The important criteria is ease of developers use. ...
37
votes
30answers
3k views

Does anyone know of a good library for mapping a person's name to his or her sex?

I am looking for a library or database that can provide guesses about whether a person is male or female based on his or her name or nickname. Something like john => "M", mary => "F", alex ...
37
votes
9answers
13k views

PHP YAML Parsers

Does anyone know of a good YAML Parser for PHP? If so, what are the pros and cons of this library? Update: Starting a bounty to get fresh input. What's the status of YAML parsers in 2010? Any new ...
37
votes
14answers
11k views

Integrating POP3 client functionality into a C# application?

I have a web application that requires a server based component to periodically access POP3 email boxes and retrieve emails. The service then needs to process the emails which will involve: ...
37
votes
26answers
5k views

PDF Libraries

Can you guys list available PDF libraries to manipulate PDF files? Is it freeware or open-source? What language(s) it is available for? What is it good for?
35
votes
4answers
13k views

SFTP in Python? (platform independent)

I'm working on a simple tool that transfers files to a hard-coded location with the password also hard-coded. I'm a python novice, but thanks to ftplib, it was easy: import ftplib info= ...
34
votes
17answers
14k views

Performance of Java matrix math libraries?

We are computing something whose runtime is bound by matrix operations. (Some details below if interested.) This experience prompted the following question: Do folk have experience with the ...
34
votes
14answers
14k views

Suggestions for a Cron like scheduler in Python?

I'm looking for a library in Python which will provide at and cron like functionality. I'd quite like have a pure Python solution, rather than relying on tools installed on the box; this way I run on ...
34
votes
17answers
3k views

Storing third-party libraries in source control

Should libraries that the application relies on be stored in source control? One part of me says it should and another part say's no. It feels wrong to add a 20mb library that dwarfs the entire app ...
32
votes
9answers
16k views

Exif manipulation library for python

I'm looking for good exif (Exchangeable image file format) manipulation library for python. I prefer flexibility (e.g., ability to retrieve providers' proprietary tags) than processing speed. What ...
32
votes
6answers
4k views

What is your favorite Python mocking library?

What is your single favorite mocking library for Python?
31
votes
6answers
7k views

Best java twitter library?

The twitter API site lists 3 java twitter libaries. Twitter4j java-twitter jtwitter Do you know others? What are your experiences in support, ease of use, stability, community, etc.
31
votes
6answers
15k views

Free OCR library

Does anyone know of a good free or cheap (under £100/$200) OCR library? It needs to run on Windows and preferably be a .NET library, though a COM interface is fine.
29
votes
9answers
13k views

Python Graph Library

I'm writing a python application that will make heavy use of a graph data structure. Nothing horribly complex, but I'm thinking some sort of graph/graph-algorithms library would help me out. I've ...
28
votes
9answers
13k views

What Java XML library do you recommend (to replace dom4j)?

I'm looking for something like dom4j, but without dom4j's warts, such as bad or missing documentation and seemingly stalled development status. Background: I've been using and advocating dom4j, but ...
27
votes
10answers
20k views

Is there a standard sign function (signum, sgn) in C/C++?

I want a function that returns -1 for negative numbers and +1 for positive numbers. http://en.wikipedia.org/wiki/Sign%5Ffunction It's easy enough to write my own, but it seems like something that ...
26
votes
5answers
3k views

Good crash reporting library in c#

Does anyone know of a good crash reporting library for C#? In C++ there is CrashRpt available, so I'd like something along those lines. Ideally I'd like the library to zip up general information ...
25
votes
7answers
770 views

How should I organize a general-purpose programming library's directory structure?

I've been writing my own general-purpose PHP library for a while and I'm thinking about how to organize the directory structure, but I wanted to get people's ideas before I formalized the directory ...
25
votes
13answers
10k views

PDF parsing library for Android?

I'm looking for a fast PDF library, even commercial is okay. Problem of opensource java PDF renderers that they are based on awt/swing which is not available on Android, so this need to be adopted to ...
25
votes
5answers
3k views

What Markdown c# library should I use?

I want to build a simple cms and I would able to allow the user to input the text with the Markdown syntax (as StackOveflow). There's a c# open sourced library I can use?
25
votes
7answers
15k views

Library Recommendation: C++ HTML Parser

Preferably a light weight HTML parser, not exactly creating a browser or looking to modulate JS or any http connections.
25
votes
2answers
2k views

What is your favorite Delphi mocking library?

I want to start using mock objects on my Delphi projects. After a quick google I've found those: Delphi Mock Wizard PascalMock So my question is what one is your favourite and why?
25
votes
12answers
3k views

Boost Library

Since I have started using this site, I keep hearing about the Boost library. I am wondering what are some of the major benefits of the Boost library (hence why should I use it) and how portable is ...
24
votes
2answers
415 views

Memoization Libraries for C?

For a project I'm working on, there are a number of states where calculations can be relied upon to return the same results (and have no side effects). The obvious solution would be to use ...
24
votes
11answers
1k views

Tips for refactoring a 20K lines library

I've already awarded a 100 point bounty to mario's answer, but might start a second 100 point bounty if I see new good answers coming in. This is why I'm keeping the question open and will not choose ...
24
votes
7answers
1k views

How to design a C / C++ library to be usable in many client languages?

I'm planning to code a library that should be usable by a large number of people in on a wide spectrum of platforms. What do I have to consider to design it right? To make this questions more ...

1 2 3 4 5 103