RE: Open source IDE for Perl

2005-11-30 Thread Cintron, Jose J.
Try Open Perl IDE http://open-perl-ide.sourceforge.net/ +-- | José J. Cintrón +-- > -Original Message- > > which is yours "best" open source IDE for Perl. I use SciTE under > > Linux, but I'm a little confu

RE: From column to row?

2005-11-28 Thread Cintron, Jose J.
Here's a fixed version, not much though into it, you can figure out how to remove the trailing , $source_file = "input.txt"; $result_file = "output.txt"; open (SOURCE, $source_file) || die "cannot open $source_file: $!"; open (RESULT, ">$result_file") || die "cannot open $result_file: $!"; whil

RE: Replacing a Bracketed String with "N"

2005-11-22 Thread Cintron, Jose J.
Try this one... $str = "AABBE[TH]AODD[AAAB]AQA"; $str =~ s/\[[A-Z]*\]/N/g; print "$str\n\n"; +-- | José J. Cintrón - <[EMAIL PROTECTED]> +-- > -Original Message- > From: Edward Wijaya [mailto:[EMAIL PROTECT

RE: Need permissions to rename file on Windows XP

2005-11-11 Thread Cintron, Jose J.
; Sent: Friday, November 11, 2005 10:14 > To: Cintron, Jose J.; "kathyjjja"; beginners@perl.org > Subject: RE: Need permissions to rename file on Windows XP > > Thank you for replying. It is a log file that I can write to > from both Perl and VB.NET. But for some reason, I am

RE: Need permissions to rename file on Windows XP

2005-11-11 Thread Cintron, Jose J.
Do you have permissions to modify this file. If you don't there's not much you can do. +-- | José J. Cintrón +-- > -Original Message- > From: kathyjjja [mailto:[EMAIL PROTECTED] > Sent: Friday, November 1

RE: Extracting data from the Properties tab of a jpeg

2005-09-06 Thread Cintron,Jose J.
You may want to take a look at the Image::Info module (http://search.cpan.org/~gaas/Image-Info-1.16/lib/Image/Info.pm) +-- | José J. Cintrón - <[EMAIL PROTECTED]> +-- -Original Message- From: Daniel Smith [m

RE: encrypt the password stored in a file

2005-08-30 Thread Cintron,Jose J.
If it's just a demo, do a quick and dirty encryption yourself, for example - xor the password before storing it and xor it again before using it. my $string = "password"; my $encrypted_string = ~$string; -Original Mess