library

What to do with multiple Android apps that share about 90% of source code?

I have a public transport app for one country and I want to create a separate app for another country. Most of the code will be shared, but I need some classes to have different implementations for example TransitProvider. Is it possible to share code using Android Library Project? Can I do the following? Have TransitProvider (that ex...

How can I add a package to Qt

I downloaded a package called QtIOCompressor, I need to use the functionality like zipping a directory gzipping a directory etc etc in a application I am coding. But I dont know how to add this package into Qt or how to configure this package by which i can use it with my application which i may code in future! InfO: http://doc.qt.nokia...

Simple Game networking engine /library/API in java?

Dear All I would like to ask if somebody know/share his knowledge about some "SIMPLE" game networking engine/library/API written in java, which i can use to develop Real-time multiplayer game/simulation, i googled BUT only getting from c++ and only one or two in java, which have various trade-offs like complexity of use and dependencie...

Chinese hand-writing recognition program for IPhone

I would like to start on Chinese hand-writing recognition program for IPhone...but I couldn't find any library or API that can help me to do so. It's hard for me to write the algorithm myself because of my time span. Some of suggestion recommended that I should make use of a back-end server to do the recognition work. But I don't know h...

Java 3D Game Engine?

Recently I've been getting into Minecraft, which is a 3D game made in Java. I've made a few 2D java games, without any external libraries or IDE's or anything. What I'm looking for, is just some libraries. Not anything with a GUI, just libraries. Rendering *.obj files would be nice, antialiasing not a requirement. ...

C++ integration with Java in one project. Is it possible and how to do it?

So... I will have a project which will be tested on Win 7 and some Linux server. It will be a web service that will use HSQLDB, Hibernate, Spring, Blaze DS and Flash (Flex RIA) as front end. I need to implement into it some image filtering\editing functionality which will be implemented in cross-platform C++ code (It will use Open-CV) w...

Why shared library is linked by absolute path?

Hi,all: I create an application by linking the libociei.so and libcustome.so CC -o main main.cpp ../lib/libociei.so ../lib/libcustome.so and copy libociei.so libcustome.so to /usr/lib then I use ldd to check library, it shows: main ..... libcustome.so ===> /usr/lib/libcustome.so ../lib/libociei.so why libociei.so is no...

Iphone stop assetEnumerator

void (^assetEnumerator)(struct ALAsset *, NSUInteger, BOOL *) = ^(ALAsset *result, NSUInteger index, BOOL *stop) { How can I stop the assetEnumerator run loop? Thanks. ...

Looking for a wifi java library that will enable me to connect to a mobile device from my laptop or desktop computer with bluetooth dongle

The device will be an Android device, but I would like it to be able to connect to any device. Thanks in advance. ...

Chatbot library

I'm trying to add some simple chatbot behavior to an existing C program. The chat bot doesn't have to be too sophisticated (Eliza level) but it needs to have been written with reuse in mind. Are there any existing chat bot libraries available for C? ...

How do I convert XML to string and get the element value?

How do I convert XML to string and get the element value? Example XML <Example> <Option1>x</Option1> <Option2>y</Option2> <Option3>z</Option3> </Example> . If i wanted to get option1 it would return x, option2 returns y, option3 returns z. etc.... ...

Library for producing consumer-playable DVDs

So I have an application that creates VOBs as a step for DVD creation. I am using StandardMPEG encoder, and it works like a charm. Burning actual .ISO isn't my concern here, but building it is. I need a library that is able to create simple menu, mark some chapters for the VOB, and finally create an ISO that should be burned. I would b...

(LVCRS) Large Vocabulary Speech Recognition System

Hi, I'm looking for a library to transcript the speech content of a video. 1- Python, Java, C#, C++,... 2- I want a "pluggable" library.. The only respectable library I could find is the SPHINX, and I even don't know if it's a LVCRS and If tey provide the corpuses and acoustic models ! Please any help !! ...

Fast accessing pixel values of jpeg images.

CompVision once again, im working with jpeg images in my application. Just because i'm a bit familiar with MFC and ATL, i used CImage to access pixel values. For my needs i calculate brightness matrix for the image during initialization. Function goes like this(Image is the name of my own class, unimportant, bright is float[][]): voi...

loading resource file in class library and know which resource file to use

I have a class library and was to add a resource file to it to support both English and Spanish. Any tips as how I can do this? The language will be dictated by the user visiting the site. Would like to have to only load each resource file once and cache or set in static variable and avoid any overheads. ...

How to call a lib written in C++ from C ?

It seems to me like a no-brainer, but I cannot find any information against or for it. From the point of view of demangling etc, I don't suppose this to be a big problem, but I can't figure out, how I can write a little tiny C program which calls a function from a little tiny C++ library. I am on linux right now, trying with static bin...

C data structure library

I want to use a stack in C, anybody recommend a library? For example for a hash table I used UThash. Thanks! ...

DLL - Using main project classes in library class

I've never tried separating down my projects into DLLs but something I'm working on at the moment calls for a more modular approach. What I want to be able to do is switch out versions of a number of my classes easily to push updates to users without them having to re install my entire application. These classes create instances of oth...

Get Map Object in Javascript after using CodeIgniter Google Maps API

Hi, I'm using the codeigniter library for the google maps api. I load the map using the library located on the CI Wiki: http://www.phpinsider.com/php/code/GoogleMapAPI/ I want to then use javascript on the map object after loading the page. How can I get the map object in javascript? Can I use GMap2 on the same div? Won't that recreate ...

What is the best way to wrap our software library to serve both C++ and C# client apps?

I am starting work on a new project where the core product is a Software Library. There is existing code we will be wrapping, written in C++ because it is very numerically intensive; we own and compile this core code. I believe we will have two prominent client types: 1. App written in C++, probably MFC 2. App written in C#.NET. The Q...