Re: Preventing Accidentally Fork Bombing My Box

2003-12-20 Thread George Schlossnagle
errors like that in development, you can use something like Proc::Queue (I've never used it, but it seems to be a direct fit). Alterntively you can monitor the process table and ensure that you do not exceed a certain number of processes in your parent process' process group. George // George

Re: Problems forking -- fork DOSes my comp

2003-12-10 Thread George Schlossnagle
); print FORKED $counter; close(FORKED); exit; # critical to exit here, else this child will spawn new children itself } } // George Schlossnagle // Postal Engine -- http://www.postalengine.com/ // Ecelerity: fastest MTA on earth -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Perl Equavlent

2003-11-13 Thread George Schlossnagle
On Nov 13, 2003, at 11:38 AM, Mike Blezien wrote: Hi, so I guess my question is, if I want to accomplish the same results as this ceil how would that be accomplished in Perl ?? use POSIX qw/ceil/; $float = '1.9'; print ceil($float); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: question

2003-11-12 Thread George Schlossnagle
On Nov 12, 2003, at 2:44 PM, John Dillon wrote: perldoc What's the whole point of this thread? That if you look up language keywords (array) and functions by name (array_pop) that you get more relevant information from the language that uses those exact keywords? PHP has wider web deployment

Re: question

2003-11-12 Thread George Schlossnagle
On Nov 12, 2003, at 3:53 PM, Dan Anderson wrote: It's actually kind of interesting. If you look at what PHP is trying to do with PHP 5 it is basically trying to copy a lot of Perl's object oriented system. That's really far from the truth. You could accuse it of trying to copy Java's oo model

Re: question

2003-11-12 Thread George Schlossnagle
On Nov 12, 2003, at 4:02 PM, Dan Anderson wrote: On Wed, 2003-11-12 at 15:57, George Schlossnagle wrote: On Nov 12, 2003, at 3:53 PM, Dan Anderson wrote: It's actually kind of interesting. If you look at what PHP is trying to do with PHP 5 it is basically trying to copy a lot of Perl's object

Re: question

2003-11-12 Thread George Schlossnagle
On Nov 12, 2003, at 5:30 PM, John Dillon wrote: Of 24 hours, 7.5 sleeping (thinking) (=16.5), 1.5 travelling (sleeping) )=(15), 7.5 working (less 1.5 hours at the coffee machine) (=7.5), 7.5 hours at work (not perl), that leaves -10 minutes to crap and -2 hours a day to research perl. If you're

Re: Training in the Middle and Far East

2003-11-05 Thread George Schlossnagle
DO NOT FEED THE TROLLS. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Training in the Middle and Far East

