Mix of English and Cyrillic Characters

2011-04-02 Thread Barry-Home
.+/Surname/g; Which doesn't seem to Match. Any help is appreciated. Barry -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Having trouble with cpan

2008-07-22 Thread Barry Benowitz
Inflate.pm line 64. cpan> Has anyone seen this or have an idea for how to solve it. Barry

CPAN Installs failing due to embedded " " in winXP directory path?

2003-11-13 Thread Barry
Digest::MD5 Compress::Zlib Archive::Tar Bundle::libnet Term::ReadKey CPAN::WAIT CPAN and the following items had problems during recursive bundle calls: Data::Dumper Net::Cmd Net::Telnet == end of CPAN messages = Any help would really be appreciated. Regards, Barry.

Re: Perl and Exchange Server

2003-07-11 Thread Barry C . Hawkins
ching MSDN and the Knowledge Base for "Global Address List" (GAL). The GAL is the common name in Exchange-speak for what you are calling the Contacts folder on the server. My experience with CDO is limited to OLE-DB/ADO/VBScript, so alas, that's all I can tell you. Regards, --

Re: Rename files script - a first effort

2003-07-10 Thread Barry C . Hawkins
On Thursday, Jul 10, 2003, at 13:07 US/Eastern, Pete Emerson wrote: Barry, I just wrote my own version of your script. Not that it's better than yours, just different. I've learned a lot from this list by seeing how people do things differently than me! I hope you find my version h

Rename files script - a first effort

2003-07-10 Thread Barry C . Hawkins
more robust against user error, better form, with readability and maintainability being priorities. Also, I am wondering if my approach is being warped by my years of Microsoft-based development. In other words, is this thing Perlesque? The script is posted below. Thanks in advance, -- Ba

Fwd: Mysql Statement

2003-07-09 Thread Barry C . Hawkins
This question should go to: http://lists.mysql.com/list.php?list=mysql#b You can try this in MySQL: SELECT company, date, SUM(sales) AS `totalsales`, SUM(cost) AS `totalcost` FROM tablename GROUP BY company, date ORDER BY company, date On Wednesday, Jul 9, 2003, at 13:59 US/Eastern, Paul Kraus

Confused on hash references

2003-02-13 Thread Barry Kingsbury
. ${$mailings{$form_name}}{$key} . "\n"; } I have no idea what this syntax is saying or doing and why the two different forms of the hash reference are working. Can some guru explain? Thank you Barry Kingsbury Etnus, LLC. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: grab another param from url

2002-08-02 Thread Barry Veinotte
} So a URL could come in like so: http://whatever.com/cgi-bin/script.cgi?a=whatever;b=somthing;c=this Now you have values for a, b and c... But I am sure there are a lot of better ways to do it. CGI.pm can handle parsing of a URL and I believe would be safer than this type of thing. Barry -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: CPAN Modules continued

2002-06-27 Thread Barry Kingsbury
t's pretty simple. For example, use the search command to see what modules are installable and the install command to install them. Barry Kingsbury -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Escaping characters

2002-06-04 Thread Barry Jones
Thanks. It turns out that wasn't my problem at all. I had a \n character midway through and I didn't know about /gs for those characters. It was the data, not the code. -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 2:54 PM

Escaping characters

2002-06-04 Thread Barry Jones
ng and what have you but it just won't work. Here's the code, maybe you can help me out. Note: the bold tags are just there while I'm testing it, not what it's going to be used for. $body =~ s/\{\{(.*?)\}\}/\$1\<\/b\>/g; Barry Jones DATABUILT, Inc. The Global

Simple array question

2002-05-31 Thread Barry Jones
What type of functions are built in to perl for arrays? Mainly, I'm looking to find out how to see how many elements are in an array without counting them, but I was wondering about others too. What about hashes? Barry Jones DATABUILT, Inc. The Global AEC Information Company 1476 Fo

RE: Launching Perl Code in Parallel

2002-05-30 Thread Barry Jones
Are you sure that you need them run parallel? I could be wrong, but I don't think it's going to make it go any faster unless you're on a multiprocessor machine. I'm just speaking from experience with C++ threads though. -Original Message- From: Ho, Tony [mailto:[EMAIL PROTECTED]] Sent:

Getting through a deep hash

2002-05-24 Thread Barry Jones
pts: for my $morekeys (keys $spot->{$key}) {} for my $morekeys (keys %$spot->{$key}) {} for my $morekeys (keys %($spot->{$key})) {} for my $morekeys (keys (%$spot->{$key})) {} and as you can see in the line with the ### I was just trying to put it into a new hash, but that is giving me this

RE: HTML tables?

