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

Synopsis Inc software
Filter: All | Freeware | Demo
 

Synopsis Inc

< 1 2 3 4 5 > 
Added: January 02, 2010 | Visits: 1.012

Pioneer Rifleman Alpha Pioneer Linux, a product of Technalign, Inc, is a desktop-oriented, Kubuntu-based distribution targeted at new as well as experienced Linux users. Pioneer Linux comes in two flavours: as a freely downloadable live and installation CD, and as a commercial boxed edition with CrossOver Office and...



Platforms: *nix

License: Freeware Size: 754 MB Download (102): Pioneer Rifleman Alpha Download

Added: January 18, 2010 | Visits: 1.187

HTML::WikiConverter::Normalizer SYNOPSIS use HTML::TreeBuilder; use HTML::WikiConverter::Normalizer; my $tree = new HTML::TreeBuilder(); $tree->parse( text ); my $norm = new HTML::WikiConverter::Normalizer(); $norm->normalize($tree); # Roughly gives " text " print $tree->as_HTML(); HTML::WikiConverter dialects...





Platforms: *nix

License: Freeware Size: 34.82 KB Download (102): HTML::WikiConverter::Normalizer Download

Added: April 14, 2010 | Visits: 1.200

File::Find::Rule SYNOPSIS use File::Find::Rule; # find all the subdirectories of a given directory my @subdirs = File::Find::Rule->directory->in( $directory ); # find all the .pm files in @INC my @files = File::Find::Rule->file() ->name( *.pm ) ->in( @INC ); # as above, but without method chaining my...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (101): File::Find::Rule Download

Added: August 27, 2008 | Visits: 1.102

War Games Construction Kit War Games Inc, a 3D interactive arcade game, play single player or networked.Enjoy flying airplanes, driving tanks, firing artillery and parachuting behind enemy lines.Build your own worlds and scenarios using the World Builder.Play 16 player networked over TCP/IP, play and test your own...


Platforms: Windows

License: Shareware Cost: $14.95 USD Size: 18.26 MB Download (101): War Games Construction Kit Download

Added: November 06, 2010 | Visits: 877

Math::FresnelZone SYNOPSIS use Math::FresnelZone; use Math::FresnelZone qw(fresnel fresnelMi fresnelKm); The arguments are: 0 - distance in kilometers or miles (default is 1), 1 - frequency in GHz (defualt 2.4), 2 - set to true to specify that the distance you are inputting is in miles and that the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): Math::FresnelZone Download

Added: July 08, 2010 | Visits: 1.229

Movie::Info SYNOPSIS my $mi = Movie::Info->new || die "Couldnt find an mplayer to usen"; foreach my $file (@ARGV) { my %info = $mi->info($file) || warn "Couldnt read info from $filen" && next; print "$file (WxH) - $info{width}x$info{height}n"; } Movie::Info is a thin layer around MPlayers...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (101): Movie::Info Download

Added: January 14, 2010 | Visits: 946

Data::Startup SYNOPSIS ###### # Subroutine interface # use Data::Startup qw(config override); $options = override(%default_options, @option_list ); $options = override(%default_options, @option_list ); $options = override(%default_options, %option_list ); @options_list = config(%options ); ($key,...


Platforms: *nix

License: Freeware Size: 74.75 KB Download (101): Data::Startup Download

Added: August 15, 2008 | Visits: 911

RouterConfigurator RouterConfigurator is a program that might be useful for all specialists whose job is connected with configuring the routers, produced by the Cisco Systems, Inc.The urgent problem for almost every system administrator is editing and tuning the configuration file, specified for the router....


Platforms: Windows

License: Shareware Cost: $24.95 USD Size: 923 KB Download (100): RouterConfigurator Download

Added: October 15, 2010 | Visits: 1.189

Piffle::Template Piffle::Template is a Perlish templating language. SYNOPSIS use Piffle::Template; use Piffle::Template qw{template_to_perl expand_template}; # OO syntax, with output stored and returned: print Piffle::Template->expand(source_file => foo/fish.xml, include_path => [foo/inc,foo]); #...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (100): Piffle::Template Download

Added: June 16, 2010 | Visits: 911

Locale::TextDomain Locale::TextDomain is a Perl Interface to Uniforum Message Translation. SYNOPSIS use Locale::TextDomain (my-package, @locale_dirs); use Locale::TextDomain qw (my-package); my $translated = __"Hello World!n"; my $alt = $__{"Hello World!n"}; my $alt2 = $__->{"Hello World!n"}; my @list...


