Re: how to use Graphics-Simple-0.04 > Graphics::Simple

2011-07-05 Thread shawn wilson
On Jul 5, 2011 8:58 AM, "eventual" wrote: > > Hi, > Where do I download PostScript. > Is PostScript another programming language. Platform? Google 'ghostscript'. IIRC, fig is installed by default on ubuntu (though maybe I'm thinking of gs). Either way, if linux is your platform, 'apt-cache search

Re: how to use Graphics-Simple-0.04 > Graphics::Simple

2011-07-05 Thread eventual
Hi, Where do I download PostScript. Is PostScript another programming language. Thanks   From: Jim Gibson To: eventual ; "beginners@perl.org" Sent: Sunday, June 19, 2011 1:25 AM Subject: Re: how to use Graphics-Simple-0.04 > Graphics::Simple At 6:49 AM -0700 6/18/11, eventual wrote: >Hi, >Afte

Re: Verifying an e-mail address

2011-07-05 Thread Rob Dixon
On 27/06/2011 21:46, Marc wrote: On Jun 27, 2011, at 1:27 PM, Bob McConnell wrote: The problem with this is that, due to the spam plague, most servers will no longer tell you if an address is valid. Many do not even return a bounce message, but silently discard any and all mail for unknown add

RE: Verifying an e-mail address

2011-07-05 Thread Mimi Cafe
I have used Email::Valid and it's simple to use as in example below: use Email::Valid; sub email_validation { my $email = shift; # return true if email address is valid. return(Email::Valid->address( -address => "$email", -mxcheck => 1 ) ? '1' : '0'); } => -O