Main > Free Download Search >

Free us postal software for linux

us postal

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 23
Postal 0.67

Postal 0.67


Postal is a SMTP and POP benchmark suite. more>>
Postal suite currently consists of two programs, Postal and Rabid. Postal (the mad postman) is a program that will deliver mail as fast as possible via the SMTP protocol to test mail server performance.
Rabid (the mad Biff) will eat mail via the POP protocol as fast as possible and measure POP server performance. All messages sent via Postal have MD5 checksums appended, and Rabid will check the MD5 to ensure that the messages are not being corrupted.
It works by taking a list of user names and applying random transformations to them to get the FROM and TO addresses, this is because if each email address takes 30 bytes of storage then 1,000,000 accounts would take 30M of RAM. 3,000,000 accounts would take 90M of RAM which would be more than the memory in my test machine (this would cause thrashing and make the benchmark invalid), and it would take ages to load all that data from the hard drive. Using 100,000 accounts and applying a transformation to map them to 30M accounts is a much more efficient use of resources.
When sending the mail the subject and body will be random data. A header field X-Postal will be used so that procmail can easily filter out such email just in case you accidentally put your own email address as one of the test addresses. ;)
For Debian the best thing to do is to do "apt-get install postal", if you dont want to use the version supplied with your version of Debian you can build a Debian package in the usual manner.
Change to the directory containing the unpacked source and use the command:
dpkg-buildpackage -rfakeroot -tc -us
That will create a .deb in the parent directory.
For Red Hat etc there is a portslave.spec file to allow for building with
the "rpm -b" command.
For Solaris use the command "make -C sun" to build a package in /var/spool/pkg
(make sure you have write access to that directory).
For other Unix setup "./configure ; make install" should do an install.
Enhancements:
- The license was changed to GPLv3.
<<less
Download (0.083MB)
Added: 2007-07-02 License: GPL v3 Price:
1223 downloads
del.icio.us post 0.7

del.icio.us post 0.7


del.icio.us post is a Firefox extension that allows you to posts current page or link to del.icio.us. more>>
del.icio.us post is a Firefox extension that allows you to posts current page or link to del.icio.us. Adds an entry to the context menu and a button to the toolbar.

Due to some changes in version 0.4, it is advised to first uninstall any previous versions of this extension before proceeding with the installation.

After installing use View -> Toolbars -> Customize... to add the button to the toolbar.

