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

Everlong Foo Fighters software
Filter: All | Freeware | Demo
 

Everlong Foo Fighters

< 1 2 3 4 5 > 
Added: October 18, 2010 | Visits: 887

Rose::Object Rose::Object is a simple object base class. SYNOPSIS package MyObject; use Rose::Object; our @ISA = qw(Rose::Object); sub foo { ... } sub bar { ... } ... my $o = MyObject->new(foo => abc, bar => 5); ... Rose::Object is a generic object base class. It provides very little...



Platforms: *nix

License: Freeware Size: 28.67 KB Download (87): Rose::Object Download

Added: April 18, 2010 | Visits: 765

C::DynaLib::Struct C::DynaLib::Struct is a tool for handling the C `struct data type. SYNOPSIS use C::DynaLib::Struct; Define C::DynaLib::Struct( $struct_tag, $template0, @field_names0, [$template1, @field_names1,] ... ); $rstruct = tie( $struct, $struct_tag [, @initializer_list] ); $value =...





Platforms: *nix

License: Freeware Size: 35.84 KB Download (98): C::DynaLib::Struct Download

Added: November 24, 2010 | Visits: 871

XML::Parser XML::Parser is a perl module for parsing XML documents. SYNOPSIS use XML::Parser; $p1 = new XML::Parser(Style => Debug); $p1->parsefile(REC-xml-19980210.xml); $p1->parse( Hello World ); # Alternative $p2 = new XML::Parser(Handlers => {Start => &handle_start, End => &handle_end,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (92): XML::Parser Download

Added: January 03, 2010 | Visits: 898

Test::Usage Test::Usage is a different approach to testing: selective, quieter, colorful. SYNOPSIS Lets say we are building module Foo.pm. To exercise it, we write a usage examples module, Foo_T.pm, which may eventually look something like this: package Foo_T; use Test::Usage; use strict; use...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (94): Test::Usage Download

Added: September 06, 2010 | Visits: 942

B::Lint B::Lint module contains Perl lint. SYNOPSIS perl -MO=Lint[,OPTIONS] foo.pl The B::Lint module is equivalent to an extended version of the -w option of perl. It is named after the program lint which carries out a similar process for C programs. OPTIONS AND LINT CHECKS Option words are...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (101): B::Lint Download

Released: August 01, 2012  |  Added: August 01, 2012 | Visits: 1.288

Class::XML Class::XML is a Perl module for simple XML Abstraction. SYNOPSIS package Foo; use base qw/Class::XML/; __PACKAGE__->has_attributes(qw/length colour/); __PACKAGE__->has_child(bar => Bar); package Bar; use base qw/Class::XML/; __PACKAGE__->has_parent(foo);...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (97): Class::XML Download

Added: June 03, 2010 | Visits: 701

Object::AutoAccessor Object::AutoAccessor is an accessor class by using AUTOLOAD. SYNOPSIS use Object::AutoAccessor; my $struct = { foo => { bar => { baz => BUILD OK, }, }, }; # Now lets easily accomplish it. my $obj = Object::AutoAccessor->build($struct); print $obj->foo->bar->baz; # prints BUILD OK...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (89): Object::AutoAccessor Download

Added: September 13, 2010 | Visits: 737

AppConfig::Std AppConfig::Std is a Perl subclass of AppConfig that provides standard options. SYNOPSIS use AppConfig::Std; $config = AppConfig::Std->new(); # all AppConfig methods supported $config->define(foo); # define variable foo $config->set(foo, 25); # setting a variable $val =...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): AppConfig::Std Download

Added: March 20, 2010 | Visits: 793

Software::Packager::Object Software::Packager::Object is a generic object data storage. SYNOPSIS use Software::Packager::Object; This module is used by Software::Packager for holding data for a each item added to the a software package. It provides an easy way of accessing the data for each object to be installed....


Platforms: *nix

License: Freeware Size: 21.5 KB Download (96): Software::Packager::Object Download

Added: August 22, 2010 | Visits: 838

JDBC JDBC is a Perl 5 interface to Java JDBC (via Inline::Java). SYNOPSIS use JDBC; JDBC->load_driver("org.apache.derby.jdbc.EmbeddedDriver"); my $con = JDBC->getConnection($url, "test", "test"); my $s = $con->createStatement(); $s->executeUpdate("create table foo (foo int, bar...


Platforms: *nix

License: Freeware Size: 1.9 MB Download (120): JDBC Download

Added: May 13, 2010 | Visits: 1.143

XML::DOM::Lite XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit. SYNOPSIS # Parser use XML::DOM::Lite qw(Parser :constants); $parser = Parser->new( %options ); $doc = Parser->parse($xmlstr); $doc = Parser->parseFile(/path/to/file.xml); # strip whitespace (can be about 30% faster) $doc =...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): XML::DOM::Lite Download

Added: March 11, 2010 | Visits: 1.027

Config::Magic SYNOPSIS Example 1 use Config::Magic; use Data::Dumper; $input=q{ Section 1 { [Section 4] #Comment style #1 //Comment style #2 ;Comment style #3 Monkey:1 Monkey=>2 Monkey:=3 < Section 2 > Foo = Bar Baz { Bip:1 Pants==5 } < /Section > < Tasty Cheese="3" / > < Section 5 >...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (113): Config::Magic Download

Added: February 17, 2010 | Visits: 668

Scalar::Footnote Scalar::Footnote is a Perl module that can attach hidden scalars to references. SYNOPSIS use Data::Dumper; use Scalar::Footnote; my $obj = Foo->new; # attach invisible footnote to $obj: $obj->Scalar::Footnote::set( my_key => my footnote ); print Dumper( $obj ); # get it back: my...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (94): Scalar::Footnote Download

Added: July 10, 2010 | Visits: 617

Perl6::Contexts Perl6::Contexts - array and hash variables turn into references to themselves when used in non-numeric scalar context or as function arguments. SYNOPSIS my @foo = ( 1 .. 20 ); my $foo = @foo; # same as: my $foo = @foo; my $foo = 0 + @foo; # unchanged - length of @foo $obj->some_method(10,...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (89): Perl6::Contexts Download

Added: January 27, 2010 | Visits: 642

MacPerl::AppleScript MacPerl::AppleScript is a Perl extension for easily accessing scriptable Apps. SYNOPSIS use MacPerl::AppleScript; # # create Application Object # my $app = MacPerl::AppleScript->new("Application Name"); my $doc1 = $application->new("document 1"); my $doc2 = $application->new("document...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (99): MacPerl::AppleScript Download

Added: January 25, 2010 | Visits: 1.557

Apple Pro Audio News OSXRecording.com web site is a community of professional audio producers and engineers using OS X. This widget brings you the RSS data feed of the latest news, product announcements, pod cast releases, contest information and more in a small, simple, easy to install tool.


Platforms: Mac

License: Freeware Download (101): Apple Pro Audio News Download

Released: October 18, 2012  |  Added: October 18, 2012 | Visits: 545

HotShift Calendar Trialware calendar for fire fighters and other workers on a rotating shift schedule. Handles 24-hour shifts or 2 shifts per day. Up to 4 platoons can be indicated by color coding and/or captions. Schedules are created by the user. Prints calendars with up to 54 months on one page. Prints small...


Platforms: Windows

License: Shareware Cost: $10.00 USD Size: 3.41 MB Download (504): HotShift Calendar Download

Released: December 26, 2012  |  Added: December 26, 2012 | Visits: 525

The Best Arcade Game Ever Blow away fighters coming at you from all directions as you explore HUGE worlds, and collect alien artifacts in this omni-directional 2D shooter hosting some briliant 3D graphics. Collect various types of weapons and energy left behind by your enemies as you blast them out of existance. The...


Platforms: Windows

License: Shareware Cost: $4.99 USD Size: 13.61 MB Download (61): The Best Arcade Game Ever Download

Released: June 01, 2012  |  Added: June 01, 2012 | Visits: 438

SnakeWar This game is based on Ancient War situation, in which fighters are fighting face to face and the one who survives will win. Food is placed in random positions and all snakes are supposed to eat the food. In this game snakes are fighting in an arena in which they have to secure their life first by...


Platforms: Handheld/Mobile Other, Java

License: Freeware Size: 512 KB Download (451): SnakeWar Download

Added: June 22, 2013 | Visits: 407

Button Masher Button Masher is a simple tool to help you analyze and improve your execution of fighting game moves, combos, etc. It's similar to the input display in the practice modes of various fighters. If you keep messing up a move but you're not sure why, just load this up and see exactly what you're...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (49): Button Masher Download

< 1 2 3 4 5 >