get more
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3928
Get-Money 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-07 License: Freeware Price: Free
199 downloads
Get File 1.2.2
Get File is a Firefox extension that can get a file from an URL. more>>
Get File is a Firefox extension that can get a file from an URL.
To use this extension, go in File menu and choose "Get a File".
Ive also developed a french freeware for supervision of your computer.
http://www.pastouchexp.info/
<<lessTo use this extension, go in File menu and choose "Get a File".
Ive also developed a french freeware for supervision of your computer.
http://www.pastouchexp.info/
Download (0.014MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
875 downloads
How-To-Get-Money 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
Test::More 0.70
Test::More is yet another framework for writing test scripts. more>>
Test::More is yet another framework for writing test scripts.
SYNOPSIS
use Test::More tests => 23;
# or
use Test::More qw(no_plan);
# or
use Test::More skip_all => $reason;
BEGIN { use_ok( Some::Module ); }
require_ok( Some::Module );
# Various ways to say "ok"
ok($got eq $expected, $test_name);
is ($got, $exptected, $test_name);
isnt($got, $expected, $test_name);
# Rather than print STDERR "# heres what went wrongn"
diag("heres what went wrong");
like ($got, qr/expected/, $test_name);
unlike($got, qr/expected/, $test_name);
cmp_ok($got, ==, $expected, $test_name);
is_deeply($got_complex_structure, $expected_complex_structure, $test_name);
SKIP: {
skip $why, $how_many unless $have_some_feature;
ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};
TODO: {
local $TODO = $why;
ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};
can_ok($module, @methods);
isa_ok($object, $class);
pass($test_name);
fail($test_name);
BAIL_OUT($why);
# UNIMPLEMENTED!!!
my @status = Test::More::status;
STOP! If youre just getting started writing tests, have a look at Test::Simple first. This is a drop in replacement for Test::Simple which you can switch to once you get the hang of basic testing.
The purpose of this module is to provide a wide range of testing utilities. Various ways to say "ok" with better diagnostics, facilities to skip tests, test future features and compare complicated data structures. While you can do almost anything with a simple ok() function, it doesnt provide good diagnostic output.
<<lessSYNOPSIS
use Test::More tests => 23;
# or
use Test::More qw(no_plan);
# or
use Test::More skip_all => $reason;
BEGIN { use_ok( Some::Module ); }
require_ok( Some::Module );
# Various ways to say "ok"
ok($got eq $expected, $test_name);
is ($got, $exptected, $test_name);
isnt($got, $expected, $test_name);
# Rather than print STDERR "# heres what went wrongn"
diag("heres what went wrong");
like ($got, qr/expected/, $test_name);
unlike($got, qr/expected/, $test_name);
cmp_ok($got, ==, $expected, $test_name);
is_deeply($got_complex_structure, $expected_complex_structure, $test_name);
SKIP: {
skip $why, $how_many unless $have_some_feature;
ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};
TODO: {
local $TODO = $why;
ok( foo(), $test_name );
is( foo(42), 23, $test_name );
};
can_ok($module, @methods);
isa_ok($object, $class);
pass($test_name);
fail($test_name);
BAIL_OUT($why);
# UNIMPLEMENTED!!!
my @status = Test::More::status;
STOP! If youre just getting started writing tests, have a look at Test::Simple first. This is a drop in replacement for Test::Simple which you can switch to once you get the hang of basic testing.
The purpose of this module is to provide a wide range of testing utilities. Various ways to say "ok" with better diagnostics, facilities to skip tests, test future features and compare complicated data structures. While you can do almost anything with a simple ok() function, it doesnt provide good diagnostic output.
Download (0.076MB)
Added: 2007-05-04 License: Perl Artistic License Price:
540 downloads
Get YouTube Video 1.3c
Get YouTube Video is a service menu for KDE. more>>
Get YouTube Video is a service menu for KDE.
Usage:
Right-click onto a link to a YouTube video or at the background of the YouTube site showing the video and choose action -> Download YouTube Video -> ...
Install:
cd ~/.kde/share/apps/konqueror/servicemenus/
tar xvzf /path/to/youtube-servicemenu.tar.gz
I made some modifications to the YouTube Service Menu. It didnt work for me, so I looked at the source. I added a differnent method to guess the video_id and I added additional parameters to the query string to download the video.
The query-string trick is:
video_id is a part of the site-url, in which the video is embedded:
video_ids = set(re.findall(www.youtube.com/v/([-A-Za-z0-9_]+), data))
or
m = re.search(video_id=(?P [-A-Za-z0-9_]+), data)
or
m = re.search(v=(?P [-A-Za-z0-9_]+), data)
Then I do:
url = "http://www.youtube.com/watch?v=%s" % video_id
Now url points to a site in which the video will be embedded, so I can apply following regular expression to its contens:
m = re.search(watch_fullscreen?(?P .*?)&fs=1&title=" + "(?P
<<lessUsage:
Right-click onto a link to a YouTube video or at the background of the YouTube site showing the video and choose action -> Download YouTube Video -> ...
Install:
cd ~/.kde/share/apps/konqueror/servicemenus/
tar xvzf /path/to/youtube-servicemenu.tar.gz
I made some modifications to the YouTube Service Menu. It didnt work for me, so I looked at the source. I added a differnent method to guess the video_id and I added additional parameters to the query string to download the video.
The query-string trick is:
video_id is a part of the site-url, in which the video is embedded:
video_ids = set(re.findall(www.youtube.com/v/([-A-Za-z0-9_]+), data))
or
m = re.search(video_id=(?P [-A-Za-z0-9_]+), data)
or
m = re.search(v=(?P [-A-Za-z0-9_]+), data)
Then I do:
url = "http://www.youtube.com/watch?v=%s" % video_id
Now url points to a site in which the video will be embedded, so I can apply following regular expression to its contens:
m = re.search(watch_fullscreen?(?P .*?)&fs=1&title=" + "(?P
Download (0.003MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
3227 downloads
Caml-get 0.7
Caml-get is a tool to distribute and get Objective-Caml code in a way similar to the apt-get utility. more>> <<less
Download (0.070MB)
Added: 2006-05-22 License: GPL (GNU General Public License) Price:
1252 downloads
Get-Rich 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-06 License: Freeware Price: Free
200 downloads
B::More 1.01
B::More Perl module contains additional introspection methods and functions. more>>
B::More Perl module contains additional introspection methods and functions.
Adds stuff I needed in B and wasnt there.
Feel free to email me with suggestions for other methods I can add.
B::SV METHODS
svref
Inverse of B::svref_2object.
B::PVMG METHODS
magic
Returns a string containing the types of all MAGIC.
magic TYPE
Returns the B::MAGIC object for the magic with specified type, or undef if no magic with that type was found.
FUNCTIONS
defstash
Returns the default stash (main::) as B::HV object.
curstash
Returns the current stash (package) as B::HV object. Note that this only makes sense at compile time (in a BEGIN-block or in eval-string).
<<lessAdds stuff I needed in B and wasnt there.
Feel free to email me with suggestions for other methods I can add.
B::SV METHODS
svref
Inverse of B::svref_2object.
B::PVMG METHODS
magic
Returns a string containing the types of all MAGIC.
magic TYPE
Returns the B::MAGIC object for the magic with specified type, or undef if no magic with that type was found.
FUNCTIONS
defstash
Returns the default stash (main::) as B::HV object.
curstash
Returns the current stash (package) as B::HV object. Note that this only makes sense at compile time (in a BEGIN-block or in eval-string).
Download (0.003MB)
Added: 2007-06-25 License: Perl Artistic License Price:
851 downloads
Clone::More 0.90.2
Clone::More is a Perl module that can copy Perl data structures. more>>
Clone::More is a Perl module that can copy Perl data structures.
SYNOPSIS
use Clone::More qw( clone );
my $structure = [
{ key => value }
];
for my $set ( @$structure ) {
my $clone = clone( $set );
for ( keys %$clone ) {
print "Everything matches" if ( exists( $set->{$_} ) && $set->{$_} eq $clone->{$_} );
}
}
This is intended to act as a utility in order to natively clone data structures via a simple Perl interface. Will ensure that all references will be separated from the parent data strure, yet kept relative to the new structure (if need be).
Please take a look at the WARNINGS, GOTCHAS and FUTURE DEVELOPMENT sections, as resources to see if this module is fully capable of doing everything that you want it to do (and it will do most everything).
<<lessSYNOPSIS
use Clone::More qw( clone );
my $structure = [
{ key => value }
];
for my $set ( @$structure ) {
my $clone = clone( $set );
for ( keys %$clone ) {
print "Everything matches" if ( exists( $set->{$_} ) && $set->{$_} eq $clone->{$_} );
}
}
This is intended to act as a utility in order to natively clone data structures via a simple Perl interface. Will ensure that all references will be separated from the parent data strure, yet kept relative to the new structure (if need be).
Please take a look at the WARNINGS, GOTCHAS and FUTURE DEVELOPMENT sections, as resources to see if this module is fully capable of doing everything that you want it to do (and it will do most everything).
Download (0.027MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
Make-More-Money 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-03-31 License: Freeware Price: Free
209 downloads
Earn-More-Money 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-09 License: Freeware Price: Free
198 downloads
kapt-get 0.3.4
kapt-get is a graphical frontend to apt-get, specifically for RPM-based systems. more>>
kapt-get is a graphical frontend to apt-get, specifically for RPM-based systems. kapt-get is not a direct drop-in replacement for the apt-get command, but it provides a good way to add a GUI to an otherwise command-line operation (in scripts, etc).
So, rather than typing "apt-get install foobar" for instance, you would type "kapt-get --install foobar." Another "key feature" is the ability to update the repository database as well as perform another operation in the same command. For instance, "kapt-get --update --dist-upgrade" will first run apt-get update and then apt-get dist-upgrade and give a GUI to the whole operation.
PerlQt 3.009b2 or higher is required to run this program. I highly doubt that it will run with an older version. apt-rpm is also required. It will not work with apt for dpkg, but Id be willing to accept patches. The whole app will be rewritten for 0.4.0 which may make it easier to add support for it.
To install, type "make" and then "make install" as root. There is no "configure" script, so there is no need to run ./configure.
TRANSLATORS NEEDED! If youd be willing to translate kapt-get into your native language, I would be forever grateful. Contact me if interested.
<<lessSo, rather than typing "apt-get install foobar" for instance, you would type "kapt-get --install foobar." Another "key feature" is the ability to update the repository database as well as perform another operation in the same command. For instance, "kapt-get --update --dist-upgrade" will first run apt-get update and then apt-get dist-upgrade and give a GUI to the whole operation.
PerlQt 3.009b2 or higher is required to run this program. I highly doubt that it will run with an older version. apt-rpm is also required. It will not work with apt for dpkg, but Id be willing to accept patches. The whole app will be rewritten for 0.4.0 which may make it easier to add support for it.
To install, type "make" and then "make install" as root. There is no "configure" script, so there is no need to run ./configure.
TRANSLATORS NEEDED! If youd be willing to translate kapt-get into your native language, I would be forever grateful. Contact me if interested.
Download (0.012MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1109 downloads
Web.GET 2.0.14
Web.GET is a user-friendly Web tool for managing file downloads. more>>
Web.GET is a user-friendly Web tool for managing file downloads. Web.GET project uses GNU wget as its downloading back-end.
<<less Download (0.059MB)
Added: 2006-01-29 License: GPL (GNU General Public License) Price:
1366 downloads
Get Company Info 0.4
Get Company Info allows you to view the latest financial data and other company information in a separate tab. more>>
Get Company Info allows you to view the latest financial data and other company information in a separate tab.
Highlight a company name on your page with the mouse, right-click and choose Get Company Info. You will receive the latest financial data and other company information in a separate tab.
No need in ugly toolbars. Recognizes companies by both names and tickers.
<<lessHighlight a company name on your page with the mouse, right-click and choose Get Company Info. You will receive the latest financial data and other company information in a separate tab.
No need in ugly toolbars. Recognizes companies by both names and tickers.
Download (0.075MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
913 downloads
e-Bot 0.3
e-Bot is an IRC bot written in Perl. more>>
e-Bot is an IRC bot written in Perl. Its main functioning is based on the Socket.pm Perl module, which makes possible its use on most servers that support Perl.
This software will require Perl 5.
You should be able to start up just by running infobot. If you are using macperl, you will
(currently) have to make one minor change (because $^O didnt work for me under os8).
The infobot uses parameter files, typically in the params directory, to set up with. It treats anything on the command line as a parameter file and tries to load it.
If you are using macperl, you will want to set the value of the macperl parameter to 1 in the
two given param files (in the files dir).
By default, the infobot uses the IRC setup. This may change. NOTE that the irc version has no output by default; youll have to turn up the debug level to get more.
to start up the infobot, just invoke it from the command line.
<<lessThis software will require Perl 5.
You should be able to start up just by running infobot. If you are using macperl, you will
(currently) have to make one minor change (because $^O didnt work for me under os8).
The infobot uses parameter files, typically in the params directory, to set up with. It treats anything on the command line as a parameter file and tries to load it.
If you are using macperl, you will want to set the value of the macperl parameter to 1 in the
two given param files (in the files dir).
By default, the infobot uses the IRC setup. This may change. NOTE that the irc version has no output by default; youll have to turn up the debug level to get more.
to start up the infobot, just invoke it from the command line.
Download (0.008MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1232 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 get more 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