library

Why shouldn't I have a single monolithic utility library?

We've got a few common libraries (C# but I guess this isn't platform- or language-specific), let's call them A, B, and C. Library A has references to B and C, library B has a reference to a 3rd-party DLL, and library C stands alone. The idea behind three separate projects was that each library had distinct functionality, but library A ha...

Linking 32-bit library to 64-bit program

Hi! I have a 32-bit .so binary-only library and I have to generate 64-bit program that uses it. Is there a way to wrap or convert it, so it can be used with 64-bit program? ...

Reusable ASP.NET User Control Library : Virtual path provider or ascx/aspx copy ?

I have a ASP.Net web application that I want to use as a reusable user control library in other web applications. One solution for this problem is to use what Scott Guthrie has described here: http://weblogs.asp.net/scottgu/archive/2005/08/28/423888.aspx that is to copy ascx/aspx files (without their code-behind) in the web applicatio...

Python library for sending/managing usage statistics

Recall those applications that provide the option to "Send usage statistics to help improve X" during the installation? I presume it collects certain patterns of usage and sends it back to the server. Back at the server, there may be some sort of mining going on. Is there a Python library to do this .. at least from the client part? (ot...

Linking to SDL and other libraries in Haskell

How to tell ghc to tell ld to link compiled binaries to SDL library? I have a source.hs : import Prelude import Graphics.UI.SDL as SDL import Data.Maybe import GHC.Word import Control.Applicative ... When I do: ghc source.hs I get a bunch of linking errors similar to this one: pong.o: In function `...

In need of a SOCKS5 server library

I'd like help finding a library that adds SOCKS5 server functionality to my program. Please note, I do not want to connect to a SOCKS proxy server; rather, I want to actually run a SOCKS proxy server within my program. While there appears to be many SOCKS servers, they certainly were not built with the intention of being used as librari...

Library for programming Abstract Syntax Trees in Python.

I'm creating a tree to represent a simple language. I'm very familiar with Abstract Syntax Trees, and have worked on frameworks for building and using them in C++. Is there a standard python library for specifying or manipulating arbitrary ASTs? Failing that, is there a tree library which is useful for the same purpose? Note, I am not m...

jQuery for XUL?

I have read on the internet and found out that jQuery works OK on XUL. My questions are: Are there any jQuery plugins that are specially made to work with XUL? Is there any other jQuery-like library that was specially made for XUL? I have not yet tested jQuery on XUL, I'm just asking these questions for curiosity. ...

I want to use an exe file programatically

I am using a software named Daisy 2.02 Validator and it is with GUI but i want to access it programatically so that i can control all the validation process through my C# project. I am unable to find any help about it's libraries, any .net Api or any DOS command for controlling it. Please provide me help. Thanks, Regard, Muhammad Waqas ...

Good DAL library for PHP which has the similar .Net's feature: command.Parameters.AddWithValue("@demographics", demoXml)

Hi, the question is very straightforward: Good DAL library for PHP which has the similar .Net's feature: command.Parameters.AddWithValue("@demographics", demoXml). mysqli extension is good but I want to have the aforementioned feature too. Putting many "?" does not look nice and rather confusing when a table has many fiends (>= 8). Than...

NTL library in Dev-C++

Hi, I want to write a program which use NTL library under Dev-C++. Could tell me how to add NTL libraries to Dev-C++? I tried to compile (as it was said in NTL tutorial) all the files form src catalog in Dev-C++, but I got such a communicate: [Bulid Error] [Project1.exe] Error 255 That's why I cannot get ntl.a file... ...

Why are there so many libraries in MSVC and why do I have to recompile the code again

In every platform there are various versions of a given library: multi-threaded, debug, dynamic, etc.. Correct me if I am wrong here, but in Linux an object can link to any version of a library just fine, regardless of how its compiled. For example, there is no need to use any special flags at compile time to specify whether the link ...

Can I use Qt as C++ Library without using its UI framework

Does it make sense to use Qt for increasing the productivity in an MFC app, without actually using the Qt user interface system? I am currently looking or a good productivity library for my MFC based application, with useful container classes, string algorithmus, threading classes, I/O classes and so on. The Qt API is very nice in my o...

Eclipse configuration: where to put external libs?

I have configured my Eclipse to have a C:\Eclipse\external_libs directory where I place all my external libraries. In my case , my external libs are WATIJ, XMLUNIT, and XOM . Adding the external libs to the project is no problem... there is no question about that. I also place my JDK at C:\Eclipse\Javasoft . What I am wondering ...

.NET SCTP implementation

Hello, I'm looking for a .NET implementation of the SCTP protocol. A component or a C#/F# source code would be preferred, however if no such thing is available a VB.NET source code could probably work too. The project I'm working on is targeting the .NET Framework v3.5 but anything that works with .NET v2 to v4 is welcome. ...

Build C/C++ library to link it into delphi application... How?

Hi, if I have a source of library written in C/C++ (lets say its libxml2), now I'd like to build it, and link it into the delphi application... I know it is possible, since Delphi Zlib does it ( http://www.dellapasqua.com/delphizlib/ ) ... But my question is, how to prepare those .obj files? Thanks in advance m. ...

Facebook Connect: unregister users with PHP library

I use the PHP library for Facebook Connect. The library is used as follows: $facebook->api_client->METHOD Here's the documentation for how to unregister users from one's Connect page: Connect.unregisterUsers So, actually, I have everything I need, haven't I? But I can't manage to unregister users, though. How must I do this? $faceb...

Audio Programming in C++

I wanna know how can I create sounds in LINUX with different frequencies using C++ libraries ? Is there any library for audio programming ( specially creating sounds with different freqs ) in C++ ? How can I simulate piano and other musical instruments(MIDI) sounds using C++. [EDIT] for example I want to create A Major with different ...

Are there alternatives to the Ext.js JavaScript GUI Library?

Before I choose the first / only JS GUI library I know, I'd like to see what else is there on the market. Reason: For my taste, Ext.js has a too strong "Windows XP" touch which looks really weird on a mac. Mac users are my target customers, so maybe there's something out there that suits this much better or is more neutral. Needed: A ...

How to add 3rd party libraries to MinGW?

I've just set up MinGW environment following this post But how to add 3rd party libraries to it? ...