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.231.165 Times

Overriding freeware
Filter: All | Freeware | Demo
 

Overriding

1 2 3 4 5 > 
Added: January 25, 2010 | Visits: 1.883

SyncTunes SyncTunes synchronises tracks and podcasts from iTunes with a mounted volume (e.g. such as a SD card in a card reader, a PDA's expansion card using Missing Sync, or mobile phones' internal memory).Who might find SyncTunes useful? In short, many people with a Mac, iTunes and a PDA or phone with...



Platforms: Mac

License: Freeware Download (464): SyncTunes Download

Added: April 04, 2010 | Visits: 1.140

ex::override ex::override is a Perl pragma to override core functions. SYNOPSIS use ex::override ucfirst => sub { # make sure only the first # letter is uppercased ucfirst( lc( shift ) ); }; ucfirst( MAKE THIS RIGHT ); # Make this right no ex::override ucfirst; ucfirst( MAKE THIS RIGHT ); #...





Platforms: *nix

License: Freeware Size: 4.1 KB Download (121): ex::override Download

Added: June 17, 2010 | Visits: 1.535

Steel Bank Common Lisp Steel Bank Common Lisp is a development environment for Common Lisp, with excellent support for the ANSI standard: garbage collection, lexical closures, powerful macros, strong dynamic typing, incremental compilation, and the famous Common Lisp Object System (multimethods and all). Steel Bank...


Platforms: *nix

License: Freeware Size: 2.7 MB Download (117): Steel Bank Common Lisp Download

Added: May 10, 2013 | Visits: 2.527

quickbuild QuickBuild is a continuous integration and release management server, acting as the central place to produce, test, deploy, and release software builds. It is designed to guard health of your project by preventing broken builds, and to improve your build delivery process by pushing builds going...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (115): quickbuild Download

Added: November 23, 2010 | Visits: 1.118

Lingua::EN::Inflect Lingua::EN::Inflect is a Perl module that can convert singular to plural. Select "a" or "an". SYNOPSIS use Lingua::EN::Inflect qw ( PL PL_N PL_V PL_ADJ NO NUM PL_eq PL_N_eq PL_V_eq PL_ADJ_eq A AN PART_PRES ORD NUMWORDS inflect classical def_noun def_verb def_adj def_a def_an ); #...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (106): Lingua::EN::Inflect Download

Added: January 26, 2010 | Visits: 1.447

ETrace ETrace is a configurable static port network tracing tool, similar to traceroute, but supporting ICMP, TCP, UDP and other IP protocols. Usage: etrace [ -BbCcnv ] [ -p profile ] [ -F config ] [ -i interface ] [ -I icmp-type ] [ -T port ] [ -U port ] [ -P protocol ] [ -r probe-count ] [ -t...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (103): ETrace Download

Added: August 03, 2010 | Visits: 771

PyChecker PyChecker is a tool for finding bugs in python source code. PyChecker program finds problems that are typically caught by a compiler for less dynamic languages, like C and C++. It is similar to lint. Because of the dynamic nature of python, some warnings may be incorrect; however, spurious...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (102): PyChecker Download

Added: January 25, 2010 | Visits: 862

MS Natural Driver MS Natural Driver improves experience with the Microsoft Natural Keyboard Elite by overriding the default USB keyboard driver.


Platforms: Mac

License: Freeware Size: 271 KB Download (100): MS Natural Driver Download

Added: May 18, 2010 | Visits: 1.266

CGI::Kwiki::New CGI::Kwiki::New is the default new wiki generator for CGI::Kwiki. A Wiki is a website that allows its users to add pages, and edit any existing pages. It is one of the most popular forms of web collaboration. If you are new to wiki, visit http://c2.com/cgi/wiki?WelcomeVisitors which is possibly...


Platforms: *nix

License: Freeware Size: 76.8 KB Download (98): CGI::Kwiki::New Download

Added: October 04, 2010 | Visits: 751

Embperl::Intro Embperl::Intro is an introduction to Embperl. Embperl has started as a Perl module for simply embedding Perl into HTML and has grown to a full featured system to build dynamic content (not only) under mod_perl. The version 1.x focus on HTML documents, also it could be used for any sort of ascii...


Platforms: *nix

License: Freeware Size: 665.6 KB Download (98): Embperl::Intro Download

Added: May 22, 2010 | Visits: 1.231

Module::Build::Authoring Module::Build::Authoring are authoring Module::Build modules. When creating a Build.PL script for a module, something like the following code will typically be used: use Module::Build; my $build = Module::Build->new ( module_name => Foo::Bar, license => perl, requires => { perl =>...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (96): Module::Build::Authoring Download

Added: August 02, 2010 | Visits: 1.034

Freewheeling FreeWheeling is an audio tool for live looping. It provides a highly configurable, fluid user interface for instrumentalists to capture loops in real-time. Based on the JACK, ALSA, and SDL libraries, it integrates with FluidSynth, a software synthesizer. Freewheeling empowers the trance of...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (96): Freewheeling Download

Added: March 15, 2010 | Visits: 1.090

Catalyst::Example::InstantCRUD Catalyst::Example::InstantCRUD is a CRUD scaffolding for Catalyst. SYNOPSIS instantcrud.pl -name=My::App -dsn=dbi:Pg:dbname=CE -user=zby -password=pass The instantcrud.pl executable creates a skeleton CRUD application in current directory. The parameters are: name of the application and...


Platforms: *nix

License: Freeware Size: 32.77 KB Download (95): Catalyst::Example::InstantCRUD Download

Added: April 23, 2010 | Visits: 812

XML::Literal XML::Literal is a Perl module with syntax support for XML literals. SYNOPSIS # This is not a source filter: it just augments glob(). use XML::Simple; use XML::Literal &XMLin; # Simple element my $xml1 = < hr/ >; # With variable interpolation my $xml2 = < input value=$ARGV[0] / >; #...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (94): XML::Literal Download

Added: February 07, 2010 | Visits: 1.075

Test::Unit::TestCase Test::Unit::TestCase is a unit testing framework base class. SYNOPSIS package FooBar; use base qw(Test::Unit::TestCase); sub new { my $self = shift()->SUPER::new(@_); # your state for fixture here return $self; } sub set_up { # provide fixture } sub tear_down { # clean up after...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (94): Test::Unit::TestCase Download

Added: July 19, 2010 | Visits: 821

jwx! jwx! is a Java binding to the wxWidgets GUI framework. jwx! adds Java to the list of languages you can use to develop GUIs with the wxWidgets framework. Why yet another GUI toolkit for Java? The reason is not, as you might think, providing native GUI library for Java, but my thought of an...


Platforms: *nix

License: Freeware Download (94): jwx! Download

Added: August 13, 2010 | Visits: 1.012

PGAPy PGAPy is a wrapper for pgapack, the parallel genetic algorithm library, a powerfull genetic algorithm library by D. Levine, Mathematics and Computer Science Division Argonne National Laboratory. The library is written in C. PGAPy wraps this library for use with Python. The original pgapack...


Platforms: *nix

License: Freeware Size: 69.63 KB Download (93): PGAPy Download

Added: October 24, 2010 | Visits: 900

XAO::Web XAO::Web is a Perl module for XAO Web Developer, dynamic content building suite. XAO::Web is a part of XAO open source web services suite. It allows to build dynamic web content using data, templates and external input. The distinguishing feature of XAO::Web is in its modular design where...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (91): XAO::Web Download

Added: March 11, 2010 | Visits: 985

GIMP# GIMP# is an API wrapper around GIMP, written in C#. However, its not just a wrapper. GIMP# project also adds a thin layer which adds C# specific features, like iterating through a collection. An example of this is an iteration through the guides of an image. In C# this looks like: foreach...


Platforms: *nix

License: Freeware Size: 788.48 KB Download (91): GIMP# Download

Added: September 24, 2010 | Visits: 1.277

Alarm::Concurrent Alarm::Concurrent is a Perl module that allows multiple, concurrent alarms. This module is an attempt to enhance Perls built-in alarm/$SIG{ALRM} functionality. This function, and its associated signal handler, allow you to arrange for your program to receive a SIGALRM signal, which you can...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (90): Alarm::Concurrent Download

1 2 3 4 5 >