library

What's the best way to distribute Lua and libraries?

I'm looking at moving a program that currently embeds a Python interpreter to use Lua. With Python it's fairly easy to use modulefinder, compileall, and zipfile to make a nice tidy zip containing all the external libraries used. Does Lua have the ability to bundle up its libraries like that, or is there some better best practice for di...

Are there are any remote process viewer libraries/softwares for multiple platforms?

some tools like yapm, can only view processes remotely view the process status(memory, cpu usage, etc) on windows platform. Are there any libraries/softwares can support process for multiple operating system, such as linux, unix, windows? ...

PhysX SDK - error LNK2019: unresolved external symbol when compiling "wavefront.cpp"

Hi all, I'm using the PhysX SDK and I'm trying to load an .obj file with the WavefrontObj object which is defined by the files "wavefront.h/.cpp", localized in the samples directory. When I'm compiling my project, I got this error: 1>Linking... 1>wavefront.obj : error LNK2019: unresolved external symbol "char * __cdecl FindMed...

gcc -l option and .la library files

Could you please explain, how linking with -l option against .la files works? As far as my experience reaches - i have only linked against static library (.a) files. Now i took a look at some Qt generated Makefiles and cant figure out, how linker figures out to use/open libQtCore.la file, when -l QtCore switch is specified, instead of ...

Which are the best LGPL Libraries for Numerical Methods, Optimization Techniques, DOE, Sensitivity Analysis?

I wish to perform some mathematical operations including Design of Experiments, Optimization Techniques, Sensitivity Analysis and Six-Sigma based Robust design for Aerospace Design project. I am developing applications for mechanical design engineers. I understand there are a few libraries like DAKOTA from sandia national labs that help...

Android library: resources are merged, code is not

Hi all, I'm trying to set up an Android application with an Android library project dependence in Eclipse. I've set up a project called AnTest and a library project called AnLib. I've provided a reference to AnLib in the project properties of AnTest. Now I'm trying to refer to some library code (a static public method) from AnTest. Eclip...

Is there a .NET FastCGI library?

I'm developing a small server that is supposed to interface via http. As I want it to be usable with different mature http servers, I have chosen FastCGI as the common interface. Now I can't find a (free) .NET library that implements the FCGI interface and does all the hard work for me. Do you know one? ...

Java SFTP Server Library?

Hey guys, I've been looking all over for this and can't seem to find anything. Is there any library for Java that can let you easily implement an SFTP server in your application? I'm trying to receive files via SFTP, but I can't seem to find any implementation of an SFTP server. I've found FTP/SFTP/FTPS client libraries, and FTP/FTP...

What library I need to use for setting Windows mixer volume control in c#?

Hi, I want to make program which is detecting any microphone activity from specified level. If there is any activity it set Windows master volume to specified level. When someone will stop talking it must restore previous volume in few seconds. What library I need to use? (it must work under Windows XP, Vista, 7). Thank you for your repl...

Software to inflect English

Is there any software out there which can do the following? Given an English sentence like "He likes baked beans", I change "he" to "I" and the sentence changes to "I like baked beans" (note the S) or "She has her hair in a ponytail" I change "she" to "he" and the sentence changes to "He has his hair in a ponytail...

Any libraries of reading & writing binary file formats (PE & ELF)?

HellO, I want to write a binary file format viewer for windows which can operate on both PE & ELF files. Similar to the ones already there: PE Explorer http://www.pe-explorer.com/ PE VIew: http://www.magma.ca/~wjr/ PEBrowse Professional http://www.smidgeonsoft.prohosting.com/pebrowse-pro-file-viewer.html I've reasons why I want to ...

Undefined symbol error on loading a module in Apache that uses libxml2

Hello everyone! I am writing an Apache 2.2 module that uses the libxml2 API. I have compiled the module using following commands: apxs -I /usr/include/libxml2/ -c mod_xmltest.c sudo apxs -n xmltest_module -i mod_xmltest.la and used the following LoadFile directive in httpd.conf LoadFile /usr/lib/libxml2.so However on starting the...

List of good MFC libriares?

The reason I ask this question is there is no list available on Internet so far. There's BCGSoft - www.bcgsoft.com CodeJock - www.codejock.com CMarkup - www.firstobject.com XHTML - www.hdsoft.org UCanCode - www.ucancode.net ProfUIS - www.prof-uis.com Ultimate Toolkit - www.codeproject.com Are there any good recommended MFC/ATL librar...

id like to add 7-zip functionality to my C# application, how would i do this?

i currently have this code to extract a passworded 7zip SFX to the appdata location run it then clean up after its self, but i'm losing a lot of compression i think also would just like to learn how to do this, so id like to learn how to make it so my application can extract a .7z file without having 7-zip installed on the computer (the ...

Android efficient matrix library

Hi Is there any efficient linear algebra library for android? I need to compute matrices of different sizes(also bigger than 4x4) and rectangular too. Thanks. ...

What's the equivalent of python's __file__ in ruby?

In python after imports, one can see the file, that has been loaded/where the module comes from. >>> import os >>> os.__file__ '/Users/tm/lib/python2.6/os.pyc' What would be the equivalent in ruby? >> require 'xmlrpc/client' => true >> ... ...

How to use a message resource file in a precompiled library for BlackBerry

I'm building a library for the BlackBerry, which needs to have several strings in it using the messages.rrc and messages.rrh files to create the MessagesResource interface to allow access. The catch is, everything being done on the command line, I'm using RAPC to generate the messages, and a standard java compiler to build the library i...

What's the best solution for an embarrassingly parallel problem?

Sorry for the vague topic question, but I'm working on some academic video processing routines. The algorithms are written in MATLAB, and while it's fine for development purposes, it processed a video at about 60spf, or around .0166fps. Needless to say, this wont be sufficient for demos and such, so my summer job is to convert the routin...

Is there a java reflection API around the java.lang.reflect package?

A lot of Java projects use reflection. I wonder if is there a reflection library which make the use of java.lang.reflect easier. We could use it like: Reflected object = new Reflected( new Object() { String name="Oscar"; String lastName="Reyes"; String reverseName(){ return new StringBuilder(nam...

Good C library to parse apache log file

I would like to parse a lot of apache log files with a C library. Who knows a good C library which is optimized for good performance? Thank you for advice! ...