libraries

Wrong ELF class - Python

Hi folks, I'm trying to install this library for LZJB compression. PyLZJB LINK The library is a binding for a C library, the file is located here PyLZJB.so Unfortunately by copying to the site-packages directory when import I get the "Wrong ELF class" error. >>> import PyLZJB Traceback (most recent call last): File "<stdin>", li...

CLR differences between Silverlight and normal .NET Framework?

Are there any aggregated guides to writing libraries which need to be Silverlight-compatible? Or is the standard procedure to just build, look for errors, fix, repeat? Obviously I recognize the answer may depend on what version of Silverlight is being targeted, but I'd expect any answer to just specify version if the solution is specif...

Problem using Maven to obtain Flash Builder 4 Libraries?

My question is related to this one, but is not exactly the same: http://stackoverflow.com/questions/828960/how-can-i-add-maven-dependencies-to-the-flex-build-path-in-flex-builder-3 Given that Maven will happily download all the correct version of all the swc's of the Flex SDK, it seems that I could point to those from the Library setti...

What does a "restricted library" really mean in Java?

I'm working on some imaging applications from a book my professor gave me. The book's from 2001 and Eclipse is telling me on some of the lines things like "Access Restriction: the type JPEGImageEncoder is not accessible due to restriction on a required library /usr/lib/jvm/java-6-openjdk/jre/lib/rt.jar". I know I can suppress these war...

Good Library for Creating E-mail Templates with Merge Ability

I'm looking for a really good library/component/framework for creating e-mail templates for my web application. We send out a number of e-mails on a regular basis: Activate Your Account Welcome Thanks for Your Order Etc. I'd like to give the non-technical administrators of my web app a way to: See the current e-mail template (HTML...

Is there an intelligent way to know the name of the library to link to at compile time? (Linux/Kubuntu)

Please bear with me. I really want to know as I am curious about the answer: Is there an intelligent way to know the name of the library to link to at compile time? Allow me to give you an example that illustrates perfectly the reason for my question. I am a C++ newbie. I am learning about compiling, linking and libraries like boost. ...

C++ - building libraries

Hello! I'm building static libraries (right now libpng) in Microsoft Visual Studio 2008 SP1. Do I have any possibility to build single library (one file) for both Debug and Release modes assuming that my library has only C code in it? As far as I remember, gtkmm, for instance, has it's pre-built package, where C++ based libraries are ...

Are there any simple and effective Open Source Java database-backed queue libraries?

I have a few different apps which need robust database-backed job/task queues, and so far I've had trouble identifying any promising candidates. I'd love some suggestions! BTW, by database-backed I intend something which persists job data and status to a JDBC DB for reliability purposes. Oh, I'm specifically looking for a library. I'm ...

Which graphics library is better for embedded linux ?

Hello All, 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 ...

How to link my code with the real time library using qmake (.pro)?

I am trying to write suitable .pro file for my application. I need real-time library. Have you some ideas how to do that? I just need the line for linking with real-time library... Thanks in advance! SOLVED: LIBS += -L/usr/local/lib -lrt ...

Can someone recommend a PHP/XHTML based solution for large and individual scale digital assets management?

i'm trying to set up a site where a substantial amount of PDFs will be sold both individually and a subscription will be sold to a library - so anyone from that library can visit the site without a paywall (so, based on IP). think JSTOR, for example, or a newspaper archive. I'm really comfortable with WordPress (can even dev plugins for...

Make IE behave like Firefox

i was wondering... when we design websites... there are cross-browser compatibility and browsers different behavior to HTML is an issue... designer has to check his design and work for cross-browser design consistency.... can we do somthing about it like add some libraries\scripts to the code so that one browser bahaves like other, so ...

Get OpenCV MinGW libraries

Hi, I just want to compile my OpenCV 2.1 programs using MinGW. But I can't, because it won't compile ANYWAY. I DON'T WANT a solution to compile it, I just want the binary libraries because the pre-built VS2008 libraries don't work with MinGW. Can someone give it to me? Thanks in advance. ...

Are there any good libraries of functions to use with collections in Java, such as...

Are there any good libraries of functions to use with collections in Java. I'm thinking along the lines of implementations of partition, take, drop, takeWhile, dropWhile, map, filter, reduce...? I can write them myself, but it feels like re-inventing the wheel. Thanks, Alex ...

Where should I put third-party libraries?

I contribute to a decent-sized C++ project with a number of dependencies. The problem is, the project contains the source of all of its dependencies (e.g. pcre, zlib, etc.). I want to trim the project down to just what's relevant to the program itself. Is there some relatively standard way to compile these libraries and put them somewher...

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 find the classes in the shared libraries. I don't have the error message right now because I...

What are the most widely used tools and libraries for C++ development?

I am looking to get a general understanding of the toolkit a typical C++ developer would use. What are some recommended tools and libraries for C++ development? Please include a category with submission (e.g. IDE - Visual Studio) and single submission per recommendation. Categories (add more if needed) Build Tool IDE Unit Test Fram...

C: Common Frameworks/Libraries

What are some common general purpose library as Boost is to C++ but for C? It should be a cross-platform library and include collections such as trees, linked-lists, queues, etc... What are the advantages/disadvantages to those libraries? ...

Is lack of 3rd party libraries preventing you using Scala?

I started learning Scala the other day. As for the language itself, I think it's fantastic, no problems there at all. To aid in my learning process I set myself a task, to download, parse and index text from HTML pages. In doing the above I found myself constantly digging into existing Java libraries. I found that I had to use Java libr...

The right way to deal with external libraries in java (using eclipse)

This is in a way a follow-up of a previously unanswered question of mine (link) which excalated over the past weeks, and now it has come to a point where I cant really develop anymore... So here's the deal; I have more of a mathematics/engineering background than pure CS, so I dont have a lot of experience with proper/large-scale softw...