sslc result
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2032
Yahoo::Search::Result 1.5.8
Yahoo::Search::Result is a class representing a single result from a Yahoo! search-engine query. more>>
Yahoo::Search::Result is a class representing a single result (single web page, image, video file, etc) from a Yahoo! search-engine query. (This package is included in, and automatically loaded by, the Yahoo::Search package.)
Package Use ^
You never need to use this package directly -- it is loaded automatically by Yahoo::Search.
Object Creation ^
Result objects are created automatically when a Response object is created (when a Request objects Fetch method is called, either directly, or indirectly via a shortcut such as Yahoo::Search->Query().
<<lessPackage Use ^
You never need to use this package directly -- it is loaded automatically by Yahoo::Search.
Object Creation ^
Result objects are created automatically when a Response object is created (when a Request objects Fetch method is called, either directly, or indirectly via a shortcut such as Yahoo::Search->Query().
Download (0.034MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1194 downloads
Sys::AlarmCall 1.2
Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler. more>>
Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler, allowing nested calls as well.
SYNOPSIS
use Sys::AlarmCall;
$result = alarm_call($timeout1,$func1,@args1);
@result = alarm_call($timeout2,$func2,@args2);
Sys::AlarmCall provides a straightforward function call to use the alarm handler. It also handles the logic which allows nested time out calls if timeout calls are run thorugh the alarm_call() functions.
The main advantages of Sys::AlarmCall are that:
1. simple calls, e.g.
@result = &func(@args); #Normal function call with &
$result = func(@args);; #Normal function call
@result = &$code_reference(@args);
@result = $obj->func(@args); #Object method call
become simple calls:
@result = alarm_call($timeout,&func,@args);
$result = alarm_call($timeout,func,@args);
@result = alarm_call($timeout,$code_reference,@args);
@result = alarm_call($timeout,->func,$obj,@args);
<<lessSYNOPSIS
use Sys::AlarmCall;
$result = alarm_call($timeout1,$func1,@args1);
@result = alarm_call($timeout2,$func2,@args2);
Sys::AlarmCall provides a straightforward function call to use the alarm handler. It also handles the logic which allows nested time out calls if timeout calls are run thorugh the alarm_call() functions.
The main advantages of Sys::AlarmCall are that:
1. simple calls, e.g.
@result = &func(@args); #Normal function call with &
$result = func(@args);; #Normal function call
@result = &$code_reference(@args);
@result = $obj->func(@args); #Object method call
become simple calls:
@result = alarm_call($timeout,&func,@args);
$result = alarm_call($timeout,func,@args);
@result = alarm_call($timeout,$code_reference,@args);
@result = alarm_call($timeout,->func,$obj,@args);
Download (0.005MB)
Added: 2007-04-13 License: Perl Artistic License Price:
925 downloads
WWW::Google::Images::SearchResult 0.6.4
WWW::Google::Images::SearchResult is a Perl module that can search result object for WWW::Google::Images. more>>
WWW::Google::Images::SearchResult is a Perl module that can search result object for WWW::Google::Images.
Other methods
$result->save_all(%args)
Save all the image files and web pages from result.
Optional parameters:
content => 1
Content is saved by calling $image->save_content() for each result.
context => 1
Context is saved by calling $image->save_context() for each result.
summary => 1
A summary is created, that links saved files to original URLs.
file => $file
Passed to $image->save_content() and $image->save_context().
dir => $directory
Passed to $image->save_content() and $image->save_context().
base => $base
Passed to $image->save_content() and $image->save_context().
Additionaly, if optional parameter file or base is given, an index number is automatically appended.
<<lessOther methods
$result->save_all(%args)
Save all the image files and web pages from result.
Optional parameters:
content => 1
Content is saved by calling $image->save_content() for each result.
context => 1
Context is saved by calling $image->save_context() for each result.
summary => 1
A summary is created, that links saved files to original URLs.
file => $file
Passed to $image->save_content() and $image->save_context().
dir => $directory
Passed to $image->save_content() and $image->save_context().
base => $base
Passed to $image->save_content() and $image->save_context().
Additionaly, if optional parameter file or base is given, an index number is automatically appended.
Download (0.007MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1063 downloads
Chess::Elo 0.02
Chess::Elo is a Perl module to calculate Chess Elo ratings. more>>
Chess::Elo is a Perl module to calculate Chess "Elo" ratings.
SYNOPSIS
use Chess::Elo qw(:all);
# Alice is going to thump Bob...
my ($alice_elo, $bob_elo) = (2100, 1200);
# Oh no, Alice lost to Bob!
my $result = 0; # 0.5 for draw, 1 for win
my @new_elo_alice_bob = elo ($alice, 0, $bob);
use Data::Dumper; warn Dumper(@new_elo_alice_bob);
[
2068.17894295388, # My, Alice took a hit on her rating :)
1231.82105704612 # Bob is setting pretty
];
This module provides a single function, elo which allows one to calculate individual ratings based on performance. Typically, a player is given an initial provisional rating of 1600 points. In all cases, one gains and loses points as a function of the playing strength of both parties and the result of their encounter.
The formula used is the same one used at magi-nation:
http://www.magi-nation.com/Tournaments/ratingsfaq.htm
Or, quantitatively speaking:
A2 = A1 + 32 ( G - ( 1 / ( 1 + 10 ** ( ( B1 -A1) / 400 ) ) ) )
A2 is Alices post-game rating
A1 is Alice rating before the game against Bob
B1 is Bobs rating before the game against Alice
G is the game result, in this case:
1, if A beats B
0, if A loses to B
0.5, if A draws to B
METHODS
($new_a, $new_b) = elo($elo_a, $result, $elo_b)
This function takes 3 arguments describing the result of a person with rating $elo_a competing with the person with rating $elo_b. The result argument is from the perspective of person A. Thus if A won $result is 1. If A lost, $result is 0. If A drew, $result is 0.5.
EXPORT
None by default, elo upon request.
<<lessSYNOPSIS
use Chess::Elo qw(:all);
# Alice is going to thump Bob...
my ($alice_elo, $bob_elo) = (2100, 1200);
# Oh no, Alice lost to Bob!
my $result = 0; # 0.5 for draw, 1 for win
my @new_elo_alice_bob = elo ($alice, 0, $bob);
use Data::Dumper; warn Dumper(@new_elo_alice_bob);
[
2068.17894295388, # My, Alice took a hit on her rating :)
1231.82105704612 # Bob is setting pretty
];
This module provides a single function, elo which allows one to calculate individual ratings based on performance. Typically, a player is given an initial provisional rating of 1600 points. In all cases, one gains and loses points as a function of the playing strength of both parties and the result of their encounter.
The formula used is the same one used at magi-nation:
http://www.magi-nation.com/Tournaments/ratingsfaq.htm
Or, quantitatively speaking:
A2 = A1 + 32 ( G - ( 1 / ( 1 + 10 ** ( ( B1 -A1) / 400 ) ) ) )
A2 is Alices post-game rating
A1 is Alice rating before the game against Bob
B1 is Bobs rating before the game against Alice
G is the game result, in this case:
1, if A beats B
0, if A loses to B
0.5, if A draws to B
METHODS
($new_a, $new_b) = elo($elo_a, $result, $elo_b)
This function takes 3 arguments describing the result of a person with rating $elo_a competing with the person with rating $elo_b. The result argument is from the perspective of person A. Thus if A won $result is 1. If A lost, $result is 0. If A drew, $result is 0.5.
EXPORT
None by default, elo upon request.
Download (0.004MB)
Added: 2007-01-04 License: Perl Artistic License Price:
1025 downloads
WAassistant 0.3
WAassistant is a Web application for evaluating the accessibility of Web sites to handicapped users. more>>
WAassistant is a Web application for evaluating the accessibility of Web sites to handicapped users.
WAassistant is not just a test result reporting tool and also it tries to manage the whole testing process, including review of automated testing results, testing by humans, and making comprehensive reports on accessibility properties of Web sites.
Enhancements:
- Support for cooperation with WAusers and switching user roles.
- Additionally, it contains a few bugfixes and smaller improvements.
<<lessWAassistant is not just a test result reporting tool and also it tries to manage the whole testing process, including review of automated testing results, testing by humans, and making comprehensive reports on accessibility properties of Web sites.
Enhancements:
- Support for cooperation with WAusers and switching user roles.
- Additionally, it contains a few bugfixes and smaller improvements.
Download (0.060MB)
Added: 2006-01-12 License: GPL (GNU General Public License) Price:
1380 downloads
Simple DocBook Processor 0.03
Simple DocBook Processor project reads a DocBook XML file, processes it into typeset pages, and outputs the result as PostScript more>>
Simple DocBook Processor project reads a DocBook XML file, processes it into typeset pages, and outputs the result as PostScript (which can easily be converted to a PDF).
It is "simple" because it supports only a subset of DocBook, and also because it does not make use of a DTD or stylesheets or any other heavyweight apparatus. Simple DocBook Processor is a single program. SDoP is used to format the Exim reference manual.
Enhancements:
- A lot of new processing parameters have been added to make it possible to change the output formatting in many ways.
<<lessIt is "simple" because it supports only a subset of DocBook, and also because it does not make use of a DTD or stylesheets or any other heavyweight apparatus. Simple DocBook Processor is a single program. SDoP is used to format the Exim reference manual.
Enhancements:
- A lot of new processing parameters have been added to make it possible to change the output formatting in many ways.
Download (0.79MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
807 downloads
Solid Of Rotation 1.3.0
Solid Of Rotation is a 3D graphic editor. more>>
There is quite a bit of history on this item. One of the assignments in a computer graphics course at the University of Victoria was to rotate a number of Bezier curves around an axis and display the result in 3D using a single light source.
This was on Sun Sparcs using X. Since then the program has mutated to match my platform preference at a given time (DOS, Windows, Linux).
The latest mutation has been to SDL/OpenGL and the result runs happily on Linux and Windows. Screenshot junkies might find the following of interest:
<<lessThis was on Sun Sparcs using X. Since then the program has mutated to match my platform preference at a given time (DOS, Windows, Linux).
The latest mutation has been to SDL/OpenGL and the result runs happily on Linux and Windows. Screenshot junkies might find the following of interest:
Download (0.30MB)
Added: 2005-09-18 License: GPL (GNU General Public License) Price:
1498 downloads
LogicParser 0.7.2
LogicParser project is a simple parser for logical expressions. more>>
LogicParser project is a simple parser for logical expressions.
This small application parses a logical expression and shows his tree representation (in a TreeView), along with its DOT format and PNG graph. It also calculate the result of the proposition based on given values.
<<lessThis small application parses a logical expression and shows his tree representation (in a TreeView), along with its DOT format and PNG graph. It also calculate the result of the proposition based on given values.
Download (0.028MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
981 downloads
nfcount 0.4
nfcount is tool for count network traffic by using rules. more>>
nfcount is tool for count network traffic by using rules. Rule can be defined by source or destenation IP address, timeranges. Accounting result may be simple counter or hystogram.
Main features:
- In rule definition file You can use variables for addresses and timeranges.
- Many rules can update one counter/hystogram.
- Many formats of data file: argus files, IP Accounting text.
- Many formats of output result (perl, binary).
- In rule You can use list of addresses/networks.
- State files for incremental counting.
Installation:
./configure
make
make install
<<lessMain features:
- In rule definition file You can use variables for addresses and timeranges.
- Many rules can update one counter/hystogram.
- Many formats of data file: argus files, IP Accounting text.
- Many formats of output result (perl, binary).
- In rule You can use list of addresses/networks.
- State files for incremental counting.
Installation:
./configure
make
make install
Download (0.30MB)
Added: 2005-10-19 License: BSD License Price:
1468 downloads
Serp EasySurf 1.1.4
Serp EasySurf provides an easy to use extention that makes some modification in search engines result pages. more>>
Serp EasySurf provides an easy to use extention that makes some modification in search engines result pages.
An easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results...
An easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results filter.
<<lessAn easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results...
An easy to use extention that makes some modification in search engines result pages (Google, MSN, Yahoo) and makes surfing in search engines easier!. Features: show numeration, add hotkeys, show results per page select, set|remove omitted results filter.
Download (0.012MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
945 downloads
Sys::Hostname 5.8.8
Sys::Hostname is a Perl module to try every conceivable way to get hostname. more>>
Sys::Hostname is a Perl module to try every conceivable way to get hostname.
SYNOPSIS
use Sys::Hostname;
$host = hostname;
Attempts several methods of getting the system hostname and then caches the result. It tries the first available of the C librarys gethostname(), `$Config{aphostname}`, uname(2), syscall(SYS_gethostname), `hostname`, `uname -n`, and the file /com/host. If all that fails it croaks.
All NULs, returns, and newlines are removed from the result.
<<lessSYNOPSIS
use Sys::Hostname;
$host = hostname;
Attempts several methods of getting the system hostname and then caches the result. It tries the first available of the C librarys gethostname(), `$Config{aphostname}`, uname(2), syscall(SYS_gethostname), `hostname`, `uname -n`, and the file /com/host. If all that fails it croaks.
All NULs, returns, and newlines are removed from the result.
Download (12.2MB)
Added: 2007-04-13 License: Perl Artistic License Price:
924 downloads
Resistor Color Code Calculator 1.0
Resistor Color Code Calculator calculates the value of a resistor (an electronic component). more>>
Resistor Color Code Calculator project calculates the value of a resistor (an electronic component).
The colors on the resistor are input into the program, and the result displays the resistance value of the resistor.
This is much easier than memorizing rhymes to remember colors.
<<lessThe colors on the resistor are input into the program, and the result displays the resistance value of the resistor.
This is much easier than memorizing rhymes to remember colors.
Download (0.87MB)
Added: 2006-06-09 License: Free for non-commercial use Price:
1256 downloads
Senna::Snippet 0.50
Senna::Snippet is a Perl wrapper Around sen_snip. more>>
Senna::Snippet is a Perl wrapper around sen_snip.
SYNOPSIS
use Senna::Constants qw(SEN_ENC_EUCJP);
use Senna::Snippet;
my $snip = Senna::Snippet->new(
encoding => SEN_ENC_EUCJP,
width => 100, # width of snippet
max_results => 10, # max number of results returned on exec()
default_open_tag => , # default {
default_close_tag =>
);
$snip->add_cond(key => "poop", open_tag => "", close_tag => "");
$snip->add_cond(...);
my @text = $snip->exec( string => $text_to_be_snipped );
Senna::Snippet allows you to extract out KWIC text, much like how Google and other search engines hilight the queried text in the search result.
<<lessSYNOPSIS
use Senna::Constants qw(SEN_ENC_EUCJP);
use Senna::Snippet;
my $snip = Senna::Snippet->new(
encoding => SEN_ENC_EUCJP,
width => 100, # width of snippet
max_results => 10, # max number of results returned on exec()
default_open_tag => , # default {
default_close_tag =>
);
$snip->add_cond(key => "poop", open_tag => "
$snip->add_cond(...);
my @text = $snip->exec( string => $text_to_be_snipped );
Senna::Snippet allows you to extract out KWIC text, much like how Google and other search engines hilight the queried text in the search result.
Download (0.056MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1060 downloads
Class::AbstractLogic 0.01_01
Class::AbstractLogic is a Perl module to handle Logic Abstractions. more>>
Class::AbstractLogic is a Perl module to handle Logic Abstractions.
SYNOPSIS
# the logic class definition
package My::Logic::Foo;
use Class::AbstractLogic-base;
# a logic action
action add,
needs [qw(a b)],
verify { a => sub { /^d+$/ }, b => sub { /^d+$/ } },
sub { $_{a} + $_{b} };
1;
...
# logic module manager creation
use Class::AbstractLogic;
my $calm = Class::AbstractLogic::Manager->new;
# loading a logic class
$calm->load_logic(Foo => My::Logic::Foo);
# requesting a result from a logic method
my $result = $calm->logic(Foo)->add(a => 11, b => 12);
# $result will be false if an exception was caught
if ($result) {
print result was . $result->value . "n";
}
else {
print exception raised: . $result->key . "n";
print error message: . $result->error . "n";
}
<<lessSYNOPSIS
# the logic class definition
package My::Logic::Foo;
use Class::AbstractLogic-base;
# a logic action
action add,
needs [qw(a b)],
verify { a => sub { /^d+$/ }, b => sub { /^d+$/ } },
sub { $_{a} + $_{b} };
1;
...
# logic module manager creation
use Class::AbstractLogic;
my $calm = Class::AbstractLogic::Manager->new;
# loading a logic class
$calm->load_logic(Foo => My::Logic::Foo);
# requesting a result from a logic method
my $result = $calm->logic(Foo)->add(a => 11, b => 12);
# $result will be false if an exception was caught
if ($result) {
print result was . $result->value . "n";
}
else {
print exception raised: . $result->key . "n";
print error message: . $result->error . "n";
}
Download (0.016MB)
Added: 2007-08-01 License: Perl Artistic License Price:
814 downloads
EasySQL 0.0.1
EasySQL is a meta-SQL-language for MySQL. more>>
EasySQL is a front-end that provides a slightly extended version of the MySQL SQL syntax allowing for far more sophisticated tasks to be accomplished without resorting to using an external language such as Perl.
Main features:
- Iterate across a SQL result set, and execute multiple queries using the values from each result row.
- Connect to multiple data sources and issue individual queries against one or more data sources.
<<lessMain features:
- Iterate across a SQL result set, and execute multiple queries using the values from each result row.
- Connect to multiple data sources and issue individual queries against one or more data sources.
Download (0.004MB)
Added: 2005-04-14 License: GPL (GNU General Public License) Price:
1653 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 sslc result 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