library

Sending Fax with python?

Ok, we aren't in the mid-1980s any more, but anyway. Are there any fax libraries for python? ...

The best zip library with public domain license

Does anyone know zip library of C/C++ in public domain license? It meets the following requirements. It operates by the unit like stb_image.c library Supported cross platform. Windows, Mac, Linux and so on. Language is C/C++ License is public domain. ...

Forward-declaring library names

Hi all, An excerpt from "Exceptional C++": "In the old days, you could just replace "#include " with "class ostream;" in this situation, because ostream used to be a class and it wasn't in namespace std. Alas, no more. Writing "class ostream;" is illegal for two reasons: ostream is now in namespace std, and programmers aren't allowed ...

What's a portable and lightweight C/C++ regular expression library?

Possible Duplicate: Lightweight and portable regex library for C/C++? I'm looking for a C++ (C is acceptable, too) library for matching regular expressions. The library should satisfy these requirements: Can be built on Windows (MSVC 7 and newer) Can be built on Linux (g++ 3.4 and newer). Has no external dependencies; nothin...

on C part of C++ project (VS10)

I have a C++ VS10 project. I want its part to be pure C. So I will have pure C lib and A C++ file that will have part with C code calling that pure Lib. Is it possible? Will I have posebilety to pass data from that C part to C++? ...

Is there any example of compiling a java library into something wrappable with C#?

So I want to wrap a simple java library so to be able to use its functions from C#. Is it possible, how to do such thing? BTW can we do such thing from C? ...

UPnP library for Java

Is there a library for implementing service discovery and publishing via UPnP? (I am trying to find some alternatives to JmDNS that while protocol-wise worked fine for our purposes, was highly unstable as a library, having an unacceptably bad tendency for deadlocking itself.) ...

what is the best api/library for java to use cassandra?

I'm looking for an api with the following requirements 1) It's simple to use and is concise. It is not bloated. 2) Works with Spring way of doing things, or is at least easy to make it work with Spring 3) Has a maven repository, preferably it's already in the main repositories 4) Is production-tested, meaning a fair number of people ...

error: 'INT32_MAX' was not declared in this scope

I'm getting the error error: 'INT32_MAX' was not declared in this scope But I have already included #include <stdint.h> I am compiling this on (g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-44) with the command g++ -m64 -O3 blah.cpp Do I need to do anything else to get this to compile? or is there another C++ way to get the constant ...

on C part of C# project: Can we mix raw C and C# code (VS10)

I have a C# VS10 project. I want its part to be pure C. So I will have pure C library and A C# file that will have part with C code calling that pure Lib. So I'll have C part of code - not precompiled DLL but C code and C# code files. So is it possible to have inside one C# file C code like we have C code inside C++ code? like Inline C...

Using both .so and .dll on Windows

I am writing a program in windows in C++ for which users will be able to compile extensions in the form of dynamic-link libraries (windows) or shared object files (linux). On windows, you use the LoadLibrary function to load a dll. Is it possible to do the same for .so files on windows? And vice versa, load .dlls on linux? ...

Has any one compiled lib x264 using CLI backend for gcc compiler?

Has any one compiled lib x264 using CLI backend for gcc compiler? (Compiled x264 into .net dll) ...

any chart / graph / plotting c c++ library which is similar as bloomberg chart, with mouse interaction on plotted line, and multilayer plot

any chart / graph / plotting c c++ library which is similar as bloomberg chart, with mouse interaction on plotted line, and multilayer plot? gnuplot is very powerful but it seems to me it can feed in data but no callback to mouse action and no manipulation on plotted line / chart, e.g. over mouse over particular line and I would dump th...

Are there any Ajax/jQuery like library for Windows mobile application development?

Hi, I need to develop an ajax based interface for a web-page, and I am not able to find any library that can help me do it. I have tried jQtouch, and it doesn't seem to work for windows mobile. Also I have tried XUI Library (http://xuijs.com/), this also didn't work. Can anyone point me to the right direction? I don't like to do ajax ...

Insert data into PDF, filled in an online form, on submit action .

Hi all, First of all my apologies to all the people who think this question is a repeated one or they find a similar question to this. I am working on a project in which I have an online form and some PDFs stored on the server. Functionality On the submit action I have to get the data from the form, fill it to the copy of PDF and fi...

How can we use any C library inside our C++ code ?

How can we use any C library inside our C++ code? (Can we? Any tuts on that?) (I use VS10 and now talking about libs such as x264 and OpenCV) ...

Howto load different libraries based on incoming paramters?

Hello, I am creating a java client using different libraries, they are the same base, but with different optimizations. Is there a pattern (or something else) that I can use to load different libraries, e.g.: java -jar myapp.jar 1 (loads with libraries from set 1 and imports correct and creates a client using this library).... Update...

Reentrant library design in C

Let's say I'm building a library to spork quuxes in C. Quuxes need two state variables to be sporked successfully: static int quux_state; static char* quux_address; /* function to spork quuxes found in a file, reads a line from the file each time it's called. */ void spork_quux(FILE*); If I store that data as global variables, o...

How to use .Net System.IO; System.Net; System.Net.Sockets; from Visual Studio C++ project?

How to use .Net System.IO; System.Net; System.Net.Sockets; libs from Visual Studio C++ project? ...

How to get bytearray from x264 frame writer?

So here is libx264 FLV, MP4 and some other format file creators. in each format.c there is function called write_frame(). I want to get a bytearray of what it is writing to file. What shall be added to that functions for tham to return bytearray of what they try to write into file? (I would love to see example for FLV but if it'd work in...