libraries

python libraries for ssh handling

Hi Guys, I'm going to write first code for handling ssh commands on python and I did search over the stackoverflow and see that there are several python libraries that can be used for handling commands passed through ssh, like paramiko, pexpect and perhaps some others. Particulary, I will need to read content of the files from the remo...

Using a static library compiled by MingGW in Visual Studio.

I'm working on a 100% C project for which the windows port is compiled using visual studio 2008 express edition. My project uses a couple of linux libraries which I was able to statically compile using MingGW. I'd like to know if it's safe to link my project to those libraries and what were the possible trouble I might encounter. I cou...

Criteria for selecting a library for Enterprise usage

What are your criteria for selection a (open source) library (or framework) for enterprise usage? Some libraries are pretty small and can be easily checked for security flaws or tested for performance. But most libraries are too big to be reviewed before you can start to use them. When I think of me selecting a library, most if the sel...

Questions on GCC linker

Apologize because for the moment I don't have the environment to experiment and sort out the following questions myself: 1) Let's say I have four library files: libmylib_super.a and libmylib_super.so, mylib_dumb.a and mylib_dumb.so. While specifying libraries to link to, what are the differences between the following approaches: A) -l:...

Is there a open source library to help read Microsoft Compound Binary Files ?

Is there such a library? At at least a good documentation sorce as the one available by Microsoft is a bit hard to understantd and a bit superficial? Thanks ...

Performance advantages of using methods inside of classes verses data structures with libraries of functions?

Basically is the only advantage of object oriented languages the improved understanding of a programs purpose? Do the compilers of object oriented languages break apart the objects into structures and function libraries? ...

Which sorted collection implementation has the smallest memory footprint in Java?

I'm not unduly bothered about read/write performance (though obviously as fast as possible is always good), rather I'm looking for a sorted collection implementation that is as memory efficient as possible. Any suggestions? ...

lost library when recompiling Obj-C project

When I recompiled an old Obj-C project (a Cocoa app), the linker couldn't find some common library modules, including sin() and sysctl(). This project had been working in the previous version of Xcode. I am now using Xcode 3.1.2 in OSX 10.5. The error message was: Line Location Tool:0: collect2: ld returned 1 exit status Line Locat...

Are there any JavaScript libraries for interacting with AOL's OSCAR protocol?

I know AOL provides a library for their Web AIM (or whatever its called) but I'm more interested in something I can use with something like v8cgi. ...

A modern Java commons framework

Does anybody know of a good common frameworks for Java that has common but tedious utility methods that do things like... ObjectUtil.equalsOrBothNull(obj1,obj2) FormatUtil.formatName(String firstName String middleName, String lastName) AddressUtil.formatAddress(address) etc... It seems like I always end up re-implementing these so...

factors to be considered when choosing a free library in any technology..

Hai guys, I was going through these links in stackoverflow.com Free java libraries, http://stackoverflow.com/questions/130095/most-useful-free-java-libraries Free .net libraries, http://stackoverflow.com/questions/662956/most-useful-free-net-libraries I know there are 'n' number of free libraries in every technology.. what are th...

Java ME compatibility layer for Android

Is there any Java ME compatibility layer for Android, which makes porting Java ME (aka. J2ME) applications easier? I mean a third party class library which redirects calls to internal Android API. ...

should we pack our 3rd party libraries with our components?

We are doing some architecture refactoring. We are a SaaS company so all deploys are to our own self managed servers. Current model packs all of our binaries along with 3rd party libraries we use into ears, wars, tars, etc. These packages include all of the libraries they depend on. When they are deployed they are manually exploded (un...

What are equivalent open source libraries to these closed source ones?

I have a project (.NET 3.0, c#) that needs to be converted to open source (probably GPLv2). The project uses some closed source libraries at its core that need to be replaced with open source ones. Can anyone point me in the direction of the best open source replacements for the following libraries? Infragistics (Windows Forms) (prim...

Dynamic and Static Libraries in C++

In my quest to learn C++, I have come across dynamic and static libraries. I generally get the gist of them: compiled code to include into other programs. However, I would like to know a few things about them: Is writing them any different than a normal C++ program, minus the main() function? How does the compiled program get to be a...

How to get opencv include work in kubuntu? (Includes solution to how to include and link in netbeans 6.7.1)

Hi, I have installed opencv c libraries from package management into my Kubuntu 9.10. I wrote a small image modification program that uses those libraries, but I can't compile it, because every time I try to compile I get the error message that the functions from opencv library cannot be found. Those header files are in folder /usr/inc...

Measuring HTML equivalence?

Hi, I'm wondering if anyone knows of a good library for Java to use to measure HTML equivalence? For example <td class="one two three" name="goat"> would be equivalent to <td name="goat" class="three two one">. I would like to compare entire many-lined strings of html in this manner using Java. Any suggestions? UPDATE: so I tried t...

Installing C/C++ libraries on Windows

I'm studying (well, trying to) C right now, but I'm limited to working in Windows XP. I've managed to set up and learn how to use Emacs and can compile simple C programs with gcc (from Emacs no less!), but I'm getting to the point where I'd like to install something like SDL to play around with it. The thing is that the installation in...

C++ Adobe source libraries impressions?

hello I just stumbled upon Adobe source libraries, ASL. It is set of templates and functions similar to boost, under MIT license. Some of the utilities in the library I found quite useful and now I consider using it. the library seems pretty straightforward, however. Have you used ASL yourself? if so, what were your impressions? do y...

What programming languages are good for statistics?

I'm doing a bit more statistical analysis on some things lately, and I'm curious if there are any programming languages that are particularly good for this purpose. I know about R, but I'd kind of prefer something a bit more general-purpose (or is R pretty general-purpose?). What suggestions do you guys have? Are there any languages o...