nfl stats
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 235
Fear Stats 1.1.8
Fear Stats generates player stats from F.E.A.R. server log files, and stores them in a MySQL database. more>>
Fear Stats project generates player stats from F.E.A.R. server log files, and stores them in a MySQL database.
Enhancements:
- Improved Scoring Calculations for all game modes
- Created new Sub to handle checking for existing records.
- Transactoins now fully supported for InnoDB
- Corrected Players Objective Score not calculating into total session score.
<<lessEnhancements:
- Improved Scoring Calculations for all game modes
- Created new Sub to handle checking for existing records.
- Transactoins now fully supported for InnoDB
- Corrected Players Objective Score not calculating into total session score.
Download (0.085MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
971 downloads
Listat 2.0
Listat is a free, professional package that generates interesting statistics on mailing list demographics. more>>
Listat is a free, professional package that generates interesting statistics on mailing list demographics.
Main features:
- Stats in text form and HTML form
- Flags for the countries are included in the HTML stats
- The report can be sorted by the domain name or by the number of subscribers from a domain name
- Reports on unrecognized domains
- User configurable domain file: can be extended if more domain names are introduced
- Additional miscellaneous statistical information reported: mean, median, mode, standard deviation, longest length, longest email addresses shortest length, shortest email addresses
Listat creates three reports:
- Domain Report
- Subdomain Report
- Stats Report
Domain Report
The format of this report is:
Domain name Count Percentage Country
This report has following features:
- The report can be sorted by the domain name or by the number of subscribers from a domain name.
- Flag images for the countries are included in the HTML stats.
- Reports on unrecognized domains and invalid addresses.
- User configurable domain file: can be extended if more domain names are added.
Subdomain Report
The format of this report is:
Subdomain Count %age Description
This report has following features:
- Can be generated on any subdomain
- Top n (user configurable) subdomains can be listed
- Subdomain description is listed
Stats Report
This report includes following statistical information:
Email addresses:
- Longest
- Shortest
- Mean
- Median
- Mode
- Standard Deviation
Enhancements:
- The script can run from the command line or as a CGI without needing any modification.
- The domain listing was updated, and new crisp flag images are used.
- The code was cleaned up, including speedups.
<<lessMain features:
- Stats in text form and HTML form
- Flags for the countries are included in the HTML stats
- The report can be sorted by the domain name or by the number of subscribers from a domain name
- Reports on unrecognized domains
- User configurable domain file: can be extended if more domain names are introduced
- Additional miscellaneous statistical information reported: mean, median, mode, standard deviation, longest length, longest email addresses shortest length, shortest email addresses
Listat creates three reports:
- Domain Report
- Subdomain Report
- Stats Report
Domain Report
The format of this report is:
Domain name Count Percentage Country
This report has following features:
- The report can be sorted by the domain name or by the number of subscribers from a domain name.
- Flag images for the countries are included in the HTML stats.
- Reports on unrecognized domains and invalid addresses.
- User configurable domain file: can be extended if more domain names are added.
Subdomain Report
The format of this report is:
Subdomain Count %age Description
This report has following features:
- Can be generated on any subdomain
- Top n (user configurable) subdomains can be listed
- Subdomain description is listed
Stats Report
This report includes following statistical information:
Email addresses:
- Longest
- Shortest
- Mean
- Median
- Mode
- Standard Deviation
Enhancements:
- The script can run from the command line or as a CGI without needing any modification.
- The domain listing was updated, and new crisp flag images are used.
- The code was cleaned up, including speedups.
Download (1.8MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1090 downloads
Vice Stats 1.1
Vice Stats is an advanced Web site statistics gathering package. more>>
Vice Stats is an advanced Web site statistics gathering package. Vice Stats collects data about the resources in a Web site, the visitors to that site, and the referring resources. Vice Stats runs in PHP and stores its data in a MySQL database.
Enhancements:
- The $vs_resourceQuery parameter is properly taken into effect in the Resources tab on the front page.
- The $vs_resourceHost parameter was added for sites that have more than one subdomain.
- There are updates to the browser and IP location databases.
<<lessEnhancements:
- The $vs_resourceQuery parameter is properly taken into effect in the Resources tab on the front page.
- The $vs_resourceHost parameter was added for sites that have more than one subdomain.
- There are updates to the browser and IP location databases.
Download (0.56MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1074 downloads
File::stat 0.1
File::stat is a by-name interface to Perls built-in stat() functions. more>>
File::stat is a by-name interface to Perls built-in stat() functions.
SYNOPSIS
use File::stat;
$st = stat($file) or die "No $file: $!";
if ( ($st->mode & 0111) && $st->nlink > 1) ) {
print "$file is executable with lotsa linksn";
}
use File::stat qw(:FIELDS);
stat($file) or die "No $file: $!";
if ( ($st_mode & 0111) && $st_nlink > 1) ) {
print "$file is executable with lotsa linksn";
}
This modules default exports override the core stat() and lstat() functions, replacing them with versions that return "File::stat" objects. This object has methods that return the similarly named structure field name from the stat(2) function; namely, dev, ino, mode, nlink, uid, gid, rdev, size, atime, mtime, ctime, blksize, and blocks.
You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still overrides your stat() and lstat() functions.) Access these fields as variables named with a preceding st_ in front their method names. Thus, $stat_obj->dev() corresponds to $st_dev if you import the fields.
To access this functionality without the core overrides, pass the use an empty import list, and then access function functions with their full qualified names. On the other hand, the built-ins are still available via the CORE:: pseudo-package.
<<lessSYNOPSIS
use File::stat;
$st = stat($file) or die "No $file: $!";
if ( ($st->mode & 0111) && $st->nlink > 1) ) {
print "$file is executable with lotsa linksn";
}
use File::stat qw(:FIELDS);
stat($file) or die "No $file: $!";
if ( ($st_mode & 0111) && $st_nlink > 1) ) {
print "$file is executable with lotsa linksn";
}
This modules default exports override the core stat() and lstat() functions, replacing them with versions that return "File::stat" objects. This object has methods that return the similarly named structure field name from the stat(2) function; namely, dev, ino, mode, nlink, uid, gid, rdev, size, atime, mtime, ctime, blksize, and blocks.
You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still overrides your stat() and lstat() functions.) Access these fields as variables named with a preceding st_ in front their method names. Thus, $stat_obj->dev() corresponds to $st_dev if you import the fields.
To access this functionality without the core overrides, pass the use an empty import list, and then access function functions with their full qualified names. On the other hand, the built-ins are still available via the CORE:: pseudo-package.
Download (14.2MB)
Added: 2007-04-27 License: Perl Artistic License Price:
910 downloads
ccache stats 0.2
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! more>>
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! I was in trouble formatting output.
Finally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...
Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!
Feel free to give suggestion!
OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)
<<lessFinally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...
Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!
Feel free to give suggestion!
OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)
Download (0.004MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
Event::Stats 0.7
Event::Stats is a Perl module for event loop statistics. more>>
Event::Stats is a Perl module for event loop statistics. Instrument the Event module in order to gather statistics.
API
collect($yes)
Determines whether statistics are collected. Arithmetically adds $yes to the usage count. Stats are enabled while the usage count is positive.
$round_sec = round_seconds($sec)
Statistics are not collected in one second intervals. This function converts a *desired* time interval into an *available* time interval. Units are in seconds.
$elapse = total_time($sec)
Due to long-running callbacks, measurement intervals may take longer than expected. This function returns the actual clock-time for a given measurement interval.
($rans, $dies, $elapse) = idle_time($sec)
($runs, $dies, $elapse) = $watcher->stats($sec)
Return statistics for the last $sec seconds of operation. Three numbers are returned: the number of times the callback has been invoked, the number of uncaught exceptions and the number of seconds spent within the callback. Also see NetServer::ProcessTop.
enforce_max_callback_time($yes)
Useful for debugging. XXX
<<lessAPI
collect($yes)
Determines whether statistics are collected. Arithmetically adds $yes to the usage count. Stats are enabled while the usage count is positive.
$round_sec = round_seconds($sec)
Statistics are not collected in one second intervals. This function converts a *desired* time interval into an *available* time interval. Units are in seconds.
$elapse = total_time($sec)
Due to long-running callbacks, measurement intervals may take longer than expected. This function returns the actual clock-time for a given measurement interval.
($rans, $dies, $elapse) = idle_time($sec)
($runs, $dies, $elapse) = $watcher->stats($sec)
Return statistics for the last $sec seconds of operation. Three numbers are returned: the number of times the callback has been invoked, the number of uncaught exceptions and the number of seconds spent within the callback. Also see NetServer::ProcessTop.
enforce_max_callback_time($yes)
Useful for debugging. XXX
Download (0.005MB)
Added: 2007-04-04 License: Perl Artistic License Price:
933 downloads
OpenWebStats 1.1
OpenWebStats is a PHP stats application that reads Apache log files. more>>
OpenWebStats is a PHP stats application that reads Apache log files and imports the data to a MySQL database.
It then provides an awstats-style reporting tool so that you can review stats on demand from the database. Stats updates are available through cron jobs or the Web interface.
Enhancements:
- Changed Year from hardcoded 2005 to a dynamic current and last year.
- Added full page views to hosts, referers, keywords, and pages
- Drastically improved the class_apache_logs_import.php to not readin the full log to an array. Thus no more memory errors.
- Updated the update now message with flush to show that it is running.
<<lessIt then provides an awstats-style reporting tool so that you can review stats on demand from the database. Stats updates are available through cron jobs or the Web interface.
Enhancements:
- Changed Year from hardcoded 2005 to a dynamic current and last year.
- Added full page views to hosts, referers, keywords, and pages
- Drastically improved the class_apache_logs_import.php to not readin the full log to an array. Thus no more memory errors.
- Updated the update now message with flush to show that it is running.
Download (0.080MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1570 downloads
File::Stat::Bits 1.00
File::Stat::Bits - stat bit mask constants. more>>
File::Stat::Bits - stat bit mask constants.
SYNOPSIS:
use File::stat;
use File::Stat::Bits;
my $st = stat($file) or die "Cant stat $file: $!";
if ( S_ISCHR($st->mode) ) {
my ($major, $minor) = dev_split( $st->rdev );
print "$file is character device $major:$minorn";
}
printf "Permissions are %04on", $st->mode & ALLPERMS;
(Too many S_IF* constants to example)
Lots of Perl modules use the Unix file permissions and type bits directly in binary form with risk of non-portability for some exotic bits. Note that the POSIX module does not provides all needed constants and I cant wait when the POSIX module will be updated.
This separate module provides file type/mode bit and more constants from sys/stat.ph and sys/sysmacros.ph without pollution callers namespace by other unneeded symbols from these headers. Most of these constants exported by this module are Constant Functions (see perlsub).
Since some of Perl builds does not include these converted headers, the build procedure will generate it for itself in the its own lib directory.
This module also should concentrate all portability and compatibility issues.
CONSTANTS
File type bit masks (for the st_mode field):
S_IFMT bitmask for the file type bitfields
S_IFDIR directory
S_IFCHR character device
S_IFBLK block device
S_IFREG regular file
S_IFIFO fifo (named pipe)
S_IFLNK symbolic link
S_IFSOCK socket
=cut
sub S_IFMT () { File::Stat::Bits::dirty::S_IFMT () }
sub S_IFDIR () { File::Stat::Bits::dirty::S_IFDIR () }
sub S_IFCHR () { File::Stat::Bits::dirty::S_IFCHR () }
sub S_IFBLK () { File::Stat::Bits::dirty::S_IFBLK () }
sub S_IFREG () { File::Stat::Bits::dirty::S_IFREG () }
sub S_IFIFO () { File::Stat::Bits::dirty::S_IFIFO () }
sub S_IFLNK () { File::Stat::Bits::dirty::S_IFLNK () }
sub S_IFSOCK() { File::Stat::Bits::dirty::S_IFSOCK() }
File access permission bit masks (for the st_mode field):
S_IRWXU mask for file owner permissions
S_IRUSR owner has read permission
S_IWUSR owner has write permission
S_IXUSR owner has execute permission
S_ISUID set UID bit
S_IRWXG mask for group permissions
S_IRGRP group has read permission
S_IWGRP group has write permission
S_IXGRP group has execute permission
S_ISGID set GID bit
S_IRWXO mask for permissions for others
S_IROTH others have read permission
S_IWOTH others have write permisson
S_IXOTH others have execute permission
S_ISVTX sticky bit
Common mode bit masks:
ACCESSPERMS 0777
ALLPERMS 07777
DEFFILEMODE 0666
=cut
sub S_IRWXU() { File::Stat::Bits::dirty::S_IRWXU() }
sub S_IRUSR() { File::Stat::Bits::dirty::S_IRUSR() }
sub S_IWUSR() { File::Stat::Bits::dirty::S_IWUSR() }
sub S_IXUSR() { File::Stat::Bits::dirty::S_IXUSR() }
sub S_ISUID() { File::Stat::Bits::dirty::S_ISUID() }
sub S_IRWXG() { File::Stat::Bits::dirty::S_IRWXG() }
sub S_IRGRP() { File::Stat::Bits::dirty::S_IRGRP() }
sub S_IWGRP() { File::Stat::Bits::dirty::S_IWGRP() }
sub S_IXGRP() { File::Stat::Bits::dirty::S_IXGRP() }
sub S_ISGID() { File::Stat::Bits::dirty::S_ISGID() }
sub S_IRWXO() { File::Stat::Bits::dirty::S_IRWXO() }
sub S_IROTH() { File::Stat::Bits::dirty::S_IROTH() }
sub S_IWOTH() { File::Stat::Bits::dirty::S_IWOTH() }
sub S_IXOTH() { File::Stat::Bits::dirty::S_IXOTH() }
sub S_ISVTX() { File::Stat::Bits::dirty::S_ISVTX() }
sub ACCESSPERMS() { S_IRWXU|S_IRWXG|S_IRWXO }
sub ALLPERMS() { S_ISUID|S_ISGID|S_ISVTX|ACCESSPERMS }
sub DEFFILEMODE() { S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH }
FUNCTIONS
File type test macros (for the st_mode field):
S_ISDIR ( mode ) directory?
S_ISCHR ( mode ) character device?
S_ISBLK ( mode ) block device?
S_ISREG ( mode ) regular file?
S_ISFIFO( mode ) fifo (named pipe)?
S_ISLNK ( mode ) is it a symbolic link?
S_ISSOCK( mode ) socket?
All returns boolean value.
$major = major( $st_rdev )
Returns major device number of st_rdev
$minor = minor( $st_rdev )
Returns minor device number of st_rdev
($major, $minor) = dev_split( $st_rdev )
Splits st_rdev to major and minor device numbers
$st_rdev = dev_join( $major, $minor )
Makes st_rdev from major and minor device numbers (makedev())
<<lessSYNOPSIS:
use File::stat;
use File::Stat::Bits;
my $st = stat($file) or die "Cant stat $file: $!";
if ( S_ISCHR($st->mode) ) {
my ($major, $minor) = dev_split( $st->rdev );
print "$file is character device $major:$minorn";
}
printf "Permissions are %04on", $st->mode & ALLPERMS;
(Too many S_IF* constants to example)
Lots of Perl modules use the Unix file permissions and type bits directly in binary form with risk of non-portability for some exotic bits. Note that the POSIX module does not provides all needed constants and I cant wait when the POSIX module will be updated.
This separate module provides file type/mode bit and more constants from sys/stat.ph and sys/sysmacros.ph without pollution callers namespace by other unneeded symbols from these headers. Most of these constants exported by this module are Constant Functions (see perlsub).
Since some of Perl builds does not include these converted headers, the build procedure will generate it for itself in the its own lib directory.
This module also should concentrate all portability and compatibility issues.
CONSTANTS
File type bit masks (for the st_mode field):
S_IFMT bitmask for the file type bitfields
S_IFDIR directory
S_IFCHR character device
S_IFBLK block device
S_IFREG regular file
S_IFIFO fifo (named pipe)
S_IFLNK symbolic link
S_IFSOCK socket
=cut
sub S_IFMT () { File::Stat::Bits::dirty::S_IFMT () }
sub S_IFDIR () { File::Stat::Bits::dirty::S_IFDIR () }
sub S_IFCHR () { File::Stat::Bits::dirty::S_IFCHR () }
sub S_IFBLK () { File::Stat::Bits::dirty::S_IFBLK () }
sub S_IFREG () { File::Stat::Bits::dirty::S_IFREG () }
sub S_IFIFO () { File::Stat::Bits::dirty::S_IFIFO () }
sub S_IFLNK () { File::Stat::Bits::dirty::S_IFLNK () }
sub S_IFSOCK() { File::Stat::Bits::dirty::S_IFSOCK() }
File access permission bit masks (for the st_mode field):
S_IRWXU mask for file owner permissions
S_IRUSR owner has read permission
S_IWUSR owner has write permission
S_IXUSR owner has execute permission
S_ISUID set UID bit
S_IRWXG mask for group permissions
S_IRGRP group has read permission
S_IWGRP group has write permission
S_IXGRP group has execute permission
S_ISGID set GID bit
S_IRWXO mask for permissions for others
S_IROTH others have read permission
S_IWOTH others have write permisson
S_IXOTH others have execute permission
S_ISVTX sticky bit
Common mode bit masks:
ACCESSPERMS 0777
ALLPERMS 07777
DEFFILEMODE 0666
=cut
sub S_IRWXU() { File::Stat::Bits::dirty::S_IRWXU() }
sub S_IRUSR() { File::Stat::Bits::dirty::S_IRUSR() }
sub S_IWUSR() { File::Stat::Bits::dirty::S_IWUSR() }
sub S_IXUSR() { File::Stat::Bits::dirty::S_IXUSR() }
sub S_ISUID() { File::Stat::Bits::dirty::S_ISUID() }
sub S_IRWXG() { File::Stat::Bits::dirty::S_IRWXG() }
sub S_IRGRP() { File::Stat::Bits::dirty::S_IRGRP() }
sub S_IWGRP() { File::Stat::Bits::dirty::S_IWGRP() }
sub S_IXGRP() { File::Stat::Bits::dirty::S_IXGRP() }
sub S_ISGID() { File::Stat::Bits::dirty::S_ISGID() }
sub S_IRWXO() { File::Stat::Bits::dirty::S_IRWXO() }
sub S_IROTH() { File::Stat::Bits::dirty::S_IROTH() }
sub S_IWOTH() { File::Stat::Bits::dirty::S_IWOTH() }
sub S_IXOTH() { File::Stat::Bits::dirty::S_IXOTH() }
sub S_ISVTX() { File::Stat::Bits::dirty::S_ISVTX() }
sub ACCESSPERMS() { S_IRWXU|S_IRWXG|S_IRWXO }
sub ALLPERMS() { S_ISUID|S_ISGID|S_ISVTX|ACCESSPERMS }
sub DEFFILEMODE() { S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH }
FUNCTIONS
File type test macros (for the st_mode field):
S_ISDIR ( mode ) directory?
S_ISCHR ( mode ) character device?
S_ISBLK ( mode ) block device?
S_ISREG ( mode ) regular file?
S_ISFIFO( mode ) fifo (named pipe)?
S_ISLNK ( mode ) is it a symbolic link?
S_ISSOCK( mode ) socket?
All returns boolean value.
$major = major( $st_rdev )
Returns major device number of st_rdev
$minor = minor( $st_rdev )
Returns minor device number of st_rdev
($major, $minor) = dev_split( $st_rdev )
Splits st_rdev to major and minor device numbers
$st_rdev = dev_join( $major, $minor )
Makes st_rdev from major and minor device numbers (makedev())
Download (0.009MB)
Added: 2006-05-30 License: Perl Artistic License Price:
1242 downloads
Access Stats 1.12
Access Stats provides a script that enables you to keep track of activities on your web site. more>>
Access Stats provides a script that enables you to keep track of activities on your web site.
Access Stats allows you to keep track of activities on your web site.
It extracts some statistic from a log file generated by log.pl.
These reports are generated by Access Stats:
- Visits by day
- Visits by hour
- Visits by week-day
- Referer
- Browser
- Operating System
- Countries
- Hostnames
<<lessAccess Stats allows you to keep track of activities on your web site.
It extracts some statistic from a log file generated by log.pl.
These reports are generated by Access Stats:
- Visits by day
- Visits by hour
- Visits by week-day
- Referer
- Browser
- Operating System
- Countries
- Hostnames
Download (0.059MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
916 downloads
StatsServ 0.1
StatsServ is a little program which emulates an ever smaller IRC server . more>>
StatsServ is a little program which emulates an ever smaller IRC server (in regard to the commands it handles) and transfers statistics from IRC into a database. You can then use the data, for example, on a Web site where you want to display the latest statistics.
Statistics consist of the uptime of each server in the network, a list of channels, including their topic (except for secret (+s) and private (+p) channels), and the number of users in the network.
You can normally get these statistics via /stats u, /list, and /lusers (if /stats u is supported on the network and enabled for normal users).
<<lessStatistics consist of the uptime of each server in the network, a list of channels, including their topic (except for secret (+s) and private (+p) channels), and the number of users in the network.
You can normally get these statistics via /stats u, /list, and /lusers (if /stats u is supported on the network and enabled for normal users).
Download (0.035MB)
Added: 2006-11-06 License: BSD License Price:
1082 downloads
StepStats 1.0
StepStats is a smart and simple application that allows you to keep track of your sport successes. more>>
StepStats is a smart and simple application that allows you to keep track of your sport successes. The application is perfectly suitable for all sports, where you want to create stats on distance, time or speed.
Main features:
- simple, understandable interface
- keeps track of date, distance, steps and time
- gives you stats with overall values and a nice graph with your speed
- automatic backup of your data once a week to prevent data loss or corruption
- available for MacOS X, Windows and Linux
- and best of all - It is Freeware
<<lessMain features:
- simple, understandable interface
- keeps track of date, distance, steps and time
- gives you stats with overall values and a nice graph with your speed
- automatic backup of your data once a week to prevent data loss or corruption
- available for MacOS X, Windows and Linux
- and best of all - It is Freeware
Download (2.5MB)
Added: 2007-08-06 License: Freeware Price:
809 downloads
Sendmail delivery stats 1.4
Sendmail delivery stats is a Perl script to analyze Sendmail log files and produce mean delivery times. more>>
Sendmail delivery stats is a Perl script to analyze Sendmail log files and produce mean delivery times. It dumps all data in CSV format.
Recently I had to bear with mail server analyze, serving traffic on level +10k messages a day. And there were some degradation of services felt by users, but there was no stright pattern what mails are delivered with bigger latency. Since this was Sendmail powered site I wrote simple tool in Perl to help with analysis.
I hope it is simple to use. What it does ? It collects all log entries, which are related to successful mail delivery. Groups it by domain and calculates average delivery time (time to leave queue - I is rather impossible to estimate time spend in others servers queues). Most useful (for me) is -a option, which makes all output in CSV format, for easy use in further analysis.
It was tested on logs from Sendmail 8.13.x and I belive it calculates proper values.
Enhancements:
- The HTML output format was added, with possible template use.
- Output is now sorted.
- Minor bugfixes and code cleanup were done.
<<lessRecently I had to bear with mail server analyze, serving traffic on level +10k messages a day. And there were some degradation of services felt by users, but there was no stright pattern what mails are delivered with bigger latency. Since this was Sendmail powered site I wrote simple tool in Perl to help with analysis.
I hope it is simple to use. What it does ? It collects all log entries, which are related to successful mail delivery. Groups it by domain and calculates average delivery time (time to leave queue - I is rather impossible to estimate time spend in others servers queues). Most useful (for me) is -a option, which makes all output in CSV format, for easy use in further analysis.
It was tested on logs from Sendmail 8.13.x and I belive it calculates proper values.
Enhancements:
- The HTML output format was added, with possible template use.
- Output is now sorted.
- Minor bugfixes and code cleanup were done.
Download (0.004MB)
Added: 2005-11-06 License: GPL (GNU General Public License) Price:
1451 downloads
htb-stats 1.25
htb-stats.sh is a useful script for htb class summarization. more>>
htb-stats.sh is a useful script for htb class summarization. htb-stats is designed to allow simple, non-root usage, e.g. "./htb-stats.sh eth0".
If an htb.init, tcng.init, or htb-gen configuration is found, it will label traffic output with information taken from respective configuration files.
Enhancements:
- support label-less , adapt to newer tcs backlog output
<<lessIf an htb.init, tcng.init, or htb-gen configuration is found, it will label traffic output with information taken from respective configuration files.
Enhancements:
- support label-less , adapt to newer tcs backlog output
Download (0.008MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1294 downloads
mroovca stats 0.5.3
mroovca stats is a Web site statistics generator with various functions and tables. more>>
mroovca stats is a Web site statistics generator with various functions and tables. mroovca stats is simple, configurable, and provides an administrative interface.
It can measure statistics concerning the client browser, geolocalization, connection type, and referers. It can also recognize Polish towns.
In 2001 ive started to write my own version of web-site(s) statisics, since that time i had to change my name, changed from flat-file to datadase and finally rewrite whole code to be more flexible.
To work with databases it uses "dbx" functions module from PHP. At this moment its tested only with MySQL and prepared to work with this db engine. But in close future i will provide installer, updater and support for other database engines.
But its not end. im working for more enchancements and statistics including tables, charts, maps, etc.
Just download, extract from archive, configure and use it!!
Main features:
- easy instller/updater (for versions >=0.4.4)
- language support - english and polish at this time
- prepared for work with more than one websites/accounts
- root panel for adding and removing accounts
- admin panel for accounts
- all accounts have their own password
- access for viewing stats for all or on passowrd
- showing stats with or without reloads
- timezone correction
- excluded hosts or (sub)domains
<<lessIt can measure statistics concerning the client browser, geolocalization, connection type, and referers. It can also recognize Polish towns.
In 2001 ive started to write my own version of web-site(s) statisics, since that time i had to change my name, changed from flat-file to datadase and finally rewrite whole code to be more flexible.
To work with databases it uses "dbx" functions module from PHP. At this moment its tested only with MySQL and prepared to work with this db engine. But in close future i will provide installer, updater and support for other database engines.
But its not end. im working for more enchancements and statistics including tables, charts, maps, etc.
Just download, extract from archive, configure and use it!!
Main features:
- easy instller/updater (for versions >=0.4.4)
- language support - english and polish at this time
- prepared for work with more than one websites/accounts
- root panel for adding and removing accounts
- admin panel for accounts
- all accounts have their own password
- access for viewing stats for all or on passowrd
- showing stats with or without reloads
- timezone correction
- excluded hosts or (sub)domains
Download (0.29MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1264 downloads
File::Stat::ModeString 1.00
File::Stat::ModeString - conversion file stat mode to/from string representation. more>>
File::Stat::ModeString - conversion file stat mode to/from string representation.
SYNOPSIS
use File::Stat::ModeString;
$string = mode_to_string ( $st_mode );
$st_mode = string_to_mode ( $string );
$type = mode_to_typechar( $st_mode );
$record = < IN >; chomp $record;
$record =~ m/^some_prefixs+$MODE_STRING_REs+some_suffix$/o
or die "invalid record format";
die "Invalid mode in $string"
if is_mode_string_valid( $string );
This module provides a few functions for conversion between binary and literal representations of file mode bits, including file type.
All of them use only symbolic constants for mode bits from File::Stat::Bits.
CONSTANTS
$MODE_STRING_RE
Regular expression to match mode string (without ^$).
FUNCTIONS
is_mode_string_valid( $string )
Returns true if argument matches mode string pattern.
$type = mode_to_typechar( $mode )
Returns file type character of binary mode, ? on unknown file type.
$string = mode_to_string( $mode )
Converts binary mode value to string representation. ? in file type field on unknown file type.
$mode = string_to_mode( $string )
Converts string representation of file mode to binary one.
<<lessSYNOPSIS
use File::Stat::ModeString;
$string = mode_to_string ( $st_mode );
$st_mode = string_to_mode ( $string );
$type = mode_to_typechar( $st_mode );
$record = < IN >; chomp $record;
$record =~ m/^some_prefixs+$MODE_STRING_REs+some_suffix$/o
or die "invalid record format";
die "Invalid mode in $string"
if is_mode_string_valid( $string );
This module provides a few functions for conversion between binary and literal representations of file mode bits, including file type.
All of them use only symbolic constants for mode bits from File::Stat::Bits.
CONSTANTS
$MODE_STRING_RE
Regular expression to match mode string (without ^$).
FUNCTIONS
is_mode_string_valid( $string )
Returns true if argument matches mode string pattern.
$type = mode_to_typechar( $mode )
Returns file type character of binary mode, ? on unknown file type.
$string = mode_to_string( $mode )
Converts binary mode value to string representation. ? in file type field on unknown file type.
$mode = string_to_mode( $string )
Converts string representation of file mode to binary one.
Download (0.007MB)
Added: 2006-05-30 License: Perl Artistic License Price:
1243 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 nfl stats 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