world
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 953
Rediff Business 1.0
Rediff Business widget allows you to view and read the latest bussiness news from this Indian news source. more>>
Get up to date news about India Business from Rediff Business Edition RSS Feed.
Rediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
<<lessRediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
Download (92.4KB)
Added: 2009-04-25 License: Freeware Price:
191 downloads
Internet Business Services 1.0
Do internet telephones sound too good to be true? Well that was exactly what I was thinking, so I decided to delve into the world of Internet telephon... more>> <<less
Download (421KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
FIFA World Cup 2006 Icons for Linux -
Ball Soccer Camp, Ball Trophy, Footbal Camp, Soccer Ball, Trophy, Trophy Soccer more>> Description:
6 freeware icons inspired in the FIFA World Cup 2006.
Content:
Ball Soccer Camp, Ball Trophy, Footbal Camp, Soccer Ball, Trophy, Trophy Soccer Camp<<less
Download (230KB)
Added: 2009-04-17 License: Freeware Price: Free
190 downloads
Comic World Cup Icons for Linux -
6 Comic freeware icons inspired in the FIFA World Cup 2006. more>> This is one of the Dirceu Veiga's products. It contains 6 comic freeware icons inspired in the FIFA World Cup 2006.
Its content consists of Fifa Trophy, Folder, Folder Ball, Folder Trophy, Folder World Cup, Soccer Ball, Trophy with Bal. You can have a look at it.<<less
Download (252KB)
Added: 2009-04-12 License: Freeware Price: Free
198 downloads
Mortgage Video And Search Tool 1
The world of mortgages and real estate can be extremely confusing to the newcomer. The mortgage industry is a lot more competitive than it used to be... more>> <<less
Download (1113KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads

Ethereal for Linux 0.99.0
The worlds most popular network protocol analyzer more>> Ethereal is used by network professionals around the world for troubleshooting,analysis,software and protocol development,and education.It has all of the standard features you would expect in a protocol analyzer,and several features not seen in any other product. Its open source license allows talented experts in the networking community to add enhancements.<<less
Download (10.74MB)
Added: 2009-04-04 License: Freeware Price: Free
202 downloads
Yaboot 1.3.14
Yaboot project is a bootloader (like lilo or grub) for PPC machines. more>>
Yaboot project is a bootloader (like lilo or grub) for PPC machines. It is a PowerPC bootloader for Open Firmware based machines including New World Apple Macintosh, IBM RS/6000, IBM pSeries and IBM OpenPower machines.
Enhancements:
- Netbooting on pSeries, pxelinux-style netbooting, user-specified config files, iSCSI support, and bootonce functionality.
<<lessEnhancements:
- Netbooting on pSeries, pxelinux-style netbooting, user-specified config files, iSCSI support, and bootonce functionality.
Download (0.21MB)
Added: 2007-08-23 License: GPL (GNU General Public License) Price:
500 downloads
Safe::World 0.14
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together. more>>
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together.
SYNOPSIS
See USE section for complexer example and the test.pl script.
use Safe::World ;
my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;
## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);
$world->close ; ## ensure that everything is finished and flushed.
die($stderr) if $stderr ;
print $stdout ;
$world = undef ; ## Destroy the world. Here the compartment is cleanned.
Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.
<<lessSYNOPSIS
See USE section for complexer example and the test.pl script.
use Safe::World ;
my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;
## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);
$world->close ; ## ensure that everything is finished and flushed.
die($stderr) if $stderr ;
print $stdout ;
$world = undef ; ## Destroy the world. Here the compartment is cleanned.
Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.
Download (0.034MB)
Added: 2007-08-15 License: Perl Artistic License Price:
802 downloads
Crypt::Enigma 1.1
Crypt::Enigma is a Perl extension for emulating a World War II Enigma. more>>
Crypt::Enigma is a Perl extension for emulating a World War II Enigma.
SYNOPSIS
use Crypt::Enigma;
my($enigma) = Crypt::Enigma->new();
# Set the enigma to the proper rotor, ring, and initial setting.
$enigma->setup("312", "ABC", "ERZ");
# Plugboard a to b, and b to a.
$enigma->stekker("a", "b");
# Input a single letter, and get the encrypted letter.
my($output) = $enigma->input("A");
# Input another letter, and get the output.
$output = $enigma->input("W");
<<lessSYNOPSIS
use Crypt::Enigma;
my($enigma) = Crypt::Enigma->new();
# Set the enigma to the proper rotor, ring, and initial setting.
$enigma->setup("312", "ABC", "ERZ");
# Plugboard a to b, and b to a.
$enigma->stekker("a", "b");
# Input a single letter, and get the encrypted letter.
my($output) = $enigma->input("A");
# Input another letter, and get the output.
$output = $enigma->input("W");
Download (0.006MB)
Added: 2007-08-14 License: Perl Artistic License Price:
801 downloads
HTML::Declare 2.1
HTML::Declare is a Perl module for When Template Systems Are Too Huge And Heredocs Too Messy. more>>
HTML::Declare is a Perl module for When Template Systems Are Too Huge And Heredocs Too Messy.
SYNOPSIS
# Import all constructors
use HTML::Declare :all;
# A simple hello world
print HTML {
_ => [
HEAD { _ => TITLE { _ => Hello World! } },
BODY { _ => Hello World! }
]
};
# Import specific constructors
use HTML::Declare qw/DIV A/;
# A simple anchor nested in a div
my $tree = DIV {
_ => [
A {
href => http://127.0.0.1,
_ =><<less
SYNOPSIS
# Import all constructors
use HTML::Declare :all;
# A simple hello world
print HTML {
_ => [
HEAD { _ => TITLE { _ => Hello World! } },
BODY { _ => Hello World! }
]
};
# Import specific constructors
use HTML::Declare qw/DIV A/;
# A simple anchor nested in a div
my $tree = DIV {
_ => [
A {
href => http://127.0.0.1,
_ =><<less
Download (0.019MB)
Added: 2007-08-13 License: Perl Artistic License Price:
802 downloads
EciAdsl 0.12
EciAdsl provides a Globespan-based USB ADSL modems driver. more>>
EciAdsl provides a Globespan-based USB ADSL modems driver.
This is a free Linux driver for USB ADSL modems with Globespan chipsets (ECI modems in France and many other modems in the world).
Please note: this version still requires patch for any kernel between 2.6.0 and 2.6.6.
<<lessThis is a free Linux driver for USB ADSL modems with Globespan chipsets (ECI modems in France and many other modems in the world).
Please note: this version still requires patch for any kernel between 2.6.0 and 2.6.6.
Download (0.20MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
811 downloads
Smart Cache Loader 0.31
Smart Cache Loader is most configurable web batch downloader in world! more>>
Smart Cache Loader is most configurable web batch downloader in world! If you have a very specific needs to grab some portions of web site -- this is right tool for you!
Operation
This program is command line driven. Forget slow GUI and other nice things. If you want GUI downloader, there are other programs. Main power of this program is configuration file. And yes this program has a very nice integration with Smart Cache proxy server.
Enhancements:
- Major bugfix release, now with HTML entity decoding.
<<lessOperation
This program is command line driven. Forget slow GUI and other nice things. If you want GUI downloader, there are other programs. Main power of this program is configuration file. And yes this program has a very nice integration with Smart Cache proxy server.
Enhancements:
- Major bugfix release, now with HTML entity decoding.
Download (0.10MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
817 downloads
pyAwale 0.3.1
pyAwale is a pure Python implementation of the Ivory Coast rules for Awale. more>>
pyAwale is a pure Python implementation of the Ivory Coast rules for Awale. Awale is a game of great antiquity, and has been played around the world in various forms for millenia.
This project is a member of the mancala family of board games.
<<lessThis project is a member of the mancala family of board games.
Download (0.28MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
805 downloads
Daylight Chart 1.6
Daylight Chart project shows sunrise and sunset times in an attractive chart, for any location in the world. more>>
Daylight Chart project shows sunrise and sunset times in an attractive chart, for any location in the world. The effect of daylight savings time is also displayed. Charts can be exported to image files.
<<less Download (2.6MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
498 downloads
Cosmos of Methos 0.3.36
Cosmos of Methos is a game which brings you back to the world of the Ancient Times. more>>
Cosmos of Methos is a game which brings you back to the world of the Ancient Times.
You are placed behind the wheel of a Hellenik Trireme, of a Phoenecian trade-ship or a Skythian pirate ship.
Nevertheless, you have equally the oportunity to rule your destiny. To become from a peaceful trader, a fearsome captain.
<<lessYou are placed behind the wheel of a Hellenik Trireme, of a Phoenecian trade-ship or a Skythian pirate ship.
Nevertheless, you have equally the oportunity to rule your destiny. To become from a peaceful trader, a fearsome captain.
Download (0.098MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
822 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above world search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed