library

How do I install pyCurl?

Hi folks! I tried everything! I cannot find a way to install pyCurl on my Windows 7 machine! I found these binaries link... BUT there are no binaries for 2.6. : ( Help would be great. : ) ...

Java TL1 protocol

Does anyone know of any Java SDKs/libraries for communicating via the TL1 protocol that are opensource? ...

AS3 Audio Effects

I want to apply some effects to a sound but I couldn't find one library which has all these effects. Do you know any? Effects are: Phaser Delay Distortion Cut Filter ...

Include headers in header file?

I have several libraries made by myself (a geometry library, a linked list library, etc). I want to make a header file to include them all in one lib.h. Could I do something like this: #ifndef LIB_H_ #define LIB_H_ #include <stdio.h> #include <stdlib.h> #include <linkedlist.h> #include <geometry.h> .... #endif Then I could just refe...

Is there any library out there for c# that has the equivalent to "Unpack" in PHP and what is "Unpack"

I just want to convert a piece of PHP code to C# so I need it's equivalent. And what does unpack really do? I'm very interested in this function. ...

javascript toolkit for offline webapps

hi all, we're building an survey webapp which will let the user to add new records to the survey when offline and will upload when the browser reconnects with the server. We've identified that this will need offline storage and hence google gears seems to be an obvious choice (we understand that adobe Flash has Offline Storage but not ...

Is there an extended function library for SQLite?

Is there an extended function library for sqlite? I am trying out sqlite and realized that a lot of the functions I could expect to take for granted in other sql databases don't exist in it, although it appears they can be added to it. Are there some ready made libraries like that for it? ...

how can you connect to itunes library in your program. What api or classes are used in this

How can you connect to an itunes library in your iphone program. What api or classes are used in this. I need to make an app similar to the REMOTE app that exists. to be able to connect to a itunes library on someones computer and see their list of songs etc. ...

What is a good program for storing “chunks” of commonly used source code

I've looked at CodeLocker (poorly styled and relatively unflexible, but free) and Source Code Library (Overzone software - very nicely styled, looks flexible, but very expensive - $80). Ideally, I'm looking for a relatively simple, inexpensive program (not an online website) that I can save text data (source code) with a title and keywo...

How to import music into Android library

Hello, I would like to know how can I import songs from a web service into Android library without having to download the file into sdcard. I have all the data from the web service but I do not know how to integrate the tracks into Android database. My idea is not to have to download the files, but playing them on streaming using the mus...

c++ line-based unified diff library

Does anyone know of a good c++ library that can provide a line-based unified diff? ...

what is it in Java standard library that Python's lacks

I hear that Java's standard library is larger than Python's so I'm curious, what's missing in Python's? ...

Android shared library which is not JNI based

I am developing a library for Android applications which does not use native code (JNI). I have tried suppling the library as an external jar in my Android projects but this method does not include the library contents in the apk and thus throws class not found errors when run in the emulator or device. I have also tried creating the lib...

Uml library for .Net

I'm looking for a .Net class library to load UML models (the more serialization formats the better) for an application I'm developing. I only need the UML object model, no graphs, graphic, UI or anything like that. Currently I'm using NUml, however that library hasn't seen much maintainance in the last few years and is somewhat outdated...

tutorials/books to create a plugin/module/library?

i wonder if there are tutorials/books explaining how you create a library/plugin/module for other to implement? libraries/frameworks like solr, doctrine, codeigniter etc. cause it seems that they follow the same pattern. having one "bootstrap" file to load configurations, other classes and so on. i aim to understand the basics, so i c...

What kind of .lib file begins with "!<arch>" ?

Hi all, I have a .lib file, just wondering what compiler it's from: it begins with "!<arch>" ? Thanks ...

Looking for a solid and scalable library to render undirected graph.

I'll need to throw in about 400 millions of nodes. Preferable languages are java, php, .net, ruby or python. Anything alse will do the same. :D Any ideas? ...

Compiler error while compiling the RAPID library on VS2008

I've downloaded the RAPID library and tried to compile it on Microsoft Visual Studio 2008. However, I'm getting the following compiler error: C4430 missing type specifier - int assumed. Note: C++ does not support default-int at this code segment (the exact line that produces the error is int flag): class RAPID_model { public: box...

How can I tell NetBeans to use the latest available version of a JAR for a library?

I have a Netbeans project with a library defined which includes several JARs. These JARs are versioned like lib\blah\com.blah.wibble.jar_0.6.1.201004161543 . These are nightly builds from another project so that version changes often. I know I can point NetBeans at the specific JARs with the version name, but this means that every time ...

Collision detections and how efficient they are

How exactly do you implement collision detection? What are the costs involved? Do different platforms(c/c++, java, cocoa/iphone, flash, directX) have different optimizations for calculating collisions. And lastly are there libraries available to do this for me, or some that I can just interpret for my platform of choice? As I understan...