3rd-party-library

How to add dependencies to 3rd party library using nexus/maven

Hi everyone, i'm trying to use Nexus + m2eclipse/maven-3 professionnally, and i've got a huge 3rd party library that needs a lot of dependencies. Is there any ways to ease my pain by uploading to Nexus this third party library with all its dependencies linked, so that anyone who would need it would just have to add the maven-dependenc...

Effective way to handle singular/plural word based on some collection size

There are many instances in my work projects where I need to display the size of some collection in a sentence. For example, if the collection's size is 5, it will say "5 users". If it is size of 1 or 0, it will say "1 user" or "0 user". Right now, I'm doing it with if-else statement to determine whether to print the "s" or not, which is...

Polytope library for simulating billiards orbits

My current research project involves studying billiards orbits in four-dimensional polytopes. One sets into motion a point-mass, starting on one of the facets of the polytope, which follows a straight trajectory within the polytope except on collision with a wall, when it is subjected to an elastic response (i.e., its velocity vector is ...

Cannot instantiate the type HttpClient

I have added the .jars to my library and I can also instantiate other classes in the JAR. What gives? I've tried to clean the project etc. It's a compiler-time error. Eclipse won't let me instantiate it. I'm importing the correct library, not the sun version, and using the default contructor, specified by their tutorial HttpClient cli...

c++ web services client library

I'm writing a native c++ application that needs to grab information from a web service. What is the recommended library/libraries to handle this in c++? I cannot use .NET for this. ...

3rd Party Library throws NoClassDefFoundError without giving a class name

I'm trying to integrate a 3rd party library into an existing application; it compiles and builds with no problems, but during execution gives a java.lang.NoClassDefFoundError. The problem is that the error comes out of the library to which I don't have the source, and the error doesn't tell me what class couldn't be found. Is it possib...

Which graphics library?

Can someone reccommend to me a graphics library that meets the following needs: Can be used with either C# or Python The basic functionality that I need is to be able to draw lines and polylines, and to be able to fill in geometric 2d shapes with any colour. Something easy to use that doesnt require hours of reading documentation to un...

Enterprise library 4.1

My application uses Enterprise library 4.1 exception handler and logging application block. The Stacktrace when logged to the database, the Message column has been truncated to 1500 characters. Where do I modify this column length, so that I can get complete string? I tried modifying the [log] table and WriteLog argument for Message . An...

Confused in using opensource 3rd party libraries

How do you integrate C or C++ open-source third party libraries in your projects? Do you copy all the files it comes with (i.e. README, makefiles etc) to a separate directory somewhere inside the project and build it using its configs? Or do you only get needed source files and headers from a source package? Or do you just install pre-bu...

Is there a stable library for RTMP, written in C# or C++?

Tried FluorineFx but it didn't work with our media server. Can anyone suggest a stable RTMP library? It can be open-source or commercial. What we want to accomplish is to send some binary data to Wowza media server using RTMP. ...

How to use my own versions of Clojure libraries?

Say I made a change to a Clojure library (eg. added a parameter to the request-token in clj-oauth) and want to use that changed library in my project. What's the best way to do this, short of compiling the new library as a JAR and copying that to my project lib? I want to be able to tweak the library and my project at the same time (pre...

regular expressions and Sicstus Prolog

Is there any regular expression library I can use with Sicstus Prolog VC9.4.1.1.? I am currently working under windows Vista. Thanks, Regards, I. ...

Whats the difference between armv6 and i386?

I am trying to link libssh2.dylib (a 3rd party library compiled by Matthew Wilkinson using libssh2 library from http://www.libssh2.org) to my xcode project but when I try the following code: const char * libssh2_version(int required_version); printf("libssh2 version: %s", libssh2_version(0) ); Heres the error I get: ld: warning: in...

Keep supporting different versions of software each one built with different Delphi or component versions

i need to maintain different versions of a software, the problem is like this: 1) v 1.0 - Delphi 7 - DevExpress build 20 - TeeChart 5 2) v 2.0 - Delphi 2005 - DevExpress build 40 - TeeChart 7 3) v 2.1 - Delphi 2009 - DevExpress build 52 - TeeChart 8 4) v 3.0 - Delphi 2009 - DevExèress build 53 - TeeChart 2010 (of course this is an e...

extract interface and adaptor from 3rd party libraries

I'm looking for a tool for .NET libraries that: given: a 3rd party library with only concrete implementations of classes produces: extracts an interface from the 3rd party library and creates an adapter to the concrete implementation I have some pretty big 3rd party tools... doing it by hand looks like a pain. I'm hoping to be able t...

launch 3rd party application from native iPhone apps

hi friends, i have to do one application that application should be launch from the iPhone native applications like calendar, contacts and mail box etc... is it possible to launch 3rd party application from the native app, whether apple allows the developer to do this. Thanks in advance... ...

How to choose developer tools (Delphi)?

As stated in many places in SO "hardware/software is cheap, people is expensive". Tools, like the ones listed here can really make a difference. Now I am stepping out of the cave and I am realizing that i must update myself. I started studying "theory", I have a busy schedule for reading books on Refactoring, UnitTest, OOP Patterns. Bu...

Is there a library available that allows via config the deep copy of C++ attributes to other C++ objects.

Hi, I was wondering is there a component or library like Dozer for C++. Dozer is a Java Object to Java Object mapper that recursively copies data from one object to another. Typically, these Java Objects will be of different complex types. Dozer supports simple property mapping, complex type mapping, bi-directional mapping, implicit...