Questions tagged [libraries]

Use this tag for questions about software libraries. This tag is NOT for questions about computer programs used in public lending libraries or other brick-and-mortar libraries. Questions asking us to recommend or find a library are off-topic.

A library is a collection of non-volatile resources used by programs on a computer, often to develop software.

Libraries contain code and data that provide services to independent programs. This encourages the sharing and changing of code and data in a modular fashion, and eases the distribution of the code and data. Library files are not executable programs. They are either static libraries that are merged with an executable when the executable is being compiled and linked, making them "statically linked", or they are dynamic libraries that are loaded by a dynamic linker while the executable is running, making them "dynamically linked". The dynamic linker may also allow an application to explicitly request that a module be loaded and to obtain references to routines in the module; this can be used to implement plug-ins.

The above was taken from the Wikipedia entry Library (computing).


Questions asking us to recommend or find a library, documentation or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam.

3395 questions
1
vote
1 answer

Which library to use for cryptographic functions

Note: this is not asking for a personal viewpoint on what is the better library, but rather what is the "safest" library or what is a good indication of a "safe" library. I was looking for a Haskell library with AES256 encryption/decryption…
NatureShade
  • 2,187
  • 1
  • 19
  • 27
1
vote
1 answer

Import Pandas from a path

I created a program to filter out rows of data that have empty cells, however, the people that will be using this program do not have any libraries installed, they only have Python 2.7. Is there a way to import Pandas via a path from a network…
Citut
  • 847
  • 2
  • 10
  • 25
1
vote
0 answers

Override library class called by a library in Java

I call myConnection.open() from my MainActivity. myConnection is an object of the library class Connection: public class Connection implements SomeOtherLibraryClass { ... } providing the function public void open(){ this.mCurrentConnection =…
F1iX
  • 823
  • 6
  • 12
1
vote
1 answer

Libraries/Tools for Website Parsing

I would like to start working with parsing large numbers of raw HTML pages into semantic data structures. Just interested in the community opinion on various available tools for such a task, particularly various useful libraries in any language. So…
Kevin
  • 31
  • 2
1
vote
1 answer

Nuget package is not finding and/or using System.Security.Cryptography

I'm writing some nuget packages for personal development, and I'm having a few issues with dependencies. I'm writing a security package and I need System.Security.Cryptography, and I can add a using statement fine (when the navigation bar is on…
TechnicalTophat
  • 1,655
  • 1
  • 15
  • 37
1
vote
3 answers

Eclipse add external jars doesn't work to add them as Referenced libraries

I'm currently doing this tutorial on Hibernate over here http://www.javatpoint.com/example-to-create-hibernate-application-in-eclipse-ide and I downloaded the hibernate.zip and oracle.jar files, tried to add them to the project through right…
Robert Ruxandrescu
  • 627
  • 2
  • 10
  • 22
1
vote
1 answer

Need Help Understanding Linphone SDK Libraries for iOS

I need a suggestion. I've had several instances in which I built the Linphone SDK with nearly everything enabled and ended up with missing libraries after compiling the SDK. No messages are standing out as a red flag. For example: executing this…
Coach Roebuck
  • 904
  • 2
  • 12
  • 20
1
vote
1 answer

Migrate from Eclipse to Android Studio import libraries

I'm trying to migrate an Android project developed with Eclipse ADT to Android Studio. I've already read the instructions mentioned here http://developer.android.com/sdk/installing/migrate.html and it works fine! Gradle builds a new android project…
1
vote
1 answer

WebSphere 7 Shared libraries at deploy

I use WebSphere 7 and I've set shared libraries as described in this example http://www-10.lotus.com/ldd/portalwiki.nsf/dx/06062009015816PMWEBP3Y.htm My application is running with this setting, but I can't deploy it (update). At deploy it can't…
tewe
  • 2,707
  • 3
  • 22
  • 18
1
vote
1 answer

windows.h library on Android

I wanted to make an application for android and I need to use Sleep() but windows.h library doesn't work with android, sa how can I use waiting time on Android ? (using Qt c++) Please answer me exactly what I must to do and where in code, in which…
4C554B41 504C
  • 73
  • 3
  • 10
1
vote
1 answer

ImportError in the console, but import is working in PyCharm

I have a programm which imports the request module like this: import urllib from urllib import request ... The programm is running fine in the PyCharm-IDE. But when I run the same code in the console in Linux Ubuntu I get the error: ImportError:…
kame
  • 20,848
  • 33
  • 104
  • 159
1
vote
0 answers

R on Mac El Capitan can't find float.h

I upgraded my OS to El Capitan, and now when I issue an install package command in R like install.packages('MASS') I get the following error: /usr/local/Cellar/r/3.2.3/R.framework/Resources/include/R_ext/Constants.h:33:10: fatal error:…
Billyziege
  • 56
  • 6
1
vote
0 answers

Static Library Xcode on every compile

Every time I compile my project in Xcode it's doing 'creating static libraries', for my sub-projects that I have added. This takes a noticeable amount of time. Is it somehow possible to make Xcode remember these steps, and save the static libs for…
keyboard
  • 2,137
  • 1
  • 20
  • 32
1
vote
2 answers

How to use a dll

I recently was very confused in trying to use gdi+, since the sdk files where just three files, one of which being a .dll file. I assumed I need to load the dll and since I had never been taught or exposed to such things, needless to say I was…
CAA14
  • 47
  • 4
  • 11
1
vote
1 answer

Which graphics library is better for embedded linux?

Which graphics library is best for developing GUI for character LCD or simple graphics LCD for embedded linux. ? which has better performance and support ? Thanks, Neel
Neel Patel
  • 315
  • 2
  • 6
  • 17