Platforms: *nix

License: Freeware Size: 460.8 KB Download (100): Locale::TextDomain Download

Added: October 06, 2010 | Visits: 898

Business::GestPayCryptHS SYNOPSIS # # Request # use Business::GestPayCryptHS; my $obj = new Business::GestPayCryptHS; $obj->SetShopLogin($ShopLogin); $obj->SetCurrency($Currency); $obj->SetAmount($Amount); $obj->SetShopTransactionID($ShopTransationID); $obj->SetLanguage($Language); $obj->Encrypt(); if (...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (100): Business::GestPayCryptHS Download

Added: January 18, 2010 | Visits: 1.045

File::PathList File::PathList is a Perl module that can find a file within a set of paths (like @INC or Java classpaths). SYNOPSIS # Create a basic pathset my $inc = File::PathList->new( @INC ); # Again, but with more explicit params my $inc2 = File::PathList->new( paths => @INC, cache => 1, ); #...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (99): File::PathList Download

Added: September 12, 2010 | Visits: 885

Net::CyanChat Net::CyanChat is a Perl interface for connecting to Cyan Worlds chat room. SYNOPSIS use Net::CyanChat; my $cyan = new Net::CyanChat ( host => cho.cyan.com, # default port => 1812, # main port--1813 is for testing proto => 1, # use protocol 1.0 refresh => 60, # ping rate (default) );...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (99): Net::CyanChat Download

Added: February 03, 2010 | Visits: 794

Module::Recursive::Require Module::Recursive::Require is a Perl class that requires module recursive. # ************************************** before use MyApp::Foo; use MyApp::Foo::CGI; use MyApp::Foo::Mail; use MyApp::Foo::Mail::Send; # use use use use use !! use MyApp::Foo::Hoge::Orz; #...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (99): Module::Recursive::Require Download

Added: September 19, 2010 | Visits: 1.369

Array::Compare SYNOPSIS use Array::Compare; my $comp1 = Array::Compare->new; $comp->Sep(|); $comp->Skip({3 => 1, 4 => 1}); $comp->WhiteSpace(0); $comp->Case(1); my $comp2 = Array::Compare->new(Sep => |, WhiteSpace => 0, Case => 1, Skip => {3 => 1, 4 => 1}); my @arr1 = 0 .. 10; my @arr2 = 0 .....


Platforms: *nix

License: Freeware Size: 8.19 KB Download (98): Array::Compare Download

Added: April 04, 2010 | Visits: 974

File::CounterFile File::CounterFile is a persistent counter class. SYNOPSIS use File::CounterFile; $c = File::CounterFile->new("COUNTER", "aa00"); $id = $c->inc; open(F, ">F$id"); This module implements a persistent counter class. Each counter is represented by a separate file in the file system. File...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): File::CounterFile Download

Added: January 17, 2010 | Visits: 842

Pod::Dsr Pod::Dsr is a Perl module Convert POD data to formatted DSR input SYNOPSIS use Pod::Dsr; my $parser = Pod::Dsr->new (release => $VERSION, section => 8); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.1....


Platforms: *nix

License: Freeware Size: 102.4 KB Download (98): Pod::Dsr Download

Added: November 27, 2010 | Visits: 732

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: August 20, 2008 | Visits: 814

Xilisoft Ripper Pack Xilisoft Ripper Pack, a discount pack, includes four perfect products from Xilisoft Inc. and saves $51 for you: 1. Xilisoft DVD Ripper can rip and backup DVDs into popular video formats such as VCD, SVCD, DivX, MPEG1, MPEG2, MPEG4, AVI etc. No matter you are a veteran or a beginner, you will find...


Platforms: Windows

License: Shareware Cost: $59.00 USD Size: 12.84 KB Download (97): Xilisoft Ripper Pack Download

Added: January 07, 2010 | Visits: 1.023

XML::DOM::Lite::XSLT [COPYRIGHT] SYNOPSIS use XML::DOM::Lite qw(Parser XSLT); $parser = Parser->new( whitespace => strip ); $xsldoc = $parser->parse($xsl); $xmldoc = $parser->parse($xml); $output = XSLT->process($xmldoc, $xsldoc);.


Platforms: *nix

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

< 1 2 3 4 5 >