top 0.01
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1267
Sort::Key::Top 0.01
Sort::Key::Top is a Perl module that can select and sort top n elements. more>>
Sort::Key::Top is a Perl module that can select and sort top n elements.
SYNOPSIS
use Sort::Key::Top (nkeytop top);
# select 5 first numbers by absolute value:
@top = nkeytop { abs $_ } 5 => 1, 2, 7, 5, 5, 1, 78, 0, -2, -8, 2;
# ==> @top = (1, 2, 1, 0, -2)
# select 5 first words by lexicographic order:
@a = qw(cat fish bird leon penguin horse rat elephant squirrel dog);
@top = top 5 => @a;
# ==> @top = qw(cat fish bird elephant dog);
The functions available from this module select the top n elements from a list using several common orderings and custom key extraction procedures.
They are all variations around
keytopsort { CALC_KEY($_) } $n => @data;
This function calculates the ordering key for every element in @data using the expression inside the block. Then it selects and orders the $n elements with the lower keys when compared lexicographically.
It is equivalent to the pure Perl expression:
(sort { CALC_KEY($a) cmp CALC_KEY($b) } @data)[0 .. $n-1];
Variations allow to:
- use the own values as the ordering keys
topsort 5 => qw(a b ab t uu g h aa aac);
==> a aa aac ab b
- return the selected values in the original order
top 5 => qw(a b ab t uu g h aa aac);
==> a b ab aa aac
- use a different ordering
For instance comparing the keys as numbers, using the locale configuration or in reverse order:
rnkeytop { length $_ } 3 => qw(a ab aa aac b t uu g h);
==> ab aa aac
rnkeytopsort { length $_ } 3 => qw(a ab aa aac b t uu g h);
==> aac ab aa
A prefix is used to indicate the required ordering:
(no prefix)
lexicographical ascending order
r
lexicographical descending order
l
lexicographical ascending order obeying locale configuration
r
lexicographical descending order obeying locale configuration
n
numerical ascending order
rn
numerical descending order
i
numerical ascending order but converting the keys to integers first
ri
numerical descending order but converting the keys to integers first
u
numerical ascending order but converting the keys to unsigned integers first
ru
numerical descending order but converting the keys to unsigned integers first
The full list of available functions is:
top ltop ntop itop utop rtop rltop rntop ritop rutop
keytop lkeytop nkeytop ikeytop ukeytop rkeytop rlkeytop rnkeytop
rikeytop rukeytop
topsort ltopsort ntopsort itopsort utopsort rtopsort rltopsort
rntopsort ritopsort rutopsort
keytopsort lkeytopsort nkeytopsort ikeytopsort ukeytopsort
rkeytopsort rlkeytopsort rnkeytopsort rikeytopsort rukeytopsort
<<lessSYNOPSIS
use Sort::Key::Top (nkeytop top);
# select 5 first numbers by absolute value:
@top = nkeytop { abs $_ } 5 => 1, 2, 7, 5, 5, 1, 78, 0, -2, -8, 2;
# ==> @top = (1, 2, 1, 0, -2)
# select 5 first words by lexicographic order:
@a = qw(cat fish bird leon penguin horse rat elephant squirrel dog);
@top = top 5 => @a;
# ==> @top = qw(cat fish bird elephant dog);
The functions available from this module select the top n elements from a list using several common orderings and custom key extraction procedures.
They are all variations around
keytopsort { CALC_KEY($_) } $n => @data;
This function calculates the ordering key for every element in @data using the expression inside the block. Then it selects and orders the $n elements with the lower keys when compared lexicographically.
It is equivalent to the pure Perl expression:
(sort { CALC_KEY($a) cmp CALC_KEY($b) } @data)[0 .. $n-1];
Variations allow to:
- use the own values as the ordering keys
topsort 5 => qw(a b ab t uu g h aa aac);
==> a aa aac ab b
- return the selected values in the original order
top 5 => qw(a b ab t uu g h aa aac);
==> a b ab aa aac
- use a different ordering
For instance comparing the keys as numbers, using the locale configuration or in reverse order:
rnkeytop { length $_ } 3 => qw(a ab aa aac b t uu g h);
==> ab aa aac
rnkeytopsort { length $_ } 3 => qw(a ab aa aac b t uu g h);
==> aac ab aa
A prefix is used to indicate the required ordering:
(no prefix)
lexicographical ascending order
r
lexicographical descending order
l
lexicographical ascending order obeying locale configuration
r
lexicographical descending order obeying locale configuration
n
numerical ascending order
rn
numerical descending order
i
numerical ascending order but converting the keys to integers first
ri
numerical descending order but converting the keys to integers first
u
numerical ascending order but converting the keys to unsigned integers first
ru
numerical descending order but converting the keys to unsigned integers first
The full list of available functions is:
top ltop ntop itop utop rtop rltop rntop ritop rutop
keytop lkeytop nkeytop ikeytop ukeytop rkeytop rlkeytop rnkeytop
rikeytop rukeytop
topsort ltopsort ntopsort itopsort utopsort rtopsort rltopsort
rntopsort ritopsort rutopsort
keytopsort lkeytopsort nkeytopsort ikeytopsort ukeytopsort
rkeytopsort rlkeytopsort rnkeytopsort rikeytopsort rukeytopsort
Download (0.042MB)
Added: 2007-07-18 License: Perl Artistic License Price:
831 downloads
Toyd 0.01
Toyd is an advanced next-generation Window Manager. more>>
Toyd is an advanced next-generation Window Manager. Toyd is built on top of Aoof-Wm, an Advanced Object Oriented Framework designed specifically for the development of portable Window Management systems.
Main features:
Unique configuration
- Evoluate through different environments without seeing any changes. Switch your Operating System but keep the same Interface, the same window manager, the same unique configuration.
Theme
- Master your environment, personalize it, make it your third hand by choosing among a lot of different themes. And if none of them satisfy you, you can still design your own easily !
No click
- Let your instincts drive your computer with the intuitive next-generation no click user interface. No more dashed movements as moving, pointing, multi-clicking, you can now control your machine with smooth peaceful gestures.
Add features with the plugin manager
- Delivered with a wide variety of functionalities, the philosophy of the project is a high level of self configuration with no restrictions at all, you can add features with the plugin manager. Dont be restrained to enable or disable a feature, make it yourself, and then fill any lack you may encounter.
<<lessMain features:
Unique configuration
- Evoluate through different environments without seeing any changes. Switch your Operating System but keep the same Interface, the same window manager, the same unique configuration.
Theme
- Master your environment, personalize it, make it your third hand by choosing among a lot of different themes. And if none of them satisfy you, you can still design your own easily !
No click
- Let your instincts drive your computer with the intuitive next-generation no click user interface. No more dashed movements as moving, pointing, multi-clicking, you can now control your machine with smooth peaceful gestures.
Add features with the plugin manager
- Delivered with a wide variety of functionalities, the philosophy of the project is a high level of self configuration with no restrictions at all, you can add features with the plugin manager. Dont be restrained to enable or disable a feature, make it yourself, and then fill any lack you may encounter.
Download (0.10MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1228 downloads
Tivoli 0.01
Tivoli is a Perl extension for Tivoli TME10. more>>
Tivoli is a Perl extension for Tivoli TME10.
SYNOPSIS
Not (yet) Autoloader implemented.
use Tivoli::DateTime;
use Tivoli::Logging;
use Tivoli::Fwk;
use Tivoli::Endpoints;
This Module will handle about everything you may need for Tivoli TME10. If anything has been left out, please contact me at tivoli.rhase@muc-net.de so it can be added.
Tivoli::DateTime
This Package will handle about everything you may need for handling the date / time.
Tivoli::Logging
This Package will handle about everything you may need for Logging.
Tivoli::Fwk
This Package will handle about everything you may need for Framework.
Tivoli::Endpoints
This Package will handle about everything you may need for Endpoints.
<<lessSYNOPSIS
Not (yet) Autoloader implemented.
use Tivoli::DateTime;
use Tivoli::Logging;
use Tivoli::Fwk;
use Tivoli::Endpoints;
This Module will handle about everything you may need for Tivoli TME10. If anything has been left out, please contact me at tivoli.rhase@muc-net.de so it can be added.
Tivoli::DateTime
This Package will handle about everything you may need for handling the date / time.
Tivoli::Logging
This Package will handle about everything you may need for Logging.
Tivoli::Fwk
This Package will handle about everything you may need for Framework.
Tivoli::Endpoints
This Package will handle about everything you may need for Endpoints.
Download (0.014MB)
Added: 2007-05-25 License: Perl Artistic License Price:
885 downloads
wmap 0.01
wmap is a tool for creating log files about the reachability of wireless access points with signal strengh and GPS coordinates. more>>
wmap is a tool for creating log files about the reachability of wireless access points with signal strengh and GPS coordinates.
Options:
-i Interface Name - Network interface to use (i.e. wlan0 or eth0),
default is wlan0
-l logfile Name - Name of the data logfile, default is wmap.log
-d debug - For debugging / direct console output set this to
anything != NULL
-h IP - The ip is nesecary to run wmap. Normally this is the ip of
your AP or Router
<<lessOptions:
-i Interface Name - Network interface to use (i.e. wlan0 or eth0),
default is wlan0
-l logfile Name - Name of the data logfile, default is wmap.log
-d debug - For debugging / direct console output set this to
anything != NULL
-h IP - The ip is nesecary to run wmap. Normally this is the ip of
your AP or Router
Download (0.002MB)
Added: 2005-09-21 License: GPL (GNU General Public License) Price:
1499 downloads
Qubit 0.01
Qubit (Qmail Ultimate Backend Integration Tool) is a fully Web-based qmail server configuration and administration suite. more>>
Qubit (Qmail Ultimate Backend Integration Tool) is a fully Web-based qmail server configuration and administration suite.
Qubit project is based on the qmailrules qmail server installation style. It has the same features as other similar tools (like vqadmin and qmailadmin), and it also gives you full control to administer your server with all sorts of features and applications.
<<lessQubit project is based on the qmailrules qmail server installation style. It has the same features as other similar tools (like vqadmin and qmailadmin), and it also gives you full control to administer your server with all sorts of features and applications.
Download (0.038MB)
Added: 2006-02-22 License: GPL (GNU General Public License) Price:
1341 downloads
Fotoblog 0.01
Fotoblog is a web based picture gallery that automatically receives and publishes real-time pictures from your mobile phone. more>>
v Every picture is published along with the text sent from the mobile phone.
Main features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
<<lessMain features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
Download (0.015MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
LeahHTTPd 0.01
LeahHTTPd is a fast HTTP server. more>>
LeahHTTPd is a fast HTTP server.
Main features:
- Configurable mimetype support
- Specifyable document root and port
- Templated directory listings
- IPv4 and IPv6 supported
- Basic file-transfer resuming (Range/206)
- Completely asynchronous I/O
- Configurable default directory index file
- CGI support (GET/POST)
- HTTP/1.0 and HTTP/1.1 support
- Resource aliases
- Virtualhost support
Installation:
make install
and
cp dist /etc/leahhttpd -Rad
<<lessMain features:
- Configurable mimetype support
- Specifyable document root and port
- Templated directory listings
- IPv4 and IPv6 supported
- Basic file-transfer resuming (Range/206)
- Completely asynchronous I/O
- Configurable default directory index file
- CGI support (GET/POST)
- HTTP/1.0 and HTTP/1.1 support
- Resource aliases
- Virtualhost support
Installation:
make install
and
cp dist /etc/leahhttpd -Rad
Download (0.61MB)
Added: 2005-10-14 License: GPL (GNU General Public License) Price:
1470 downloads
PayVeX 0.01
PayVeX project works with PayPal IPN to sell files, this approach ensures you are paid for your digital content. more>>
PayVeX project works with PayPal IPN to sell files, this approach ensures you are paid for your digital content before a customer can download it.
For the customer using PayVeX, a purchase is quick, convenient, anonymous and simple.
In this day and age, asking for information can lead to lost sales. People are in a rush and arent interested in taking the time to fill out lengthy forms.
For the merchant, impulse buyers and people who would otherwise resist due to privacy or credit card concerns suddenly become buyers.
<<lessFor the customer using PayVeX, a purchase is quick, convenient, anonymous and simple.
In this day and age, asking for information can lead to lost sales. People are in a rush and arent interested in taking the time to fill out lengthy forms.
For the merchant, impulse buyers and people who would otherwise resist due to privacy or credit card concerns suddenly become buyers.
Download (MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
828 downloads
SIAR 0.01
SIAR (Simple IP Account Reporter) is a plug-in for pmacct (Promiscuous Mode IP Accounting Package). more>>
SIAR (Simple IP Account Reporter) is a plug-in for pmacct (Promiscuous Mode IP Accounting Package) for creating specific reports of traffic on a LAN.
SIAR plugin creates an overview of the total of traffic that passed through the interface, a top protocol table, a top listener table, a top talkers table, a total situation table, seek for an IP source, seek for an IP destination, seek for both, a top conversation table and a graph for a specific day
Installation:
After you have download the file, you have to decompress it in the web-server folder. I suggest to decompress it in /var/www/, infact if you decompress it in an another you will have problems with the code.
cd /var/www/
tar xfz < name >-x-y-z.tar.gz
cd < name >-x-y-z.tar.gz
The tool is now installed. Read the CONFIG file for the configuration.
<<lessSIAR plugin creates an overview of the total of traffic that passed through the interface, a top protocol table, a top listener table, a top talkers table, a total situation table, seek for an IP source, seek for an IP destination, seek for both, a top conversation table and a graph for a specific day
Installation:
After you have download the file, you have to decompress it in the web-server folder. I suggest to decompress it in /var/www/, infact if you decompress it in an another you will have problems with the code.
cd /var/www/
tar xfz < name >-x-y-z.tar.gz
cd < name >-x-y-z.tar.gz
The tool is now installed. Read the CONFIG file for the configuration.
Download (4.5MB)
Added: 2006-03-15 License: GPL (GNU General Public License) Price:
1318 downloads
Lexi 0.01
Lexi project is a dict client and vocabulary builder. more>>
Lexi project is a dict client and vocabulary builder.
Lexi is a dict client that also serves as a personalized vocabulary builder.
It caches definitions and has a persistent word list.
The interface is structured to be quick and easy and features synonym clicking, drag and drop word queries, and spelling suggestions.
<<lessLexi is a dict client that also serves as a personalized vocabulary builder.
It caches definitions and has a persistent word list.
The interface is structured to be quick and easy and features synonym clicking, drag and drop word queries, and spelling suggestions.
Download (0.025MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1089 downloads
blah 0.01
blah project consists of a utility for maintaining a list of frequently copy-and-pasted text. more>>
blah project consists of a utility for maintaining a list of frequently copy-and-pasted text.
When an item is selected from the menu the corresponding text is automatically placed into the clipboard.
You can then use the paste feature in another application to transfer the text.
The current version is functional and usable. However, my goal is to re-design/re-write the code as a GNOME panel app.
Enhancements:
- added rpm bult from archive.
<<lessWhen an item is selected from the menu the corresponding text is automatically placed into the clipboard.
You can then use the paste feature in another application to transfer the text.
The current version is functional and usable. However, my goal is to re-design/re-write the code as a GNOME panel app.
Enhancements:
- added rpm bult from archive.
Download (0.009MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
990 downloads
JDBC 0.01
JDBC is a Perl 5 interface to Java JDBC (via Inline::Java). more>>
JDBC is a Perl 5 interface to Java JDBC (via Inline::Java).
SYNOPSIS
use JDBC;
JDBC->load_driver("org.apache.derby.jdbc.EmbeddedDriver");
my $con = JDBC->getConnection($url, "test", "test");
my $s = $con->createStatement();
$s->executeUpdate("create table foo (foo int, bar varchar(200), primary key (foo))");
$s->executeUpdate("insert into foo (foo, bar) values (42,notthis)");
$s->executeUpdate("insert into foo (foo, bar) values (43,notthat)");
my $rs = $s->executeQuery("select foo, bar from foo");
while ($rs->next) {
my $foo = $rs->getInt(1);
my $bar = $rs->getString(2);
print "row: foo=$foo, bar=$barn";
}
This JDBC module provides an interface to the Java java.sql.* and javax.sql.* JDBC APIs.
<<lessSYNOPSIS
use JDBC;
JDBC->load_driver("org.apache.derby.jdbc.EmbeddedDriver");
my $con = JDBC->getConnection($url, "test", "test");
my $s = $con->createStatement();
$s->executeUpdate("create table foo (foo int, bar varchar(200), primary key (foo))");
$s->executeUpdate("insert into foo (foo, bar) values (42,notthis)");
$s->executeUpdate("insert into foo (foo, bar) values (43,notthat)");
my $rs = $s->executeQuery("select foo, bar from foo");
while ($rs->next) {
my $foo = $rs->getInt(1);
my $bar = $rs->getString(2);
print "row: foo=$foo, bar=$barn";
}
This JDBC module provides an interface to the Java java.sql.* and javax.sql.* JDBC APIs.
Download (1.9MB)
Added: 2007-06-04 License: Perl Artistic License Price:
874 downloads
Tie::Eudora 0.01
Tie::Eudora is a Perl module that can encode/decode emails, read/write emails in Eudora mailbox files. more>>
Tie::Eudora is a Perl module that can encode/decode emails, read/write emails in Eudora mailbox files.
SYNOPSIS
####
# Subroutine interface
#
$encoded_email = decode_record($mailbox_email);
@email = decode_field($encoded_email);
$encoded_email = encode_field (@email);
$mailbox_email = encode_record($encoded_email);
#####
# Object Interface
#
$eudora = Tie::Form->new(@options);
$encoded_email = $eudora->decode_record($record);
@email = $eudora->decode_field($encoded_email);
$encoded_email = $eudora->encode_field (@email);
$mailbox_email = $eudora->encode_record($encoded_email);
$mailbox_email = $eudora->get_record();
$success = $eudora->put_record($mailbox_email);
####
# use file subroutines to write/read Eudora mailbox files
#
tie *MAILBOX, Tie::Eudora;
open MAILBOX,>,$mbx;
print MAILBOX @mailbox;
close MAILBOX;
open MAILBOX,<<less
SYNOPSIS
####
# Subroutine interface
#
$encoded_email = decode_record($mailbox_email);
@email = decode_field($encoded_email);
$encoded_email = encode_field (@email);
$mailbox_email = encode_record($encoded_email);
#####
# Object Interface
#
$eudora = Tie::Form->new(@options);
$encoded_email = $eudora->decode_record($record);
@email = $eudora->decode_field($encoded_email);
$encoded_email = $eudora->encode_field (@email);
$mailbox_email = $eudora->encode_record($encoded_email);
$mailbox_email = $eudora->get_record();
$success = $eudora->put_record($mailbox_email);
####
# use file subroutines to write/read Eudora mailbox files
#
tie *MAILBOX, Tie::Eudora;
open MAILBOX,>,$mbx;
print MAILBOX @mailbox;
close MAILBOX;
open MAILBOX,<<less
Download (0.065MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1018 downloads
IdeaCart 0.01
IdeaCart is an Open Source shopping cart based on PHP and MySQL more>>
IdeaCart is an Open Source shopping cart based on PHP and MySQL.
IdeaCart is available under the GNU General Public License.
Out of the box, IdeaCart provides feature rich solutions for small to medium size ecommerce sites.
IdeaCart combines the power of MySQL with the ease and capability of PHP to offer a truly dynamic solution for todays growing ecommerce sites.
While in the development stages, IdeaCart will provide a robust solution for most ecommerce needs.
IdeaCart current functions on any PHP 4+ configuration running most flavors of Unix and Linux, BSD and most Windows configurations that operate Apache and PHP.
<<lessIdeaCart is available under the GNU General Public License.
Out of the box, IdeaCart provides feature rich solutions for small to medium size ecommerce sites.
IdeaCart combines the power of MySQL with the ease and capability of PHP to offer a truly dynamic solution for todays growing ecommerce sites.
While in the development stages, IdeaCart will provide a robust solution for most ecommerce needs.
IdeaCart current functions on any PHP 4+ configuration running most flavors of Unix and Linux, BSD and most Windows configurations that operate Apache and PHP.
Download (111KB)
Added: 2009-04-25 License: GPL Price:
211 downloads
PacketDB 0.01
PacketDB projects goal is to create a set of workflows that treat tcpdumps/packet captures. more>>
PacketDB projects goal is to create a set of workflows that treat tcpdumps/packet captures as just another sort of data to be loaded into relational structures and manipulated using the well-established methods of relational databases.
The real fun begins after the scripts run and you get to play with that delicious data!
After that ETL phase stabilizes (hopefully), the project would ideally expand into providing tools for discovery and reporting on that data (i.e. data mining and data warehousing). The tables existing for this first phase of the project might be thought of as staging tables for a load up to a datamart or data warehouse.
<<lessThe real fun begins after the scripts run and you get to play with that delicious data!
After that ETL phase stabilizes (hopefully), the project would ideally expand into providing tools for discovery and reporting on that data (i.e. data mining and data warehousing). The tables existing for this first phase of the project might be thought of as staging tables for a load up to a datamart or data warehouse.
Download (0.010MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1039 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 top 0.01 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