library

C/C++ library for VTK IO

I have a simulation in C++ which generates huge amount of data. Right now I am using MATLAB libraries to save the results as a .mat file, but eventually I will be needing an open source binary format. I don't want to implement my own binary format and ASCII is not an option. I heard that VTK provides .vtk binary file format for saving 3d...

Moving libraries and headers

Hi, I have some c code which provides libfoo.so and libfoo.a along with the header file foo.h. A large number of clients currently use these libraries from /old_location/lib and /old_location/include directories which is where they are disted. Now I want to move this code to /new_location. Yet I am not in a position to inform the clien...

C/C++ HTTP library, that handles only the logic?

I am looking for an HTTP library for C/C++, that handles only the protocol logic, instead of the actual transport mechanism. Libraries I've came across tend to incoperate the entire communication process, which is not what I need. However, I'm looking for something that's more than merely an HTTP parser. Ideally it would also take care ...

developing embedded software library

I'm in the process of developing a software library to be used for embedded systems like an ARM chip or a TI DSP (for mostly embedded systems, but it would also be nice if it could also be used in a PC environment). Obviously this is a pretty broad range of target systems, so being able to easily port to different systems is a priority....

Is there a .NET library that can do string permutations or string expansion?

What I'm looking for is some library or some code of classes that can be used to expand construction strings into variations and permutations. Something like the following (syntax is mine, may be different): construction string: [Ff]oo [Bbß]ar|F(oo|oe) output strings: Foo Bar foo Bar Foo bar foo bar Foo ßar foo ßar Foo F...

Designing a GPL library with weak dependencies on proprietary libs, best approaches?

Hello, I'm planning to write a C library which will act as an umbrella "wrapper" around several other libs. Some of the libraries will be GPL and some will be proprietary. Moreover, some of the libraries may not be available at compile time, so I plan to have autotools detect them during configure. I'm also wondering if I should buil...

Windows Library - Playing Musical Notes

Is there an up-to-date Windows Library which allows the playing of individual musical notes? Even just a wrapper on top of Beep, would suffice, though I don't know if that would be supported on all version of Windows. ...

Does anyone know a library similar to Openinviter but for connecting your asp.net site to social networks

Hi, we are currently developing a website which will heavily involve connections to several social networks. I name a few (facebook, youtube, flickr, google contacts, windows live contacts, twitter,...) i know (from collegues) that a library exists for php. called openInviter (http://openinviter.com) though this site has to be in asp....

C Binary/Source Code in an iPhone XCode Project

What's the best practice to include existing C Libraries into an iPhone Project? I searched the Internet and actually found some pieces but nothing that explains the exact way to do it. I'm trying to include the following Citrix XenServer SDK Library. Any help is appreciated. Thanks! ...

Displaying complete context menu in windows 7 library folders

When browsing non-special/standard folders in explorer (windows 7), I have various custom right-click context menu options such as: "Open command window here" (shift+ rightclick) TortoiseHG WinMerge ...etc... The problem is that these options do not come up in the context menu when navigating library folders (such as Documents/My Do...

OpenCV 1.0: cvCreateFileCapture Always Returns Null under Fedora 11

I'm attempting to open a video file using openCV 1.0's highgui.cvCreateFileCapture(path) function on a Fedora 11 system. Unfortunately, this function is always returning null. I've attempted to use it on a few different video formats, and I've even taken the steps recommend on the openCV wiki (http://opencv.willowgarage.com/wiki/VideoCod...

What is a good 3D library for Adobe Flex?

I need a 3D library that works well with Flex... NOT Flex Builder - the free Flex SDK. ...

OpenSearch .net (C#) library: which one?

Hello, i would like to add OpenSearch to my C# webapplication. does someone recommend a certain .net library? or does a custom webapplication require a tailormade opensearch implementation? ...

How to use a static class method as a filter for Kohana's Validation Library?

Kohana's Validation library has a pre_filter() method which lets you apply any PHP function to fields to be validated, as trim(), etc. I tried to use a static method as a filter, but won't work: $validation->pre_filter( 'field_name', 'class::method' ) What that does is create two filters, one with class and antoher one with method. A...

tomcat; reference one war as a library in another war

I have a few tomcat applications, deployed in tomcat using .war files. Even though these wars are separate from each other, they are all part of a larger concept / application, and quite often, one war needs to call code from another war. Let's say I have 2 .wars, "a.war" and "b.war"... I would like to be able to use some classes found...

PHP Markdown XSS Sanitizer

I'm looking for a simple PHP library that helps filter XSS vulnerabilities in PHP Markdown output. I.E. PHP Markdown will parse things such as: [XSS Vulnerability](javascript:alert('xss')) I've been doing some reading around and the best I've found on the subject here was this question. Although HTML Purifier looks like the best (nea...

Which wireless library should I use?

I need to be able to manage a wireless ad-hoc network from a desktop PC. I need to be able to block people from entering my network but not via using the WEP or WPA key. I may need to be able to access the authentication protocol of the wireless network. Library in C# is preferred but any other languages is acceptable. Library for Windo...

Library design quandary

Ok so I am writing an open source library. A section of this library deals with moving an entity in a two and three dimensional space so it will have functions that manipulate the rotation, position etc. Now ideally I would like my library to work well with other libraries, in particular things like Papervision3D and other Flash 3D engi...

Framework for handling javascript errors well for testing / production envs

Hi everyone, I am just getting started on javascript, and I have experience in developing systems in other platforms and languages. The problems people have with javascript are well known, so i would not repeat them here. But my question is, why isn't there a framework yet for handling error cases? I can imagine a simple library that c...

How to refresh applicationSettings in a dll

Can i force a dll to reload it's configuration? In my VB library I'm using this configuration: <applicationSettings> <ComWrapper.My.MySettings> <setting name="MySetting" serializeAs="String"> <value>This is an entry</value> </setting> </applicationSettings> It's no problem to access the "MySetting" val...