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

Damian freeware
 

Damian

Added: November 01, 2010 | Visits: 928

ExtUtils::ModuleMaker::PBP ExtUtils::ModuleMaker::PBP is a Perl module to create a Perl extension in the style of Damian Conways Perl Best Practices. SYNOPSIS use ExtUtils::ModuleMaker::PBP; $mod = ExtUtils::ModuleMaker::PBP->new( NAME => Sample::Module ); $mod->complete_build(); $mod->dump_keys(qw| ... # key... Platforms: *nix

License: Freeware Size: 34.82 KB Download (120): ExtUtils::ModuleMaker::PBP Download

Added: November 11, 2013 | Visits: 614

Alpha-3-light for Linux Alpha-3-light Icons theme. ::Introduction:: Alpha-3-light was originally a windowblinds theme created by MrSkope (Damian Strain) http://mrskope.deviantart.com and http://mrskope.wincustomize.com for his personal use on windows. I decided to have a go at creating a port for gnome, i got... Platforms: *nix

License: Freeware Size: 13.68 MB Download (37): Alpha-3-light for Linux Download

Added: October 16, 2013 | Visits: 438

Footure for Linux Footure was originally a WindowBlinds theme created by MrSkope (Damian Strain) and for his personal use on Windows. This is a port for GNOME, based on black-white_2-Style. Installation instructions: Just download the tar.bz, right click on a free place on your desktop and then choose "change... Platforms: *nix

License: Freeware Size: 6.29 MB Download (35): Footure for Linux Download

Added: October 27, 2013 | Visits: 636

Alpha-2 for Linux Alpha-2 Icons theme. ::Introduction:: Alfa-2 was originally a windowblinds theme created by MrSkope (Damian Strain) http://mrskope.deviantart.com and http://mrskope.wincustomize.com for his personal use on windows. I decided to have a go at creating a port for gnome, i got permission from MrSkope... Platforms: *nix

License: Freeware Size: 10.47 MB Download (41): Alpha-2 for Linux Download

Added: November 14, 2013 | Visits: 393

Se-Interface-V2_Red Here is the release of the icons SE-Interface-v2_Red was originally a windowblinds theme created by MrSkope (Damian Strain) http://mrskope.deviantart.com http://mrskope.wincustomize.com and for his personal use on Windows. I decided to have a go at creating a port for GNOME, based on... Platforms: *nix

License: Freeware Size: 10.24 KB Download (34): Se-Interface-V2_Red Download

Added: August 04, 2013 | Visits: 433

File Breaker File Breaker is a very stable aplication written in C++ for Windows to break files to a less size parts and save this parts on diferents devices. Use windows explorer context menu to easier use and a fast process. Copyright 2008 Damian Nohales. Platforms: *nix

License: Freeware Size: 921.6 KB Download (39): File Breaker Download

Added: October 13, 2010 | Visits: 1.699

Template::Plugin::Lingua::EN::Inflect Template::Plugin::Lingua::EN::Inflect is a Perl interface to Lingua::EN::Inflect module. SYNOPSIS [% USE infl = Lingua.EN.Inflect; -%] [% FILTER inflect(number => 42); -%] There PL_V(was) NO(error). PL_ADJ(This) PL_N(error) PL_V(was) fatal. [% END; -%] [% "... and "; infl.ORD(9);... Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Template::Plugin::Lingua::EN::Inflect Download

Added: January 08, 2010 | Visits: 1.120

Module::Install::Philosophy Module::Install::Philosophy Perl module contains the concepts behind Module::Install. SYNOPSIS This document describes the personal philosophy behind the creation of CPAN::MakeMaker (the predecessor of Module::Install). The views expressed here belong to Brian Ingerson; if they are not of... Platforms: *nix

License: Freeware Size: 81.92 KB Download (100): Module::Install::Philosophy Download

Added: September 12, 2010 | Visits: 795

Getopt::Euclid Getopt::Euclid is Perl module executable uniform command-Line interface descriptions. SYNOPSIS use Getopt::Euclid; if ($ARGV{-i}) { print "Interactive mode...n"; } for my $x (0..$ARGV{-size}{h}-1) { for my $y (0..$ARGV{-size}{w}-1) { do_something_with($x, $y); } } __END__ =head1... Platforms: *nix

License: Freeware Size: 24.58 KB Download (91): Getopt::Euclid Download

Added: September 15, 2010 | Visits: 1.014

Class::Declare::Attributes Class::Declare::Attributes is a Perl module with Class::Declare method types using Perl attributes. SYNOPSIS package My::Class; use 5.006; use strict; use warnings; use base qw( Class::Declare::Attributes ); # declare the class/instance attributes __PACKAGE__->declare( ... ); # #... Platforms: *nix

License: Freeware Size: 21.5 KB Download (93): Class::Declare::Attributes Download

Added: May 08, 2010 | Visits: 896

JLine JLine is a Java library for handling console input. JLine is similar in functionality to BSD editline and GNU readline. People familiar with the readline/editline capabilities for modern shells (such as bash and tcsh) will find most of the command editing features of JLine to be familiar.... Platforms: *nix

License: Freeware Size: 686.08 KB Download (89): JLine Download

Added: September 22, 2010 | Visits: 1.029

Quantum::Usrn Quantum::Usrn - Square root of not.d SYNOPSIS use Quantum::Usrn; $noise = Usrn($value); $not_value = Usrn($noise); Provide the square root of not function (Usrn), used by weird Quantum Physicists. Applying Usrn to a value will produce noise; applying Usrn to that noise will produce the... Platforms: *nix

License: Freeware Size: 3.07 KB Download (99): Quantum::Usrn Download

Added: September 23, 2010 | Visits: 1.176

HTML::Tree::Scanning HTML::Tree::Scanning contains an article: "Scanning HTML". SYNOPSIS # This an article, not a module. The following article by Sean M. Burke first appeared in The Perl Journal #19 and is copyright 2000 The Perl Journal. It appears courtesy of Jon Orwant and The Perl Journal. This document... Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): HTML::Tree::Scanning Download

Added: February 17, 2010 | Visits: 917

Class::DispatchToAll Class::DispatchToAll Perl module can dispatch a method call to all inherited methods. SYNOPSIS package My::Class; our @ISA=qw(SomeClass SomeOtherClass More::Classes); use Class::DispatchToAll qw(dispatch_to_all); my $self=bless {},My::Class # not a proper constructor, I know.. # this... Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): Class::DispatchToAll Download

Released: October 02, 2012  |  Added: October 02, 2012 | Visits: 448

Hotels Assisi - Hotel Screensaver of Assisi, Italy. Assisi in Italy stretches out on the slopes of the Monte Subasio, above the plain where the Topino and Chiascio rivers flow. Nearby, places which are connected with the life of St. Francis can be visited, sich as the Eremitage of the Prisons, immersed in a thick wood... Platforms: Windows

License: Freeware Size: 6.4 MB Download (51): Hotels Assisi - Hotel Download

Added: June 12, 2013 | Visits: 286

Se-Interface-v2 Here is the release of the icons SE-Interface-v2_Red was originally a windowblinds theme created by MrSkope (Damian Strain) http://mrskope.deviantart.com http://mrskope.wincustomize.com and for his personal use on Windows. I decided to have a go at creating a port for GNOME, based on... Platforms: *nix

License: Freeware Size: 19.78 MB Download (33): Se-Interface-v2 Download

Added: July 31, 2013 | Visits: 550

Alienware Darkstar for Linux Alienware Darkstar is a the complete GNOME port of the Alienware Darkstar theme made for Alienware by the Skin Factory. It Includes: 1.) Gtk2 and Metacity theme 2.) GnoMenu2 Theme (Updated buttons and Menu. The Menu theme now better matches its Gtk2 counterpart.) 3.) Dungeon Font 4.) Background... Platforms: *nix

License: Freeware Size: 10.24 KB Download (40): Alienware Darkstar for Linux Download

Added: September 30, 2013 | Visits: 335

Class::Delegator Class::Delegator is a Perl module that provides a subset of the functionality of Damian Conway's lovely Class::Delegation module. Why a subset? Well, I didn't need all of the fancy matching semantics, just string string specifications to map delegations. Furthermore, I wanted it to be fast (See... Platforms: *nix

License: Freeware Size: 10.24 KB Download (41): Class::Delegator Download