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

Live Free Or Die Flag freeware
Filter: All | Freeware | Demo
 

Live Free Or Die Flag

< 1 2 3 4 5 
Added: May 27, 2010 | Visits: 647

NDBM_File NDBM_File is a Perl module that allows tied access to ndbm files. SYNOPSIS use Fcntl; # For O_RDWR, O_CREAT, etc. use NDBM_File; tie(%h, NDBM_File, filename, O_RDWR|O_CREAT, 0666) or die "Couldnt tie NDBM file filename: $!; aborting"; # Now read and change the hash $h{newkey} =...



Platforms: *nix

License: Freeware Size: 12.2 MB Download (101): NDBM_File Download

Released: August 25, 2011  |  Added: September 10, 2011 | Visits: 981

Empires Online Empire Online II is a free online multi-player strategy game. In this game, you are a young monarch, must use production, construction, wars, diplomacy and all possible means to protect the country. You will be able to decide the country's destiny: suffers bullying, or gains a prominent...





Platforms: Windows

License: Freeware Size: 12.38 MB Download (100): Empires Online Download

Added: March 07, 2010 | Visits: 1.463

MP3::Info MP3::Info is a Perl module that can manipulate / fetch info from MP3 audio files. SYNOPSIS #!perl -w use MP3::Info; my $file = Pearls_Before_Swine.mp3; set_mp3tag($file, Pearls Before Swine, q"77s", Sticks and Stones, 1990, q"(c) 1990 77s LTD.", rock & roll); my $tag =...


Platforms: *nix

License: Freeware Size: 99.33 KB Download (100): MP3::Info Download

Added: August 08, 2010 | Visits: 954

GD::Text GD::Text is a Perl module with text utilities for use with GD. SYNOPSIS use GD; use GD::Text; my $gd_text = GD::Text->new() or die GD::Text::error(); $gd_text->set_font(funny.ttf, 12) or die $gd_text->error; $gd_text->set_font(gdTinyFont); $gd_text->set_font(GD::Font::Tiny); ......


Platforms: *nix

License: Freeware Size: 64.51 KB Download (100): GD::Text Download

Added: June 23, 2010 | Visits: 891