2003-11-04 Thread George Schlossnagle
On Nov 4, 2003, at 5:23 PM, Rajeev Prasad wrote: bhaiya Rob, computer science is no science at all. It is only layers of information. It is physics and mathematics which makes this number crunching plastic do its job. that is science. Whether computer science is a science (and there are many

Re: lowercase

2003-10-24 Thread George Schlossnagle
__ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- George Schlossnagle -- Principal Consultant -- OmniTI Computer Consulting, Inc

Re: patches

2003-09-29 Thread George Schlossnagle
it again. Instead i create a patch and tell customer to install that patch. The question is How to i create a patch, and how customer would install it. Thanx, -Sharad -- George Schlossnagle -- Principal Consultant -- OmniTI Computer Consulting, Inc. -- +1.410.872.4910 x202 -- 1024D/1100A5A0

Re: PERL DNS Lookup's using Socket

2003-09-27 Thread George Schlossnagle
On Saturday, September 27, 2003, at 03:47 PM, Airman wrote: I'm using the following PERL code to do some DNS queries. Anyone know how to specify what dns or nameserver to use instead of what is in /etc/resolv.conf (unix)? Or is there a better way in PERL? You can't specify it if you're using

Re: how to bless while strict?

2003-09-17 Thread George Schlossnagle
On Tuesday, September 16, 2003, at 09:26 PM, sfryer wrote: So ... what is the correct strict way to bless $talking, Horse? bless $talking, Horse; George -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Converting PHP file

2003-09-16 Thread George Schlossnagle
On Tuesday, September 16, 2003, at 01:07 PM, Mike Blezien wrote: Hello all, is the a module or scripting method, in Perl, to strip a PHP file of it's coding and convert it to a pure static HTML file?? A simple substitution like s/\?php.*??\?//gs should do the trick, but I am skeptical that

Re: Converting PHP file

2003-09-16 Thread George Schlossnagle
On Tuesday, September 16, 2003, at 01:32 PM, Mike Blezien wrote: Thanks George,... we are considering issues you've noted below, and are looking into that too. Basically we want to take the PHP file as it would be displayed in the browser and convert it to a plain static HTML file. It maybe a

Re: PERL code execution rule?

2003-09-09 Thread George Schlossnagle
On Tuesday, September 9, 2003, at 09:50 AM, Rodney Wise wrote: I was under the impression that subroutines are only executed IF they're called. But, it looks like subroutines will execute on there own if they are written in the beginning part of the PERL code and before other code takes over

Re: PERL code execution rule?

2003-09-09 Thread George Schlossnagle
On Tuesday, September 9, 2003, at 10:59 AM, Rodney Wise wrote: It looks like by declaring my subroutines, they are being executed. ??? example of my Subroutine declarations: # Get the Data Number get_number; # Get Form Information parse_form; Just to be sure we're on the same playing field -

Re: DBI Query rows Benchmark

2003-09-07 Thread George Schlossnagle
On Sunday, September 7, 2003, at 12:33 PM, Pablo Fischer wrote: Thanks!!! El día Sunday 07 September 2003 7:59 a Bob Showalter mandó el siguiente correo: Pablo Fischer wrote: Hello! I have a questionto those lovers of DBI and Databases: which method is faster to know the number of rows of a

Re: What does $| mean?

2003-09-03 Thread George Schlossnagle
On Wednesday, September 3, 2003, at 10:49 PM, Oliver Schnarchendorf wrote: On Wed, 3 Sep 2003 19:36:50 -0700, Trina Espinoza wrote: Saw it in a piece of code but have no clue what it does. Any suggestions would be greatly appreciated. $| $OUTPUT_AUTOFLUSH If set to nonzero, forces an

Re: pronunciation guide

2003-08-25 Thread George Schlossnagle
On Monday, August 25, 2003, at 10:28 AM, Paul Kraus wrote: Wow. I find that unusual in my 10 years of computer use/programming ... I have always referred to $ and heard it referred to as string. Not that it matters but I find that definitely unusual :) I've been to a number of conferences as

Re: Sick of installing CPAN modules

2003-08-14 Thread George Schlossnagle
On Thursday, August 7, 2003, at 02:05 PM, jc wrote: I have parse a mailbox in order to grab data from each email. Simple enough right? So I tried to use the CPAN module Mail::MboxParser (0.17 version because the new one requires more modules than this one) I installed the prerequisite

Re: smtp problem

2003-08-11 Thread George Schlossnagle
($str); $smtp-dataend(); $smtp-quit(); awards -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- George Schlossnagle -- Principal Consultant -- OmniTI Computer Consulting, Inc. -- +1.410.872.4910 x202 -- 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E

Re: smtp problem

2003-08-09 Thread George Schlossnagle
On Saturday, August 9, 2003, at 06:35 PM, awards wrote: Hi, Hi. Here's your connection failure. The error is pretty clear. You need to provide the necessary credentials to the server, either via SMTP auth or POP-before-SMTP. Net::SMTP=GLOB(0x8246190) RCPT TO:[EMAIL PROTECTED]

Re: HTH

