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...
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?
...
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...
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 ...
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...
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...
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?
...
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...
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...
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...
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 ...
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...
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...
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 ...
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.
...
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
>> ...
...
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...
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...
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...
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!
...