library

Debugging C# to Intel C++ in different projects

Similar to this problem here: Old Question about C# debugging I'm trying to debug a library that's used in multiple projects and is compiled using Intel's C++ v 11 compiler (ie, not the standard compiler) in Visual Studio 2008. The current platform I'm using to debug is a C# program that calls the C++ method through a p/invoke. Is th...

Handling and syncing own custom version of an open source library with SVN

I found an open source library that seems quite useful in my project. The library is however in alfa/beta state and is a bit immature. It happened that I had to manually apply a patch or make some changes completely on my own in order to get rid of some minor bugs in that lib. The question is: how can I store and manage my custom "branc...

Is it possible to remove unused code/assemblies in .NET?

I have a control library in my application that's a bit big for the type of application I'm developing. The library is more than 2Mb and I barely use it's functionality, I would say I use like 5% to 10% of all it's functionality. Is there anyway to remove code that my application never uses from the library? P.S: The library is not dev...

Best java twitter library?

The twitter API site lists 3 java twitter libaries. Twitter4j java-twitter jtwitter Do you know others? What are your experiences in support, ease of use, stability, community, etc. ...

Command line progress bar in Java

I have a Java program running in command line mode. I would like to display a progress bar, showing the percentage of job done. The same kind of progress bar you would see using wget under unix. Is there a library to make this possible ? ...

What are the most useful, free .NET libraries?

Please ignore. DUPLICATE to http://stackoverflow.com/questions/662956/most-useful-free-net-libraries There's a similar question on SO for Java. I didn't see one for .NET. What are the best can't-live-without free (gratis and/or libre) .NET libraries? This is a poll, so please: Post only one library per answer to avoid duplicate an...

Need recommendations for an ASP.Net compatible HTML->PDF library

I am looking for a library to convert HTML to PDF, including styles. I would prefer it be able to accept a URL as an option, but if required, HTML can be passed in as a stream/byte array with all styles in a single file/buffer. I am using C# / ASP.Net 3.5. I have complete control of the server machine ( I can run as a service, etc... ...

is there a good web crawler library available for PHP or Ruby?

is there a good web crawler library available for PHP or Ruby? a library that can do it depth first or breadth first... and handle the links even when href="../relative_path.html" and base url is used. ...

Query about shared library performance

Hello, I have a question about performance difference (from the perspective of Cycles consumed) between a static library and shared library(windows - dll). I have a static library for some code. I also have a dynamic library for the same code. I have linked these two libraries to a application. Will there be any difference in perform...

How to build a library for two architectures (simulator, iphoneos) in XCode

I made a little library for the IPhone that I would like to redistribute, but I cannot find how to compile it to work on both the simulator and the iphoneos. I know there is a way to build a lib.a for both architecture, but I cannot figure it out. ...

Is including libCurl in an iPhone app store app allowed? Anyone done this?

I would like to use libCurl in an app for communicating with web services, and unfortunately it is not included int he iPhone SDK. Now I've figured out how to include Curl as a static library in my app, however, I'm wondering if this will get my app rejected with Apple. Has anyone included Curl in an app and had it approved by Apple? ...

How to show source code in debug when using .lib and dll

I am working in VS2005, I have a part of freeimage source code. I compile it into .lib and dll. When I debug the program, I want to step into freeimage source code ,however vs2005 do not know which code is the freeimage.lib freeimage.dll compiled from, How can I let vs2005 know it. I want to step into freeimage source code, when using i...

Caching strategy for asp.net

I would like to ask is there any way to achieve this functionality: I have an Ajax enabled user web site (tree view on the left side, and content on the right side). When users selects a node on the left side, I need to store the last selected node in database. However the user can change the node quite often (even 5 or 10 times a minut...

C++ SpellChecker Library

Can anybody recommend a good (ideally open source) C++ spell checker library. We are currenly using Talo, which isn't very good, so we are looking to change. One which includes a grammar checker would also be good. Thanks ...

Java USB library

Is there a good Java USB API i can use? I tried JUSB but it doesn't seem to work. It's also very old, no updates since 2001. ...

Best .NET Framework 2.0 book for C#, Libraries?

I am an senior-slash-"advanced" C#/.NET developer, currently using 3.5 Framework with WPF/WCF and Silverlight (WPF/E). I have come up right through 1.0 and 2.0 and so am well versed with the evolution of .NET. My next project could be "back" into 2.0 Framework, but with enough complexity (and time pressure) so as to call on "expert" skil...

GCC is not linking library to a non-default path!

I have boost C++ libraries already installed on my Fedora10 machine but I want to use a newer version that I keep at some location in my home folder. I want g++ to use include and library files from my home folder location instead of default (/usr/include and /usr/lib64). For that matter, I also have declared CPLUS_INCLUDE_PATH and LIBR...

Recommendations for C++ 3d vector/matrix library with targeted camera

I am writing a very simple 3d particle software rendering system, but I am only really interested in coding the particle system and the rasterizer, so what I am looking for, is the easiest way to go from 3d particle coordinates, through camera, to screen coordinates, but with features like variable FOV, and targeted (look at) camera. An...

Statically linked unmanaged libs and C++ CLR

Is it possible to use to use libs compiled with /MT in C++ CLR? It throws me either a ton of LNK2022 "metadata operation failed (8013118D)" errors (if I use /MD in the CLR project) or " '/MT' and '/clr:pure' command-line options are incompatible" if I use /MT. What do I need to change in the library? The library is mine, but it includes...

What are persuasive arguments for making the library case?

When making the case for library usage within an application, what arguments lead to the greatest success? How have you successfully helped co-workers see the benefits of library usage? Specifically in the context where: 1. The library is open source. 2. The library is for JavaScript, HTML, CSS. 3. A team of developers has a culture wh...