2003-07-24 Thread George Schlossnagle
Hope That Helps (Laugh Out Loud) On Thursday, July 24, 2003, at 11:32 AM, Jeff Westman wrote: Hi, Okay guys, what does this mean? Several of you 'sign' with this. HTH (lol) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Why Global symbol require explicit package name

2003-06-27 Thread George Schlossnagle
string; I get a warning: Global symbol require explicit package name. unless I declare the variables like: my $strg = A string; my $strg2 = a second string; Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- George Schlossnagle -- Principal

Re: Scalars and Strict

2003-06-05 Thread George Schlossnagle
On Wednesday, June 4, 2003, at 02:40 PM, Wagner, David --- Senior Programmer Analyst --- WGO wrote: Jeff Westman wrote: This may sound trivial, but I am trying to declare and assign multiple scalars to the same variable in the same statement. This is what I have: #!/bin/perl -w $a = $b =

Re: How do I market scripts and what should I be aware of.

2003-06-03 Thread George Schlossnagle
What does the first paragraph have to do with the rest of them? On Monday, June 2, 2003, at 12:00 PM, [EMAIL PROTECTED] wrote: I am new to marketing. I know how to sell on ebay and that's about it. I don't know how to protect myself with legal jargon. Can anyone point me in the right

Re: Php perl?

2003-04-05 Thread George Schlossnagle
On Saturday, April 5, 2003, at 04:07 PM, R. Joseph Newton wrote: George Schlossnagle wrote: ... Answering FUD FUD = ? Fear, Uncertainty and Doubt. Basically unsubstantiated comments used to discredit a (competing) product. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Php perl?

2003-04-03 Thread George Schlossnagle
On Thursday, April 3, 2003, at 11:04 AM, Bob Showalter wrote: But can you write a stand-alone script using PHP and run it from a shell prompt, for example? Yes. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: php mySQL question

2003-04-03 Thread George Schlossnagle
Why are you posting this to a perl list? Try [EMAIL PROTECTED] On Thursday, April 3, 2003, at 06:06 PM, Robbie Staufer wrote: Hi, I have a php form that takes in data for a mysql query. The script that processes the form takes the variables from the form and submits them to the db. What

Re: Php perl?

2003-04-02 Thread George Schlossnagle
On Wednesday, April 2, 2003, at 09:52 AM, Dan Muey wrote: This is a cool thread. I'm glad everyone is staying so peaceful about It. That's another thing I don't like about PHP is that if I was having this discussion with a PHP person thet'd be insulting me for even considering something else. I

Re: Php perl?

2003-04-02 Thread George Schlossnagle
On Wednesday, April 2, 2003, at 10:31 AM, Dan Muey wrote: Like I said, a very informative happy thread! Peace to everyone!! I love all people, I just use Perl. Indeed. As I noted in my disclaimer, I use Perl as well (quite happily). They are both good languages, and they both have the toolset

Re: Problems with TEXT::CSV_XS

2003-04-02 Thread George Schlossnagle
Text::CSV (no XS) has done an all-too-good job of parsing binary data for me in the past. On Wednesday, April 2, 2003, at 11:02 AM, Dan Muey wrote: The TEXT::CSV_XS module has problems parsing delimited files with funny characters, binary data or missing quotes. It will blank out the

Re: [mail_lists] RE: Php perl?

2003-04-02 Thread George Schlossnagle
On Wednesday, April 2, 2003, at 01:19 PM, Jim wrote: | Perl has the LWP family of modules for doing HTTP client applications, as | well as various HTML and XML parsing modules that can be used for what | you're describing. PHPs support for this is actually really nice. For simple things you

Re: embedding perl in html

2003-03-26 Thread George Schlossnagle
On Wednesday, March 26, 2003, at 07:49 PM, Morten Liebach wrote: On 2003-03-26 16:29:27 -0800, David O'Dell wrote: Is there a way to place a perl statement in a plain html file? I've been given the task of placing two pieces of dymanic data in an already existing page written in html.

Re: [OT] YAPC::NA 2003 Registration

