OT: Lincoln Stein on NPR

2000-05-30 Thread Joseph P. Discenza
amed at http://www.wkar.org on their AM audio (realaudio). Joe ========== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040

RE: DATA from HTML using STDIN

2000-05-29 Thread Joseph P. Discenza
lah blah .. )/eg; I forget exactly what goes in the "pack" part, but it's something like pack(C, $1) but I can't say for sure. Joe == Joseph P. Discenza, Sr. Programmer/Analyst

RE: Call a DLL in perl

2000-05-26 Thread Joseph P. Discenza
e? That would probably be easier than writing xs. Joe ========== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300fax: 219.243.6060

RE: Directory Access Question

2000-05-25 Thread Joseph P. Discenza
: } : closedir(WD); Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300fax: 219.243.6060 Providing Financial Solutions and Compliance for over 30 Years --- You ar

RE: dates

2000-05-23 Thread Joseph P. Discenza
o try s/&$//; and see if that does what you want. Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6

RE: system();

2000-05-22 Thread Joseph P. Discenza
in the Tagdb, else will return zero "0", so I would like to capture : the "1" and the "0" Try "perl gettag.pl -q TagName" and see if that does the trick. The shell is a little sensitive to things like that. Joe ====

RE: assignments seem to behave differently with ActiveState

2000-05-18 Thread Joseph P. Discenza
nd frees its storage space for Perl to reuse. Joe ========== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300fax: 219.243.6060 Providing Financial So

RE: Perl speed vs ASP speed

2000-05-18 Thread Joseph P. Discenza
soever, as long as the web server can figure out how to fire up the "script": it could be Perl, or Python, or a C (or Fortran, if you're really masochistic) executable. The point is always to make sure you're comparing apples to apples, not apples to carts. Joe

RE: bug(?) with pseudo-hash?

2000-05-18 Thread Joseph P. Discenza
you wouldn't actually want to (like setting $[ to something besides 0, hmm?) on the assumption that you know what you're doing. Joe == Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECT

RE: MIME::Base64

2000-05-17 Thread Joseph P. Discenza
"4104" 8( Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300fax: 219.243.6060 Providing Financial Solutions and Compliance for ov

RE: MIME::Base64

2000-05-17 Thread Joseph P. Discenza
-cut here--- : : The Problem is that it doesn't encode the file completely, Just a little : part of it. Does anybody know what the problem is? Joe == Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAI

RE: system();

2000-05-16 Thread Joseph P. Discenza
n array w/lines Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300fax: 219.243.6060 Providing Financial Solutions and Compliance for over 30

RE: Referencing Question

2000-05-12 Thread Joseph P. Discenza
ot;The worst thing about -w is that it's optional." And just for fun, I'd lead off with "my $list = {};" just to make sure that is starts out looking like a hashref. Joe ========== Joseph P. Discenza, Sr. Pr

RE: sorting hash

2000-05-10 Thread Joseph P. Discenza
e best ;) way with a hash slice? @thehash{sort keys %thehash} Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.

RE: COBOL Interface

2000-05-05 Thread Joseph P. Discenza
27;s what Perl was born to do! Check out pack & unpack. Delimited-field records? Likewise. Look to split & join. Figure out what you want Perl to do, then tell it to do it. Joe ====== Joseph P. Discenza, Sr. Programmer

RE: HOWTO Parse a string.

2000-05-05 Thread Joseph P. Discenza
something?). If it is, make that s/\s+".*$//; which will be slower. Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com

RE: Hash Q

2000-05-02 Thread Joseph P. Discenza
nd subtract 1 from every hash value greater than the value deleted. I have no idea which would be faster. Joe == Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300fax: 219.243.60

RE: PPM and 'mismatched tag at line 9, column 2...'

2000-05-02 Thread Joseph P. Discenza
und, it just might be trickier to get to ;).) Joe ========== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED] Carleton Inc. http://www.carletoninc.com 219.243.6040 ext. 300

RE: Splitting out a filename

2000-05-01 Thread Joseph P. Discenza
is the limit; everything after the (n-1)st # chunk of whitespace is stuffed into the nth piece. perldoc -f split perldoc is your friend. Joe ====== Joseph P. Discenza, Sr. Programmer/Analyst mailto:[EMAIL PROTECTED]

RE: Return a value to DOS mode

2000-04-29 Thread Joseph P. Discenza
e and such. Of course, if you really just want to output to the screen (console) you can just use "print" with STDIN as the handle (or no handle: STDIN will be assumed): print "Here's some output from my perl program!\n"; Hope that helps, Joe ==