Hello,
I am in need of a reliable UDP library. The one I wrote does not work too well and I would like to see what a 3rd party can do in the same circumstances.
Enet will not work because of some "interesting" compile issues in xcode (I have another question on stack overflow about that).
Any suggestions for a portable, reliable UDP l...
Hello!
I want to automate service myshows.ru. People on it must manually put information about movies that watched.
I want to write program on c++, that get titles of movies in video players and put it to account on service.
What libraries i can use for this work?
P.S Sorry for my english
...
I'm trying to compile a static library to use on Android but I can't figure out how to compile it. The library uses standard libraries (stdio.h etc...) and libxml2.
I am trying to compile using arm-eabi-gcc but I get the following error:
/cygdrive/c/android-ndk-r4/build/platforms/android-8/arch-x86/usr/include/asm/posix_types.h:15:28: ...
I want to write a "client" for megaupload.com in Ruby and I wanted to know if there was a captcha solver / decoder / autofiller for Ruby.
Thanks
...
I am looking for a free C++ fixed point library (Mainly for use with embedded devices, not for arbitrary precision math). Basically, the requirements are:
No unnecessary runtime overhead: whatever can be done at compile time, should be done at compile time.
Ability to transparently switch code between fixed and floating point, with no ...
I'm trying to generate top-level abstract class with JCodeModel library, but I can't find any way to change class modifiers.
It's possible for nested classes (JDefinedClass API provides methods that get modifiers as parameters). But for creation of top level classes I found only JCodeModel API methods that get fully qualified name with ...
I am trying to make an iphone app in xcode that uses pjsip. The problem is I don't know how to link the libraries. This is the first time i am using other libraries so probably i am doing something wrong i just don't know what. :(
I have the ARM version of the libraries in this folder in mac os x.
/Users/kudorgyozo/pjsip_iphone
In Xcod...
Guys, I have a huge problem. I need to start the JVM from the Invocation API (JNI) but I need to use a library that is loaded on the native side (not from JNI neither from Java(. Imagine the following scenario I load a bunch of libraries that support some JVM functions before starting JVM itself, and after that I start the JVM. So how ca...
I want to write a navigator application, which draws maps from images. Maps need to be drawn dynamically, based on user's navigation. My idea is loading 9 images into memory, and then create a view to show needed map:
When user navigates, the view is moved. When needed, images which no longer seen will be destroyed, and new ones will ...
Hi all,
I'd like to convert an image to ASCII art with a program or graphics library but I would like to specify which palette (of symbols) to use. So basically I want an image which is rendered as Text from some alphabet A that is a subset of the full ASCII-Table, for example A := {a,b,c,x,y,z,@,\,/} or so.
Is there a library / progra...
There are a lot of libs to work with mp3 tags, but I need just 2 functions - split mp3 file in 2 parts and the second one to merge 5 mp3.
Can you suggest anything?
Thanks!
...
Anyone knows any library for SQL Server database backup and restore for .NET?
This actually is needed to avoid writing one new. There is so many people out there giving their libraries, but i found it strange i couldn't came up with googling anything related.
...
Hi!
I'm actually developping an application for iPhone and I need to use a library, initially dedicated to a Linux environment. Since I'm using a Mac (with Snow Leopard and Intel Core Duo), I guess it's possible to use this library in my app.
My library has 3 files: a file .h, a file .a and a file .so (both .a and .so are in /Developer...
There are some questions on SO about Html diff engines, but i cant find right answer. What i need is .NET library for comparing two rendered html strings and displaying diff (like SO renders questions/answer editing revisions (example)).
...
Does anyone know a ruby library to handle GDF (Geographic Data File) files ?
...
properties/C/C++ Build/Settings
GCC C++ Linker/Libraries
Under libraries(-I) I have
libbost_system
libbost_filesystem
...
and under Library search path(-L) I have
/home/etobkru/boost_1_43_0/boostBinaries/lib
but when I compile I get
g++ -L/home/etobkru/boost_1_43_0/boostBinaries/lib/ -o"searchDirs" ./main.o -llibboost_system -llib...
Is there any C\C++ Cross-platform library for sharing data between app's?
...
is there any library that parse a source code of C++ to produce lets say, call graph, class inheritance tree, flow control, class member list or anything as a ready to use graph or structure in code (not in diagram image).
to make it more clear, suppose to generate call graph image, there will be a process like this:
`
C++ source -> ...
I am trying to run boost in eclipse,
under Library search path I have put:
/home/etobkru/boost_1_43_0/boostBinaries/lib/
and under Libraries I have put all the libs, boost_system, etc.
The build is working without errors but when am trying to run the program I get an error:
error while loading shared libraries: libboost_system.so.1.43...
Hi,
I have created a big C++ class. I need to give it to another person.
I dont want him to see the function implementations but he should be able to use it as a class.
(for example: he can inherit this class, use its full functionality in his code but can not see or change function implementations etc)
How can i do this.
thanking you....