library

C math library with integration?

Is there a science/math related C/C++ programming library that includes functions for mathematical integration? This might be useful for finding values for a cumulative distribution function, etc. Symbolic manipulation ideal but not required. Thanks! P.S. I've looked at GSL but it does not contain functions specific for integration. ...

Where to find documentation to python's library's inner workings

Couldn't think of a better wording for the title. See for instance the answer to http://stackoverflow.com/questions/1564501/add-timeout-argument-to-pythons-queue-join The answer to that question uses an attribute of the Queue class called all_tasks_done (accidentally wrote join_with_timeout here in the original post). However, in http:...

Can I use multiple versions of jQuery on the same page?

A project I'm working on requires the use of jQuery on customers' Web pages. Customers will insert a chunk of code that we'll supply which includes a few <script> elements that build a widget in a <script>-created <iframe>. If they aren't already using the latest version of jQuery, this will also include (most likely) a <script> for Goog...

MOSS Error Uploading File to Library and Custom Meta Data Not Being Updated

MOSS 2007 SP2 64 bit. Multi-server install. How do I figure out the where to find the document library upload error I am getting? I have document library with a custom workflow attached that will have a PDF document OCR'd during the upload. This library has some custom meta data fields from a content type that are exposed during the up...

How to create a Flow chart? Javascript or Flash?

I want to create a simple graph as this screeshot : : the nodes must be clickablea nd they must have various forms. the arcs must have various colours and arrows! I found this javascript library :Raphael but I can't write into the nodes. Can anybody help me to find a library, javascript or flash, that create a sample graph as the scr...

PHP - Extension vs. Library vs. Class - when and why

I'm trying to accomplish a task and turns out that the code I need is packaged as a PHP extension, which according to what I've been told means I have to have root access to install it (I'm on shared hosting so that's a bit of a problem. I'll solve this problem later, but for now I'm trying to understand the difference between an exten...

Library to read a MySQL dump?

I am looking for a library that will allow me to read a mysql dump. I don't want to have to create a MySQL database and import the library and use the MySQL API. I would prefer simply a library that can parse the mysql dump format. I prefer a python library, but other scripting languages are okay. ...

wget-like bittorrent client or library?

Is there any bittorrent client or (Java|Python|Ruby|Perl) library that I can use like wget or curl? I would like to use simply as a step in a script, like you would use wget. EDIT: Sorry, I should have mentioned I'm using Ubuntu. ...

How to use RaVis Library? Some ideas?

I'va been monkeing with this lib : Ravis. It a librari on .swc, someone know how to use or configure this library on NetBeans 6.5? I use Windows XP and Vista! Thanks to all ...

Best mail library for java web applications

I am investigating on the best free mail library to use for java web applications. It is something with more support and easy to use. If it's complex but would be justified by its great features it might do. Have any suggestions? ...

Functional programming library for Objective-C

Is there any functional programming library for Objective-C? ...

How do I data mine text?

Here's the problem. I have a bunch of large text files with paragraphs and paragraphs of written matter. Each para contains references to a few people (names), and documents a few topics (places, objects). How do I data mine this pile to assemble some categorised library? ... in general, 2 things. I don't know what I'm looking for, so...

Add library permanently for all future projects

Is it possible to permanently and automagically have a library added for all my future projects? (in Visual Studio 2008) ...

Lexical Analysis libraries

I would like to make a piece of software able to regognize whether a sentence is positive or negative. Is there any Lexical Analysis libraries arround? I don't really know where I should start. ...

DSLs vs. Plain Old Libraries

I've been thinking lately about the question of DSLs vs. libraries. In my field, the problem with DSLs (R, SAS and Matlab come to mind) is that they're a PITA to write more general purpose code in and a PITA to integrate into more general-purpose code in other languages. I'm not saying either is impossible, just annoying and frustratin...

Static Global Fields in a Shared Library - Where do they go?

I have a cpp file from which I am generating a shared library (using autofoo and the like). Within the cpp file, I have declared a couple of static fields that I use throughout the library functions. My question is 2-part: 1) Where are these fields stored in memory? It's not as if the system instantiates the entire library and keeps ...

is it acceptable to use ThreadPool in a library?

is it acceptable to use ThreadPool in a library? because that obviously might cause some unpleasant problems if the user of your library is using ThreadPool as well (due to ThreadPool being a static class of course).. what's the convention? ...

C#: Archiving a File into Parts of 100MB

In my application, the user selects a big file (>100 mb) on their drive. I wish for the program to then take the file that was selected and chop it up into archived parts that are 100 mb or less. How can this be done? What libraries and file format should I use? Could you give me some sample code? After the first 100mb archived part is c...

Is there any easy to use Javascript XML library recommend?

I parse data using JSON in javascript, I find this is very convenient. But when I using XML, I need to look down every nodes. It seems that the XML is more complex. Is there any Javascript for erase some plain on creating and reading xml document? plx recommend. ...

Why has nobody created an open source build system for the brain dead?

I want to build a shared library. GNU/Linux is the development and target platform. C is the implementation language. I can't decide how I want to setup the build system and keep flitting around three options each of which have lots of reasons to dislike: hand crafted Makefiles - I've worked this way almost exclusively in the past GNU...