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

python netCDF4 suddenly stopped working on Mac OS

I have used python's netCDF4 package maybe 100 times on my Mac. Today, I tried >>> from netCDF4 import Dataset as I have done countless times, and was told Traceback (most recent call last): File "", line 1, in File…
bob.sacamento
  • 6,283
  • 10
  • 56
  • 115
1
vote
0 answers

Any BLE lib (most usual programming languages possible)

I have the task to write a Bluetooth Low Energy (BLE) tool that communicates with a BLE able device (using Windows!). There are some UWP libs which I cannot use because I don't know how to develop with UWP. I had a look at Java, C++ (and Qt) and C#…
user3874443
1
vote
0 answers

CMake: Avoid adding libraries more than once

I am trying to set up a C++ project using CMake. In the end, there will be at least two big libraries, that I will need to use. Those big libraries themselves, lets call them LIB1 and LIB2, depend on another library, called LIB3. I also want to…
MaXL130
  • 61
  • 6
1
vote
0 answers

C# Custom Container Without Existing Container Classes (such as array)

I need to make a custom container class but I can't use any existing container classes and I can't use any external libraries. I'm planning on using generic types to make the container flexible and I'm using an indexer to allow array-like accessing…
RedXXVI
  • 21
  • 6
1
vote
0 answers

SoXt configure error 'x11 lib' in mac os x 10.12

When i was configure SoXt in my macbook, there happen error in running config Just few second later. configure: error: need to able to compile and link against X11 libraries I'm already installed XQuartz latest version. so, i tried to fix this…
orde.r
  • 521
  • 2
  • 5
  • 13
1
vote
1 answer

(CMake) PCL + Other libraries

Context : I am following this guide to generate my Visual Studio project with the Point Cloud Library PCL, it seems to be the only way to use it. Problem : I have realised that with this method I can not include other libraries like the…
Daniel Amaya
  • 113
  • 2
  • 10
1
vote
1 answer

Android Studio not recognising changes made in imported project library module

I have downloaded ZXing core source files, and created a new project with these source files. I then imported this project as a new module into my main project. This has worked fine, and it all compiles and runs smoothly. However when I try and…
numberjak
  • 1,065
  • 4
  • 13
  • 28
1
vote
5 answers

Hack into .Net Library, Is it Possible?

In a Microsoft TechDays seminar, i heard a speker saying that Microsoft's .Net Library can be modified to optimize for your specific purpose and performance (He didn't said it exactly above, but ment to say it). I wanted to know that is it Possible…
Shekhar_Pro
  • 18,056
  • 9
  • 55
  • 79
1
vote
2 answers

Error importing javax.jnlp libraries

I'm using a book as a guide to do it but it doesn't tell anything about this issue. I am trying to import this 3 things on Java Eclipse. import javax.jnlp.FileContents; import javax.jnlp.FileOpenService; import javax.jnlp.ServiceManager; And the…
1
vote
0 answers

class "Document" not contained in mongodb jar

I downloaded a mongoldb driver for java from this link: https://oss.sonatype.org/content/repositories/releases/org/mongodb/mongodb-driver/3.4.2/ In my Netbeans Java Web Application I right-clicked on the Libraries Folder and clicked on "Add…
steady_progress
  • 3,311
  • 10
  • 31
  • 62
1
vote
1 answer

Why am i getting a 404 js file, while including a script tag?

index.html Error: GET http://localhost:3000/main.js Structure Project app.js view index.html main.js I've tried src="main.js". /view/main.js Very basic, but dont want to get stuck on…
ThePirateBae
  • 89
  • 12
1
vote
2 answers

Using external header file with definitions different from the ones used internally

Suppose you are writing a library that uses internally certain data structures, and wants to export to the user only a subset of them (or hide the exact type using something like void *). The definitions for all the structs and functions used in the…
Tob Ernack
  • 241
  • 2
  • 12
1
vote
0 answers

What version of zlib is required for OpenVDB?

The software I'm working on at work already uses zlib version 1.2.5-1, but I am getting ready to add some functionality that requires OpenVDB. In the INSTALL file in OpenVDB, it lists the required versions for all of its dependencies, except for…
1
vote
4 answers

.Net libraries used in any .Net language?

Quick question, I've been reading about some .Net stuff and the way some people talk implies on me that a .Net library could be used with multiple .Net languages. Maybe it's just wishful thinking on my part lol. For instance could I use the Tao…
Isaiah
  • 1,995
  • 2
  • 18
  • 29
1
vote
1 answer

How to open a file with idlelib.TreeWidget?

I am making a file browser in Python 3.5 and I've included renaming and viewing, but am not sure how to make it so that when you click the file it opens. I know how to use os.startfile("file"), but I'm not sure where to include it. try: from…