Tagged Questions

51
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 ...
38
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?
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 ...
23
votes
13answers
7k views

How can I measure the similarity between two images?

I would like to compare a screenshot of one application (could be a Web page) with a previously taken screenshot to determine whether the application is displaying itself correctly. I don't want an ...
14
votes
22answers
5k views

GUI Programming APIs

Alright, this is a rather odd question that doesn't have one true answer: What is the * Best || Easiest to Use || Most Powerful || Cleanest * GUI API or library (tk, SWING, Qt, etc.) you have ...
12
votes
9answers
443 views

Library/data structure for handling huge data

I have some huge binary driver logs (around 2-5GB each, and probably around 10x as much after converting them to a readable form) and I need to write a tool that would allow me to sequentially browse, ...
10
votes
14answers
624 views

latest programming tools under construction?

This site has been great for me to learn what's out there for programming tools and libraries. I'm wondering what are some promising tools/libraries/algorithms -- in any areas of programming or ...
9
votes
3answers
2k views

What is a good network graph library for language X?

I have noticed that a recurring question is: “What is a good network graph library for language X”. I have played with quite a few of the libraries and I can share my experiences with you. Python: ...
8
votes
4answers
219 views

Starting a personal reuasable code repository

I've been meaning to start a library of reusable code snippets for a while and never seem to get round to it. At the moment I just tend to have some transient classes/files that I drag out of old ...
8
votes
7answers
476 views

What does “Core” mean in the Context of Library Design?

I often see other developers naming libraries with "CORE". What does it actually mean?
6
votes
2answers
259 views

How do language bindings work?

How do language bindings work? For instance how would one make bindings from a library written in one language to another language? Would the bindings be written in the same language as the library ...
6
votes
5answers
2k views

What is a language binding?

My good friend, Wikipedia, didn't give me a very good response to that question. So: What are language bindings? How do they work? Specifically accessing functions from code written in language X ...
5
votes
1answer
137 views

How do they write different language wrappers for same library?

Generally a library will be released in a single language (for example C). If the library tuns out to be useful then many language wrappers for that library will be written. How exactly do they do it? ...
5
votes
8answers
724 views

Image processing libraries

I recently came back to image processing. Most of what I used previously was Matlab. I'd like to switch to a more convenient and open language. After having used Python library PIL and bitterly ...
5
votes
8answers
183 views

How do you let others trust your code and use it?

I write hobby code from time to time. The thing is these tools, classes or tiny libraries of code end up in a flash stick with hopeless future! I would love to develop my projects further, and let ...
3
votes
2answers
66 views

“Convenience” Functions

Several parts of my library come with "convenience" functions. For example, a container class might have a function to parse information from a string. These functions are not necessarily needed (or ...
3
votes
2answers
51 views

Sound related libraries [closed]

I'm getting into programming for audio and sound and I thought a list of open-source libraries that add audio related functionality would be nice to have, even as a learning resource for us newbies to ...
3
votes
8answers
345 views

Is it bad practice to use the system() function when library functions could be used instead? Why?

Say there is some functionality needed for an application under development which could be achieved by making a system call to either a command line program or utilizing a library. Assuming efficiency ...
2
votes
3answers
134 views

When, why and how to use wrappers?

I'm talking about wrappers for third-party libraries. Until recently I was trying to provide a general enough wrapper so I could easily switch libraries if needed. This however proved to be nearly ...
2
votes
1answer
85 views

Moving on from Hello world style simple programs to big / real world projects : A guide to real world projects

Somebody please re-tag with appropriate tags Hello, This is my story but I guess it holds true for all programmers. We begin programming with some simple Hello World program. We practice & add ...
2
votes
14answers
379 views

What are your criteria for choosing a framework or library?

In general, how do you choose a framework or library to use in your application? Does it have to be open source? Does it have to be commercial? Does it have to be actively developed, ...
1
vote
2answers
108 views

PHP/Python/C/C++ library/application to match/correct/give suggestions to input

I'd like to have a simple & lightweight library/application in PHP/Python/C/C++ library/application to match/correct/give suggestions to input. Example in/out: Input: Webdevelopment ==> Output: ...
1
vote
4answers
92 views

Library for Creating Animated Presentations

Is there any library for creating animated presentations? Although the question is language-agnostic, I'm specifically biased towards WPF, yet I wouldn't mind you giving examples of libraries for any ...
1
vote
4answers
116 views

Linking and file size

I'm a complete beginner, and this is how I understand linking: Static linking copies only the code that is actually used into the executable. Dynamic linking uses .dlls that may contain a lot of code ...
1
vote
4answers
361 views

Interesting uses of fluent interfaces?

I am wondering where and when fluent interfaces are a good idea, so I am looking for examples. So far I have found only 3 useful cases, e.g. Ruby's collections, like unique_words = ...
0
votes
1answer
78 views

Options for CD burning libraries?

I'm looking to create a program that will burn an audio CD. Before diving in I was hoping to see a selection of libraries that will make writing the code to burn the audio easy to write. I don't care ...