Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.401.657 Times

Void Ridge freeware
Filter: All | Freeware | Demo
 

Void Ridge

< 1 2 3 4 5 > 
Added: September 06, 2010 | Visits: 920

EasyHTTPD EasyHTTPD is a drop in C++ class to implement an HTTP 1.0 Server - Now with OpenSSL Support! The class can be used to allow an application to be controlled by a browser, hence Embedded. To this functionality to an app, add the C++ class to the application, write and register request callback...



Platforms: *nix

License: Freeware Size: 16.38 KB Download (97): EasyHTTPD Download

Added: February 07, 2010 | Visits: 961

liboil Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. Such functions are candidates...





Platforms: *nix

License: Freeware Size: 706.56 KB Download (97): liboil Download

Added: October 22, 2010 | Visits: 1.221

YaHP Converter YaHP Converter is a java library that can convert an HTML document into a PDF document. YaHP is licensed under the LGPL (GNU). Method Summary void convertToPdf(java.lang.String content, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.lang.String urlForBase, java.io.OutputStream...


Platforms: *nix

License: Freeware Size: 29.3 MB Download (97): YaHP Converter Download

Added: March 06, 2010 | Visits: 1.058

Extended C++ Callback Library Extended C++ Callback Library provides functors and delegates for up to ten parameters. Some callback "containers" will make life easier in special cases. For example, with DelegateList, you are able to execute all callbacks with a single call. Whats New in This Release: - added ReturnType...


Platforms: *nix

License: Freeware Size: 532.48 KB Download (97): Extended C++ Callback Library Download

Added: April 21, 2010 | Visits: 722

libwayne libwayne is a library of reasonably abstract datatypes and algorithms written in C. The algorithms in libwayne are by no means original. Many of them are taken verbatim from textbooks on data structures and algorithms, and I simply translated them into C. They include efficient and correct...


Platforms: *nix

License: Freeware Size: 3 MB Download (97): libwayne Download

Added: October 13, 2010 | Visits: 1.012

Instant Instant is a Python module that allows for instant inlining of C and C++ code in Python. Instant is a small Python module built on top of SWIG. Example of use: >>> c_code = """ double sum(double a, double b){ return a+b; } """ >>> import Instant >>> ext = Instant.Instant() >>> >>> #...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (96): Instant Download

Added: May 12, 2010 | Visits: 665

VTKRendering VTKRendering is a Perl interface to VTKRendering library. Graphics::VTK::OpenGLRenderWindow Inherits from RenderWindow Functions Supported for this class by the PerlVTK module: (To find more about their use check the VTK documentation at http://www.kitware.com.) const char *GetClassName...


Platforms: *nix

License: Freeware Size: 675.84 KB Download (95): VTKRendering Download

Added: August 14, 2010 | Visits: 908

Libeval Libeval provides simple means of evaluating simple arithmetic expressions involving literal numeric values, variables and functions using the addition (+), subtraction (-), multiplication (*), division (/), modulo division (), exponentiation (^), sign (+-), percentag (%) and grouping (())...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (95): Libeval Download

Added: January 13, 2010 | Visits: 762

hashit hashit is a generic hash library. hashit implements diverse collision handling methods. This function creates a hash table which is returned as a hash_t type. errno is set to ENOMEM if there wasnt enough memory avaliable for creating the table. Return value is a reference to the table just...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (95): hashit Download

Added: January 18, 2010 | Visits: 1.272

Data::Encrypted Data::Encrypted is a Perl module to transparently store encrypted data via RSA. SYNOPSIS # functional interface: use Data::Encrypted file => "./.$0-encrypted-data", qw(encrypted); # note: login and password are not *really* the login and # password values, only the desired prompt! my...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): Data::Encrypted Download

Added: July 17, 2010 | Visits: 803

RealmForge RealmForge project is a cross-platform 3D game engine for .NET. RealmForge is a .NET 3D game engine predecessor to Visual3D.NET (www.visual3d.net), which is a framework and toolset for the visual design and development of 3D games, simulations, and interactive environments using C#, .NET 2.0,...


Platforms: *nix

License: Freeware Size: 81 MB Download (94): RealmForge Download

Added: November 13, 2010 | Visits: 906

libxcpc libxcpc library implements an automatic resource cleanup and exception handling in C. Error handling and cleanup code (at least for code that does error handling) can take quite some space in terms of lines of code to be written. This not only increases the binary size, but makes the code more...


Platforms: *nix

License: Freeware Size: 389.12 KB Download (94): libxcpc Download

Added: June 02, 2010 | Visits: 770

Coronet Coronet project is a library which implements an epoll and coroutine based library that allows for async operations over certain kinds of files. Any file that supports poll(2) and the O_NONBLOCK fcntl(2) flag can be hosted; this includes like sockets and pipes. The coronet library uses the...


Platforms: *nix

License: Freeware Size: 348.16 KB Download (94): Coronet Download

Added: March 25, 2010 | Visits: 846

LibLO LibLO is an implementation of the Open Sound Control protocol for POSIX systems. LibLO project was started by Steve Harris and now maintained by Nicholas Humfrey. This means that it cannot be used in closed-source systems you intend to distribute - if you have a specific requirement for liblo...


Platforms: *nix

License: Freeware Size: 409.6 KB Download (94): LibLO Download

Added: March 26, 2010 | Visits: 699

perltoot perltoot is Toms object-oriented tutorial for perl. Object-oriented programming is a big seller these days. Some managers would rather have objects than sliced bread. Why is that? Whats so special about an object? Just what is an object anyway? An object is nothing but a way of tucking away...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (94): perltoot Download

Added: September 08, 2010 | Visits: 790

Commands::Guarded Commands::Guarded Perl package provides better scripts through guarded commands. SYNOPSIS use Commands::Guarded; my $var = 0; step something => ensure { $var == 1 } using { $var = 1 } ; # $var is now 1 step nothing => ensure { $var == 1 } using { $var = 2 } # bug! ; # $var is...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (94): Commands::Guarded Download

Added: July 17, 2010 | Visits: 975

Audio::TagLib::Tag Audio::TagLib::Tag is a simple, generic interface to common audio meta data fields. This is an attempt to abstract away the difference in the meta data formats of various audio codecs and tagging schemes. As such it is generally a subset of what is available in the specific formats but should...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (93): Audio::TagLib::Tag Download

Added: November 08, 2010 | Visits: 690

VTKImaging VTKImaging is a Perl interface to VTKImaging library. Graphics::VTK::BooleanTexture Inherits from StructuredPointsSource Functions Supported for this class by the PerlVTK module: (To find more about their use check the VTK documentation at http://www.kitware.com.) const char *GetClassName...


Platforms: *nix

License: Freeware Size: 675.84 KB Download (93): VTKImaging Download

Added: July 07, 2010 | Visits: 937

Inline::C Inline::C is a Perl module that can Write Perl Subroutines in C. Inline::C is a module that allows you to write Perl subroutines in C. Since version 0.30 the Inline module supports multiple programming languages and each language has its own support module. This document describes how to use...


Platforms: *nix

License: Freeware Size: 92.16 KB Download (93): Inline::C Download

Added: June 20, 2010 | Visits: 1.265

Query-Oriented Model for XML 0.1 Query-Oriented Model for XML is a lightweight XML processing framework for Java that promotes the use of XPath instead of Java code for consuming XML. The resulting code from Query-Oriented Model for XML, is simple and expressive with no meaningless objects and no meaningless parameters - just...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (93): Query-Oriented Model for XML 0.1 Download

< 1 2 3 4 5 >