library

C# cannot find library during runtime

I have a C# project that uses a dll. I added the dll to project references and I set the property Copy Local to False (I do not want to have local copies of that dll). The compilation looks fine, but when I try to run the C# application, it cannot find the dll. Where can I tell the project where to look for the library during runtime...

How to set C# library path for an application?

Hello, I have C# application that uses a dll. When I try to run the application, it can't find the dll, unless it is in the same directory or in GAC. I do not want to have it in the same directory and I do not want to install it to GAC. Is there any way how to tell the application where to look for the library? (For example if I want to ...

What is the most efficient Java Collections library?

What is the most efficient Java Collections library? A few years ago, I did a lot of Java and had the impression back then that trove is the best (most efficient) Java Collections implementation. But when I read the answers to the question "Most useful free Java libraries?" I noticed that trove is hardly mentioned. So which Java Collect...

Is there any reasonable SSDP or DIDL Lib for java/groovy/python?

For a future project I am looking for a library to handle SSDP communication and messages in DIDL-Lite xml dialect. Is there any reasonable implementation of java, groovy or python? I don't like to use implementations of existing UPnP stacks like cybergarage or the frauenhofer UPnP stack because they are highly depending on these stack...

Most useful free php libraries?

What are some of your can't-live-without php libraries? Any kind, collections, templates, anything that makes your life easier when working with php. ...

Looking for a Command Line Argument Parser for .NET

I'm looking for a command line argument parser, such as "Command line parser" from http://www.sellsbrothers.com/tools/Genghis/ . Features I'm looking for: Auto-generation of usage Should able to check required and optional parameters Parameters should support IEnumerable with separator support Should support flag parameters Would be n...

Library initialization -- pthread_once in Win32 implementation

Hello. I am trying to make a fully thread-safe initialization function for my library and I couldn't easily find an alternative to pthread_once, which should solve the problem very easily. I've come to this code: void libInit (void) { #ifdef WIN32 static volatile int initialized = 0; static HANDLE mtx; if (!initialized) ...

c library for computing mean, median, mode, other statistics?

Are there any c (or c++) libraries out there that can take an array of numbers and do basic statistical analysis on it (mean, median, mode, whatever else might be interesting)? ...

Signal processing library in Java?

I'd like to compute power spectral density of time series; do some bandpass, lowpass, and highpass filtering; maybe some other basic stuff. Is there a nice open-source Java library to do this? I've hunted a bit without success (e.g., Googling "power spectral density java" or "signal processing java" and clicking through links, looking ...

open source text to speech library

Does any one know of a good text to speech library. It needs to be open source and provide C API? PS: I've already done a search, but I'd like recommendations from people who have actually used these APIs ...

Generating contour lines from regularly spaced data

hi, I am currently working on a data visualization project.My aim is to produce contour lines ,in other words iso-lines, from gridded data.Data can be temperature, weather data or any kind of other environmental parameters but only condition is it must be regularly spaced. I searched in internet , however i could not find a good algorith...

Best Cocoa/Objective-C Wrapper Library for SQLite on iPhone

I'm developing for the iPhone and am looking for a good Cocoa/Objective-C library for working with SQLite. I don't want to use the standard procedural SQLite C API. I see options at sqlite.org under the Objective-C section, but am not sure which is the best in terms of library API design, stability, and functionality. I'd like to use ...

Problem Creating a Static Lib in Linux

I am making a simple lib to use in my apps to save me the trouble of defining some functions over and over... Here's my makefile: CC=gcc CFLAGS=-Wall -g -Wextra OBJS=getline.o debug.o LIB=libjimi.a .PHONY: clean purge libjimi.so : $(OBJS) ar rcs $(LIB) $(OBJS) @echo done! %.o : %.c $(CC) $(CFLAGS) -c $^ cl...

Where I can get the OpenGL Libraries?

OpenGL Libraries and header files are • opengl32.lib • glu32.lib • gl.h • glu.h where i can get these files ? ...

Open Source & Cross Platform Multiplayer/Networking Libraries?

While raknet seems fairly interesting and really appealing from a feature-point of view, its licensing terms seem to be possibly troublesome for GPL'ed projects that may be leveraged commercially, something which is explicitly forbidden by the terms of the creative commons license. While there's also opentnl, it doesn't seem to be as a...

Using a DLL with .h header in C++

I have been given a small library, consisting of a .dll, a .h header and a .def file. I'm fairly sure the library was written in C, but possibly C++. Is it possible for me to access the functions in the library without using the LoadLibrary/GetProcAddress/FreeLibrary method that is usually talked about. I have no .lib file - is it usual...

What is a good way to drum up interest in my open source project?

I maintain a coding library for .NET/Mono called SixPack. It's a general purpose class library based on good architectural principles, and is currently being used in a number of websites. We think that code quality is pretty good, and we strive to improve every day. Although the code, is pretty well tested on real-world projects, we kee...

qt add path for 3rd party header and libraries

Hello, I am using qt and developing a desktop app that will run under win xp/vista. I have a 3rd party library UserAgentLib (static, and shared). But I am not sure how to link in qt creator. I have opened the *.pro file and added my library and header path. The library is called UserAgentLib and the header file is called UserAgentLib...

Linear algebra library for the D programming language.

I'm looking for a package to do matrix math with matrices of up to about 100 x 100. I need to, at a minimum, do inverses, multiplication and transposition. I'd prefer a more encapsulated interface over higher performance. ...

Best Java Functor lib: JGA, commons functor, mango, or... ?

I am interested in using functors (function objects) in Java. With quick googling I found these 3 packages: Java Generics Algorithms: http://jga.sourceforge.net/ Commons functor: http://commons.apache.org/sandbox/functor/ Mango: http://www.jezuk.co.uk/cgi-bin/view/mango and of 3, JGA seemed like it might have the best design. But I s...