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

Log4j - Excluding the logging of some classes

I am using Log4j in my application, and the libraries that I use that also use Log4j are also outputting their logs to the log files that I create. I have already created appenders to redirect the logs of one library to an "other.log" file, but the…
AntonioJunior
  • 919
  • 2
  • 15
  • 32
1
vote
0 answers

Linking external libraries cmake arduino

I'm trying to link a downloaded library called ArduinoJson to my project with CMake, but it seems that whenever i include the file it is missing, it will just ask for the next file its missing. I will end up with a lot of include lines which i think…
Yoeri Kroon
  • 33
  • 1
  • 4
1
vote
2 answers

Is there a Ruby library for Golang-style duration parsing?

duration_to_sec("3m") => 180 Perhaps something similar to https://gist.github.com/tim-evans/d0ba1e8f05a55b76c49c but wrapped as a nice gem, or even better an internal function to do this. Edit: I can't use ActiveRecord; also, not looking for an…
MaxVT
  • 12,989
  • 6
  • 36
  • 50
1
vote
1 answer

Blackberry component libraries

Blackberry UI components look so poor after seeing the iPhone, Android and Windows Phone 7 platforms. Are there any third-party UI component libraries for BlackBerry?
Vlad Tsepelev
  • 2,056
  • 1
  • 21
  • 32
1
vote
1 answer

Processing, Kinect, Manually installed-libraries, School Internet

Hello! My predicament is as follows: I am a student at a project-based learning high school, we are trying to create interactive art using Processing and Kinect, but the school internet is restrictive and does not let me use Processing's built in…
1
vote
1 answer

decimal js rounding 3digit numbers [probably a bug?]

I'm using the decimal.js to calculate with numbers and using the advantages by handling big numbers.. Now i came to the point where i want to round numbers to a specific multiplicator. everything worked fine, until i found this issue; new…
Synoon
  • 2,297
  • 4
  • 22
  • 37
1
vote
1 answer

Are there Haskell equivalents for the `webbrowser` Python package?

Python has the very convenient webbrowser package, which includes a webbrowser.open() function which allows to open a browser on a location, even on a file in the local filesystem. This way Python programs can for example generate a web document as…
danza
  • 11,511
  • 8
  • 40
  • 47
1
vote
2 answers

Where should I store third-party libraries for inclusion in IntelliJ IDEA projects?

This is not about how to add libraries to my project or module dependencies; it's about where to store the .jar files that are referenced by the project/module settings. Should I have a lib folder in each project, containing the third-party…
David
  • 5,184
  • 3
  • 41
  • 67
1
vote
3 answers

I have no clue as how to set string path

I am using a third party library for splash screen. I got it from https://github.com/ViksaaSkool/AwesomeSplash. I have followed the whole tutorial but i am getting error while setting string path. It has a line…
1
vote
1 answer

Eclipse Automatically Download / Update JAR files

I just created a Web App project from a repository through Eclipse's SVN support. What I would be doing is have an ANT build going and then finally deploy through Tomcat. I am using Eclipse IDE for Java EE developers on an Ubuntu system. There are…
Van de Graff
  • 5,043
  • 13
  • 39
  • 41
1
vote
2 answers

How to run a Jar-file with external libraries?

When I run the Jar-file inside netbeans it works. But after I clean and build it, it won't run. It gives me an error, that the Mainclass couldn't be found. I tried already something like: java -cp…
loadP
  • 404
  • 1
  • 4
  • 15
1
vote
1 answer

java and C# libraries for wi-fi

here is a tough question :D can anyone tell me the names of libraries concerning Wi-Fi as i want to build a mobile application that can connect to a local server through wi-fi and exchange information with it. also i want to know which library is…
Mohamed
  • 1,537
  • 2
  • 10
  • 14
1
vote
1 answer

Hash of hash functions in cryptonite package

I am trying to use the Crypto.Hash module (cryptonite package) and produce "hash of hash" results. The issue is that the signature of the module's hash function is hashlazy :: HashAlgorithm a => ByteString -> Digest a, so before I can produce a…
Janthelme
  • 989
  • 10
  • 23
1
vote
1 answer

NG-Table not working with nested data structure

I am trying to use the NG-Table library to display data to users in a web-app I'm creating, but it seems that the built in functions are not able to sort data structured like this: var data = [ { generalInfo:{ name: "Morty", age: 20 } }, …
1
vote
1 answer

Libraries rather than Web Services

I am interested in the pros/cons of refactoring a large application (industrial monitoring software) into a bunch of Libraries / NuGet Packages, rather than as stand-alone Services. The perception is that they're almost identical, i.e. a service can…
SJDoodle
  • 351
  • 3
  • 11