library

What is your "favourite" Java API annoyance?

What is your "favorite" API annoyance or missing feature or misengineered part? ...

Autocomplete Libraries (NOT "how to implement autocomplete") ?

I'm building an open-source autocomplete plugin for my text editor b/c it doesn't have one yet. Are there any autocomplete libraries I can use i.e. some sort of data file containing commonly used functions in Java, C, PHP etc? I have the plugin built, but I don't particularly want to go through all of Java's documentation and hand-write...

STM hash library for C (glib?)

I'm looking for some C library that includes STM-style (Software Transactional Memory) hash maps, but I had no luck so far. It would be great if it was based on glib / gobject, but it's not that crucial. It also doesn't need proper transactions over many objects - single immutable hash support is all I really need. Must haves: immutable...

ObjectPool<T> or similar for .NET already in a library?

I don't want to write my own because i'm afraid i might miss something and/or rip off other people's work, so is there an ObjectPool (or similar) class existing in a library for .NET? By object pool, i mean a class that assists caching of objects that take a long time to create, generally used to improve performance. ...

Ruby library/gem for game graphics?

I am creating a simple Blackjack game in Ruby, and I have finished all the game logic stuff (finally!) and currently have it running through the command line. It is all working, so now I need a library or gem that will make the whole graphics side of things easier. Any ideas? Thanks. ...

Which library is used to access the Gmail emails using J2ME?

hi guys i want to develop gtalk application for the mobile please tell me the name of library that is used to access the gmail account thr J2ME ...

Graphics library in C

I was wondering if there were any good free graphics libraries for C that are easy to use? It's for plotting 2d and 3d graphs and then saving to a file. It's on a Linux system and there's no gnuplot on the system right now. Or would it just be simpler to switch to another language, and if so which one would be easy to learn? ...

So I want to make a basic music visualizer in C# as practice. Is there a library that lets me handle sound files easily in C#?

What is a sound library I can use to easily manipulate sound files (mp3, ogg, wav, etc.). I'm doing this as a leasure project and as such I'm more than willing to read a bit because I want this to be a little learning experience. Any help, SO? :D ...

Python library for Linux process management

Hello, Through my web interface I would like to start/stop certain processes and determine whether a started process is still running. My existing website is Python based and running on a Linux server, so do you know of a suitable library that supports this functionality? Thanks ...

how to link to static library in c?

I use code::blocks to compile my static library. The output result is a libstatic.a file. Now, how do I link to my library to use functions that were compiled? (I tried to use #include "libstatic.a" but my project doesn't compile) ...

Is the sound library WINMM.DLL found in every Windows Installation?

I'm making a little open source mp3 player for people to see the code, etc. Proper comments, examples and what not. I was wondering though, is the winmm.dll library found in every windows installation? :D Thank SO you beast of a site! ...

Reliable Java libs for general programming

There's always a balance when deciding whether to use a 3rd party library or write your own code. Writing your own takes time and will incur a maintenance cost. Using the 3rd party library has its downsides too, with the potential for version incompatibilities every time you update the dependencies. With some libraries, the downsides ...

Cross platform audio analysis library

I'm looking for a cross-platform library that allows me to analyze the waveform of a sound file. It needs to be able to at least have the ability to query the amplitude for a given sample, and it would be nice if it could do frequency detection. ...

Can (Should) I put 3rd party libraries in version control?

Hi all.. I've met quite a few people lately who says that 3rd party libraries doesn't belong in version control. These people haven't been able to explain to me why they shouldn't yet, so I hoped you guys could come to my rescue :) Personally, I think that when I check the trunk of a project out, it should just work - No need to go to ...

How to add a .o on a static library with Eclipse ?

I have a .h and a .o that I need to add to a static library in Eclipse. I'm able to add it to an application with the Linker options, but for a static library, I haven't found where to add it in the settings. ...

Is C good for any projects beyond the command-line and learning?

This is not meant to be inflammatory or anything like that, but I am in the midst of learning C, and (think) I have a good handle on most of the basics. I've done all of the various book exercises: primes generators, Fibonacci generators, string manipulation, yadda yadda, but none of this is cool. What is the "bridge" between command li...

Free UML drawing library for .NET

Hello, I'm looking for a free .NET (C#) library which i can use in my program and simply draw UML diagrams (especially class diagram). I tried to used Netron Diagramming Library but it is kind of tricky. Thanks in advance. ...

OCaml modules and performance

Some functions are really easy to implement in OCaml (for example, map from a list) but you may use the map of the OCaml library: List.map However, we can wonder which code will be more efficient. Calling a module of a separate compilation unit (a library) may void some possible optimizations. I read in the news group fa.caml that when ...

Branching code for different platforms in SVN

Note: my code is written in flash but this is a SVN-related issue and is not a flash-specific. I have a code library targeted at Flash Player 9 stored in an SVN repository. I want to create a modified version of the code targeted at Flash Player 10. What are the best practices for maintaining both versions of the code? Should I create ...

Profiling Library for .NET

Edit: I'm NOT asking for a way to implement a profiling library, I'm asking if there's one (preferably free) out there. Although there are a lot of commercial and free profilers for the .NET platform they all analyses (better or worse) your application code in a way that let's you see what method call or even line is consuming a lot of ...