2002-05-22 Thread Barry Jones
Thanks, that looks like what I was looking for. I also found an HTML::Table module on CPAN. -Original Message- From: Dave K [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 11:18 AM To: [EMAIL PROTECTED] Subject: Re: HTML tables? Barry, Check out http://stein.cshl.org/WWW

HTML tables?

2002-05-22 Thread Barry Jones
Does anybody know of a module to manage generating HTML tables? Is there anything in CGI.pm? Does anyone have any tips to generating semi-complex tables? Barry Jones DATABUILT, Inc. The Global AEC Information Company 1476 Fording Island Rd. Bluffton, SC 29910 (843) 836-2166 office "Li

Type distinguishing

2002-05-21 Thread Barry Jones
ey 2 => Value Key 3 => Array [0] => Value1 [1] => Value2 Key 4 => Value Barry Jones DATABUILT, Inc. The Global AEC Information Company 1476 Fording Island Rd. Bluffton, SC 29910 (843) 836-2166 office "Life is like a dogsled tea

RE: Reverse sort?

2002-05-21 Thread Barry Jones
Thanks. I ended up using reverse sort keys %hash; -Original Message- From: Hanson, Robert [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 2:37 PM To: Barry Jones; [EMAIL PROTECTED] Subject: RE: Reverse sort? To expand on that, the "<=>" operator is for numeric

Reverse sort?

2002-05-21 Thread Barry Jones
How can I sort a hash's keys in reverse order? Barry Jones DATABUILT, Inc. The Global AEC Information Company 1476 Fording Island Rd. Bluffton, SC 29910 (843) 836-2166 office "Life is like a dogsled team; if you ain't the lead dog, the scenery never changes." - Le

RE: simple array question

2002-05-21 Thread Barry Jones
Yes but you have to write it like this: (@main) = (@data1,@data2,@data3); -Original Message- From: A Taylor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 10:05 AM To: [EMAIL PROTECTED] Subject: simple array question Hi all, I have a very simple and probably stupid question to

Reinitializing an Array

2002-03-13 Thread Barry Kingsbury
I have an array that I wish to reuse. Before I reuse it, I want to clear out all elements. Both of the following seem to work: @an_array = ""; and $#an_array = -1; I then go on to do something like: foreach (@foo_array) { push (@an_array, $_); } Neither seems complete

Pre-populating standard input

2001-12-13 Thread Warren, Barry
How can I pre-populate the standard input. For example, I want to issue a command line prompt for the user to key in a directory name. I would like the current directory to be displayed on the command line and be editable. Key in directory name: /home/currentdir Thanks, Barry -- To

RE: Why doesn't RETURN work?

2001-10-24 Thread Barry Carroll
Hi, 'if ($a = $b)' is not comparing $a to $b, it is assigning the value of $b into $a If you want to test for numeric equivalence, use two '='s like 'if ($a == $b)' Then your code should be fine, Baz. -Original Message- From: Gross, Stephan [mailto:[EMAIL PROTECTED]] Sent: Wednesda

Re: GET ME OFF

2001-08-22 Thread Barry in Indy
LITTLE WHILE AGO BUT PLEASE GET > ME OFF > I thought this was going to be a porno link! -- barry in indy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Clear

2001-08-20 Thread Barry Carroll
I'd recommend that you do something like this: 1-assign the text clear into a variable, this will save time later on... eg: $clearScreen = "clear"; Then: system($clearScreen); will clear the screen when ever you want to do so - this is just the way i do it... probably better ways to do it as

Is there an easy way to reject certain types of input?

2001-08-08 Thread Barry Carroll
but I dont know... Thanks for any help :) Barry === # This subroutine calls the main user menu and refreshes the screen. sub callMenu { system($clearScreen); print "=

RE: Newbie Question about subroutine

2001-08-07 Thread Barry Carroll
hift; This will take the first (and only) element in @_ and assign it to $vInput. -Original Message- From: Barry Carroll [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 11:03 AM To: '[EMAIL PROTECTED]' Subject: Newbie Question about subroutine Hi all, i want to have a

pls ignore last msg

2001-08-07 Thread Barry Carroll
sorry guys i got it, silly mistake -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Newbie Question about subroutine

2001-08-07 Thread Barry Carroll
Hi all, i want to have a subroutine for checking user input: here is a snippet of the code: print ("Is your Terminal ANSI compliant?\nYes or No, \(y\) or \(n\)?\n"); chomp ($input = ); verifyInput($input); sub verifyInput { # Subroutine to verify input # Will r

checking for an open filehandle?

2001-07-27 Thread Barry Carroll
Hi, i have this small but of code in a script. My script opens a file for editing, and assigns a filehandle 'TEMPLATE' to it. I need to check in another part of the script if it open or closed. Is this code good enough for doing that job? if (!(-e TEMPLATE)) {

RE: Compiling into C source code.

2001-07-26 Thread Barry Carroll
sorry, i figured this one out myself, thanks anyway! :) -Original Message- From: Barry Carroll [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 3:24 PM To: '[EMAIL PROTECTED]' Subject: Compiling into C source code. Hi All, I have a perculiar problem: i have a p

Compiling into C source code.

2001-07-26 Thread Barry Carroll
Hi All, I have a perculiar problem: i have a perl script test.pl which i want to convert into C source. perlcc will work fine, is there any way of getting it to generate the C source and stop. I ask this because when i try 'perl -M0=CC, -otest3.pl.c test3.pl' it doesn't work, it says '-o' is

isWindows95() and isWIndowsNT()

2001-07-26 Thread Barry Carroll
Hi all, This is my first post :) I once saw functions such as the ones above for perl. I am writing a script and I want to be able to determine the machine's Operating System type. Does anyone know where i can get these functions or similar ones to determine the OS type. I know how to get the

job search

2001-06-15 Thread Barry McClintock
I know this is not the proper venue for this, but: looks like some layoffs are coming down the pike where I am; anybody got any ideas for an intermediate PERL programmer in NY or northern NJ area? I have many years of C programming in funds transfer on VAXes as well. Thanks, Barry

csv.pm

2001-06-15 Thread Barry McClintock
I'm trying to install this package, and nmake says 'must use force'. What does this mean? Barry McClintock Fundtech Corporation Voice: 201-946-1100 ext 324 Fax : 201-946-1313 [EMAIL PROTECTED]

Re: Apache

2001-05-10 Thread Barry Elk
>I edit the http.conf file, you can see it: > > > >Thank“s a lot.. > >Hasan > >-- >GMX - Die Kommunikationsplattform im Internet. >http://www.gmx.net > -- LT Barry Elk VFC-12 OPSO/SecMgr/ISSM --