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

Similarly freeware
Filter: All | Freeware | Demo
 

Similarly

< 1 2 3 4 5 
Added: July 12, 2010 | Visits: 1.021

Data::Page::Viewport Data::Page::Viewport is a Perl module to scroll thru data a page, or just an item, at a time. Synopsis This is a complete, tested, runnable program. #!/usr/bin/perl use strict; use warnings; use Data::Page::Viewport; # ----------------------------------------------- my(@data) =... Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Data::Page::Viewport Download

Added: November 27, 2010 | Visits: 1.015

File::Path File::Path is a Perl module to create or remove directory trees. SYNOPSIS use File::Path; mkpath([/foo/bar/baz, blurfl/quux], 1, 0711); rmtree([foo/bar/baz, blurfl/quux], 1, 1); The mkpath function provides a convenient way to create directories, even if your mkdir kernel call wont... Platforms: *nix

License: Freeware Size: 12.2 MB Download (93): File::Path Download

Added: May 10, 2013 | Visits: 1.112

mairix mairix is a tool for indexing and searching email messages stored in Maildir, MH, or mbox folders. The index contains a map of which words occur in which parts of which messages. Searches on this index are fast and generate symlinks to the matching messages in a new Maildir or MH folder, or... Platforms: *nix, C/C++, BSD

License: Freeware Download (113): mairix Download

Added: November 04, 2010 | Visits: 1.375

