active questions tagged library - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:29:20Zhttp://stackoverflow.com/feeds/tag/libraryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816089/how-to-compress-an-flv-movie-in-java1How to compress an FLV movie in java?Rakesh Juyal2009-11-29T17:13:43Z2009-11-29T18:59:07Z
<p>How can we compress the flv movie? Is there any free library which i can use?<br>
for compressing the video i can go for reducing the resoultion as well, even framerate reducing is acceptable to me.</p>
http://stackoverflow.com/questions/1740661/how-to-catch-exception-thrown-from-library-in-gcc-c2How to catch exception thrown from library in GCC C++?Rob Smith2009-11-16T07:38:45Z2009-11-29T17:39:21Z
<p>When i use dlopen to dynamically load a library it seems i can not catch exceptions thrown by that library. As i understand it it's because dlopen is a C function.</p>
<p>Is there another way to dynamically load a library that makes it possible to catch exceptions thrown by the lib in GCC?</p>
<p>In Windows you can use LoadLibrary but for Linux i have only found dlopen but when using dlopen i can not catch exceptions.</p>
<p><b>Edit</b>:
I have tried void* handle = dlopen("myLib.so", RTLD_NOW | RTLD_GLOBAL); and I still cant catch exceptions thrown by myLib.so</p>
<p><b>Edit 2</b>:
I throw custom exceptions with its own namespace. I want to be able to catch these exceptions outside the library.
I want to be able to compile on different compilers, for example GCC 3.2 and GCC 4.1.</p>
<p>In myLib2.so i throw exceptions, one example:</p>
<pre><code>namespace MyNamespace {
void MyClass::function1() throw(Exception1) {
throw Exception1("Error message");
}
}
</code></pre>
<p>In myLib1.so I want to catch that exception: </p>
<pre><code>std::auto_ptr <MyNamespace::MyClass> obj = MyNamespace::getClass();
try {
obj->function1();
} catch (MyNamespace::Exception1& e) {
std::cout << e.what(); //This is not caught for some reason.
}
</code></pre>
<p>mylib1.so dynamically loads myLib2.so with: </p>
<pre><code>void* handle = dlopen("myLib2.so", RTLDNOW | RTLDGLOBAL);
</code></pre>
<p>This <b>works in Windows</b> (to catch my exceptions) but there I dont use dlopen of course.</p>
<p><b>Edit 3</b>: myLib1.so is dynamically linked.</p>
http://stackoverflow.com/questions/1816049/introduction-to-java-graphics-libraries0Introduction to Java Graphics LibrariesSteve2009-11-29T16:59:32Z2009-11-29T17:02:33Z
<p>I jut got into information-visualization and scientific-visualization and have been using Piccolo and a little with JFreeChart. I am trying to find a few new libraries that I can start using. I am looking specifically for libraries that involve multi-dimensional visualization and map overlaying (something like open-layers), but would be open to get exposure to any graphics libraries.</p>
http://stackoverflow.com/questions/1812386/advice-on-implementing-low-level-libraries-in-d-as-opposed-to-c-c2Advice on implementing low-level libraries in D (as opposed to C/C++)Rehno Lindeque2009-11-28T12:11:27Z2009-11-29T16:08:27Z
<p>I need some advice on selecting the D programming language for a project. The project is a low-level library akin to a database with many associative containers and so forth. Hence efficiency is quite important to me.</p>
<p>I need to provide a C API for the library for compatibility with other languages like C++ and Python and I also anticipate that some sections might need to be written in plain C for tuning performance.</p>
<p>D seems very appealing for this job: Are there any pitfalls I should be aware of considering these requirements? How does the performance of D containers compare to the std::(map, vector, unordered_map, etc...), taking manual performance-tuning into account (e.g. using std::map::lower_bound for search/insert and so forth).</p>
http://stackoverflow.com/questions/1814459/what-ld-stand-for-on-ldlibrarypath-variable-on-unix0What LD stand for on LD_LIBRARY_PATH variable on *unix?Marcos Roriz2009-11-29T02:33:51Z2009-11-29T03:33:01Z
<p>I know that <code>LD_LIBRARY_PATH</code> is a environment variable where the linker will look for the shared library (which contains shared objects) to link with the executable code.</p>
<p>But what does the LD Stands for, is it for Load? or List Directory?</p>
http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c2User-mode synchronization library for C++CyberShadow2009-11-27T15:30:57Z2009-11-28T21:36:25Z
<p>Does anyone know of a Windows user-mode thread synchronization library for C++ (utilizing spin locks / atomic operations)? I only need mutexes (~critical sections), but condition variables would be a plus.</p>
http://stackoverflow.com/questions/1812954/how-should-i-organize-the-code-for-my-software-package1How should I organize the code for my software package?dehmann2009-11-28T16:32:53Z2009-11-28T17:51:55Z
<p>I want to reorganize my C++ code project, which contains of hundreds of source files.</p>
<p>I want to split everything into 4 libraries, taking care to avoid cyclic dependencies:</p>
<pre><code>(a) src/core
(b) src/util
(c) src/create
(d) src/process
</code></pre>
<p>Basically, <code>core</code> implements the basic data structures and <code>util</code> implements some basic utility functions to work with them.</p>
<p><code>create</code> uses (a) and (b) to create such data structures from data, which is a kind of complicated procedure, and <code>process</code> takes such such data structures and processes them, implementing the main functionality of the package.</p>
<p>Is that reasonable? </p>
<p>I also have some additional code: There are some functions that glue other stuff together, e.g. they create the data structures from data in a particular way and then process them. Also, there are different user programs containing <code>main</code>.</p>
<p>I'm thinking of putting them into different directories:</p>
<pre><code>src/glue - for the glue code that uses the `create` and `process` libraries
src/driver - for the code with main() functions
</code></pre>
<p>Is that overkill? Any suggestions?</p>
<p>I notice it's not an essential programming question, but I'd like some advice before I reorganize everything and publish the code.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1785542/most-useful-actionscript-libraries6Most useful ActionScript librariesKen2009-11-23T19:56:00Z2009-11-28T17:15:45Z
<p>What are some useful plug-ins, packages or source-code for ActionScript?</p>
<p>Please include ActionScript version, name, link and description.</p>
http://stackoverflow.com/questions/1812872/java-sms-api-for-modem1Java SMS API for ModemIndexController2009-11-28T16:04:00Z2009-11-28T16:04:00Z
<p>I need a Java API that i can use to receive and send SMS messages. I already know of SMSLIB, but am wondering if there is a better one out there.</p>
http://stackoverflow.com/questions/1810372/c-serialization-library-that-supports-partial-serialization0C++ serialization library that supports partial serialization?Joseph Garvin2009-11-27T19:38:22Z2009-11-28T13:55:43Z
<p>Are there any good existing C++ serialization libraries that support partial serialization? By partial serialization I mean that I might want to say, save the values of 3 specific members, and later be able to apply that saved copy to a different instance, only updating those 3 members and leaving the others intact. This would be useful for example for sending data over the network -- I have some object on a client and a server, and when a member changes on the server I want to send a message to the client containing the updated value for that member and that member only, I don't want to send a copy of the whole object over the wire. boost::serialization at a glance looks like it only supports all or nothing.</p>
http://stackoverflow.com/questions/1468178/as3-getting-library-symbols-from-an-assets-class3as3 - getting library symbols from an Assets classsol2009-09-23T19:45:29Z2009-11-28T10:25:52Z
<p>I have created an assets.swf, in which I want to keep all my symbols. Then, I have created an Assets class which does the embedding. It looks like this:</p>
<pre><code>public class Assets extends MovieClip
{
[Embed(source="assets.swf", symbol="MyBox")]
public static var MyBox:Class;
public function Assets()
{
}
}
</code></pre>
<p>Now, in some other class, I want to create a new box:</p>
<pre><code>import com.company.Assets;
...
public function Game()
{
var myBox:MovieClip = new Assets.MyBox();
addChild(myBox);
}
</code></pre>
<p>I know this in incorrect, and I get "TypeError: Error #1007: Instantiation attempted on a non-constructor." How can I get access to the assets in the Assets class?</p>
http://stackoverflow.com/questions/1810380/library-for-software-mixing-of-sound-wave-streams0Library for software mixing of sound (wave) streamsDan Cristoloveanu2009-11-27T19:39:29Z2009-11-28T01:34:39Z
<p>I would like to mix several sound (wave) streams into one.
Each stream might have a different format (bits/sample, channel count, etc.), so conversion is needed also.</p>
<p>I am looking for a library to do this, which I can link into my VS C++ project, before jumping in and implementing my own.</p>
http://stackoverflow.com/questions/1808673/how-to-include-resources-in-iphone-static-library1How to include resources in iphone static library ?CodeFlakes2009-11-27T13:07:16Z2009-11-27T19:43:18Z
<p>I'd like to include files, data and images in a static library API so the users won't need to include them manually in their project.
I see that there isn't obvious way to do it but is there some hack or workaround to achieve this goal ?
Thanks</p>
http://stackoverflow.com/questions/108699/good-php-orm-library31Good PHP ORM Library?sgibbons2008-09-20T16:44:52Z2009-11-27T14:59:25Z
<p>Does anyone know of a good object-relational-mapping library for PHP? I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the domain model and the relational model. I'm looking for a PHP library that functions similarly to the way Hibernate does for Java/.Net.</p>
http://stackoverflow.com/questions/1807179/is-there-any-open-source-comand-line-library1Is there any open source comand line library?arsane2009-11-27T07:00:45Z2009-11-27T14:13:06Z
<p>I want to add command line interface support to a server program.</p>
<p>So each time I want to check server's status, I can telnet to the server's control port,
and input command to check the server's status.</p>
<p>Is there any open source library implements such functionality so I need not write it from scratch?</p>
<p>Further more, if the library can provides more features such like cisco's command line interface (tab key hint, command query, vi mode, or even symbol based command), that's would be great. </p>
http://stackoverflow.com/questions/1808375/send-and-receive-data-trough-the-power-network2Send and receive data trough the power networkluvieere2009-11-27T12:06:48Z2009-11-27T12:35:51Z
<p>I'm <strong>not</strong> interested in a hardware solution, I want to know about software that may "read" modulated signal received trough the power supply - some sort of a low-level driver that would access the power signal in a convenient place and demodulate it.</p>
<p>Is there a way to receive signal from the computer's power supply? I'm interested in an API or library that would allow the computer to be seen as a node in a <a href="http://en.wikipedia.org/wiki/Power%5Fline%5Fcommunication" rel="nofollow">Power Line Communication</a> network and receive data directly through the power cable, without the need for a converter. Is there any active research in this field?</p>
http://stackoverflow.com/questions/1803131/server-side-audio-mixer-whats-available-can-csounds-do-this0Server side audio mixer. What's available? (Can cSounds do this?)Breton2009-11-26T11:25:54Z2009-11-27T11:07:09Z
<p>I am interested in finding out if there exists a program or library which can perform the following task, and would be suitable for running as part of a server side process on a web site. (it's okay if it takes longer than the 200 milisecond maximum that is reasonable for a single page request-I can run it as an asynchronous process)</p>
<p>The task is this: I have as input a set of audio files, and I have some data about when each audio file should start playing in a timeline. The program should output an audio file which is a mix of the input audio, combined using the timeline data. That is, I want an audio mixer that operates in <strong>batch mode</strong>, and not in real time.</p>
<p>I've done some google searches, but came up a bit frustrated because I'm not exactly sure what I should be looking for. Most audio mixers seem geared towards real time applications like games, and I'm not sure how to find something that does this task as something like a command line utility- purely taking input, and producing output as fast as it can. </p>
<p>I hope this question makes sense.</p>
<p>edit: Someone commented about cSounds, and then deleted it. Can anyone tell me more about csounds? Is it relatively straightforward to do what I'm asking? keep in mind that my input sound files may be between 10-50 seconds long, and I'm not interested in pitch distortion.</p>
<p>How would you accomplish this in cSounds?</p>
http://stackoverflow.com/questions/1807603/how-to-install-the-allegro-library-on-visual-studio-2008-and-windows-vista-for-th0How to install the Allegro library on Visual Studio 2008 and Windows Vista for the C programming language?Chris_452009-11-27T09:15:30Z2009-11-27T10:49:53Z
<p>How do you set up to use the full Allegro library on Windows Vista and Visual Studio 2008?</p>
<p>Do you have to compile it or is it only a matter of setting searchpaths?</p>
http://stackoverflow.com/questions/1749410/concept-of-sticky-library-on-aix0Concept of "Sticky" library on AIX ? Mikael Mechoulam2009-11-17T14:55:53Z2009-11-27T09:53:08Z
<p>We have a problem when loading a dynamic library multiple times (>200) on AIX. The page : <a href="http://www-01.ibm.com/support/docview.wss?uid=isg1IY93339" rel="nofollow">http://www-01.ibm.com/support/docview.wss?uid=isg1IY93339</a> states a similar problem and the suggested solution is to "make the library sticky" to load it in memory a single time...But does the concept still exist on AIX 5.3 and above ? It does not seem to be the case when we read the wikipedia for example (sticky still exists but not in this meaning). Is there another solution ?</p>
http://stackoverflow.com/questions/1630597/how-to-use-a-c-library-from-d4How to use a C library from D?ralle2009-10-27T12:52:55Z2009-11-27T08:18:32Z
<p>Today I heard about the D programming and that it is compatible to C code. Nevertheless I haven't found any information on whether it is possible to use C libraries like GTK or PortAudio from D?
If it is possible, could you explain how to do this?</p>
http://stackoverflow.com/questions/1806943/adding-my-custom-php-library-in-includepath0Adding my custom PHP Library in include_pathsathish2009-11-27T05:37:22Z2009-11-27T05:44:52Z
<p>I want to add my PHP library file to be included in include_path, so that i can access it from anywhere in my application running on that server. I tried adding it as per the syntax for include_path in php.ini But its not working. I tried get_ini("include_path"); and got the value perfectly. But my functions are not inlcuded in my applications. </p>
http://stackoverflow.com/questions/1806110/which-approach-to-create-the-data-access-layer-has-the-highest-performance-1Which approach to create the data access layer has the highest performance?pooyakhamooshi2009-11-26T23:29:06Z2009-11-26T23:38:09Z
<p>I have to create a very high performance application. Currently, I am using Entity Framework for my data access layer. My application has to insert some communication data almost every second. I found that Entity Framework is slow; it has about 2 seconds delay to finish the SaveChanges() method.</p>
<p>I was thinking I have the following options:
1. Create the data access layer myself using ADO.NET; using stored procedures or ad-hoc queries
2. Use Enterprise Library Data access Layer
3. Use NHibernate
4. Use Repository Factory: <a href="http://pooyakhamooshi.blogspot.com/search?q=repository" rel="nofollow">http://pooyakhamooshi.blogspot.com/search?q=repository</a></p>
<p>What do you think? which one is quicker for inserting data? Which one is quicker to set up?</p>
http://stackoverflow.com/questions/1805856/is-there-a-visual-scripting-library-or-toolkit-that-i-can-plug-into-my-app0Is there a visual scripting library or toolkit that I can plug into my app?sludge2009-11-26T21:59:20Z2009-11-26T21:59:20Z
<p>Visual scripting is a great way for technically inclined non-programmers to articulate their ideas to a computer program. The abstract concepts of looping and visualizing decisions can be applied to a lot of different areas. </p>
<p>In game development in particular, visual scripting languages like Unreal's Kismet can be used to direct gameplay logic. Example:</p>
<p><a href="http://en.wikipedia.org/wiki/File%3AKismet%5FRoboblitz.PNG" rel="nofollow">http://en.wikipedia.org/wiki/File%3AKismet%5FRoboblitz.PNG</a></p>
<p>Are there any libraries or toolkits out there that I could link against to provide a visual scripting tool to (technically inclined) end users?</p>
http://stackoverflow.com/questions/1805099/c-c-nlp-library2c/c++ NLP libraryAyoub2009-11-26T18:29:54Z2009-11-26T18:39:39Z
<p>I am looking for an open source Natural Language Processing library for c/c++ and especially i am interested in Part of speech tagging. </p>
http://stackoverflow.com/questions/1802744/i-need-some-critique-about-lib-design0I need some critique about lib designNilColor2009-11-26T10:04:14Z2009-11-26T12:09:06Z
<p>OK. I have this lib for my internal project</p>
<pre><code>(function() {
var window = this,
undefined; //guaranteed undefined
var h3 = window.h3 = function (user) { return window.h3 = new h3.prototype.init(user); };
h3.prototype = {
init: function(user) {
this.timestamp = +new Date;
this.user = user;
return this;
},
VERSION: '0.0.1', // Current version.
timestamp: undefined,
user: undefined,
a: function() {alert('a');}
};
h3.prototype.init.prototype = h3.prototype;
})();
</code></pre>
<p>Here is a usecase:
I need a lib that will store session user data and provide some functions for application like loading (via AJAX) information, display reports etc. Application is fully AJAX-driven. With help of jQuery i'll check for user credentials and init this lib with <code>h3({user:'user_a',foo:'bar'})</code> call. Thus i will have a global object called h3 and can user it latter (say <code>h3.a()</code>). If i need to re-init this object i can do it with <code>h3.init({user:'user_b',foo:'bla-bla-bla'})</code> call.<br>
Design inspired by well-known jQuery lib.<br>
And main question is - how good/bad is this? Can you help me to validate this design?</p>
http://stackoverflow.com/questions/1803180/is-there-a-library-that-can-take-an-image-and-do-processing-to-determine-things1Is there a library that can take an image...and do processing to determine things about it?alex2009-11-26T11:36:30Z2009-11-26T11:49:32Z
<p>Such as...is the image a person of female or male?</p>
<p>Is there such free tool out there, available?</p>
http://stackoverflow.com/questions/1803002/how-can-i-add-libcurl-to-a-borland-c-builder-6-project0How can I add libCurl to a Borland C++ Builder 6 Project?luvieere2009-11-26T10:55:34Z2009-11-26T10:55:34Z
<p>How can I add libCurl to a Borland C++ Builder 6 Project? I tried including its directory in the project's compiler and linker search paths, then I made a lib from the libcurl dll and I added it to the project, I'm trying to get a piece of sample code to compile, but it throws on error that it doesn't find <code>curl/curl.h</code> in the line <code>#include <curl/curl.h></code>. The libCurl installation did not come with a visible<code>curl/curl.h</code> file, and I'm not a mainly C++ programmer, so I'm stuck :(</p>
http://stackoverflow.com/questions/130095/most-useful-free-java-libraries121Most useful free Java libraries?Pyrolistical2008-09-24T21:29:01Z2009-11-26T04:39:58Z
<p>I've never seen a good list of free Java libraries.</p>
<p>What are some of your can't-live-without Java libraries?</p>
<p><strong>Note</strong>: to keep this <a href="http://stackoverflow.com/questions/tagged/polls">poll</a> as useful as possible, please remember:</p>
<ul>
<li>Post only <strong>one library per answer</strong></li>
<li>We don't want duplicate answers, so <strong>before posting check if the library has been mentioned already</strong></li>
<li>When adding a new library, provide a short summary of what it does / why you think it's useful</li>
</ul>
http://stackoverflow.com/questions/1800960/library-for-creating-animated-presentations0Library for Creating Animated Presentationsluvieere2009-11-26T00:43:43Z2009-11-26T02:33:40Z
<p>Is there any library for creating animated presentations? Although the question is language-agnostic, I'm specifically biased towards WPF, yet I wouldn't mind you giving examples of libraries for any other language.</p>
http://stackoverflow.com/questions/1797949/do-you-know-of-any-flex-point-and-click-game-libraries0Do you know of any Flex Point and Click game Libraries?Kieveli2009-11-25T16:02:29Z2009-11-26T01:43:16Z
<p>I'm looking for a game library for Flex that supports such features as:</p>
<ul>
<li>Movement</li>
<li>Inventory</li>
<li>Items</li>
</ul>
<p>Does anyone know of any libraries that might be suitable?</p>