2003-03-05 Thread George Schlossnagle
On Wednesday, March 5, 2003, at 08:49 PM, R. Joseph Newton wrote: Kevin Meltzer wrote: It will be June 16-18, 2003 in Boca Raton, FL. Please visit the website to learn more, and _to register_. If anyone has any questions, feel free to email me off-list Eh, which website? I didn't see a link.

Re: translation

2003-01-20 Thread George Schlossnagle
sure -l: sets the input and output record separators. here it has the effect of post-pending a newline at the end of the record. -e: run the command afterwards. $_ = 7P0374;; set $_ to the string 7P0374; tr[0-][ LEOR\!AUBGNSTY]; Apply the transliteration operator to $_. Translation

Re: Recommend an email module?

2003-01-14 Thread George Schlossnagle
You would have to implement multipart messaging on top of Net::SMTP, which is a low-level interface. If you want something higher level, check out MIME::Lite, it's nice. George On Tuesday, January 14, 2003, at 03:09 PM, Paul Kraus wrote: I did check cpan and there where many email modules.

Re: Help!!!

2003-01-06 Thread George Schlossnagle
Not in Perl (though you can write extensions for it in Perl), but try Netsaint (now Nagios): http://www.nagios.org/. George On Monday, January 6, 2003, at 11:55 AM, Jose Vicente Paredes Loor wrote: Hi, friends. I am looking for a script(or a group of them) to monitor my network,i mean, i

Re: Help!!!

