Can anyone recommend a cryptographically-secure pseudo random number generator library for Delphi (Win32)?
Can be free or commercial, but will ideally be an active project. I'd like it to include source code.
...
I've been asked to write a web application in PHP to handle customers, sales, estimates, invoices... I think I could benefit from a JavaScript library that could encapsulate some basic UI functionality (sortable listings, masked input fields, date pickers...) but I don't want to adopt a heavy framework that forces me to go through a stee...
UPDATE (FIGURED OUT):
I figured this out on my own, this is not documented anywhere. The array reference passed needs to have each array item be a hash reference using either the a categoryName or categoryId key identifier. Meaning:
'categories' => [
{'categoryName' => 'CatName1'},
{'categoryName' => 'CatName2'},
],
The quest...
I'm using a library which has both a C interface and a C++ interface in my C++ program. The C++ one is a bit immature and I must stick with the C one. I was wondering, in more general terms, is there anything specific to keep in mind when mixing C-style binary object files with a C++ project?
...
I'm looking for a library that can be used to develop an application that supports KML. Basically I'm looking for what Google Earth does for 3D visualizations using KML.
Is there such a library?
...
I have a question which may be somewhat silly because I'm pretty sure I may know the answer already.
Suppose you have static library A, and dynamic shared object library B and your program C under linux. Suppose that library A calls functions from library B and your program calls functions from library A. Now suppose that all functions ...
I always see people mention that "Python binding" and "C Sharp binding" etc. when I am actually using their C++ libraries. What does binding mean? If the library is written in C, and does Python binding means that they use SWIG kind of tool to mock a Python interface?
Newbie in this field, and any suggestion will be welcomed.
...
I am wondering if there is a function I could use in the standard libary. Do I need another library (BTW, I am developing for unix).
...
Is anyone know how to generate media foundation TypeLibrary which will then be imported as COM in managed code ?
I didn't found any dll or tlb file related to media foundation which i can import in my C#.Net application.
...
env: gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu9)
app: Bin(main) calls dynamic lib(testb.so), and testb.so contains a static lib(libtesta.a).
file list:
main.c
test.h
a.c
b.c
then compile as:
gcc -o testa.o -c a.c
ar -r libtesta.a testa.o
gcc -shared -fPIC -o testb.so b.c
gcc -o main main.c -L. -ltesta -ldl
then compile success, b...
I have a java project in which I have "Referenced Libraries". In the "Referenced Libraries" I have a .jar file of a library that I use (I use only one external library).
When I try to "Run -> Run" the code I have a NullPointerException. From my previous experience I know that it it (very likely) because my code does not see the library....
I am trying to map built-in Word document properties to Sharepoint columns. For example Word has property called Total Editing Time. How would i go about doing this in Sharepoint (or more specifically SP2010)?
...
I have a OCaml library with lots of classes I need some translator to make it from OCaml lib a C lib so to be able to use its methods. How to do such thing? How to port OCaml lib into lib Acsessable from C code?
...
I thought one of the best ways to familiarise myself with C/C++, is to make a helpful library. I was maybe thinking like a geometry library, like to calculate areas, surface area, etc. It would be useful in game programming. Or maybe an algebra library, like for different formulas like the distance formula, quadratic formula, etc. Or may...
I am writing a Win32 DLL library that can be redistributed. I am using different versions of the windows API because I want to support Windows 7 functions, but still have support for Windows 2000 (with some function disabled). What I have currently is MyLib2000.dll, MyLibXP.dll, and MyLibVista.dll, and my application chooses which librar...
Hi,
does anybody know of a library for storing data securely in an 8k-EEPROM, which is attached over the I2C-interface? I am especially interested in wear-leveling as I have a write-intensive application where the EEPROM should/must be used as a NVRAM for often-chaning measurement data.
Thanks in advance, Martin
...
Hello!
How do I pick out a bookmark that I saved on my Android without using the cursor method? (http://stackoverflow.com/questions/1561535/android-how-do-i-deal-with-storing-bookmarks)
Intents? or other ways?
thanks.
...
Hello everyone!
I'm trying to use DevIL with Xcode but I can't get it to work.
I tried using the "standard" method by doing "configure make make install" and using #import <IL/il> but it doesn't work. It identifies the library but I still get some compiling errors:
Ld build/Release/cg.app/Contents/MacOS/cg normal i386
cd "/Users/s...
From what I have gathered, one can have both editions of Delphi installed. My concern is that default paths, etc, may get confused especially when installing 3rd party components.
The reason why I want to do this is I have some 3rd party components which have not been updated. Although I have the source files, I'm not knowledgeable enou...
I have some external header files in a separate directory (its the sqlite3.h). I want to be able to use them in my Eclipse CDT project. How would I include the directory to Eclipse?
...