cygwin/activestate/linux

2002-02-27 Thread Tyler Cruickshank
Hi, I hope this question isnt too ridiculous. Ive been using perl for a year or so on various platforms (Sun/UNIX, linux, NT-cygwin, Active State). Do people recommend ActiveState over cygwin for the NT system - how about ActiveState on Linux? Not being a "system" guru Id like to use the simp

RE: Off-Topic (200%) - Where are you from?

2001-11-14 Thread Tyler Cruickshank
I dont know, Beans and Pilgrims are pretty exciting too. Overall Bo-Town is great! >>> "murphy, daniel (BMC Eng)" <[EMAIL PROTECTED]> 11/14/01 12:38PM >>> OK, what's one more? Boston, MA, USA That souds pretty boring after hearing from the Netherlands, Austrailia, Romania, etc. ;-) -- To un

Re: Off-Topic (200%) - Where are you from?

2001-11-09 Thread Tyler Cruickshank
ah, what the hey ... Salt Lake City, UT - Greatest Snow on Earth. and no, Im not! >>> "Joyce Harris" <[EMAIL PROTECTED]> 11/09/01 11:57AM >>> Knoxville, Tennessee - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 09, 2001 1:47 PM Subject

vars as key/value in a hash

2001-11-08 Thread Tyler Cruickshank
I would like to create a hash based on data contained in a file. Can I not use a variable as both the key and the value as shown below? When I print as shown I do not get a value however if I write the key as:alta_guard => $names[1]then I get the correct value printed out. open(NAMES

Re: $_[0] to filehandle

2001-10-26 Thread Tyler Cruickshank
Sorry, took me 3 hours to figure out that I outwitted myself. Thread closed. Thx. >>> "Tyler Cruickshank" <[EMAIL PROTECTED]> 10/26/01 09:05AM >>> Im absolutely stumped on this one. $_[0] is either '#ff' or 'red' it doesnt seem to mat

$_[0] to filehandle

2001-10-26 Thread Tyler Cruickshank
Im absolutely stumped on this one. $_[0] is either '#ff' or 'red' it doesnt seem to matter. When I print to STDOUT I get what I would expect - the value of $_[0] printed to the screen. BUT when I print to IMAGE I dont get anything. Why does $color not have a value when I print to a file

Re: perl/php args

2001-10-24 Thread Tyler Cruickshank
Thanks all. Well, this is a personal project that Im working on w/ a buddy. He's a php guy while I do perl (to some extent anyhow!). He just wanted to do it in phpand I havent used the DBI module before. ty >>> "Etienne Marcotte" <[EMAIL PROTECTED]> 10/24/01 12:36PM >>> Maybe, but if al

perl/php args

2001-10-24 Thread Tyler Cruickshank
Sorry if you get this 2x it may not have gone thru the first time. Hello. Im working on a perl/php/SVG project. PHP interfaces with a DB (to pull out a data array) and perl does the rest of the work. Does anyone know if perl can accept a php array as an arg? Thanks -Tyler -- To unsub

array of arrays

2001-10-18 Thread Tyler Cruickshank
Hi. Im using a multidimensional array in the following way: $array[$i][$j][$k] = [ @list ]; where, @list is a 2-D array ie. $list[][]. How do I access the individual elements of the array @list once Ive put it into the array @array? Thanks. -ty -- To unsubscribe, e-mail: [EMAIL PROTECT

system("rm") problem

2001-10-05 Thread Tyler Cruickshank
Hi. Im running perl via cygwin on NT. I want to remove all files *.1.txt. I have tried: 1) system("rm *.t.txt"); 2) $file = '*.1.txt'; system("rm $file"); 3) system('rm *.1.txt'); ...but, I cant get any of them to work. Any ideas? Thanks for your time. -tyler -- To unsubscribe, e-

Hash keys

2001-10-03 Thread Tyler Cruickshank
Hello, I continue to have difficulties using hashes. I have a hash that I am storing arrays in. Each array corresponds to one hour of a day. After the hash has been populated I need to cycle through the "days" and sum them up. So, I have written my hash such that each key can be looped th

write and format

2001-09-25 Thread Tyler Cruickshank
r(local $j=0; $j<=8; $j++){ $oldhandle = select(RRF); $~ = "RRFTable1"; select($oldhandle); write RRF; $x++; } # End for loop. $x=0; } } # End function printRRF. Thanks very much for your time. -Tyler Cruickshank

Re: parsing strings

2001-09-25 Thread Tyler Cruickshank
Another Newbie responding . or, if you wanted the first "word" in $part1 (not necessairly the first 4 characters) you could do: @list = split(/ /, $part1); $part2 = $list[0]; Here you split the $part1 variable on whitespace. The individual strings are then placed in a "list array" called

"system" command failure

2001-09-12 Thread Tyler Cruickshank
my FORTRAN program with a "source" or a "./" my $status returns 0. It does not work. Note I tried it 2 different ways with the same negative result. Does anyone have an idea? Thanks for y

hash of arrays

2001-08-17 Thread Tyler Cruickshank
>>> "Tyler Cruickshank" <[EMAIL PROTECTED]> 08/17/01 12:53PM >>> Hi. I am working with a hash of arrays. Ive run into some confusion regarding the accessing and printing of the hash. Below are some excerpts of my code: I have an array (@data) that I wi

Hi.

2001-08-17 Thread Tyler Cruickshank
$hour = "hr$i"; $root = 'data.'; $name = "$root$hour"; $browns{$name} = [ @data ]; } print " $browns{$name}[1] \n"; print " $name = @{ $browns{'data.hr3'} }\n"; print " $name = @{ $browns{$name} }\n"; Thanks. - Ty

binary files

2001-08-15 Thread Tyler Cruickshank
rection it would be very appreciated. Thanks, - Tyler Cruickshank FORTRAN CODE: #- OPEN (5,FILE=File.ascii) OPEN (9,FORM='UNFORMATTED',FILE=File.binary) READ(5,2100)IFILE, NOTE,NSEG, NSPECS, IDATE, BEGTIM, JDATE,

URL access

2001-08-15 Thread Tyler Cruickshank
. Does anyone have a hint? Im interested in doing this either from a UNIX box or NT. Thanks very much. -Tyler Cruickshank -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

binary files

2001-07-31 Thread Tyler Cruickshank
back out in ascii? Thank you. Tyler Cruickshank UDAQ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]