2003-01-06 Thread George Schlossnagle
xxx.xxx.xxx.xxx`; print LOG $var\n; -Original Message- From: George Schlossnagle [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 11:45 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Help!!! Not in Perl (though you can write extensions for it in Perl), but try Netsaint (now

Re: cc and bcc in Net::SMTP

2002-12-04 Thread George Schlossnagle
the Net::SMTP methods implement the SMTP protocol. Net::SMTP::to (and cc and bcc) simply set the data to be passed as a RCPT TO: command. This set's the envelope recipient on a mail, which is how your mta (and others) know who the mail is going to. cc: and bcc: (and things like Date:

Re: Writing a HTTP server with PERL

2002-12-03 Thread George Schlossnagle
LRMK wrote: Thanks it solved my problem I read a HTTP request from my browser (IE 6) using a small program which listens to port 80 i got this GET /perl/lib/Pod/perlfunc.html HTTP/1.1 Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel,

Re: Resolved: Good Name Filtering regex

2002-11-26 Thread George Schlossnagle
Hyphenated names don't cut it in your world. Or names with attached qualifiers like 'Jr.'. Or titles like ', M.D.' So Pei Wu-Schlossnagle, PhD. Chuck Tomasi wrote: One of my cohorts pointed me in the right direction. I should have known this from previous experience. if ($st !~

Re: I need some explainment on the MAP() Function

2002-11-24 Thread George Schlossnagle
It's also worth noting that it can modify your original array in place @a = ('bob','jane'); map {$_ = ucfirst($_)} @a; This can be useful (or painful if you forget about it). George On Sunday, November 24, 2002, at 01:04 PM, Paul Johnson wrote: On Sun, Nov 24, 2002 at 12:13:55PM -0500,

Re: MySQL

2002-11-23 Thread George Schlossnagle
the list in your statement needs commas $query = SELECT ad_id, text_extra, life FROM help_wanted WHERE ad_id in(.join(',', @id_set).); On Saturday, November 23, 2002, at 08:30 PM, Mariusz wrote: I sent the following mysql query and got an error:( SELECT ad_id, text_extra, life FROM

Re: :Oracle row count not working

2002-11-14 Thread George Schlossnagle
rows does not work correctly for selects.[1] This is because oracle itself does not know how many rows are returned on the select until they have all been fetched. rows works correctly on inserts and updates though. [1] rows will return non-zero after the first row is fetched,, but this

Re: PERL vs. PHP?

2002-10-23 Thread George Schlossnagle
in on Perl being more powerful, having a larger library set, and having much cleaner namespace semantics. But PHP is a much less mature language than Perl, and it is coming into it's own. // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c

Re: Re[2]: Perl vs. PHP?

2002-10-23 Thread George Schlossnagle
applications, backups, etc...(everything else). MCP Matt -- Best regards, Martinmailto:corwin;corwin.sk -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc

Re: a newbies attempt at cleverness are failing

2002-10-16 Thread George Schlossnagle
my $size; $out =~ /(\d+)/ $size = $1; Regular expressions are good for this sort of task. chad kellerman wrote: Hi everyone, I know there must be a easy way to do this but I just can't figure it out. I issue a command from a remote server and get a variable like so: my $out = 14G; #

Re: Joining array elements

2002-10-08 Thread George Schlossnagle
join ,, @array[2...$#array]; works nicely for me. Frank Wiles wrote: .--[ Diego Riano wrote (2002/10/08 at 16:50:41) ]-- | | Hello all | | I have an array like this: | | @array=(1,2,3,4,5,6); | | And I would like to join the element starting from the third one until

Re: Perl Profiler?

2002-10-07 Thread George Schlossnagle
perldoc Devel::DProf It's a very useful and functional profiler (IMHO). George Jason Frisvold wrote: Does anyone know if there is a Perl Profiler (Open Source or Commercial) that is in existance? Apparently my boss thinks this will magically fix various issues... :) -- To

Re: Using map

2002-10-03 Thread George Schlossnagle
Not necessarily prettier: @new = map {m/(.*)(?:jpg|gif)$/i?$1html:$_ } @old; Karl Kaufman wrote: I, too, am interested in this syntax. I had to do the same juggling in order to map the values without affecting the original array -- and would prefer cleaner syntax if it's possible. Thx!

Re: Preferred way to move and compress a file

2002-09-26 Thread George Schlossnagle
Matt Simonsen wrote: I need to move several files and compress them - what's the preferred way to do this? I don't think Zlib::Compress is what I want, it seems more geared towards dealing with small streams... although I suppose I could look over each line and write that out. The files to

Re: Why is my array still here?

2002-09-23 Thread George Schlossnagle
Because you referenced it outised of the function by assigning it on return. It's reference count is not 0, so it's not elligible for garbage collection. Balint, Jess wrote: Hi all. As I have known before, my declares a variable that is local to a function. My question, why don't I get an

Re: Adult content filter in perl

2002-09-23 Thread George Schlossnagle
have any suggestions? TIA Steve __ Do you Yahoo!? New DSL Internet Access from SBC Yahoo! http://sbc.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle

Re: qq/qw

2002-09-16 Thread George Schlossnagle
] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: return type of $ua-request

2002-09-16 Thread George Schlossnagle
PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: go to next file

2002-09-11 Thread George Schlossnagle
use break in the inner while loop when you get a blank line to go to the outer while loop. I think you need to stop programming C. :) 'last' is the token you want to use for breaking out of a loop in perl. George -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: print only what a regex actually hits

2002-09-06 Thread George Schlossnagle
or while(INFILE) { /(myregex)/ print $1\n; } or if you are concerned about multiple matches in a line while(INFILE) { print join(\n, /(myregex)/g); } if there are worries about Timothy Johnson wrote: You mean something like this? while(INFILE){ push @matches,$_ =~ /(silly)/; }

Re: print only what a regex actually hits

2002-09-06 Thread George Schlossnagle
the ability to grab the hits. Whats a sneaky way to get the linenumber where the hit occured? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c

Re: ascertain current username

2002-08-16 Thread George Schlossnagle
drieux wrote: I have my nagging doubts about use English; when coding in perl... What are your nagging doubts in particular? I find use English variable names to be far less magical and far more intuitive than the hsort versions. I realize that goes against the whole line-noise

Re: possible RFC?

2002-08-14 Thread George Schlossnagle
One reason is that you can make runtime use/require calls, as well as run-time function definitions with eval. For example use strict; my $subname = 'contrived'; eval qq(sub $subname { print This could be useful\n }); contrived(); This may seem highly contrived (it is), but there are useful

Re: Help with IO::Socket::INET

2002-08-13 Thread George Schlossnagle
, GO AWAY! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2

Re: Getopt::Std issues

2002-08-02 Thread George Schlossnagle
: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Avoid using backticks

2002-07-29 Thread George Schlossnagle
about Proximus mobile phone services please see our website at http://www.proximus.be or refer to any Proximus agent. // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E

Re: One Liner Problems

2002-07-23 Thread George Schlossnagle
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F

Re: Crypt::Cracklib?

2002-07-23 Thread George Schlossnagle
commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Crypt::Cracklib?

2002-07-23 Thread George Schlossnagle
To make a comment more to your intent, I just installed Crypt::Cracklib. It seems to work fine. It's not particularly slow, so unless there is a reason you want to supplement it, I would just run with the cracklib checks. On Tuesday, July 23, 2002, at 04:10 PM, George Schlossnagle wrote

Re: Please help with Database issue

2002-07-23 Thread George Schlossnagle
well be _not_ what you want though. To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A

Re: Please help with Database issue

2002-07-23 Thread George Schlossnagle
amount of information. Any suggestions how I can do this, especially when I am not in control of the hosting server? Best regards, Garry Hojan // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D

Re: Please help with Database issue

2002-07-23 Thread George Schlossnagle
it. --- me -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9

Re: How to expand Unix command in echo statement?

2002-07-23 Thread George Schlossnagle
] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0

Re: Perl || Php ?

2002-07-22 Thread George Schlossnagle
, please contact the sender and delete the material from any computer. -- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e

Re: Confirm a possible bug

2002-07-18 Thread George Schlossnagle
PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Flat File Db

2002-07-17 Thread George Schlossnagle
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234

Re: Flat File Db

2002-07-17 Thread George Schlossnagle
The main problem appears to be that instead of taking a different branch if open() or flock() fails you continue on as if they had succeeded. flock($fh,LOCK_EX ) is a blocking call, so it won't return until the lock is available. // George Schlossnagle // Principal Consultant // OmniTI

Re: find biggest number

2002-07-16 Thread George Schlossnagle
anyone know a function for that? cu Konrad -- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED

Re: find biggest number

2002-07-16 Thread George Schlossnagle
) @ 5.55/s (n=1000) Rate sort map sort 5.55/s -- -89% map 48.5/s 774% -- // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0

Re: A localtime question

2002-07-13 Thread George Schlossnagle
get the day to be two digit? -- Steve -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D

Re: passing hash to a subroutine

2002-07-11 Thread George Schlossnagle
] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0

Re: Matching IPs or robots

2002-07-11 Thread George Schlossnagle
|crawl|spider|search)\S* )\s/) { John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e

Re: help dereferencing arrayref so I can put the value into a hash

2002-07-10 Thread George Schlossnagle
auto-cast as a scalar). -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365

Re: SMTP Module

2002-07-10 Thread George Schlossnagle
] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: unix mail

2002-07-10 Thread George Schlossnagle
_ Join the worldís largest e-mail service with MSN Hotmail. http://www.hotmail.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal

Re: Am I being stupid here... or?

2002-07-10 Thread George Schlossnagle
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0

Re: How to do a consecutive grep?

2002-07-10 Thread George Schlossnagle
Robert -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9

Re: Insert Var in Regex Problem

2002-07-10 Thread George Schlossnagle
PROTECTED] // George Schlossnagle // Principal Consultant // OmniTI, Inc http://www.omniti.com // (c) 240.460.5234 (e) [EMAIL PROTECTED] // 1024D/1100A5A0 1370 F70A 9365 96C9 2F5E 56C2 B2B9 262F 1100 A5A0 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail