RE: question

2003-11-12 Thread Levon Barker
Oh here we go. > -Original Message- > From: Dillon, John [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 12, 2003 10:57 AM > To: 'Matthias Schraft' > Cc: '[EMAIL PROTECTED]' > Subject: RE: question > > > >I´m new with perl. I need to write a program that reads data out > of a form >

RE: best beginning perl book is?

2003-11-21 Thread Levon Barker
omend it for anyone learning Perl. Levon Barker > -Original Message- > From: Eric Greene [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 20, 2003 4:20 PM > To: [EMAIL PROTECTED] > Subject: best beginning perl book is? > > > thanks for any suggestions. I am a pr

RE: how to send mail using Perl

2003-11-21 Thread Levon Barker
> -Original Message- > From: liuxu [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 20, 2003 10:13 PM > To: [EMAIL PROTECTED] > Subject: how to send mail using Perl > > > I want to send mail using perl,the following is my code. > There are not any error or warning when the program run.

Re: [meta] Please delete boilerplate! (was Re: Covert Date to week number)

2004-01-23 Thread Levon Barker
Except that John's boss is on the list too! On Fri, 2004-01-23 at 14:37, John McKown wrote: > Unfortunately, if the person is writing from work, the disclaimer is > likely required by his employer. I know that I have a similar one at work. > And not including it is grounds for termination . > >

RE: FTP to copy a file

2003-07-16 Thread Levon Barker
ut it the file up to the server. Cheers, Levon Barker > -Original Message- > From: Dan Muey [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 16, 2003 11:39 AM > To: perl beginners list > Subject: Net:FTP to copy a file > > > Howdy group, > > Any body have

Perl + Oracle + Blobs + PDFs - Dumping to filesystem

2003-07-24 Thread Levon Barker
reports that the file is damaged and also none of the jpgs that were embedded in the PDF show up. Acrobat tells me that there is insufficient data to display the image. So I am guessing that 'print FH, $contents' is a bad way to get the pdf to the file system. Any thoughts? Thank

RE: perl program

2003-07-24 Thread Levon Barker
code that you want to hide in C and leave the rest exposed in perl. BTW, this line of questioning is going to get some interesting discussion as to the morality of 'hiding' your perl code. Cheers, Levon Barker > -Original Message- > From: Kogulan, Reggie [mailto:[EM

RE: Perl + Oracle + Blobs + PDFs - Dumping to filesystem

2003-07-24 Thread Levon Barker
Thanks Steve, That was the solution. Cheers, Levon Barker > -Original Message- > From: Steve Mayer [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 24, 2003 11:41 AM > To: Levon Barker > Cc: [EMAIL PROTECTED] > Subject: Re: Perl + Oracle + Blobs + PDFs - Dum

RE: Perl + Oracle + Blobs + PDFs - Dumping to filesystem

2003-07-24 Thread Levon Barker
Thanks for the quick response Dan, that solution is correct, but Steve beat you to the punch. :) > -Original Message- > From: Dan Muey [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 24, 2003 11:35 AM > To: Levon Barker; [EMAIL PROTECTED] > Subject: RE: Perl + Oracle

RE: Help with Formatting

2003-07-30 Thread Levon Barker
Hello, lets see some code. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 29, 2003 9:38 PM > To: [EMAIL PROTECTED] > Subject: Help with Formatting > > > Hello All: > > I am trying to format a check. Everything is fine except I cannot > pr

RE: config nightmares

2003-07-31 Thread Levon Barker
_perl_Installation). (http://perl.apache.org/docs/2.0/user/install/install.html for mod_perl2) The database is quite independant of this process. The only thing that is dependant is the DBI drivers for MYSQL. Get those installed after perl, obviously. Cheers, Levon Barker > -Original Mess

RE: trouble with math... driving me nuts.

2003-08-21 Thread Levon Barker
Hi Peter, This is a floating point issue. It is a general computing problem and not just subject to Perl. In decimal form the result is -0.0017763568. Generally thats usually acurate enough. Otherwise you could truncate it or round it to the nearest quadrabillionth. Cheers, Levon

Re: Glossary

2004-06-08 Thread Levon Barker
Karen, I realize I am not answering your question directly but may I suggest that you purchase a copy of 'Learning Perl' by Randal Schwartz & Tom Phoenix. It is an excellent introduction to Perl. You may find it easier than going through the man pages. Cheers, Levon Barker On T

Re: Calling Perl From Java?

2004-09-24 Thread Levon Barker
I have had to do this. Did a fair bit of research and the best that I could come up with (and what we have implemented) is to call mod_perl url from java. That way we don't have to recompile each time, and get some database persistance with Apache::DBI. Works out quite well. On Sep 23, 2004 04