library

using libcurl without dll

I am using Microsoft Visual C++ 2010, and I need to make an application that does not require the libcurl dll. I am defining CURL_STATICLIB in the preprocessor directives and linking to libcurl.lib, libcurl_static.lib, ws2_32.lib, and winmm.lib, but it still requires the dll to work. If I only link to libcurl_static.lib, it has undefined...

Binary Decision Diagram library for windows

After trying to get jinc compiled under windows and quickly running into hundreds of compiler errors I'm looking for a quality BDD library that will build for windows. Preferably in C or C++ but as long as I can bind to it I'm happy. ...

Undefined reference problem when dynamic library is used

I was reading about static and dynamic libraries. To explore more I created three files 2 .cpp files and 1 .h file demo.h class demo { int a; public: demo(); demo(const demo&); demo& operator=(const demo&); ~demo(); }; demo.cpp #include "demo.h" #include <iostream> demo::demo():a() { std::cout<<"\nInsi...

Facebook: Graph API java library

Who knows a good Java library for using Facebook's graph API? ...

Java NETCONF library?

Does anyone know if there is a Java library out there to manage configs via NETCONF? ...

Software pattern for auto-discovery mechanism

I am currently developing a system for translating between data files of different types. Some of these files are just a single stream of data, some have multiple columns of data, and some have multiple channels of data (i.e. can contain multiple streams and types of data embedded). The user would be allowed to select any file type as ...

Agile processes for developing programming libraries

Is it possible to or how should one use agile development processes (Scrum/XP) and write user stories in order to develop purely technical programming libraries (think Spring or a game engine for example)? ...

What options are available to developers for printing to a dedicated label printer?

Our business uses custom internal software to create shipping labels to be printed on large high-speed label printers. What options are available to developers (libraries, services, full-blown-software, etc.) for assisting in the process of creating a custom-formatted label and sending it to a dedicated label printer? More background...

Link my shared library to another (CMAKE)

Hello, I'm currently trying to link a CXX library that I've written to a VTK, a CMake made library - to end up creating a shared library that has my code's functionality and can resolve the symbols from VTK. I need the end result to be shared because I'd need to call the library up at runtime in Java. Please feel free to ask any quest...

Target 'Android 1.5' does not support building project with libraries.

I'm trying to build a project in Android 1.5 that references another Android (library) project compiled against Android 1.5 and I keep seeing this error in the Console in Eclipse: Target 'Android 1.5' does not support building project with libraries. I'm running Eclipse 3.5, and version 0.9.7 of the ADT. I followed the instructions he...

Android: How do I reference a stylable that resides in a library that my app references?

I have a custom view I created that resides in a library I'm referencing in my app. In the library I declared a styleable, which the view uses. In my app, I'm using the custom view from the library as such: <nefarious.library.myappname.views.DragDropList xmlns:ddl="http://schemas.android.com/apk/res/nefarious.library.myappname" andro...

R.java file from Android library project not importing into application project

I followed the instructions here on how to create an Android library project, and use it in an Android application: http://developer.android.com/guide/developing/eclipse-adt.html but it is not working. I can see the library project is added to my application but I cannot reference anything in it because it won't build. The R.java file ...

Lua: How to connect & query MySQL from within Lua?

How can I connect to a MySQL database from using Lua programming language? If a good/popular library exists, what is it? ...

What Aspect-Oriented Programming (AOP) libraries for .NET are still actively developed?

I am trying to find a reasonably mature/stable and freely available (preferably open-source) library for doing AOP in .NET. I've been searching around a bit and found the products below; however, most of them seem dead: PostSharp this is the AOP solution usually recommended for .NET, however it's a commercial product and thus some use...

Android library projects custom builds

Hello all, I have a legacy application and need to split it into a library project (common code) and two application projects (paid and free applications). I don't use Eclipse for development, and also don't use Ant builds provided (generated) by Android SDK (there are several reasons for that: different project directory structure, uni...

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, sort, search and filter them effectively (in order to find and resolve bugs). Each log entry has few attributes like: time-stamp, type, m...

Extending CI with own library

Hi, I'm trying to extend my CI with a custom library that I plan on using for calculating the time value of money. The issue is whenever I load the class I get an internal server error, and I'm not quite sure why. Also, if there are any other suggestions, please let me know. Thanks Here is the controller where I'm trying to load the...

Ms-Pl license: Do I have to disclose the source code of a program using a Ms-Pl licensed library?

Here is what I want to do: Modify an MS-PL licensed library so that it suits my needs Use the compiled form of said library in my closed source program (linked dynamically) Ship the program and the library in binary form Ship the source of the modified library with the program and continue licensing it under MS-PL (if legally necessar...

assembly reference problem--'assembly not referenced' versus type in two assemblies

I'm having a problem with assembly references. I have four assemblies: A class library called EncryptionUtils Another class library called PasswordUtils that uses EncryptionUtils Another class library called Toolkit that is an ILMerge of many libraries, including EncryptionUtils A WPF application that uses Toolkit and PasswordUtils ...

JDOM to parse schema

Is it possible to parse an XSD schema into a JDOM tree? Or is there any other library (documentation required ;)) that could accomplish this? Thanks, ExtremeCoder ...