library

Is there an open source .NET equivalent to the date.js library?

Just wondering if anyone knows of an open source .Net library that handles dates similarly to the date.js library which allows you to do things like the following. // What date is next thursday? Date.today().next().thursday(); // Add 3 days to Today Date.today().add(3).days(); // Is today Friday? Date.today().is().friday(); // Number...

Performance evaluation tools for C++

Hi everyone, I am really not sure if such a tool exits but let me describe it in few words. I want to measure the performance of a small library I am writing. Basically the library does arbitrary precision arithmetic. I would like to compare the performance of the library against available libraries and get the statistics of the tests. ...

Looking for FTP Server Java library

I'm looking for Java FTP Server library, which lets to replace DAL with lets say a DB data. So far, i saw that in Apache FtpServer there is an option to intercept some of the commands using FTPLet container, however it is missing the most important command such as LIST. ...

Is there any algorithm for generating 3d clouds?

So Id love to see an algorithm for generating 3d cloud objects. as realistic as possible. I know that there are different cloud types But I am moust interested in such cloud tupes like so can any one point to algorithm or just a C\C++\C#\AS3 or any other language lib that can do such thing? ...

Most programing languages have 'include library into your code' function but where is function 'include your code into library'?

Most programing languages have 'include library into your code' function but where is function 'include your code into library'? I Mean push into other files from the source, rather than pull into from the consuming files. Idea is simple - we have a library A with class B we want to extend B with some C functions but we do not want t...

Which Java library/libraries for Genetic Algorithms?

Hi there, I want to implement some simple genetic algorithms in Java. So far I found only JGAP. Did somebody has some experience with that? And do you know other Java libraries for GA? I do not want to write it my own as in http://stackoverflow.com/questions/1575061/ga-written-in-java and I have to use Java, so http://stackoverflow.co...

Redefining syntactic keywords in r6rs

How can I create a library called rnrs-modified which will make the following code display "Hello, world!"...? #!r6rs (import (rnrs-modified)) (display set!) or even this would be good (arguably better, actually): #!r6rs (import (rnrs) (modified)) ;or (import (modified) (rnrs)) (display set!) Essentially I want to be able to redefi...

Pull Remote URL for GD Generated Image in PHP

I'm generating images with PHP/GD Library for people to place on their websites. Similar to the "hit counter" services. I am not able to pull the URL from the page that the button is loaded on. The following only displays my url not theirs: $_SERVER['SERVER_NAME']; Am I going to need to pull the domain in Javascript? ...

How to examine required libraries?

I developing a web application with a lot of libraries like, Spring, Apache CXF, Hibernate, Apache Axis, Apache Common and so one. Each of these framework comes with a lot of *.jar libraries. For development I simple take all of the delivered libraries and add them to my classpath. For deployment not all of these libraries are require...

Creating a Custom Media Library - Loading Images for Rendering (VB.net)

OK, I'm working on a project right now and I need to create a graphic library. The game I'm experimenting with is an RPG; this project is expected to contain many big graphic files to use and I would prefer not to load everything into memory at once, like I've done before with other smaller projects. So, does anyone have experience wit...

WordPress: Managing subfolders in media library

I'm working on a site for a client that uses a large number of images and we concluded that it's necessary to use subfolders within the media library, also being able to give these custom names (no auto-generated date based folders). I guess it's possible to make some sort of function for this or use a plugin but haven't found any existi...

Dynamically loading two libpython versions

I have a program which embeds both python2 and python3 interpreters. The libpython shared libraries are dlopen()ed by the respective commands which provide access to the interpreters and each interpreter maintains its own state. This all works just fine if the user only uses pure python modules or builtins. Trying to load a C extensio...

Building dependencies in Xcode 4

I have a project that has a dependency on a static library. In Xcode 3.2.3 the project that builds the library is setup as a direct dependency in the target settings so that the library is built whenever the main project is built. I can't for the life of me figure out how this is supposed to work in Xcode 4. I haven't changed any projec...

Is it true that there will always be a .lib(import library) associated with the .dll you build?

Or do I need to instruct the compiler explicitly ? ...

Database or format for help system?

Hi. I'm implementing a help system for my app. Its written in C and Gtk+. Help is divided on books. Each book is just a bunch of HTML pages with resource. The problem I've encountered is that each book is ~30M (using WebKit Gtk port to display it). After zipping it becomes ~7M, but opening document becomes extremely slow :( So I'm think...

C# Charting Library

I've been looking for a good cross-platform charting library to use on a .NET project intended to be run on both Windows and Linux, but everything looks to have a dependency on WinForms controls, seemingly including ZedGraph (not to mention that ZedGraph looks a bit, well, dated). Microsoft's Chart Controls for WinForms/ASP.NET look gr...

Why is my static library so huge?

I have a C++ compiled static library of about 15 classes and their member functions and stuff, and compiled, it's almost 14 megabytes. It links to Google's dense hash table library and MPIR, which is like GMP for Windows, but I did that in a plain exe and it was a few kilobytes. Why is it so massive? What can I do to reduce its size? It ...

g++ 4.4 "error while loading shared libraries"

I'm following the C++ Cookbook tutorial on static and dynamic library linking with g++. I can build the binary fine, but when I run it I get the error ./hellobeatles: error while loading shared libraries: libjohnpaul.so: cannot open shared object file: No such file or directory I used the command : g++ -o hellobeatles hellobeatles.cpp...

Duplicate Symbol XCode duplicate library for same library?

Do you have any idea? Why XCode compilation give this result? ld: duplicate symbol _kJSONDeserializerErrorDomain in /Users/Shared/_BUILDS_/Debug-iphoneos/libLACDLibrary.a(CJSONDeserializer.o) and /Users/Shared/_BUILDS_/Debug-iphoneos/libLACDLibrary.a(CJSONDeserializer.o) ...

clutter UI library wrapper

I want to use Clutter library but not in C/C++ languages. I want a more high level, maybe dynamic language for easy & speed of development to prototype some UI ideas. Also, if posible, it must have stable & complete api coverage. ...