external-library

Best practices for wrapping an external library

Our code base uses several external libraries, in order to save time and focus on developing important features instead of reinventing the wheel. Currently the code is littered with direct usage of the libraries. This means that switching to other libraries that have more-or-less the same features will mean rewriting almost everything f...

How do I create a movie from images using .NET

Hi, In fact, the question says it all. I have a lot of images (JPGs) and I want to create a movie from them programmatically. Is there any such library for .NET(preferrably free) through which I can do this? I have done some googling and couldn't find any such thing. Thanks. Related: http://stackoverflow.com/questions/539257/working-w...

Netbeans external library issues

Hey, So I am developing an Azureus plugin in NetBeans. I was using Eclipse and everything was hunky-dorry but for GUI related reasons I needed to switch to NetBeans The main class for my project is in an external JAR called Azerues2.jar. So I added the JAR it to the project's libraries. Then I go to the run configuration in order to se...

Blink/Flash effect or animation in gwt

Hi, I'm building an web intra-net application which has the need for a flashing/blinking button (this has been discussed in depth and is our design decision so please do not lecture me about it). Our UI framework is GWT. Currently in the prototype this effect is achieved be scheduling a timer which adds or removes a css style thus creati...

(External) Java library for creating Tree structure ?

I am planning to implement a tree structure where every node has two children and a parent along with various other node properties (and I'd want to do this in Java ) Now, the way to it probably is to create the node such that it links to other nodes ( linked list trick ), but I was wondering if there is any good external library to han...

How to eliminate external lib/third party warnings in GCC

Hi everyone, In the software project I'm working on, we use certain 3rd party libraries which, sadly, produce annoying gcc warnings. We are striving to clean all code of warnings, and want to enable the treat-warnings-as-errors (-Werror) flag in GCC. Is there a way to make these 3rd party generated warnings, which we cannot fix, to disa...

java: using external library

Hello, I would like to use an external library (e.g. google's guava) for my java program. I use eclipse IDE, so I downloaded guava's jar (and sourced) and followed http://www.vogella.de/articles/Eclipse/article.html#classpath_jar to add it to eclipse and to the builpath of my project. This works fine: I can run the program from eclipse ...

Should external libraries be inside or outside my PHP project directory structure?

I'm building my first PHP project, and am not sure where to put external libraries like doctrine. I could put them inside my app, making it easier to reference with a relative path: myproject app public lib doctrine log Or I could put them outside my project directory structure, making it easier to share between mul...