<<less
Download (0.010MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
902 downloads
JNutrix 0.14.us (USDA)

JNutrix 0.14.us (USDA)


JNutrix project is a small application written with the Java language. more>>
JNutrix project is a small application written with the Java language. You can search and find more then 130 nutrient values, if they are recorded, of over 5300 foods usually found on the Canadian market ( or 7200+ foods for the U.S.A. version ).
The utilization is quite trivial and make use of the mouse except for entering the name of the food. The name of the food can be search for by entering the first characters or a few sets of characters separated by spaces. Once the food is found and its quantity fixed the food can be cumulate to form a meal, which you can print.
The nutrients can be sorted by clicking on the column header. You can research foods on their contents for three differents nutrients.
The canadian version of the program has a French or English interface as well as a bilingual database, to the user to choose.
The USA version use the latest database: .USDA National Nutrient Database for Standard Reference, Release 19 (2006).
Please note: the database is included only in the binary distributions.
Enhancements:
- First release of the USA version. Use the USDA National Nutrient Database for Standard Reference, Release 19 (2006).
<<less
Download (4.6MB)
Added: 2006-11-28 License: MIT/X Consortium License Price:
1061 downloads
Sort::Radix 0.04

Sort::Radix 0.04


Sort::Radix is a Perl module with multiple passes distribution sort algorithm. more>>
Sort::Radix is a Perl module with multiple passes distribution sort algorithm.

SYNOPSIS

use Sort::Radix;

@array = qw(flow loop pool Wolf root sort tour);
radix_sort(@array);
print "@arrayn";

This is an implementation based on Jarkkos Wolf book (Mastering Algorithms with Perl, pp. 145-147).

By definition: radix sort is a multiple pass distribution sort algorithm that distributes each item to a bucket according to part of the items key beginning with the least significant part of the key. After each pass, items are collected from the buckets, keeping the items in order, then redistribute according to the next most significant part of the key.

Radix sort is nice as it take N * M passes, where N is the length of the keys. It is very useful for sorting large volumes of keys of the same length, such as postal codes.

The algorithm will only works when the strings to be sorted are of the same length. Variable length strings therefore have to be padded with zeroes (x00) to equalize the length.

<<less
Download (0.003MB)
Added: 2007-05-22 License: Perl Artistic License Price:
885 downloads
Postal 2: Share the Pain DEMO 1407

Postal 2: Share the Pain DEMO 1407


Postal 2: Share the Pain DEMO is a FPS game for Linux. more>> <<less
Download (167.3MB)
Added: 2006-03-17 License: Freeware Price:
1015 downloads
del.icio.us Bookmarks 1.5.26

del.icio.us Bookmarks 1.5.26


del.icio.us Bookmarks is a Firefox extension that integrates your browser with del.icio.us. more>> <<less
Download (0.25MB)
Added: 2007-04-09 License: Other/Proprietary License Price:
929 downloads
Business::US::USPS::WebTools 1.09

Business::US::USPS::WebTools 1.09


Business::US::USPS::WebTools is a Perl module to use the US Postal Service Web Tools. more>>
Business::US::USPS::WebTools is a Perl module to use the US Postal Service Web Tools.

SYNOPSIS

use Business::US::USPS::WebTools;

# see subclasses for API details

*** THIS IS ALPHA SOFTWARE ***

This is the base class for the WebTools web service from the US Postal Service. The USPS offers several services, and this module handles the parts common to all of them: making the request, getting the response, parsing error reponses, and so on. The interesting stuff happens in one of the subclasses which implement a particular service. So far, the only subclass in this distribution is Business::US::USPS::WebTools::AddressVerification.
new( ANONYMOUS_HASH )

Make the web service object. Pass is an anonymous hash with these keys:

UserID the user id provided by the USPS
Password the password provided by the USPS
Testing true or false, to select the right server

If you dont pass the UserID or Password entries, new looks in the environment variables USPS_WEBTOOLS_USERID and USPS_WEBTOOLS_PASSWORD.

If new cannot find both the User ID and the Password, it croaks.

If you pass a true value with the Testing key, the object will use the testing server host name and the testing URL path. If the Testing key is false or not present, the object uses the live server details.

userid

Returns the User ID for the web service. You need to get this from the US Postal Service.

password

Returns the Password for the web service. You need to get this from the US Postal Service.

url

Returns the URL for the request to the web service. So far, all requests are GET request with all of the data in the query string.

response

Returns the response from the web service. This is the slightly modified response. So far it only fixes up line endings and normalizes some error output for inconsistent responses from different physical servers.

is_error

Returns true if the response to the last request was an error, and false otherwise.
If the response was an error, this method sets various fields in the object:

$self->{error}{number}
$self->{error}{source}
$self->{error}{description}
$self->{error}{help_file}
$self->{error}{help_context}

<<less
Download (0.010MB)
Added: 2007-03-20 License: Perl Artistic License Price:
949 downloads
Dilbert [US] 0.2

Dilbert [US] 0.2


Dilbert [US] is a Firefox extension that adds a button to status bar to show todays official US Dilbert. more>>
Dilbert [US] is a Firefox extension that adds a little button to status bar and when you click it, it will show todays official US Dilbert from www.dilbert.com.

Doesnt work if you have installed Dilbert [CZ]! If you have, uninstall it first!

If you like my extension, please come back and leave me your comments or rating. Thank you.

<<less
Download (0.003MB)
Added: 2007-05-08 License: MPL (Mozilla Public License) Price:
900 downloads
SuperGamer Supreme

SuperGamer Supreme


SuperGamer Supreme gives you interesting games created for Linux desktop operating system. more>>

SuperGamer Supreme gives you interesting games created for Linux desktop operating system. It has all the normal Linux desktop applications such as the Firefox Browser, OpenOffice.org, etc., but also has a great many native to Linux games added, as well as some demos of proprietary games.

The games (in the order they appear on the launch bar) Include:

  • Quake Wars
  • Doom 3
  • Prey
  • Unreal Tournament
  • Quake 4
  • Savage 2
  • Postal 2
  • Enemy Territory
  • Penumbra Black Plague
  • Sauerbraten
  • Urban Terror
  • Soldier Of Fortune
  • Torcs
  • Tremulous
  • AlienArena
  • True Combat
  • America's Army
  • Nexus
  • OpenArena
  • PlaneShift
  • Drop Team
  • Frets On Fire
  • Chromium B.S.U.
  • Mad Bomber
  • X-Moto
  • BZ Flag
  • Mega Mario
  • Glaxium
  • GL-117
  • NeverBall
  • NeverPutt
  • Super Tux
  • PPRacer

Major Features:

  1. This Supreme SuperGamer version will work on both 32 and 64 bit PCs and fills a full Live Dual Layer DVD.
  2. It includes support for ethernet, wireless, and dialup Internet connections.
  3. It can run in "Live" mode directly from the DVD and can be optionally installed to your hard drive.
  4. A few key includes are 2.6.27.24 kernel, Azureus, Gparted, Limewire, Gimp, K9copy, KOffice, OpenOffice 3, Hardinfo (system profiler and benchmark) along with all the plugins for firefox with forcastbar enhanced, adblock, and blockxxx included (blockxxx is a child word and website filter which is not enabled by default as it blocks alot of stuff...almost to much).
<<less
Added: 2009-07-25 License: GPL Price: FREE
1 downloads
HTML Tidy

HTML Tidy


HTML Tidy cleans up HTML source and formats it nicely. more>>
HTML TIDY is a free utility to fix mistakes made while editing HTML and to automatically tidy up sloppy editing into nicely layed out markup. It also works great on the atrociously hard to read markup generated by specialized HTML editors and conversion tools, and can help you identify where you need to pay further attention on making your pages more accessible to people with disabilities.
When editing HTML its easy to make mistakes. Wouldnt it be nice if there was a simple way to fix these mistakes automatically and tidy up sloppy editing into nicely layed out markup? Well now there is! Dave Raggetts HTML TIDY is a free utility for doing just that. It also works great on the atrociously hard to read markup generated by specialized HTML editors and conversion tools, and can help you identify where you need to pay further attention on making your pages more accessible to people with disabilities.
Tidy is able to fix up a wide range of problems and to bring to your attention things that you need to work on yourself. Each item found is listed with the line number and column so that you can see where the problem lies in your markup. Tidy wont generate a cleaned up version when there are problems that it cant be sure of how to handle. These are logged as "errors" rather than "warnings".
Dave Raggett has now passed the baton for maintaining Tidy to a group of volunteers working together as part of the open source community at Source Forge. The source code continues to be available under an open source license, and you are encouraged to pass on bug reports and enhancement requests at http://tidy.sourceforge.net.
If you find HTML Tidy useful and you would like to say thanks, then please send me a (paper) postcard or other souvenir from the area in which you live along with a few words on what you are using Tidy for. It will be fun to map out where Tidy users are to be found! My postal address is given at the end of this file.
The W3C public email list devoted to HTML Tidy is: . To subscribe send an email to html-tidy-request@w3.org with the word subscribe in the subject line (include the word unsubscribe if you want to unsubscribe). The archive for this list is accessible online. If you would like to contact the developers, or you just want to submit an enhancement request or a bug report, please visit http://tidy.sourceforge.net.
Tidy can now perform wonders on HTML saved from Microsoft Word 2000! Word bulks out HTML files with stuff for round-tripping presentation between HTML and Word. If you are more concerned about using HTML on the Web, check out Tidys "Word-2000" config option! Of course Tidy does a good job on Word97 files as well!
Main features:
- Missing or mismatched end tags are detected and corrected
- End tags in the wrong order are corrected
- Fixes problems with heading emphasis
- Recovers from mixed up tags
- Getting the
in the right place
- Adding the missing "/" in end tags for anchors
- Perfecting lists by putting in tags missed out
- Missing quotes around attribute values are added
- Unknown/Proprietary attributes are reported
- Proprietary elements are recognized and reported as such
- Tags lacking a terminating > are spotted
<<less
Download (0.22MB)
Added: 2005-05-05 License: MIT/X Consortium License Price:
2216 downloads
konqil.icio.us 1.8

konqil.icio.us 1.8


konqil.icio.us is a KDE service menu for del.icio.us. more>>
konqil.icio.us is a KDE service menu for del.icio.us.
INstallation:
1) Check you have the Perl HTML, URI and LWP modules installed (liburi-perl, libhtml-parser-perl and libwww-perl packages under GNU/Debian)
2) Copy del.icio.us and del.icio.us.desktop to $HOME/.kde/share/apps/konqueror/servicemenus
3) Make sure $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us is executable (chmod u+x $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us).
4) Change the username variable within $HOME/.kde/share/apps/konqueror/servicemenus/del.icio.us to point at your del.icio.us account (this is on line 33)
Enhancements:
- Bug fixes to bookmark method, brought about by changes to del.icio.us API
<<less
Download (0.003MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
882 downloads
Geo::Coder::US 1.00

Geo::Coder::US 1.00


This will estimate latitude and longitude for any US address. more>>
Geo:Coder:US 1.00 offers a full-feature facility for geocoding US addresses, that is, estimating the latitude and longitude of any street address or intersection in the United States, using the TIGER/Line data set from the US Census Bureau. Geo:Coder:US uses Geo:TigerLine to parse this data, and DB_File to store a highly compressed distillation of it, and Geo:StreetAddress:US to parse addresses into normalized components suitable for looking up in its database.

You can find a live demo of this code at http://geocoder.us/. The demo.cgi script is included in eg/ directory distributed with this module, along with a whole bunch of other goodies. See Geo:Coder:US:Import for how to build your own Geo:Coder:US database.

Consider using a web service to access this geocoder over the Internet, rather than going to all the trouble of building a database yourself. See eg/soap-client.pl, eg/xmlrpc-client.pl, and eg/rest-client.pl for different examples of working clients for the rpc.geocoder.us geocoder web service.

Major Features:

  1. Geo:Coder:US->geocode( $string )
    • Given a string containing a street address or intersection, return a list of specifiers including latitude and longitude for all matching entities in the database. To keep from churning over the entire database, the given address string must contain either a city and state, or a ZIP code (or both), or geocode() will return undef.
    • geocode() will attempt to normalize directional prefixes and suffixes, street types, and state abbreviations, as well as substitute TIGER/Line's idea of the "primary street name", if an alternate street name was provided instead.
    • If geocode() can parse the address, but not find a match in the database, it will return a hashref containing the parsed and normalized address or intersection, but without the "lat" and "long" keys specifying the location. If geocode() cannot even parse the address, it will return undef. Be sure to check for the existence of "lat" and "long" keys in the hashes returned from geocode() before attempting to use the values! This serves to distinguish between addresses that cannot be found versus addresses that are completely unparseable.
    • geocode() attempts to be as forgiving as possible when geocoding an address. If you say "Mission Ave" and all it knows about is "Mission St", then "Mission St" is what you'll get back. If you leave off directional identifiers, geocode() will return address geocoded in all the variants it can find, i.e. both "N Main St" and "S Main St".
    • Don't be surprised if geocoding an intersection returns more than one lat/long pair for a single intersection. If one of the streets curves greatly or doglegs even slightly, this will be the likely outcome.
    • geocode() is probably the method you want to use. See more in the following section on the structure of the returned address and intersection specifiers.
  2. Geo:Coder:US->geocode_address( $string )
    • Works exactly like geocode(), but only parses addresses.
  3. Geo:Coder:US->geocode_intersection( $string )
    • Works exactly like geocode(), but only parses intersections.
  4. Geo:Coder:US->filter_ranges( $spec, @candidates )
    • Filters a list of address specifiers (presumably from the database) against a query specifier, filtering by prefix, type, suffix, or primary name if possible. Returns a list of matching specifiers. filter_ranges() will ignore a filtering step if it would result in no specifiers being returned. You probably won't need to use this.
  5. Geo:Coder:US->find_ranges( $address_spec )
    • Given a normalized address specifier, return all the address ranges in the database that appear to cover that address. find_ranges() ignores prefix, suffix, and type fields in the specifier for search purposes, and then filters against them ex post facto. The intention for find_ranges() to find the closest match possible in preference to returning nothing. You probably want to use lookup_ranges() instead, which will call find_ranges() for you.
  6. Geo:Coder:US->lookup_ranges( $address_spec, @ranges )
    • Given an address specifier and (optionally) some address ranges from the database, interpolate the street address into the street segment referred to by the address range, and return a latitude and longitude for the given address within each of the given ranges. If @ranges is not given, lookup_ranges() calls find_ranges() with the given address specifier, and uses those returned. You probably want to just use geocode() instead, which also parses an address string and determines whether it's a proper address or an intersection automatically.
  7. Geo:Coder:US->find_segments( $intersection_spec )
    • Given a normalized intersection specifier, find all of the street segments in the database matching the two given streets in the given locale or ZIP code. find_segments() ignores prefix, suffix, and type fields in the specifier for search purposes, and then filters against them ex post facto. The intention for find_segments() to find the closest match possible in preference to returning nothing. You probably want to use lookup_intersection() instead, which will call find_segments() for you.
  8. Geo:Coder:US->lookup_intersection( $intersection_spec )
    • Given an intersection specifier, return all of the intersections in the database between the two streets specified, plus a latitude and longitude for each intersection. You probably want to just use geocode() instead, which also parses an address string and determines whether it's a proper address or an intersection automatically.

Requirements: Perl

<<less
Added: 2009-06-11 License: Perl Artistic License Price: FREE
1 downloads
Scrape::USPS::ZipLookup Perl Module 2.4

Scrape::USPS::ZipLookup Perl Module 2.4


Scrape::USPS::ZipLookup Perl Module provides a programmatic interface to United States Postal Service. more>>
The United States Postal Service (USPS) has on its web site an HTML form at http://www.usps.com/zip4/ for standardizing an address. Given a firm, urbanization, street address, city, state, and zip, it will put the address into standard form (provided the address is in their database) and display a page with the resulting address.
Scrape::USPS::ZipLookup Perl Module provides a programmatic interface to this service, so you can write a program to process your entire personal address book without having to manually type them all in to the form.
Because the USPS could change or remove this functionality at any time, be prepared for the possibility that this code may fail to function. In fact, as of this version, there is no error checking in place, so if they do change things, this code will most likely fail in a noisy way. If you discover that the service has changed, please email the author your findings.
If an error occurs in trying to standardize the address, then no array will be returned. Otherwise, a four-element array will be returned.
To see debugging output, call $zlu->verbose(1).
SYNOPSIS
#!/usr/bin/perl
use Scrape::USPS::ZipLookup::Address;
use Scrape::USPS::ZipLookup;
my $addr = Scrape::USPS::ZipLookup::Address->new(
Focus Research, Inc., # Firm
, # Urbanization
8080 Beckett Center Drive Suite 203, # Delivery Address
West Chester, # City
OH, # State
45069-5001 # ZIP Code
);
my $zlu = Scrape::USPS::ZipLookup->new();
my @matches = $zlu->std_addr($addr);
if (@matches) {
printf "n%d matches:n", scalar(@matches);
foreach my $match (@matches) {
print "-" x 39, "n";
print $match->to_string;
print "n";
}
print "-" x 39, "n";
}
else {
print "No matches!n";
}
exit 0;
Enhancements:
- Adapt to yet another round of changes to the USPS Zip Lookup web site, courtesy of Eric Parker.
- Copyright date updates.
<<less
Download (0.011MB)
Added: 2006-03-31 License: Artistic License Price:
1302 downloads
Locale::SubCountry 1.37

Locale::SubCountry 1.37


Locale::SubCountry is a Perl module that can convert state, province, county etc. names to/from code. more>>
Locale::SubCountry is a Perl module that can convert state, province, county etc. names to/from code.

SYNOPSIS

my $country_code = GB;
my $UK = new Locale::SubCountry($country_code);
if ( not $UK )
{
die "Invalid code $country_coden";
}
elsif ( $UK->has_sub_countries )
{
print($UK->full_name(DGY),"n"); # Dumfries and Galloway
print($UK->regional_division(DGY),"n"); # CT (Scotland)
}

my $australia = new Locale::SubCountry(AUSTRALIA);
print($australia->country,"n"); # AUSTRALIA
print($australia->country_code,"n"); # AU

if ( $australia->has_sub_countries )
{
print($australia->code(New South Wales ),"n"); # NSW
print($australia->full_name(S.A.),"n"); # South Australia
my $upper_case = 1;
print($australia->full_name(Qld,$upper_case),"n"); # QUEENSLAND
print($australia->category(NSW),"n"); # state
print($australia->FIPS10_4_code(ACT),"n"); # 01
print($australia->ISO3166_2_code(02),"n"); # NSW

my @aus_state_names = $australia->all_full_names;
my @aus_code_names = $australia->all_codes;
my %aus_states_keyed_by_code = $australia->code_full_name_hash;
my %aus_states_keyed_by_name = $australia->full_name_code_hash;

foreach my $code ( sort keys %aus_states_keyed_by_code )
{
printf("%-3s : %sn",$code,$aus_states_keyed_by_code{$code});
}
}

# Methods for country codes and names

my $world = new Locale::SubCountry::World;
my @all_countries = $world->all_full_names;
my @all_country_codes = $world->all_codes;

my %all_countries_keyed_by_name = $world->full_name_code_hash;
my %all_country_keyed_by_code = $world->code_full_name_hash;

This module allows you to convert the full name for a countries administrative region to the code commonly used for postal addressing. The reverse lookup can also be done. Sub country codes are defined in "ISO 3166-2:1998, Codes for the representation of names of countries and their subdivisions".

Sub countries are termed as states in the US and Australia, provinces in Canada and counties in the UK and Ireland.

Names and ISO 3166-2 codes for all sub countries in a country can be returned as either a hash or an array.

Names and ISO 3166-1 codes for all countries in the world can be returned as either a hash or an array.

ISO 3166-2 codes can be converted to FIPS 10-4 codes. The reverse lookup can also be done.

<<less
Download (0.062MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1164 downloads
track2rss 0.4.1

track2rss 0.4.1


track2rss is a set of scripts for tracking UPS, Fedex, and USPS packages via RSS. more>>
track2rss project seeks to provide a set of scripts for converting tracking information for packages from various carriers to the RSS format.
It was inspired by a similar project written by Jason Young. Currently support is provided for UPS, Fedex Air and Ground, and the US Postal Service (USPS) via a set of XSLT templates and a Perl wrapper.
Future plans are to extend support to more carriers such as DHL, etc.; possibly other formats such as Atom, and other languages like PHP, Java, etc.
Enhancements:
- This release auto-guessing for carrier type when type not provided.
- It adds gzip support to reduce bandwidth.
- The output MIME type has been changed to text/xml.
- OpenSearch 1.0 support has been added.
<<less
Download (0.023MB)
Added: 2005-11-03 License: The Apache License 2.0 Price:
1451 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2