Re: install modules from CPAN

2012-03-14 Thread Jefferson Kirkland
>From the following line: LWP failed with code[500] message[Can't connect to cpan.strawberryperl.com:80 (connect: timeout)] it looks like LWP is unable to connect to the site to download the modules. You need to make sure your connected to the internet. Also

Fwd: NET::FTP object constructor's host option as array reference

2009-07-18 Thread Jefferson Kirkland
Sorry, original message had wrong address for this list and I didn't notice. Here is the chain. Regards, Jeff -- Forwarded message -- From: Jefferson Kirkland Date: Sat, Jul 18, 2009 at 9:17 PM Subject: Re: NET::FTP object constructor's host option as array re

Re: Can perl find list of words from a PDF or other document and populate a database?

2008-03-14 Thread Jefferson Kirkland
Well, populating the database is a gimmie, but for parsing the PDF document, have you examined all of the PDF modules on CPANto see if they can do what you are asking? Regards, Jeff On Thu, Mar 13, 2008 at 4:17 PM, Stuart White <[EMAIL PROTECTE

Re: get full month name

2007-12-08 Thread Jefferson Kirkland
Well, to go along with the other example(s), here is a way of doing it using the localtime() function: use strict; use warnings; my ($second, $minute, $hour, $dayOfMonth, $month, $yearOffset, $dayOfWeek, $dayOfYear, $daylightSavings) = localtime(); my $monthnum = $month + 1; my %monthname = (

Re: Writing a Program

2007-07-20 Thread Jefferson Kirkland
On 7/17/07, CJ <[EMAIL PROTECTED]> wrote: To all you who know: I'm trying to write a program, granted it's going to be a large one, that will keep track of people's computers when they're in my shop being repaired. I want to assign a number to each computer system, and that number will stay wi

Re: Installing perl modules problem

2007-07-13 Thread Jefferson Kirkland
On 7/13/07, Vivek Menon <[EMAIL PROTECTED]> wrote: I am using the CPAN method and I have done the following: Install from source expat-1.95.5 export PATH=$PATH:/opt/SUNWspro/bin: /usr/sfw/bin:/usr/ccs/bin export CC=cc export CPPFLAGS="-l/usr/local/include -I/usr/sfw/include -I/opt/sfw/incl

Re: Installing perl modules problem

2007-07-13 Thread Jefferson Kirkland
On 7/13/07, Vivek Menon <[EMAIL PROTECTED]> wrote: Hello All, I am a beginner and I am trying to install a bioinformatics utility(Interproscan) on a Sun Solaris machine. This software is based on Perl packages and I am having problems installing some specific perl modules. Can someone help?? I n

Re: Why must I chomp a variable set in a script? (Problem Solved)

2007-06-18 Thread Jefferson Kirkland
-- Forwarded message -- From: Jefferson Kirkland <[EMAIL PROTECTED]> Date: Jun 18, 2007 10:45 AM Subject: Re: Why must I chomp a variable set in a script? (Problem Solved) To: Paul Lalli <[EMAIL PROTECTED]> Paul, On 6/18/07, Paul Lalli <[EMAIL PROTECTED]> wro

Why must I chomp a variable set in a script?

2007-06-18 Thread Jefferson Kirkland
Hello everyone! I would really appreciate it if someone could shed some light on this situation for me. I have a script that I am writing that looks on a server to see if there are files in certain directories. When files are found in a directory, the script sends an email to the appropriate di

Re: Curl Process for Perl

2007-04-28 Thread Jefferson Kirkland
Mike, On 4/28/07, Mike Blezien <[EMAIL PROTECTED]> wrote: I have a PHP(..Ouch!! ..) snip using Curl to send data, in XML format, to a payment gateway, and would like to convert this into Perl coding, but can't seem to find any information or module(s) that implement Curl in the same manner.

Re: Help: Perl Module Installation Issue(s)

2007-04-28 Thread Jefferson Kirkland
Hmm, well then. I guess this is going to be one of those lost causes at the moment. ***sigh*** Thanks to Tom and Mumia for all their input. Best regards, Jeff On 4/27/07, Mumia W. <[EMAIL PROTECTED]> wrote: On 04/27/2007 07:13 PM, Jefferson Kirkland wrote: > [...] > I wa

Help: Perl Module Installation Issue(s)

2007-04-27 Thread Jefferson Kirkland
Hello all! I am hoping that someone here can point me in the right direction. Before I get right into the issue(s) I am experiencing, allow me to digress into the background of this story. I recently decided, after much deliberation, to install Ubuntu Feisty on my system. It was great, recogni

Re: Perl Parsing

2007-02-23 Thread Jefferson Kirkland
On 2/21/07, Sumit Shah <[EMAIL PROTECTED]> wrote: Hello All, I have a string like: 'a = 1; b = 2; c = 3; d = 4' Whats the best way to parse it so that I can get a value for c, which is 3? I have used the hash approach. But, I was wondering if there is a faster way to do it in Perl. Well, fr