|
I'm working with large numbers that I can't have rounded off. Using Lua's standard math library, there seem to be no convenient way to preserve precision past some internal limit. I also see there are several libraries that can be loaded to work with ...
Started by Jon Ericson on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I used Norman Ramsey's suggestion the library:
Lua needs to be built....
But I would expect the GNU multiple precision arithmetic library to be quite a standard here library by Luiz Figueiredo, one of the authors of the Lua language.
|
|
I don't ever recall coming across anything for C that's as extensive as C++'s Boost library.
Started by Thomas Owens on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
I have used both extensively....
Image processing, 3D graphics, networking, etc., but never a real general-purpose library like boost you're trying to do there is APR (The Apache Portable Runtime library) which is what the Apache http telco products.
|
|
At least on Linux and Solaris, static libraries are really just a bunch of compiled .o's tossed into one big compressed file. When compiling a static library, usually the -fpic flag is ommited, so the generated code is position dependent.
Now say my static...
Started by Joseph Garvin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
With PIC code, the text pages in memory are just direct memory... .
That said, non-PIC code in shared objects are more heavyweight .
You do not have to use PIC code in shared objects (as you have discovered you can use the -mimpure-text option to allow that) .
|
Ask your Facebook Friends
|
As you probably know there has been some fuss over library closures all over the UK (mainly in England and Wales I think, but I'm not sure).
I like libraries. For a while I visited the one in my home town, sometimes for fiction, sometimes for study, and...
Started by by liberal on
, 21 posts
by 14 people.
Answer Snippets (Read the full thread at officialnintendomagazine):
They can spend hours a day justI don't think they... .
They can spend hours a day just learning without cost, regardless any subject they can think of (assuming it's a big enough library).
Of (assuming it's a big enough library).
|
|
I'm looking for a crypto library to use with Objective-C code. There is a C++ library which is too big for my needs. It's 20 mb when compiled. I think a C library would be perfect to use with Objective-C. Here is my needs for this library: AES (Rijndael...
Answer Snippets (Read the full thread at stackoverflow):
Then, you can use functions like CC_MD5() , CC_SHA() , CC_HMac() , etc .
Provides Objective-C wrappers for openssl, which makes the C-based openssl library a little easier to use is the CommonCrypto library.
|
|
I'm looking for a not too big C or C++ library that would allow to read email through pop on Windows. The smallest the better. It would be better if it could support SSL.
Started by Emmanuel Caradec on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I have not used this library but the SMTP one with great.
This CPJNOPO3Connection which supports ssl.
|
|
As it says...
I've been trying to track down a sample library that has pad samples of a similar high quality as those found in Omnisphere or Nexus.
I have Alchemy and am looking for more fodder for it's engine.
Any ideas?
Answer Snippets (Read the full thread at kvraudio):
I've been trying to track down a sample library that has pad samples omnisphere is a monster - the library....
I've been trying to track down a sample library .
|
|
I want to use GD library in my PHP script to generate a small thumbnail of a random big picture from external server. Every time the page is called, the GD library will regenerate a thumbnail and show it.
Will this slow down the server or use up an unusual...
Started by Tom on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
A PHP library that deals with a lot of this caching for you is phpThumb.
That'd be a great move.
|
|
Hello everyone,
We recently converted a C++ project from Visual Studio 6 to Visual Studio 8. Everything went well until we reached the compilation of a project who put all the static libraries inside one big static library. By default after the conversion...
Started by Iulian Șerbănoiu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So doing this is ....
Unfortunately this is not e very good option in our case because we have different configuration and each lib changes directory (eg: In the debug version is in the debug directory, in the release version is in the release directory) .
|
|
General question: For unmanaged C++, what's better for internal code sharing?
Reuse code by sharing the actual source code? OR Reuse code by sharing the library / dynamic library (+ all the header files) Whichever it is: what's your strategy for reducing...
Started by ShaChris23 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
That's independent of whether the library is shared library that had an....
It was more about sharing a library between different applications that you're developing at about the same a couple places, it needs to be its own function.
|