miscellaneous
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 93
scanmem 0.07
scanmem is a debugging utility used to isolate the position of a variable in an executing program. more>>
scanmem is a debugging utility used to isolate the position of a variable in an executing program.
The project is similar to pokefinders used to cheat at games.
Enhancements:
- Performance improvements and reduced scan time, including miscellaneous improvements to various commands.
- A dejagnu test suite was started and the build process was autotooled.
- One serious bug where misaligned variables could potentially be missed by scanmem was fixed along with multiple minor bugs.
<<lessThe project is similar to pokefinders used to cheat at games.
Enhancements:
- Performance improvements and reduced scan time, including miscellaneous improvements to various commands.
- A dejagnu test suite was started and the build process was autotooled.
- One serious bug where misaligned variables could potentially be missed by scanmem was fixed along with multiple minor bugs.
Download (0.004MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
872 downloads
XMMS-Shell 0.99.3
XMMS-Shell provides a simple command line interface for controlling XMMS. more>>
XMMS-Shell provides a simple command line interface for controlling the XMMS player.
One can either use the readline-enhanced interactive mode or simply specify commands from the command line (useful for shell scripts or quick manipulation).
Main features:
- Volume control
- Equalizer control
- Control over display of main, equalizer, and playlist windows
- Can pop up the preferences or file load dialogs
- A few miscellaneous but potentially useful commands, such as FADE, FAKEPAUSE, and RESETDEVICE
The 0.99 series of XMMS-Shell represents a complete rewrite of the 0.2 series. All of the functionality of 0.2 should still be provided. The 0.99 series is considered beta. Once the code is deemed stable, it will graduate to version 1.0. This code has barely been tested with XMMS 1.2.6, but it should work with any version of XMMS after 1.0.
<<lessOne can either use the readline-enhanced interactive mode or simply specify commands from the command line (useful for shell scripts or quick manipulation).
Main features:
- Volume control
- Equalizer control
- Control over display of main, equalizer, and playlist windows
- Can pop up the preferences or file load dialogs
- A few miscellaneous but potentially useful commands, such as FADE, FAKEPAUSE, and RESETDEVICE
The 0.99 series of XMMS-Shell represents a complete rewrite of the 0.2 series. All of the functionality of 0.2 should still be provided. The 0.99 series is considered beta. Once the code is deemed stable, it will graduate to version 1.0. This code has barely been tested with XMMS 1.2.6, but it should work with any version of XMMS after 1.0.
Download (0.059MB)
Added: 2006-04-07 License: Public Domain Price:
1296 downloads
MetaRuby 0.7
MetaRuby contains miscellaneous libraries (useful now) for a future Ruby-in-Ruby interpreter. more>>
MetaRuby contains miscellaneous libraries (useful now) for a future Ruby-in-Ruby interpreter including Array/Hash/String as abstract ("Hollow") classes, an undo queue, a statistical time-profiler.
It also has an event loop, a modular marshaller ("ToSource"), a specification for a modular+reflexive+homoiconic remote call system ("LGRAM"), a declarative type system, a schema for expressing Ruby source code as proper (non-special) Ruby objects, etc.
<<lessIt also has an event loop, a modular marshaller ("ToSource"), a specification for a modular+reflexive+homoiconic remote call system ("LGRAM"), a declarative type system, a schema for expressing Ruby source code as proper (non-special) Ruby objects, etc.
Download (0.051MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1156 downloads
MIME::Parser 5.420
MIME::Parser is a experimental class for parsing MIME streams. more>>
MIME::Parser is a experimental class for parsing MIME streams.
SYNOPSIS
Before reading further, you should see MIME::Tools to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. Ill wait.
Ready? Ok...
Basic usage examples
### Create a new parser object:
my $parser = new MIME::Parser;
### Tell it where to put things:
$parser->output_under("/tmp");
### Parse an input filehandle:
$entity = $parser->parse(*STDIN);
### Congratulations: you now have a (possibly multipart) MIME entity!
$entity->dump_skeleton; # for debugging
Examples of input
### Parse from filehandles:
$entity = $parser->parse(*STDIN);
$entity = $parser->parse(IO::File->new("some command|");
### Parse from any object that supports getline() and read():
$entity = $parser->parse($myHandle);
### Parse an in-core MIME message:
$entity = $parser->parse_data($message);
### Parse an MIME message in a file:
$entity = $parser->parse_open("/some/file.msg");
### Parse an MIME message out of a pipeline:
$entity = $parser->parse_open("gunzip - < file.msg.gz |");
### Parse already-split input (as "deliver" would give it to you):
$entity = $parser->parse_two("msg.head", "msg.body");
Examples of output control
### Keep parsed message bodies in core (default outputs to disk):
$parser->output_to_core(1);
### Output each message body to a one-per-message directory:
$parser->output_under("/tmp");
### Output each message body to the same directory:
$parser->output_dir("/tmp");
### Change how nameless message-component files are named:
$parser->output_prefix("msg");
Examples of error recovery
### Normal mechanism:
eval { $entity = $parser->parse(*STDIN) };
if ($@) {
$results = $parser->results;
$decapitated = $parser->last_head; ### get last top-level head
}
### Ultra-tolerant mechanism:
$parser->ignore_errors(1);
$entity = eval { $parser->parse(*STDIN) };
$error = ($@ || $parser->last_error);
### Cleanup all files created by the parse:
eval { $entity = $parser->parse(*STDIN) };
...
$parser->filer->purge;
Examples of parser options
### Automatically attempt to RFC-1522-decode the MIME headers?
$parser->decode_headers(1); ### default is false
### Parse contained "message/rfc822" objects as nested MIME streams?
$parser->extract_nested_messages(0); ### default is true
### Look for uuencode in "text" messages, and extract it?
$parser->extract_uuencode(1); ### default is false
### Should we forgive normally-fatal errors?
$parser->ignore_errors(0); ### default is true
Miscellaneous examples
### Convert a Mail::Internet object to a MIME::Entity:
@lines = (@{$mail->header}, "n", @{$mail->body});
$entity = $parser->parse_data(@lines);
<<lessSYNOPSIS
Before reading further, you should see MIME::Tools to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. Ill wait.
Ready? Ok...
Basic usage examples
### Create a new parser object:
my $parser = new MIME::Parser;
### Tell it where to put things:
$parser->output_under("/tmp");
### Parse an input filehandle:
$entity = $parser->parse(*STDIN);
### Congratulations: you now have a (possibly multipart) MIME entity!
$entity->dump_skeleton; # for debugging
Examples of input
### Parse from filehandles:
$entity = $parser->parse(*STDIN);
$entity = $parser->parse(IO::File->new("some command|");
### Parse from any object that supports getline() and read():
$entity = $parser->parse($myHandle);
### Parse an in-core MIME message:
$entity = $parser->parse_data($message);
### Parse an MIME message in a file:
$entity = $parser->parse_open("/some/file.msg");
### Parse an MIME message out of a pipeline:
$entity = $parser->parse_open("gunzip - < file.msg.gz |");
### Parse already-split input (as "deliver" would give it to you):
$entity = $parser->parse_two("msg.head", "msg.body");
Examples of output control
### Keep parsed message bodies in core (default outputs to disk):
$parser->output_to_core(1);
### Output each message body to a one-per-message directory:
$parser->output_under("/tmp");
### Output each message body to the same directory:
$parser->output_dir("/tmp");
### Change how nameless message-component files are named:
$parser->output_prefix("msg");
Examples of error recovery
### Normal mechanism:
eval { $entity = $parser->parse(*STDIN) };
if ($@) {
$results = $parser->results;
$decapitated = $parser->last_head; ### get last top-level head
}
### Ultra-tolerant mechanism:
$parser->ignore_errors(1);
$entity = eval { $parser->parse(*STDIN) };
$error = ($@ || $parser->last_error);
### Cleanup all files created by the parse:
eval { $entity = $parser->parse(*STDIN) };
...
$parser->filer->purge;
Examples of parser options
### Automatically attempt to RFC-1522-decode the MIME headers?
$parser->decode_headers(1); ### default is false
### Parse contained "message/rfc822" objects as nested MIME streams?
$parser->extract_nested_messages(0); ### default is true
### Look for uuencode in "text" messages, and extract it?
$parser->extract_uuencode(1); ### default is false
### Should we forgive normally-fatal errors?
$parser->ignore_errors(0); ### default is true
Miscellaneous examples
### Convert a Mail::Internet object to a MIME::Entity:
@lines = (@{$mail->header}, "n", @{$mail->body});
$entity = $parser->parse_data(@lines);
Download (0.38MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1073 downloads
EnthoughtBase 3.0.3
Core packages for the Enthought Tool Suite. more>>
EnthoughtBase 3.0.3 is designed as Core packages for the Enthought Tool Suite.
Major Features:
- The EnthoughtBase project includes a few core packages that are used by many other projects in the Enthought Tool Suite:
- Etsconfig: Supports configuring settings that need to be shared across multiple projects or programs on the same system. Most significant of these is the GUI toolkit to be used. You can also configure locations for writing application data and user data, and the name of the company responsible for the software (which is used in the application and user data paths on some systems).
- Logger: Provides convenience functions for creating logging handlers.
- Util: Provides miscellaneous utility functions.
Added: 2009-07-17 License: BSD License Price: FREE
14 downloads
DeveLinux 0.1
DeveLinux is a Live Debian-based distribution oriented to developers and programmers. more>>
DeveLinux is a Live Debian-based distribution oriented to developers and programmers.
It includes many useful developement softwares on a single LiveCD:
Editors:
- Emacs 21
- VIM
- Nano
- Scite
- NVI
Languages, compilers, interpreters:
- gcc 4.0
- g77
- jdk-1.5
- Mono
- python
- bwBasic
- yabasic
- perl
- php 4
- tcl/tk 8.4
- Ruby
Developement Environments & tools:
- Anjuta 1.2
- Eclipse 3.1
- MonoDevelop 1.1.9
- Gambas
- Glade 2
- Bluefish
- Screem
- gdb
- DDD
Miscellaneous Software:
- Apache 2
- MySQL 4
- X.org
- WindowMaker
- Mozilla
- links
DeveLinux is derived from a Debian "Etch" (testing) distribution. It could be really useful, for example, for teachers who dont have a Linux laboratory and still want to teach unix programming principles.
It is also ideal for students, who dont want (or are not able) to install Linux on their own PC, but still want to have a full-functional development Linux-box.
MD5 -> b461b26bd3d05dbe03b3ef8f8264acc0
<<lessIt includes many useful developement softwares on a single LiveCD:
Editors:
- Emacs 21
- VIM
- Nano
- Scite
- NVI
Languages, compilers, interpreters:
- gcc 4.0
- g77
- jdk-1.5
- Mono
- python
- bwBasic
- yabasic
- perl
- php 4
- tcl/tk 8.4
- Ruby
Developement Environments & tools:
- Anjuta 1.2
- Eclipse 3.1
- MonoDevelop 1.1.9
- Gambas
- Glade 2
- Bluefish
- Screem
- gdb
- DDD
Miscellaneous Software:
- Apache 2
- MySQL 4
- X.org
- WindowMaker
- Mozilla
- links
DeveLinux is derived from a Debian "Etch" (testing) distribution. It could be really useful, for example, for teachers who dont have a Linux laboratory and still want to teach unix programming principles.
It is also ideal for students, who dont want (or are not able) to install Linux on their own PC, but still want to have a full-functional development Linux-box.
MD5 -> b461b26bd3d05dbe03b3ef8f8264acc0
Download (588.8MB)
Added: 2005-11-04 License: GPL (GNU General Public License) Price:
1456 downloads
SnortSMS 1.6.8
SnortSMS is a highly configurable sensor management system. more>>
SnortSMS is a highly configurable sensor management system that provides the ability to remotely administer Snort [and Barnyard] based Intrusion Detection Systems (IDS), push configuration files, add/edit rules, and monitor system health and statistics, all from a simple and clean Web interface console.
Whether you have one or multiple Snort sensors, SnortSMS can help unify and syncronize all sensor configurations.
Main features:
- Centralized Sensor Management - Unify all sensors under one common console interface. Create and share global configuration policies throughout your IDS sensors. Remotely start and stop sensors.
- Barnyard Support - Integrated support for Barnyard including auto-generation of sid-msg.map.
- Health Monitoring - Monitor the statistics and health of all your sensors. Our parallel querying engine retrives vital stats from all sensors simustainiously.
- Configuration Verification - Uses MD5 checksums to validate sensor config policies with global configuration settings.
- Rule Importing - Instantly download and import Snort rules and configuration resources into the SnortSMS libraries.
Enhancements:
- This release adds support to handle Dynamic directives.
- There are miscellaneous bugfixes.
<<lessWhether you have one or multiple Snort sensors, SnortSMS can help unify and syncronize all sensor configurations.
Main features:
- Centralized Sensor Management - Unify all sensors under one common console interface. Create and share global configuration policies throughout your IDS sensors. Remotely start and stop sensors.
- Barnyard Support - Integrated support for Barnyard including auto-generation of sid-msg.map.
- Health Monitoring - Monitor the statistics and health of all your sensors. Our parallel querying engine retrives vital stats from all sensors simustainiously.
- Configuration Verification - Uses MD5 checksums to validate sensor config policies with global configuration settings.
- Rule Importing - Instantly download and import Snort rules and configuration resources into the SnortSMS libraries.
Enhancements:
- This release adds support to handle Dynamic directives.
- There are miscellaneous bugfixes.
Download (0.22MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
844 downloads
furious_tv 1.4
furious_tv is a set of tools to take XMLTV TV listings and enable a UNIX system to automatically record programs of a TV card. more>>
furious_tv is a set of tools to take XMLTV TV listings and enable a UNIX system to automatically record programs off of a TV card. It is written in C and uses a SAX parser for maximum speed and efficiency.
Enhancements:
- This version of furious_tv fixes a few miscellaneous bugs in the code and also adds support for non-US TV listings. Apparently in countries other than the US, the channel numbers vary a great deal (even in small areas), so non-US users needed a way to change channel numbers and have those changes persist when new listings were loaded into the database.
- Version 1.4 adds an option to ftv_listings ("-r") that instructs the parser to use the channel numbers in the listings to override the channel numbers in the database. This is really only a good idea if the listings probably have the correct channel numbers (e.g. US listings obtained using XMLTVs tv_grab_na grabber).
- One last point to keep in mind is that the channel numbers are preserved by looking at the channel names, so the channel names should not be changed manually because then ftv_listings will not recognize the channel as already in the database.
<<lessEnhancements:
- This version of furious_tv fixes a few miscellaneous bugs in the code and also adds support for non-US TV listings. Apparently in countries other than the US, the channel numbers vary a great deal (even in small areas), so non-US users needed a way to change channel numbers and have those changes persist when new listings were loaded into the database.
- Version 1.4 adds an option to ftv_listings ("-r") that instructs the parser to use the channel numbers in the listings to override the channel numbers in the database. This is really only a good idea if the listings probably have the correct channel numbers (e.g. US listings obtained using XMLTVs tv_grab_na grabber).
- One last point to keep in mind is that the channel numbers are preserved by looking at the channel names, so the channel names should not be changed manually because then ftv_listings will not recognize the channel as already in the database.
Download (0.10MB)
Added: 2005-11-04 License: GPL (GNU General Public License) Price:
1449 downloads
Time::Zone 1.16
Time::Zone is a miscellaneous timezone manipulations routines. more>>
Time::Zone is a miscellaneous timezone manipulations routines.
SYNOPSIS
use Time::Zone;
print tz2zone();
print tz2zone($ENV{TZ});
print tz2zone($ENV{TZ}, time());
print tz2zone($ENV{TZ}, undef, $isdst);
$offset = tz_local_offset();
$offset = tz_offset($TZ);
This is a collection of miscellaneous timezone manipulation routines.
tz2zone() parses the TZ environment variable and returns a timezone string suitable for inclusion in date-like output. It opionally takes a timezone string, a time, and a is-dst flag.
tz_local_offset() determins the offset from GMT time in seconds. It only does the calculation once.
tz_offset() determines the offset from GMT in seconds of a specified timezone.
tz_name() determines the name of the timezone based on its offset
<<lessSYNOPSIS
use Time::Zone;
print tz2zone();
print tz2zone($ENV{TZ});
print tz2zone($ENV{TZ}, time());
print tz2zone($ENV{TZ}, undef, $isdst);
$offset = tz_local_offset();
$offset = tz_offset($TZ);
This is a collection of miscellaneous timezone manipulation routines.
tz2zone() parses the TZ environment variable and returns a timezone string suitable for inclusion in date-like output. It opionally takes a timezone string, a time, and a is-dst flag.
tz_local_offset() determins the offset from GMT time in seconds. It only does the calculation once.
tz_offset() determines the offset from GMT in seconds of a specified timezone.
tz_name() determines the name of the timezone based on its offset
Download (0.022MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1214 downloads
jMimeMagic 0.1.0
jMimeMagic is a Java library for determining the MIME or content type of files or streams. more>>
jMimeMagic project is a Java library for determining the MIME or content type of files or streams.
Enhancements:
- The build system has been migrated to maven 1.x.
- Subversion is now used.
- A hinting flag has been added for file extensions hints.
- The ability to disable sub-matches for MIME-only detection has been added, and still needs work (e.g. submatch until a MIME is found).
- Content detection plugins are now supported.
- Logging has been switched over to commons-logging.
- This release cleans up Javadoc and enables site generation.
- There is other miscellaneous cleanup.
<<lessEnhancements:
- The build system has been migrated to maven 1.x.
- Subversion is now used.
- A hinting flag has been added for file extensions hints.
- The ability to disable sub-matches for MIME-only detection has been added, and still needs work (e.g. submatch until a MIME is found).
- Content detection plugins are now supported.
- Logging has been switched over to commons-logging.
- This release cleans up Javadoc and enables site generation.
- There is other miscellaneous cleanup.
Download (0.044MB)
Added: 2006-09-08 License: LGPL (GNU Lesser General Public License) Price:
1147 downloads
Mail::Abuse 1.025
Mail::Abuse is a Perl module that helps parse and respond to miscellaneous abuse complaints. more>>
Mail::Abuse is a Perl module that helps parse and respond to miscellaneous abuse complaints.
SYNOPSIS
use Mail::Abuse;
This module and the accompaining software can be used to automatically parse and respond to various formats of abuse complaints. This software is geared towards abuse desk administrators who need sophisticated tools to deal with the complains.
Mail::Abuse is actually a bundle of modules that provide various services. This documentation provides a general description of the functions provided by each one. No useful code is provided in the Mail::Abuse module, appart from this documentation and the version information below.
The following classes/packages are part of this distribution.
Mail::Abuse::Report
A report is a collection made of the received report and ths incidents it describes. See Mail::Abuse::Report for more information.
Mail::Abuse::Incident
An incident is each of the individual policy violations that are presented in a given report. A report should have at least, one incident. See Mail::Abuse::Incident for more information.
Mail::Abuse::Processor
Once the reports are analyzed and its incidents are extracted, you will want to do something with the information. This is the job of a processor. See Mail::Abuse::Processor for more information.
Mail::Abuse::Reader
Abuse reports can be fetched from a variety of places and through various protocols. This is what readers do: Read a report. See Mail::Abuse::Reader for more information.
Mail::Abuse::Filter
An abuse report might contain incidents that are not to be handled by us. A filter remove incidents that does not belong to our network. See Mail::Abuse::Filter for more information.
All of the modules take a lot of their configuration information from a specially formatted file.
This distribution also includes a number of scripts. See the bin/ directory for more information.
<<lessSYNOPSIS
use Mail::Abuse;
This module and the accompaining software can be used to automatically parse and respond to various formats of abuse complaints. This software is geared towards abuse desk administrators who need sophisticated tools to deal with the complains.
Mail::Abuse is actually a bundle of modules that provide various services. This documentation provides a general description of the functions provided by each one. No useful code is provided in the Mail::Abuse module, appart from this documentation and the version information below.
The following classes/packages are part of this distribution.
Mail::Abuse::Report
A report is a collection made of the received report and ths incidents it describes. See Mail::Abuse::Report for more information.
Mail::Abuse::Incident
An incident is each of the individual policy violations that are presented in a given report. A report should have at least, one incident. See Mail::Abuse::Incident for more information.
Mail::Abuse::Processor
Once the reports are analyzed and its incidents are extracted, you will want to do something with the information. This is the job of a processor. See Mail::Abuse::Processor for more information.
Mail::Abuse::Reader
Abuse reports can be fetched from a variety of places and through various protocols. This is what readers do: Read a report. See Mail::Abuse::Reader for more information.
Mail::Abuse::Filter
An abuse report might contain incidents that are not to be handled by us. A filter remove incidents that does not belong to our network. See Mail::Abuse::Filter for more information.
All of the modules take a lot of their configuration information from a specially formatted file.
This distribution also includes a number of scripts. See the bin/ directory for more information.
Download (0.090MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Math::Symbolic::MiscAlgebra 0.508
Math::Symbolic::MiscAlgebra contains miscellaneous algebra routines like det(). more>>
Math::Symbolic::MiscAlgebra contains miscellaneous algebra routines like det().
SYNOPSIS
use Math::Symbolic qw/:all/;
use Math::Symbolic::MiscAlgebra qw/:all/; # not loaded by Math::Symbolic
@matrix = ([x*y, z*x, y*z],[x, z, z],[x, x, y]);
$det = det @matrix;
@vector = (x, y, z);
$solution = solve_linear(@matrix, @vector);
This module provides several subroutines related to algebra such as computing the determinant of quadratic matrices, solving linear equation systems and computation of Bell Polynomials.
Please note that the code herein may or may not be refactored into the OO-interface of the Math::Symbolic module in the future.
You may choose to have any of the following routines exported to the calling namespace. :all tag exports all of the following:
det
linear_solve
bell_polynomial
<<lessSYNOPSIS
use Math::Symbolic qw/:all/;
use Math::Symbolic::MiscAlgebra qw/:all/; # not loaded by Math::Symbolic
@matrix = ([x*y, z*x, y*z],[x, z, z],[x, x, y]);
$det = det @matrix;
@vector = (x, y, z);
$solution = solve_linear(@matrix, @vector);
This module provides several subroutines related to algebra such as computing the determinant of quadratic matrices, solving linear equation systems and computation of Bell Polynomials.
Please note that the code herein may or may not be refactored into the OO-interface of the Math::Symbolic module in the future.
You may choose to have any of the following routines exported to the calling namespace. :all tag exports all of the following:
det
linear_solve
bell_polynomial
Download (0.10MB)
Added: 2007-08-09 License: Perl Artistic License Price:
806 downloads
XML::Atom::SimpleFeed 0.8
XML::Atom::SimpleFeed is a Perl module with no-fuss generation of Atom syndication feeds. more>>
XML::Atom::SimpleFeed is a Perl module with no-fuss generation of Atom syndication feeds.
SYNOPSIS
use XML::Atom::SimpleFeed;
my $feed = XML::Atom::SimpleFeed->new(
title => Example Feed,
link => http://example.org/,
link => { rel => self, href => http://example.org/atom, },
updated => 2003-12-13T18:30:02Z,
author => John Doe,
id => urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6,
);
$feed->add_entry(
title => Atom-Powered Robots Run Amok,
link => http://example.org/2003/12/13/atom03,
id => urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a,
summary => Some text.,
updated => 2003-12-13T18:30:02Z,
category => Atom,
category => Miscellaneous,
);
$feed->print;
This module provides a minimal API for generating Atom syndication feeds quickly and easily. It supports all aspects of the Atom format, but it has no provisions for generating feeds with extension elements.
You can supply strings for most things, and the module will provide useful defaults. When you want more control, you can provide data structures, as documented, to specify more particulars.
<<lessSYNOPSIS
use XML::Atom::SimpleFeed;
my $feed = XML::Atom::SimpleFeed->new(
title => Example Feed,
link => http://example.org/,
link => { rel => self, href => http://example.org/atom, },
updated => 2003-12-13T18:30:02Z,
author => John Doe,
id => urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6,
);
$feed->add_entry(
title => Atom-Powered Robots Run Amok,
link => http://example.org/2003/12/13/atom03,
id => urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a,
summary => Some text.,
updated => 2003-12-13T18:30:02Z,
category => Atom,
category => Miscellaneous,
);
$feed->print;
This module provides a minimal API for generating Atom syndication feeds quickly and easily. It supports all aspects of the Atom format, but it has no provisions for generating feeds with extension elements.
You can supply strings for most things, and the module will provide useful defaults. When you want more control, you can provide data structures, as documented, to specify more particulars.
Download (0.010MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1016 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
Avanor, the Land of Mystery 0.5.8
Avanor is rapidly-growing Rogue-like game with an easy ADOM-like user interface. more>>
Avanor, the Land of Mystery is rapidly-growing Rogue-like game with an easy ADOM-like user interface. It has countryside and subterranean areas to explore, a quest system, and some original features.
Moving and locations
1 - south-west
2 - south
3 - south-east
4 - west
5 - current position
6 - east
7 - north-west
8 - north
9 - north-east
w + direction - walk in direction until something interesting is found
~ - rest a while (for debugging purposes only)
o - open a door
c - close a door
< - go up stairs
> - go down stairs
l - look at a location
Dealing with objects
e - equip an item
i - display your inventory
d - drop an item
, - pick up an item
E - eat an item of food
D - drink a potion
! - mix potions
r - read a book or scroll
s or _ - sacrifice an item
O - open a chest
g - give an item to somebody
u - use a tool
P - quick pay
Characteristics and skills
A - display your skill levels
a - use a skill
q - display the quests you have undertaken
@ - display your character details
W - display your weapon skills
x - display experience needed to gain next level
Combat and spellcasting
t - target an opponent
p - pray to the gods for aid
T - change your combat tactics
Z - cast a spell
^Z - repeat the last spell cast
# - display your elemental magic levels (not yet used)
Miscellaneous commands
U - use outer objects
R - show list of alchemy recipes
C - chat with somebody
S - save the game
Q - quit the game
M - display previously shown messages
0 - recenter the screen on the player
[ - make screenshot
? - display this manual
Enhancements:
- Fixed bug with traps
- Support for compilation with modern compilers
- FHS compatibility and Gentoo Linux ebuild
<<lessMoving and locations
1 - south-west
2 - south
3 - south-east
4 - west
5 - current position
6 - east
7 - north-west
8 - north
9 - north-east
w + direction - walk in direction until something interesting is found
~ - rest a while (for debugging purposes only)
o - open a door
c - close a door
< - go up stairs
> - go down stairs
l - look at a location
Dealing with objects
e - equip an item
i - display your inventory
d - drop an item
, - pick up an item
E - eat an item of food
D - drink a potion
! - mix potions
r - read a book or scroll
s or _ - sacrifice an item
O - open a chest
g - give an item to somebody
u - use a tool
P - quick pay
Characteristics and skills
A - display your skill levels
a - use a skill
q - display the quests you have undertaken
@ - display your character details
W - display your weapon skills
x - display experience needed to gain next level
Combat and spellcasting
t - target an opponent
p - pray to the gods for aid
T - change your combat tactics
Z - cast a spell
^Z - repeat the last spell cast
# - display your elemental magic levels (not yet used)
Miscellaneous commands
U - use outer objects
R - show list of alchemy recipes
C - chat with somebody
S - save the game
Q - quit the game
M - display previously shown messages
0 - recenter the screen on the player
[ - make screenshot
? - display this manual
Enhancements:
- Fixed bug with traps
- Support for compilation with modern compilers
- FHS compatibility and Gentoo Linux ebuild
Download (MB)
Added: 2006-06-01 License: GPL (GNU General Public 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 miscellaneous 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