library

.lib file not being created (VS2008)

I added a dll project to my solution and explicitly referenced it by an executable project. The executable is complaining that it can't find the lib. Any ideas how to set the project to create the required lib file? And prehaps why the project would not create one?!? Cheers NOTE I have searched the project and the file isn't being cre...

dynamic linker dependenciy info embedded in an archive

Dynamic libraries are nice. The have embedded information in then that help the runtime linker figure what other libraries the final executable needs to load. It also tells the executable what symbols will be loaded Static libraries, however, are a pain in the neck. The linker won't automatically link an archive's dependencies. This...

latest programming tools under construction?

This site has been great for me to learn what's out there for programming tools and libraries. I'm wondering what are some promising tools/libraries/algorithms -- in any areas of programming or software engineering -- that are in alpha or beta right now that I should keep my eyes on when they get released. Some ones that come to mind to...

Looking for actively maintained matrix math library for php

Does anyone know where I might find a PHP matrix math library which is still actively maintained? I need to be able to do the basic matrix operations like reduce, transpose (including non-square matrices), invert, determinant, etc. This question was asked in the past, then closed with no answers. Now I need an answer to the same questi...

What JavaScript library to use for client-side form checking?

Over the years, I've dabbled in plain JavaScript a little, but have not yet used any JavaScript/AJAX libraries. For some new stuff I'm working on, I would like to use a js library to do client-side form validation, and want to know which would be best for that. By best, my criteria would be: quick and easy to learn, small footprint, c...

jpeg to pdf java library

Do you know of any jpeg to pdf, open source if possible, library for Java? ...

IDE Module for Hand Drawing?

I'm currently looking for a hand drawing (2D) library/module (that would be like Paint, Paint.Net or Photoshop - but I don't need all the power of Photoshop...) that would allow me to add a drawing module to an IDE application. That application is in it's early design phase : for instance I'm only estimating if I will be able to work on...

What image libraries have been ported to the iPhone?

I am researching iPhone image libraries. I am looking for a lightweight image library that will compile on an iPhone. Have any libraries such as ImageMagick been ported? What image libraries would be best suited for the iPhone? The image library should be suited to do black & white, sepia tone, saturation filters, and more sophisticat...

Looking for an open-source flatfile/xml database C++ library

I'm looking for a light-weight database library that I can compile into a C++ application. Does any such exist? ...

Recommended lightweight balloon javascript library

Looking for small and light popup balloon JS library. (not part of other lib such as jquery) Must be cross browser. I found several. Any recommended one? ...

Easy way to find Subtree in a Tree

I'm writing some code that uses a Tree (a regular tree that can have an unlimited number of nodes, but no crossover, i.e. two parent nodes will not point the the same child node). Anyway, two things: 1) Are there any well-known algorithms for finding a sub-tree within a tree. 2) Are there any Java libraries (or any libraries for that ...

How to profile one library solution with Visual Studio 2008 Profiler Tool(s)?

I have read and practiced the MSDN's Profiler Tutorial. But I couldn't find a way to profile a library solution (the button "Launch with profiling" is disabled for libraries). The only solution I could think of so far is to create an executable project just for profiling purposes. I have already written unit tests for my library, using...

Identifying Different Excel File Formats

Is anyone familiar with a library or tool that can determine which format an excel file is in? Or, failing that, documentation on the different formats that would allow me to write my own? ...

Should I use Java date and time classes or go with a 3rd party library like Joda Time?

Hi, I'm creating a web based system which will be used in countries from all over the world. One type of data which must be stored is dates and times. What are the pros and cons of using the Java date and time classes compared to 3rd party libraries such as Joda time? I guess these third party libraries exist for a good reason, but I'v...

Using C# to access Sharepoint - where can I find the reference library?

I am currently writing a Windows application in C# that will add documents to a document library list. I am trying to reference Microsoft.Sharepoint, however I do not see the COM or .NET library inside visual studio 2005 add references lists. What dll do I need to reference and where can I find this? Thanks, Alex ...

Powerful audio lib

Hi Can you recommend a powerful audio lib? I need it to timestrech & pitchshift independently, as well as give me full access to the raw audio data and let me stream bytes into its pipeline. Other effects like eq, filtering, distortion are a plus. Needs to be accessible from C++ / Linux. Maybe gstreamer, xine or mplayer would work? ...

What tag libraries you know for J2EE JSP, something like displaytag, tinyMCE, and other useful stuff for new J2EE Developer ?

What tag libraries you know for J2EE JSP, something like displaytag, tinyMCE, and other useful stuff for new J2EE Developer. ...

Does a new or emerging programming language really need practical libraries?

Using a factor or forth, Arc or whatever as an example (note: factor is a bad example because it has a large set of practical libraries). Lets say you are considering using a programming language. Does having a large set of practical libraries matter? If your language is well designed, then it would be easy to create a 'string' librar...

Extracting raw audio/waveform from an MP3

Hi all, This question has been in my mind for a few years and I never actually found the answer for this. What I would like to do is extract the actual waveform/PCM of an MP3 file, so that I can play it using the soundcard (of course). Ideally I would be experimenting some DSP effects. My first step was to look into LAME, but I didn'...

Networking Framework for C++ (UDP or TCP)?

I'm writing a threaded cross-platform application (Linux/Windows) using SDL and OpenGL, and to do networking I was considering SDL Net2 because it sits on top of SDL_Net. However, I've never done networking in C/C++ before, so I'm unfamiliar with any available cross-platform technologies. Is there anyone with experience with SDL_Net or ...