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
0 answers

inversion list for python

Is there a pure python implementation of inversion lists, ideally in the base libraries? an inversion list is a data structure that describes a set of non-overlapping numeric ranges, stored in increasing order. The set is stored in an array. Every…
Mike Samuel
  • 118,113
  • 30
  • 216
  • 245
1
vote
1 answer

Easiest way to publish AAR

I have an AAR file that I wish to publish so that anybody who wants to use my library can use it. What is an easy place to submit my AAR? Maven Central? Every tutorial that I find is over the top complicated.
J_Strauton
  • 2,270
  • 3
  • 28
  • 70
1
vote
3 answers

Library Projects support?

I have been trying to work with a Library Project, just like it's mentioned in the documentation : http://developer.android.com/guide/developing/eclipse-adt.html I have created my Library Project as a Android 1.6 Project and now I have been trying…
TiGer
  • 5,879
  • 6
  • 35
  • 36
1
vote
1 answer

Does Directx use the CUDA library for nvidia graphics cards?

Pretty much like the title says, does directx in any way use the CUDA libraries/extensions for nvidia cards under the hood? Basically do the directx libraries, under the hood, are actually making calls to the CUDA cores via CUDA libraries?
dave
  • 14,991
  • 26
  • 76
  • 110
1
vote
1 answer

Julia ccall windows

I'm new with Julia and I have one(many) problem(s). I'm using c++ libraries (.dll/.lib) to connect my c++ program to company's program (it connects to home 127.0.0.1 through 5111 port by calling function "connect(port,in, out) and it works). Now I…
pinq-
  • 367
  • 2
  • 17
1
vote
1 answer

Fit image and Resize using library uCrop of Yalantis for android

I´m usig uCrop library in my project and it´s awesome! I have two questions. Is it possible to adjust or fit an image within the area? Something like the parameter ScaleType:centerInside of android, for example : And the other question : in the…
Sergio76
  • 3,835
  • 16
  • 61
  • 88
1
vote
0 answers

Including FFTW and CUDA(or any other library) in project on GitHub

I'm developing a Speech Recognition library in C++ and want to use FFTW for DFT and DCT, and CUDA for paralel HMM. Can I put necessary include files and .dll from those two libraries on GitHub? If I can, is that a good practice, or should I assume…
1
vote
1 answer

How do I import libraries into my JavaScript-based UWP app service?

I'm writing a UWP app in JavaScript. I have an App Service declared in package.appxmanifest. By pointing its StartPage attribute to a JavaScript source file, I can control what gets executed. Within that .js file, is it possible to import…
Carl Patenaude Poulin
  • 6,238
  • 5
  • 24
  • 46
1
vote
1 answer

Android Studio - android.jar and rt.jar conflicts

I’m developing an Android Application with Android Studio 2.1.2. In one of the classes of an external library (in particular the Watson library of IBM Bluemix, com.ibm.watson.developer_cloud:java-sdk:3.0.1) I need to import these three…
Dieghitus
  • 55
  • 3
  • 9
1
vote
2 answers

FCM integration in android, Why Firebase importing everything?

I have recently added FCM to my project and it's working fine. I have used compile 'com.google.firebase:firebase-messaging:9.0.2' this line for the library since messaging service is only required. But when I have seen the external libraries dir…
1
vote
1 answer

org.jgap.* does not include everything

I just tried to implement the JGAP Framework to my project and somehow I'm wondering about the following: When I type import org.jgap.*, the class MaxFuction is not available somehow, but when I type import.org.jgap.impl.job.MaxFunction it is…
user5638730
  • 495
  • 2
  • 9
  • 22
1
vote
2 answers

How to export working jar with non-jar dependencies

im fairly new to java and im making a pokemon style game for practice and i would like to be able to send the game to my friends. here is the main problem: the game works fine in my netbeans IDE, but using the jar file in my dist folder does not…
joey
  • 104
  • 12
1
vote
1 answer

How to import external libraries and projects into my C++ Project with the GUI?

Okay, so I know Java and have fiddled around with libGdx for quite a while now. C++ is the "language-to-know" in the Game Development industry, it seems, and since I want to be a game developer when I graduate, I have determined that it is nothing…
Jax
  • 402
  • 7
  • 24
1
vote
1 answer

Library libuuid not loaded referenced from uuidgen image not found

I can not remember what did I do to get this error every command on my terminal. any advice? dyld: Library not loaded: libuuid.1.1.dylib Referenced from: /usr/local/bin/uuidgen Reason: image not found Is it safe to remove /usr/local/bin/uuidgen…
Mao8a
  • 71
  • 1
  • 1
  • 5
1
vote
1 answer

How do I turn my Go code into a library?

I know how to make a function that adds up all the parameters given to it and one for subtraction and I wanted to make a simple math library for adding and subtracting and multiplying and dividing, but my internet searches for how to compile into a…