pod2man pod2man is a Perl module that can convert POD data to formatted *roff input. SYNOPSIS pod2man [--section=manext] [--release=version] [--center=string] [--date=string] [--fixed=font] [--fixedbold=font] [--fixeditalic=font] [--fixedbolditalic=font] [--official] [--lax] [--quotes=quotes] [input... Platforms: *nix

License: Freeware Size: 6 MB Download (140): pod2man Download

Added: May 24, 2010 | Visits: 1.166

ShiftJIS::Regexp ShiftJIS::Regexp contains regular expressions in Shift-JIS. SYNOPSIS use ShiftJIS::Regexp qw(:all); match($string, p{Hiragana}{2}p{Digit}{2}); match($string, pH{2}pD{2}); # these two are equivalent: This module provides some functions to use regular expressions in Shift-JIS on the... Platforms: *nix

License: Freeware Size: 35.84 KB Download (99): ShiftJIS::Regexp Download

Added: January 12, 2010 | Visits: 1.178

Unicode::Regex::Set Unicode::Regex::Set is a subtraction and intersection of Character Sets in Unicode Regular Expressions. SYNOPSIS use Unicode::Regex::Set qw(parse); $regex = parse([p{Latin} & p{L&} - A-Z]); Perl 5.8.0 misses subtraction and intersection of characters, which is described in Unicode Regular... Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Unicode::Regex::Set Download

Added: June 08, 2010 | Visits: 605

SelfLoader SelfLoader is a Perl module created to load functions only on demand. SYNOPSIS package FOOBAR; use SelfLoader; ... (initializing code) __DATA__ sub {.... This module tells its users that functions in the FOOBAR package are to be autoloaded from after the __DATA__ token. See also... Platforms: *nix

License: Freeware Size: 12.2 MB Download (90): SelfLoader Download

Added: July 13, 2010 | Visits: 848

THREDDS THREDDS (short from Thematic Realtime Environmental Distributed Data Services) project is developing middleware to bridge the gap between data providers and data users. The goal is to simplify the discovery and use of scientific data and to allow scientific publications and educational materials... Platforms: *nix

License: Freeware Size: 9.6 MB Download (98): THREDDS Download

Added: July 07, 2010 | Visits: 803

Tk::Adjuster Tk::Adjuster module will allow size of packed widgets to be adjusted by user. SYNOPSIS use Tk::Adjuster; $adjuster = $widget->Adjuster(?options?); WIDGET-SPECIFIC OPTIONS Name: restore Class: Restore Switch: -restore Specifies a boolean value that determines whether the Adjuster... Platforms: *nix

License: Freeware Size: 5.7 MB Download (94): Tk::Adjuster Download

Added: August 06, 2010 | Visits: 721

DBIx::Perlish DBIx::Perlish is a Perl module that provides the ability to work with databases supported by the DBI module using Perls own syntax for four most common operations: SELECT, UPDATE, DELETE, and INSERT. By using DBIx::Perlish, you can write most of your database queries using a domain-specific... Platforms: *nix

License: Freeware Size: 39.94 KB Download (88): DBIx::Perlish Download

Added: November 04, 2010 | Visits: 1.105

File::stat File::stat is a by-name interface to Perls built-in stat() functions. SYNOPSIS use File::stat; $st = stat($file) or die "No $file: $!"; if ( ($st->mode & 0111) && $st->nlink > 1) ) { print "$file is executable with lotsa linksn"; } use File::stat qw(:FIELDS); stat($file) or die "No... Platforms: *nix

License: Freeware Size: 14.2 MB Download (108): File::stat Download

Added: August 27, 2010 | Visits: 776

User::grent User::grent is an interface to Perls built-in getgr*() functions. SYNOPSIS use User::grent; $gr = getgrgid(0) or die "No group zero"; if ( $gr->name eq wheel && @{$gr->members} > 1 ) { print "gid zero name wheel, with other members"; } use User::grent qw(:FIELDS); getgrgid(0) or die... Platforms: *nix

License: Freeware Size: 12.2 MB Download (89): User::grent Download

Added: November 17, 2010 | Visits: 650

User::pwent User::pwent is a Perl interface getpw*() functions. SYNOPSIS use User::pwent; $pw = getpwnam(daemon) || die "No daemon user"; if ( $pw->uid == 1 && $pw->dir =~ m#^/(bin|tmp)?z#s ) { print "gid 1 on root dir"; } $real_shell = $pw->shell || /bin/sh; for (($fullname, $office, $workphone,... Platforms: *nix

License: Freeware Size: 12.2 MB Download (102): User::pwent Download

Added: May 02, 2010 | Visits: 929

Getopt::GUI::Long Getopt::GUI::Long is a wrapper around Getopt::Long that extends the value of the original Getopt::Long module. SYNOPSIS use Getopt::GUI::Long; # pass useful config options to Configure Getopt::GUI::Long::Configure(qw(display_help no_ignore_case capture_output)); GetOptions(%opts,... Platforms: *nix

License: Freeware Size: 12.29 KB Download (90): Getopt::GUI::Long Download

Added: March 19, 2010 | Visits: 832

libarena libarena library is a custom memory allocator interface and implementation. Three allocators are provided: flat "LIFO" arena allocator, object pool allocator and a malloc(3) wrapper. These can be used directly, or through their exported prototype interfaces. libarena is meant to provide a... Platforms: *nix

License: Freeware Size: 20.48 KB Download (87): libarena Download

Added: May 15, 2010 | Visits: 1.186

Python Music Daemon PyMusicD is yet another jukebox daemon written in python. It was born out of my frustration with the current mp3 jukeboxes, mostly the lack of features that I want. Ive also been playing with python quite a lot lately, and this is my first attempt at a large project in python. The player is... Platforms: *nix

License: Freeware Size: 13.31 KB Download (106): Python Music Daemon Download

Added: April 26, 2010 | Visits: 1.684

Apt-get Install / Remove Packet Apt-get Install / Remove Packet is a tool to install/remove packets with debian apt-get. About Apt-Get: Advanced Packaging Tool, or APT, is a package management system used by Debian and its derivatives. APT was originally designed to work with .deb packages on Debian systems, but it has... Platforms: *nix

License: Freeware Size: 32.77 KB Download (146): Apt-get Install / Remove Packet Download

Added: January 25, 2010 | Visits: 774

TiVo Podcast This combination of scripts allows you to set up a Podcast of TiVo recodings. You configure which channels you are interested in, typically digital radio channels but potentially also music TV channels where you don't care about the video, then schedule the radioFTP script and it will handle... Platforms: Mac

License: Freeware Size: 12 KB Download (92): TiVo Podcast Download

Released: November 11, 2008  |  Added: August 29, 2011 | Visits: 1.369

Free Convert to FLV MOV 3GP iPod Flash Free Convert to FLV MOV 3GP iPod Flash Converter is a universal professional converter toolbox, it designs for anyone who wants to enjoy movies on the portable video devices such as iPod, iPhone, Cell phone etc. It is able to convert almost all kinds of video files such as avi, wmv, mpeg, mp4,... Platforms: Windows

License: Freeware Size: 3.47 MB Download (103): Free Convert to FLV MOV 3GP iPod Flash Download

Released: July 23, 2012  |  Added: July 23, 2012 | Visits: 685

Bakers Game Freecell Baker's Game is renowned as the most difficult Freecell Solitaire variation known to man. It plays similarly to the card game Freecell, but in Bakers Game you must build stacks by suit, NOT by alternating color. As in Freecell, beat Baker's Game by getting all 52 cards into the four foundations... Platforms: All

License: Freeware Size: 2.79 MB Download (60): Bakers Game Freecell Download

< 1 2 3 4 5