library

how to easily create videos in c from a series of cairo canvases?

I'm writing some physics simulations in c for university, and now I output a series of hundreds of png that I then watch in fast sequence... is there a way to merge them to a video in c with some simple lossless codec library? P.S. I'm using cairo graphics and have very little experience in graphics programming in general ...

Is there a library that can do raster to vector conversion, for the iPhone?

I am trying to take an image and extract hand written text so that it can be read easily and zoomed in on. I would like to convert the text to vector paths. I am not aware of any libraries that would make this as painless as possible. Any help is greatly appreciated. Examples are nice too :) ...

Where should I store reused static string constants in Flex application?

I have two Cairngorm MVC Flex applications (a full version and lite version of the same app) that share many Classes. I have put these Classes into a Flex Library Project that compiles as an SWC. Both applications use some static String constants. Right now, I am storing these in the ModelLocator: package model { [Bindable] publ...

Libraries for creating a 'stand alone' Web Service deployed as a single binary.

I want to create a simple web service which I shall then make available to third parties to host. The third parties will want to host the service as part of their own systems be that Windows, Linux or Solaris. They will want the web service to be made available to them as a pre compiled binary which they can run without dependencies on f...

Mixing different versions of libraries in code for Linux.

The program that I am working on is statically linked to a 3rdPartyLibrary.lib. We wanted to take advantage of a newer version of the same 3rdPartyLibrary, say 3rdPartyLibraryNewVersion.lib. So the decision is to include the 3rdPartyLibraryNewVersion.so as a dynamically linked library, to be included via a wrapper dynamic library calle...

Do any set parsers exist for .net?

I would like to take a string representation of a set and parse it. Does anybody know of any pre-existing libraries? I can write the regular expression to match these patterns, but it doesn't seem to me to be a very efficient method of doing things. Also some edge cases will allow certain strings to pass which shouldn't, and I'm probabl...

Closed Source non-commercial license

Does anyone know a commonly used closed source license that allows non-commercial use of a library? I would like to provide a free (as in beer) version of the library but I don't want to release source code and I don't want people to make money with it without my permission. The reason for not giving away the source code is because I do...

Making a redistributable component or library for Android

Hi Folks, I'm just starting out on Android and Java programming, coming in from a C++ background. I was wondering - whats the best way to go about making a library/UI widget/component that I can license to third-party developers? In C++ I'd ship the customers my headers and *.a files, but I don't know the equivalent in Java. Are ther...

Dynamically upgrade/replace prototype library

I am developing a survey invitation that can be embedded in many sites. To present the invitation I am using Modalbox, a javascript library that shows an animated modal box over a semi-transparent overlay. This Modalbox library depends on Prototype and script.aculo.us/effects libraries. The invitation will be dynamically embedded in sit...

Autoconf compilation of dependency before application

I have been tooling around with autotools for the past couple of days, and finally have made significant progress. One problem I am having is that I have two libraries that need to be compiled before the main application code. I'm not quite sure how to do this. My directory structure is below and a snippet from my configure.ac as well. ...

Good .NET libraries for working with JSON data?

I am currently trying out Json.NET, and it seems to work well. Any other good JSON libraries for .NET? ...

C programming with Eclipse (library mystery)

When I connect a library to my program, Eclipse doesn't generate any executable file, I get only an object file. When I disconnect the library from my program (delete all paths and library functions), I get an executable. However, I don't get any error in the first case. What is going wrong? I work with: Linux, C, Eclipse. Log: ** ...

Adding rspec test for library module doesn't seem to pickup Expectations and Matchers

I'm adding more rspec testing to my app and would like to test a ScoringMethods module, which is in /lib/scoring_methods.rb. So I added a /spec/lib directory and added scoring_methods_spec.rb there. I required spec_helper and set up the describe block as so: require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') descri...

Free schedule/timetable GUI library for .NET

Does anyone know of any good free libraries providing Windows Forms controls for displaying schedules/timetables in .NET? I'm really looking for something similar to what the guy who asked this question was seeking, with a couple of differences: I don't need any help organizing the underlying data or generating the schedule (that's all...

Python's library support

Does Python seem to have greater library support than ruby? (For example, their OWL and RDF libraries seem much more developed. Is this true in general?) ...

Is there a widely used library of patterns & interfaces for .NET 3.5?

I'd like to avoid coding my own version of IFactory, ILog, IRepository and other common interfaces & implementations in my projects but find that commonly used libraries containing these tend to be focused on a particular concrete subsystem (one ORM, one IoC container, one logger). I've come across a some that seem more abstract (NCommon...

Dividing C++ Application into Libraries

My C++ project is growing larger. We are also moving to using cmake for building now. I want to divide the application into libraries so that they can be linked for testing, preparing the application package, etc. Right now I would divide my code into libraries as follows: core GUI utilities (these are used by core and other components...

EDI Library

What library have you guys used to create and parse X12 documents? ...

Object Oriented C++ library for ssh and scp

Is there any Object Oriented C++ library for ssh and scp. BSD license would be preferred. I could find libssh and libssh2. But these are all procedural. ...

How do I ensure that I am dynamically linking my application to the Qt framework in Qt Creator?

How do I ensure that I am dynamically linking my application to the Qt framework in Qt Creator? Thanks! ...