library

Fastest python/C++ multimedia library

I'm using pyglet for my OpenGL based game but is it the fastest library out there which has a python wrapper? I could create a C++ extension and use any C++ multimedia library. Are there any C++ libraries that are worth investing time into or is it not worth the extra work? Thank you. ...

Flex Open Source Calendar / Enhanced DateChoose

Hey all, I currently use iLog Elixir calendar component, and I am not entirely happy. It is buggy, support sucks and I can't play around with the source. Does anybody know of a good, well maintain flex library project which has a decent calendar / date chooser component? Thanks, Sri ...

Unable to import userlibrary

<?xml version="1.0" encoding="MacRoman" standalone="no"?> <eclipse-userlibraries version="2"> <library name="USC_KFS_LIB" systemlibrary="false"> <archive path="/java/lib/JUnit/junit.jar"/> <archive path="/java/lib/Log4j/log4j-1.2.14.jar"/> <archive path="/java/lib/TOMCAT/jsp-api.jar"/> <archive path="/java/lib/TOMCAT/ser...

Parsing simple MIME files from C/C++?

Hello everyone, I have searched the web for days now but I can't seem to find a good solution to my problem: For one of my projects I'm looking for a good (lightweight) MIME parser. My customer provides MIME formatted files (linear, no hierarchy) which contain 3-4 "parts". The application must be able to split those parts and process t...

C++ Reference Book

Possible Duplicate: The Definitive C++ Book Guide and List Can someone list a C++ book that is just a reference to the standard library? I don't need a "learning c++" book just one that is a reference. Or at least official documentation or something? Googling only reveals "fan-site" reference. ...

Is there any crossplatform GUI library for C language?

Possible Duplicate: Cross Platform C library for GUI Apps? Is there any crossplatform GUI library for C language? (I mean at least win mac lin) If there is any XML-like GUI editing model, any GUI editing crossplatform visual programms it'l be grate!) ...

What Log4j alternative logging libraries are available?

What logging libraries do you recommend as alternatives to Log4j? Do these libraries work with Spring and Hibernate? Are they compatible with Slf4j or Jakarta Commons Logging? ...

After what point a JavaScript library is considered as a FrameWork?

Hi, I am kind of confused with the definitions. Can you please define the minimum "must haves" of a JavaScript library so that it can be considered as a software framework? thanks ...

Caching Application Block

Hi, Can someone tell me whether i can use the enterprise library caching library on a website which is load balanced its contained in a server farm which has 4 dedicated web servers. thanks ...

winsock component

i have a winsock component made with vb.net in a class library that has events. how do i make it appear in tool box if i reference the dll in another project.? How do i use it in my c# program? thanks ...

Are there any code libraries or languages with built-in support for Metric Time?

Metric time is documented here. I'm looking for any implementations of Metric time to Anglo-Babylonian Time (see article link) either as a library or built-into a programming language. With all the "joke" programming languages out there, it's possible that someone has done this. P.S. I realize that it is trivial. This question is for ...

Is there any crossplatform small\portable C image editing library?

Is there any crossplatform small\portable C image editing library? ...

Is there any crossplatform C library for using Pixel Shading filters?

Is there any crossplatform C library for using Pixel Shading filters? to run pixel shader inside your programm, beter as native part of your programm (not like precompiled file), and better for using with abstract data - not only images ...

VB6 with a .NET Library

Hello, I have an application written in VB6, and I need to use a library written in .NET. Is there any way to use the library on my application? Thanks ...

Preloaded Android application with .so library file cannot be upgraded

I work for an operator, and we preload applications on Android phones. However, some preloaded applications, once upgraded from Market, crash. The problem is this: - the application contains a .so library file - in order to preload the complete application on a phone, the .so library file has to be placed separately into the lib di...

iphone/ipad handwriting recognition library

Hi, I need a simple (preferably open source) handwriting recognition library for the iPhone/iPad. I only need to recognize numbers, which should make this much easier. Any ideas? ...

Tips for submitting a library to Boost?

Hi everyone, Summer is coming, and a group of friends and I are getting ready for it :) We decided to build a compile-time Arbitrary precision Unsigned Integers. We would like to provide a set of integers algorithms(functions) with the library. We have seen a number of requests for such a library(SoC2010, C++0x Standard Library wishlis...

organizing external libraries and include files

Over the years my projects use more and more external libraries, and the way I did it starts feeling more and more awkward (although, that has to be said, it does work flawlessly). I use VS on Windows, CMake on others, and CodeComposer for targetting DSPs on Windows. Except for the DSPs, both 32bit and 64bit platforms are used. Here's a...

Cross-platform general purpose C++ RPC library

Here's the task: Imagine, we have an applications and a plug-in for it (dynamic library). Interface between the application and the plug-in is completely defined. Now I need to run the application and the plug-in on different computers. I wrote a stub for the plug-in on a computer where the real applications is running. And the applicat...

notify listener inside or outside inner synchronization

Hello all, I am struggling with a decision. I am writing a thread-safe library/API. Listeners can be registered, so the client is notified when something interesting happens. Which of the two implementations is most common? class MyModule { protected Listener listener; protected void somethingHappens() { synchronized(th...