library

Any custom map js component for iPhone (or just pan & zoom js component)

Hi there. I'm planning in developing a web app that will include a map-like page and it's targeted mainly to iPhone users. Is there any javascript library that can help me build a map-like component (using my own tiles / images) ? I found some that only work on the PC browsers, but none for the mobile devices. Something that will handl...

How to solve "cannot open shared object" problem while opening subprocess within apache

I run a web application in apache. My application try to execute a executable written by QT. But I always encounter "cannot open shared object libQtWebkit.so: No such file or directory" error. I can run this executable in shell without any problem. I tried set LD_LIBRARY_PATH but still not working. How can I set shared library path ...

Why won't Eclipse recognize $PERL5LIB?

I followed BioPerl manual: I cloned a fresh copy of bioperl-live under ~/src then added the following line to my ~/.profile (I'm using Ubuntu): export PERL5LIB="$HOME/src/bioperl-live:$PERL5LIB" However,BioPerl modules are not recognized in Eclipse, e.g.: Can't locate Bio/Tools/GFF.pm in @INC (@INC contains: /home/dave/workspace/.m...

Static Library iPhone NSKeyedUnarchiver Error

Hey guys, I made a custom Static Library that I use in my iPhone project. Everything works great except for when I use an NSKeyedUnarchiver to unarchive some data. It throws an exception when I try and use it in the library. I tried copying the classes of my static library into my project to see if that would work and it works fine but t...

Torrent library with .net or Lua bindings

I'm looking for a way to download torrents in a C# application. Ideally I would like bindings for a popular torrent library to .net, are there any? Alternatively (this is a bit of a long shot) the application already has Lua built in, so if there are Lua bindings I can also work with that. ...

Library for both iOS and OS X apps?

For a while now I have been killing spare time by creating a 2D game programming toolkit/library. It is written in Objective C, and consists of an OpenGL rendering system and a whole bunch of AI, physics code, a bunch of specialized containers and other game related stuff. Apart from the OpenGL based View mechanism (obviously), most of t...

Is there some website that have examples of every methods in the python standard library?

For example, c++ have cplusplus.com/reference which contain all of c++ standard library complete with definitions and more importantly examples, so I was wondering if there is such a website for python. I know that python is self documented, like i could use help(object) object.__doc__ dir(object) I know of doc.python.org/library w...

Weird iPhone static framework device-specific behavior with random NSString reads.

I am getting a weird behavior on the iPhone device where it reads random strings it seems to have in memory or stored away somewhere and putting them where they don't belong. For example I have a navigation controller in the project and I put this in my code: self.navigationItem.title = @"Title"; And the title shows up as some other s...

Cutting a clip from iPod library file

My requirements are as follows: I need to access a song from iPod library and play it(which is doable). Now while the song is getting played. I need to set a start and end time and need to cut a clip of it. Any thoughts? ...

Jquery modal for form posting

Greetings I would like to use a jquery based modal library for dynamicly generating ajax based and forms as a modal to display and submit. I already use jquery ui for other purposes however I am not sure if jquery ui dialog is a good way of displaying such data by fetching lists of items via ajax and generating forms to post. If not,...

Is it ever impossible to write a header-only library?

Is there ever such a pattern of dependancies that it is impossible to keep everything in header files only? What if we enforced a rule of one class per header only? For the purposes of this question, let's ignore static things :) ...

library location for project

I have started an C++ SFML project for linux. I was wondering where the .so's should go. Should they go inside the project folder so a user can simply run the program after they get it? Or should the user have the SFML library installed on there linux machine before they run my program? ...

BSON serializer/deserializer

Hi, is there a BSON serializer/deserializer library out there for PHP or Java? Thanks ...

Contents of a static library

I have a static library, say mystaticlib.a. I want to see its contents, such as the number of object files inside it. How can I do this on gcc? ...

Writing PDF using PHP (PDFLib)

Hi! I'm currently writing a code to output a pdf file in PHP using PDFlib from http://www.pdflib.com/. The problem is all html tag is also written in the output file. How can be able to cancel out all those tags? Here is my sample code. $postVariable = $_POST; $contentData = ""; foreach($postVariable as $ke...

OCR free library to use with VC++

Where can I find a free OCR library to use with VC++? I need to read computer generated numbers. ...

Breadcrumb library for Codeigniter

I am looking for a breadcrumb library for codeigniter, I found one called DTE but I'm not sure if I want to use it because it seems all support is gone for the library itself. can anyone recommend one? ...

Compact decompression library for embedded use

We're currently creating a device for a customer that will get a block of data (like, say, 5-10KB) from a PC application. This is a bit simplified, so assume that the data must be passed and uncompressed a lot, not just once a year. The communication channel is really, really slow, so we'd like to compress the data beforehand, pass to th...

Simple frame by frame video decoder library

Hi! I'm looking for a simple c/c++ lib that would allow to extract the first frame of a video as a uchar array. And have a simple fonction to access the next one. I know of FFMPEG but it requiere to play with packet and things like that, and i'm surprised that nowhere on the net i can find a lib that allow something like : Video v = o...

C shared library question

Background: I'm trying to develop a simple game similar to Zelda (NES) in C as a way to learn C. I've come to the conclusion that having all of the game data in a single file is not ideal. So what I'd like to do is break up each "area" into it's own module. This "area" module will describe to the main program its properties, such as ...