DBD::MaxDB DBD::MaxDB is a Perl module for MySQL MaxDB database driver for the DBI module version 7.6.0 BUILD 027-121-124-939. SYNOPSIS use DBI; $dbh = DBI->connect("dbi:MaxDB:$hostname/$dbname", "$user", "$password") or die "Cant connect $DBI::err $DBI::errstrn"; $sth = $dbh->prepare("SELECT Hello...


Platforms: *nix

License: Freeware Size: 87.04 KB Download (100): DBD::MaxDB Download

Added: January 18, 2010 | Visits: 1.363

SVG::Metadata SVG::Metadata is a Perl module to capture metadata info about an SVG file. SYNOPSIS use SVG::Metadata; my $svgmeta = new SVG::Metadata; $svgmeta->parse($filename) or die "Could not parse $filename: " . $svgmeta->errormsg(); $svgmeta2->parse($filename2) or die "Could not parse...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (99): SVG::Metadata Download

Added: January 18, 2010 | Visits: 1.018

PerlIO::via::Logger PerlIO::via::Logger is a PerlIO layer for prefixing current time to log output. SYNOPSIS use PerlIO::via::Logger; PerlIO::via::Logger->format( [%b %d, %Y %r] ); use PerlIO::via::Logger format => [%b %d, %Y %r] ; open( my $in,<:via(Logger),filein ) or die "Cant open file.ln for reading:...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (99): PerlIO::via::Logger Download

Added: June 25, 2010 | Visits: 1.102

Image::ParseGIF Image::ParseGIF can parse a GIF image into its compenent parts. SYNOPSIS use Image::ParseGIF; $gif = new Image::ParseGIF ("image.gif") or die "failed to parse: $@n"; # write out a deanimated version, showing only the first frame $gif->deanimate(0); # same again, manually printing each...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (99): Image::ParseGIF Download

Added: November 11, 2010 | Visits: 1.145

DBIx::Simple::Examples [COPRIGHT=1] EXAMPLES General #!/usr/bin/perl -w use strict; use DBIx::Simple; # Instant database with DBD::SQLite my $db = DBIx::Simple->connect(dbi:SQLite:dbname=file.dat) or die DBIx::Simple->error; # Connecting to a MySQL database my $db = DBIx::Simple->connect(...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (99): DBIx::Simple::Examples Download

Added: January 06, 2010 | Visits: 1.225

Bio::Graphics::Panel 1.5.2_005 Bio::Graphics::Panel is a Perl module to generate GD images of Bio::Seq objects. SYNOPSIS # This script parses a GenBank or EMBL file named on the command # line and produces a PNG rendering of it. Call it like this: # render.pl my_file.embl | display - use strict; use Bio::Graphics;...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (99): Bio::Graphics::Panel 1.5.2_005 Download

Added: April 05, 2010 | Visits: 782

Template::Plugin::SumOf Template::Plugin::SumOf is a Perl module to calculate the sum with VMETHODS. SYNOPSIS # in your script use Template; use Template::Plugin::SumOf; my $tt = Template->new; $tt->process( template.html, { ary => [ { date => 2006-09-13, price => 300 }, { date => 2006-09-14, price => 500 }...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Template::Plugin::SumOf Download

Added: March 03, 2010 | Visits: 1.665

Mac::Errors Mac::Errors is a Perl module with constants for Mac error codes. SYNOPSIS use Mac::Errors qw(openErr); if( $value == openErr ) { ... } my $error = $MacErrors{ $symbol }; # -- OR -- my $error = $MacErrors{ $number }; my $symbol = $error->symbol; my $number = $error->number; my $desc =...


Platforms: *nix

License: Freeware Size: 54.27 KB Download (98): Mac::Errors Download

Added: January 07, 2010 | Visits: 711

Perl6::Builtins Perl6::Builtins is a Perl module that provides erl 5 versions of the new Perl 6 builtins. SYNOPSIS use Perl6::Builtins qw( system ); system $system_cmd or die "Could not $system_cmd: $!"; my $package = caller->{package}; my $file = caller->{file}; my $line = caller->{line}; Several...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (98): Perl6::Builtins Download

Added: January 01, 2010 | Visits: 1.298

File::Stat::ModeString File::Stat::ModeString - conversion file stat mode to/from string representation. SYNOPSIS use File::Stat::ModeString; $string = mode_to_string ( $st_mode ); $st_mode = string_to_mode ( $string ); $type = mode_to_typechar( $st_mode ); $record = < IN >; chomp $record; $record =~...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (98): File::Stat::ModeString Download

Added: July 08, 2010 | Visits: 782

IPC::LDT IPC::LDT is a Perl module that implements a length based IPC protocol. Interprocess communication often uses line (or record) oriented protocols. FTP, for example, usually is such a protocol: a client sends a command (e.g. "LS") which is completed by a carriage return. This carriage return is...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (98): IPC::LDT Download

Added: August 20, 2010 | Visits: 772

CGI::XMLForm CGI::XMLForm is a Perl extension of CGI.pm which reads/generates formated XML. NB: This is a subclass of CGI.pm, so can be used in its place. SYNOPSIS use CGI::XMLForm; my $cgi = new CGI::XMLForm; if ($cgi->param) { print $cgi->header, $cgi->pre($cgi->escapeHTML($cgi->toXML)); } else {...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (98): CGI::XMLForm Download

Added: March 27, 2010 | Visits: 1.131

SimCoupe SimCoupe project is a SAM Coupé emulator. SimCoupe emulates the SAM Coupé, a British Z80-based home computer released in 1989 by Miles Gordon Technology. Whats New in This Release: - Added SDL port (OpenGL and regular) for Linux, BeOS, QNX, etc. - Added Pocket PC port for ARM, MIPS and...


Platforms: *nix

License: Freeware Size: 942.08 KB Download (98): SimCoupe Download

Added: November 27, 2010 | Visits: 730

Class::Driver EXAMPLE # This is a really long synopsis, but hopefully it will give you an idea... package MyPackage; use Class::Driver; use base q(Class::Driver); our %drivers; return 1; sub new { my($class, %args) = @_; die "mime_type is required" unless($args{mime_type}); die "no driver to...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (98): Class::Driver Download

Added: January 25, 2010 | Visits: 642

Ensemble2 Ensemble2 is a RSS/Atom reader. Correnspond for RSS0.9x/1.0/2.0 Atom0.3/1.0 Correnspond for PodCast/VideoCast/PhotoCast (RSS2.0 Enclosure) 2-4pane changeable Manage feed list with tab ("box") Synchronize database via network (.mac/FTP) Custom pasteboard can copy with a optional format Post to...


Platforms: Mac

License: Freeware Download (98): Ensemble2 Download

Added: August 12, 2008 | Visits: 888

AST American Flag Screensaver Serious fun! Stunning FREE Clock - US Flag screen saver. Screen Saver Features: -specially designed atmosphere -almost photo realistic graphics with animations -unique sound environment -multiple backgrounds with effects -adjustable settings -high quality textures -additional Security Lock (when...


Platforms: Windows

License: Freeware Size: 2.65 MB Download (97): AST American Flag Screensaver Download

< 1 2 3 4 5