lotto results
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2004
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
Data::BenchmarkResults 0.01
Data::BenchmarkResults is a Perl extension for averaging and comparing multiple benchmark runs. more>>
Data::BenchmarkResults is a Perl extension for averaging and comparing multiple benchmark runs.
SYNOPSIS
use Data::BenchmarkResults;
$conditionA_results = new Data::BenchmarkResults;
$conditionB_results = new Data::BenchmarkResults;
#Load test result runs for the first condition
$conditionA_results->add_result_set("test1","run1",@data1);
$conditionA_results->add_result_set("test2","run1",@data2);
$conditionA_results->add_result_set("test1","run2",@data3);
$conditionA_results->add_result_set("test2","run2",@data4);
#Load test result runs for the second condition
$conditionB_results->add_result_set("test1","run1",@data5);
$conditionB_results->add_result_set("test2","run2",@data6);
$conditionB_results->add_result_set("test1","run1",@data7);
$conditionB_results->add_result_set("test2","run2",@data8);
#Average (mean average) the results of all the the runs of test1
# w/o tossing the highest and lowest values (replace the 0 with 1to
# toss the highest and lowest values
my $computed = $conditionA_results->process_result_set("test1","mean",0);
my $computed2 = $conditionB_results->process_result_set("test1","mean",0);
#OR process all of the tests at once (tossing the highest and lowest value) :
$conditionA_results->process_all_result_sets("mean",1);
$conditionB_results->process_all_result_sets("mean",1);
#Print out all of the processed test results
print "Condition A results.... nn"
$conditionA_results->print_calculated_sets;
print "Condition B results.... nn"
$conditionB_results->print_calculated_sets;
#Compare results of test1 of condition B against those with condition A
# as a percentage change from A to B
my $compared = $conditionB_results->compare_result_set($conditionA_results,"test1");
#OR compare all the processed test results from one condition to those of another
my $total_comparison = $conditionB_results->compare_all_result_sets($conditionA_results);
<<lessSYNOPSIS
use Data::BenchmarkResults;
$conditionA_results = new Data::BenchmarkResults;
$conditionB_results = new Data::BenchmarkResults;
#Load test result runs for the first condition
$conditionA_results->add_result_set("test1","run1",@data1);
$conditionA_results->add_result_set("test2","run1",@data2);
$conditionA_results->add_result_set("test1","run2",@data3);
$conditionA_results->add_result_set("test2","run2",@data4);
#Load test result runs for the second condition
$conditionB_results->add_result_set("test1","run1",@data5);
$conditionB_results->add_result_set("test2","run2",@data6);
$conditionB_results->add_result_set("test1","run1",@data7);
$conditionB_results->add_result_set("test2","run2",@data8);
#Average (mean average) the results of all the the runs of test1
# w/o tossing the highest and lowest values (replace the 0 with 1to
# toss the highest and lowest values
my $computed = $conditionA_results->process_result_set("test1","mean",0);
my $computed2 = $conditionB_results->process_result_set("test1","mean",0);
#OR process all of the tests at once (tossing the highest and lowest value) :
$conditionA_results->process_all_result_sets("mean",1);
$conditionB_results->process_all_result_sets("mean",1);
#Print out all of the processed test results
print "Condition A results.... nn"
$conditionA_results->print_calculated_sets;
print "Condition B results.... nn"
$conditionB_results->print_calculated_sets;
#Compare results of test1 of condition B against those with condition A
# as a percentage change from A to B
my $compared = $conditionB_results->compare_result_set($conditionA_results,"test1");
#OR compare all the processed test results from one condition to those of another
my $total_comparison = $conditionB_results->compare_all_result_sets($conditionA_results);
Download (0.009MB)
Added: 2007-08-16 License: Perl Artistic License Price:
799 downloads
Test::Litmus 0.03
Test::Litmus is a Perl module to submit test results to the Litmus testcase management tool. more>>
Test::Litmus is a Perl module to submit test results to the Litmus testcase management tool.
SYNOPSIS
use Test::Litmus;
$t = Test::Litmus->new(-machinename => mycomputer,
-username => user,
-authtoken => token,
# optional # -server => http://litmus.mozilla.org/process_test.cgi,
# optional # -action => submit);
$t->sysconfig(-product => Firefox,
-platform => Windows,
-opsys => Windows XP,
-branch => Trunk,
-buildid => 2006061314,
-buildtype => debug cvs,
-locale => en-US);
my $result = Test::Litmus::Result->new(
-isAutomatedResult => 1, # optional
-testid => 27,
-resultstatus => pass, # valid results are pass
# or fail
-exitstatus => 0,
-duration => 666,
-timestamp => 20051111150944, # optional (default: current time)
-comment => optional comment here, # optional
-bugnumber => 300010, # optional
-log => [Test::Litmus::Log->new( # optional
-type => STDOUT,
-data => foobar),
Test::Litmus::Log->new(
-type => Extensions Installed,
-data => log information here)]
);
$t->addResult($result);
# $t->addResult($someOtherResult);
# etc...
# add log information that should be linked with
# all results (i.e. env variables, config info)
$t->addLog(Test::Litmus::Log->new(
-type => STDOUT,
-data => log data));
my $res = $t->submit();
# $res is 0 for non-fatal errors (some results were submitted), and
# undef for fatal errors (no results were submitted successfully)
if ($t->errstr()) { die $t->errstr() }
<<lessSYNOPSIS
use Test::Litmus;
$t = Test::Litmus->new(-machinename => mycomputer,
-username => user,
-authtoken => token,
# optional # -server => http://litmus.mozilla.org/process_test.cgi,
# optional # -action => submit);
$t->sysconfig(-product => Firefox,
-platform => Windows,
-opsys => Windows XP,
-branch => Trunk,
-buildid => 2006061314,
-buildtype => debug cvs,
-locale => en-US);
my $result = Test::Litmus::Result->new(
-isAutomatedResult => 1, # optional
-testid => 27,
-resultstatus => pass, # valid results are pass
# or fail
-exitstatus => 0,
-duration => 666,
-timestamp => 20051111150944, # optional (default: current time)
-comment => optional comment here, # optional
-bugnumber => 300010, # optional
-log => [Test::Litmus::Log->new( # optional
-type => STDOUT,
-data => foobar),
Test::Litmus::Log->new(
-type => Extensions Installed,
-data => log information here)]
);
$t->addResult($result);
# $t->addResult($someOtherResult);
# etc...
# add log information that should be linked with
# all results (i.e. env variables, config info)
$t->addLog(Test::Litmus::Log->new(
-type => STDOUT,
-data => log data));
my $res = $t->submit();
# $res is 0 for non-fatal errors (some results were submitted), and
# undef for fatal errors (no results were submitted successfully)
if ($t->errstr()) { die $t->errstr() }
Download (0.004MB)
Added: 2007-05-04 License: Perl Artistic License Price:
903 downloads
feresPost 2.9.8
feresPost is a Ruby extension that provides the definition of classes and modules. more>>
feresPost is a Ruby extension that provides the definition of classes and modules devoted to the development of automated post-processing for Nastran finite element results.
feresPost library allows easy manipulation of finite element models, groups, and results. Efficient post-processing is possible because the time-consuming operations are written in C/C++.
Enhancements:
- Bugs in the reading of xdb and bdf files have been fixed.
- The classes devoted to the composite calculations were reorganized.
<<lessferesPost library allows easy manipulation of finite element models, groups, and results. Efficient post-processing is possible because the time-consuming operations are written in C/C++.
Enhancements:
- Bugs in the reading of xdb and bdf files have been fixed.
- The classes devoted to the composite calculations were reorganized.
Download (0.26MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
809 downloads
Database Functions 1.0
Database Functions is a PHP class that can be used to build and execute MySQL database queries. more>>
Database Functions is a PHP class that can be used to build and execute MySQL database queries.
It can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.
The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.
<<lessIt can build SELECT, INSERT, UPDATE and DELETE queries from lists of parameters and values.
The class can also execute the generated queries and retrieve the SELECT query results into associative arrays.
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
830 downloads
FileLister 0.5.1
FileLister is a web-based frontend for searching an indexed filesystem. more>>
FileLister is an file system indexing tool with a web based front-end. Running platform independently in a web environment, its goal is to easily find files in large archives, using a rich set of search configuration options.
Additionally, you may download single files or even create and download zip files on the fly from the results of your search.
Main features:
- Simple / Advanced Search modes
- Substring, case-sensitive/-insensitive, exact, regular expressions search
- Search within the whole index tree or within parts of it only
- Search by size, modification date, file/folder/all; sort order definition
- Choice between searching the index or directly on disk
- Search again / Search within results modes
- Column resorting, results navigation, definition of results-per-site count
- Dynamic results caching
- Creation of links for both files and directories for direct download from results view
- Generation and download of zip files created out of the results
- Indexing tool which is configurable as cron job / scheduled task
- Graphical configuration tool for the definition of the application settings, including out-of-the-tool JDBC testing part
- Dynamic reload of modified application settings
- Possibility to define a virtual root directory to be indexed: Ideal tool for searching e.g. a software archive
- Open Source (GPL licensed)
Technologies used:
- J2SDK / Swing
- Java Servlets API / JSP
- MySQL RDBMS / JDBC
- Xerces XML
- JavaScript / CSS
<<lessAdditionally, you may download single files or even create and download zip files on the fly from the results of your search.
Main features:
- Simple / Advanced Search modes
- Substring, case-sensitive/-insensitive, exact, regular expressions search
- Search within the whole index tree or within parts of it only
- Search by size, modification date, file/folder/all; sort order definition
- Choice between searching the index or directly on disk
- Search again / Search within results modes
- Column resorting, results navigation, definition of results-per-site count
- Dynamic results caching
- Creation of links for both files and directories for direct download from results view
- Generation and download of zip files created out of the results
- Indexing tool which is configurable as cron job / scheduled task
- Graphical configuration tool for the definition of the application settings, including out-of-the-tool JDBC testing part
- Dynamic reload of modified application settings
- Possibility to define a virtual root directory to be indexed: Ideal tool for searching e.g. a software archive
- Open Source (GPL licensed)
Technologies used:
- J2SDK / Swing
- Java Servlets API / JSP
- MySQL RDBMS / JDBC
- Xerces XML
- JavaScript / CSS
Download (1.8MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1638 downloads
Google Hacks 1.6
Google Hacks is a compact utility for different Google hacks, like a music search and a product key search. more>>
Google Hacks project is a compilation of carefully crafted Google searches that expose novel functionality from Googles search and map services.
For example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
<<lessFor example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
Download (1.1MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
530 downloads
PlonePopoll 2.5.1
PlonePopoll provides a poll tool for Plone. more>>
PlonePopoll provides a poll tool for Plone.
Main features:
# Architecture
# A poll can be in one and only one of those states:
- enabled
- disabled
# Results can be in one and only one of those states:
- visible
- not visible
# Poll can have multiple choice activated, determining how many choice a user can do.
<<lessMain features:
# Architecture
# A poll can be in one and only one of those states:
- enabled
- disabled
# Results can be in one and only one of those states:
- visible
- not visible
# Poll can have multiple choice activated, determining how many choice a user can do.
Download (0.16MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
986 downloads
Webminstats 0.10.6
Webminstats is a basic system static logging application that graphs the results. more>>
Webminstats is a basic system static logging application that graphs the results. Its first use is system analysis.
Currently it uses webmin as a base web server and tools package.
The basic design is for a system that can have modules add and removed as easily as webmin itself, well almost.
The current modules are cpu, custom, disk, filesopen, firewall, generic, internet, irq, lm_sensors, load, mem, mysql, network, ping, process, samba, services, snmp, snort, ups, users.
<<lessCurrently it uses webmin as a base web server and tools package.
The basic design is for a system that can have modules add and removed as easily as webmin itself, well almost.
The current modules are cpu, custom, disk, filesopen, firewall, generic, internet, irq, lm_sensors, load, mem, mysql, network, ping, process, samba, services, snmp, snort, ups, users.
Download (0.13MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
812 downloads

Domain Grabber for Linux 0.9.1 Beta
It will essentially run a search and display the results in a list box. more>> This application was written using the Yahoo search API. It will essentially run a search and display the results in a list box. However the app has some unique features that make it very useful for anyone who needs to compile a long list of results or domain names (either random or based upon keywords).
Features:
* Can used specified keywords or generate random keywords
* Can retrieve up to 25,000 results for each search.
* Can strip the URL down and just return the Domain Names
* Excludes duplicate results
* Export the results to a plain text file.<<less
Download (1.32MB)
Added: 2009-04-26 License: Freeware Price:
180 downloads
Yet Another RSS Reader 0.2.2
Yet Another RSS Reader provides a RSS aggregator and reader that displays its results in the system tray. more>>
Yet Another RSS Reader provides a RSS aggregator and reader that displays its results in the system tray.
Yet Another RSS Reader is an RSS aggregator and reader that displays its results in the GNOME notification area. To view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.
<<lessYet Another RSS Reader is an RSS aggregator and reader that displays its results in the GNOME notification area. To view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.
Download (MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
970 downloads
CustomizeGoogle 0.60
CustomizeGoogle is a Firefox extension that enhance Google search results. more>>
CustomizeGoogle is a Firefox extension that enhance Google search results by adding extra information (like links to Ask Jeeves, MSN, Yahoo etc) and removing unwanted information (like ads and spam).
All features are optional and easily configured from the options menu. View a short introduction movie at www.customizegoogle.com
<<lessAll features are optional and easily configured from the options menu. View a short introduction movie at www.customizegoogle.com
Download (0.23MB)
Added: 2007-07-23 License: MIT/X Consortium License Price:
825 downloads
AxKit::XSP::ESQL 1.4
AxKit::XSP::ESQL is an Extended SQL taglib for AxKit eXtensible Server Pages. more>>
AxKit::XSP::ESQL is an Extended SQL taglib for AxKit eXtensible Server Pages.
SYNOPSIS
Add the esql: namespace to your XSP < xsp:page > tag:
< xsp:page
language="Perl"
xmlns:xsp="http://apache.org/xsp/core/v1"
xmlns:esql="http://apache.org/xsp/SQL/v2"
>
And add this taglib to AxKit (via httpd.conf or .htaccess):
AxAddXSPTaglib AxKit::XSP::ESQL
This tag library provides extensive support for executing SQL statements from within XSP. This tag library is the same as the Cocoon ESQL taglib.
TAG REFERENCE
Note that below we use the esql: prefix as a convention, however you can use whatever prefix you like provided it is mapped to the appropriate namespace.
< esql:connection>
parent: none
This is the required wrapper element that declares your connection.
< esql:driver>
parent: < esql:connection>
The contents of this element define the DBI driver to be used. For example, Pg, Sybase, Oracle.
You can also add an optional attribute: transactions=no to the driver element, to indicate that this driver does not support transactions (or just that you dont want to use transactions).
< esql:dburl>
parent: < esql:connection>
The name of this tag is a hang-over from the Cocoon (Java) version. In the AxKit version this is simply anything that goes after the driver in the connection string. So for PostgreSQL you might have in here dbname=axkit, to connect to the "axkit" database. The full connect string is constructed as follows:
"dbi:$driver" . ($dburl ? ":$dburl" : "")
See your DBD driver documentation for more details on what is valid for the connection string.
< esql:username>
parent: < esql:connection>
The username to connect to the database with.
< esql:password>
parent: < esql:connection>
The password to use to connect to the database.
< esql:execute-query>
parent: < esql:connection>
This tag is a wrapper tag around queries. You may have as many queries as you like within a single < esql:connection> tag.
< esql:skip-rows>
parent: < esql:execute-query>
The contents of this tag (which may be an < xsp:expr>) define a number of rows to skip forward in the result set.
< esql:max-rows>
parent: < esql:execute-query>
The maximum number of rows to return.
< esql:query>
parent: < esql:execute-query>
The contents of this tag define the query to be executed.
< esql:parameter>
parent: < esql:query>
This tag can be put in your SQL query everywhere you might put a ? in your SQL in DBI. ESQL is intelligent enough to create a cached statement when you do this, and only execute your code when necessary. You put an expression (or another taglib) within the parameter tag (see the example below).
< esql:results>
parent: < esql:execute-query>
The contents of this tag are "executed" whenever the query returns some results.
< esql:row-results>
parent: < esql:results>
The contents of this tag are "executed" for each row of the results
< esql:get-columns>
parent: < esql:row-results>
This tag gets all of the columns in the current row, and outputs them as < column_name>value< /column_name>. If you specify an attribute tag-case="upper", all columns are upper case. Alternatively, "lower" gives you all tags in lower case. An ancestor attribute is also allowed, see "Nested Results" below for more details.
get-*
parent: < esql:row-results>
These are:
get-column
get-string
get-boolean
get-double
get-float
get-int
get-long
get-short
(and more below)
Each of these takes either an attribute column="name", or a child tag, < esql:column> which gives the column name. Alternatively either the attribute or child element can be an integer (starting at 1) specifying the column number.
Also allowed is an ancestor attribute, which is an integer (default 0), which indicates how far up the nested results you go. See Nested Results below.
< esql:get-date>, < esql:get-time>, < esql:get-timestamp>
parent: < esql:row-results>
These tags are the same as get-* above, except they also take a format="..." attribute, which contains a strftime formatting string.
< esql:get-xml>
parent: < esql:row-results>
Again the same as get-* above. This tag assumes the contents of the column are valid XML, and appends that XML into the result tree.
< esql:get-row-position>
parent: < esql:row-results>
Gets the current row number. Optional ancestor attribute.
< esql:get-column-name>
parent: < esql:row-results>
Gets the column name indicated by the numbered column in the column="..." attribute, or the child < esql:column> element. The attribute/child can actually be a string (name), but then what is the point of that?
< esql:get-column-label>
parent: < esql:row-results>
Gets the label of the column. This is a hang-over from the Cocoon java implementation where sadly nobody seems to know what label is compared with name. In this case, get-column-name is always lower case, whereas get-column-label is returned in the case that the DBD driver returns it as.
< esql:get-column-type-name>
parent: < esql:row-results>
Returns the TYPE_NAME of the column indicated as other get-* elements. See the DBI docs for more details.
< esql:no-results>
parent: < esql:execute-query>
The contents of this element are executed when the SQL returned no rows.
< esql:update-results>
parent: < esql:execute-query>
The contents of this element are executed when the SQL was an update statement. The number of rows updated are in the $rv variable.
<<lessSYNOPSIS
Add the esql: namespace to your XSP < xsp:page > tag:
< xsp:page
language="Perl"
xmlns:xsp="http://apache.org/xsp/core/v1"
xmlns:esql="http://apache.org/xsp/SQL/v2"
>
And add this taglib to AxKit (via httpd.conf or .htaccess):
AxAddXSPTaglib AxKit::XSP::ESQL
This tag library provides extensive support for executing SQL statements from within XSP. This tag library is the same as the Cocoon ESQL taglib.
TAG REFERENCE
Note that below we use the esql: prefix as a convention, however you can use whatever prefix you like provided it is mapped to the appropriate namespace.
< esql:connection>
parent: none
This is the required wrapper element that declares your connection.
< esql:driver>
parent: < esql:connection>
The contents of this element define the DBI driver to be used. For example, Pg, Sybase, Oracle.
You can also add an optional attribute: transactions=no to the driver element, to indicate that this driver does not support transactions (or just that you dont want to use transactions).
< esql:dburl>
parent: < esql:connection>
The name of this tag is a hang-over from the Cocoon (Java) version. In the AxKit version this is simply anything that goes after the driver in the connection string. So for PostgreSQL you might have in here dbname=axkit, to connect to the "axkit" database. The full connect string is constructed as follows:
"dbi:$driver" . ($dburl ? ":$dburl" : "")
See your DBD driver documentation for more details on what is valid for the connection string.
< esql:username>
parent: < esql:connection>
The username to connect to the database with.
< esql:password>
parent: < esql:connection>
The password to use to connect to the database.
< esql:execute-query>
parent: < esql:connection>
This tag is a wrapper tag around queries. You may have as many queries as you like within a single < esql:connection> tag.
< esql:skip-rows>
parent: < esql:execute-query>
The contents of this tag (which may be an < xsp:expr>) define a number of rows to skip forward in the result set.
< esql:max-rows>
parent: < esql:execute-query>
The maximum number of rows to return.
< esql:query>
parent: < esql:execute-query>
The contents of this tag define the query to be executed.
< esql:parameter>
parent: < esql:query>
This tag can be put in your SQL query everywhere you might put a ? in your SQL in DBI. ESQL is intelligent enough to create a cached statement when you do this, and only execute your code when necessary. You put an expression (or another taglib) within the parameter tag (see the example below).
< esql:results>
parent: < esql:execute-query>
The contents of this tag are "executed" whenever the query returns some results.
< esql:row-results>
parent: < esql:results>
The contents of this tag are "executed" for each row of the results
< esql:get-columns>
parent: < esql:row-results>
This tag gets all of the columns in the current row, and outputs them as < column_name>value< /column_name>. If you specify an attribute tag-case="upper", all columns are upper case. Alternatively, "lower" gives you all tags in lower case. An ancestor attribute is also allowed, see "Nested Results" below for more details.
get-*
parent: < esql:row-results>
These are:
get-column
get-string
get-boolean
get-double
get-float
get-int
get-long
get-short
(and more below)
Each of these takes either an attribute column="name", or a child tag, < esql:column> which gives the column name. Alternatively either the attribute or child element can be an integer (starting at 1) specifying the column number.
Also allowed is an ancestor attribute, which is an integer (default 0), which indicates how far up the nested results you go. See Nested Results below.
< esql:get-date>, < esql:get-time>, < esql:get-timestamp>
parent: < esql:row-results>
These tags are the same as get-* above, except they also take a format="..." attribute, which contains a strftime formatting string.
< esql:get-xml>
parent: < esql:row-results>
Again the same as get-* above. This tag assumes the contents of the column are valid XML, and appends that XML into the result tree.
< esql:get-row-position>
parent: < esql:row-results>
Gets the current row number. Optional ancestor attribute.
< esql:get-column-name>
parent: < esql:row-results>
Gets the column name indicated by the numbered column in the column="..." attribute, or the child < esql:column> element. The attribute/child can actually be a string (name), but then what is the point of that?
< esql:get-column-label>
parent: < esql:row-results>
Gets the label of the column. This is a hang-over from the Cocoon java implementation where sadly nobody seems to know what label is compared with name. In this case, get-column-name is always lower case, whereas get-column-label is returned in the case that the DBD driver returns it as.
< esql:get-column-type-name>
parent: < esql:row-results>
Returns the TYPE_NAME of the column indicated as other get-* elements. See the DBI docs for more details.
< esql:no-results>
parent: < esql:execute-query>
The contents of this element are executed when the SQL returned no rows.
< esql:update-results>
parent: < esql:execute-query>
The contents of this element are executed when the SQL was an update statement. The number of rows updated are in the $rv variable.
Download (0.006MB)
Added: 2007-06-11 License: Perl Artistic License Price:
866 downloads
Yarssr 0.2.2
Yarssr is an RSS reader that displays its results in the notification area. more>>
Yet Another RSS Reader is an RSS aggregator and reader that displays its results in the GNOME notification area.
To view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.
<<lessTo view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.
Download (0.025MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1549 downloads
AppsUnit 0.1
AppsUnit toolkit assists with the testing of your Oracle e-business suite code. more>>
AppsUnit toolkit assists with the testing of your Oracle e-business suite code. It tests views, PL/SQL packages, concurrent requests, and more.
No software needs to be installed on the application server. Results are made available as a PDF report.
Enhancements:
- The example test kit is available for download.
- The suite uses some of the apps foundation views as an example.
- These views are unit tested, and the results are available as HTML and PDF reports.
<<lessNo software needs to be installed on the application server. Results are made available as a PDF report.
Enhancements:
- The example test kit is available for download.
- The suite uses some of the apps foundation views as an example.
- These views are unit tested, and the results are available as HTML and PDF reports.
Download (0.035MB)
Added: 2006-11-01 License: Common Public License Price:
1088 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 lotto results 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