RE: perl cgi security

2002-10-28 Thread Nikola Janceski
If you don't want them to comprehend your code, be sure to add lots of code that will never get run and remove all comments and any whitespace that really isn't needed, and through in a poem or two and u will have code that know won wood wont 2 reed n it will look kinda like this reply.

CGI.pm param question

2002-10-22 Thread Nikola Janceski
above? Nikola Janceski Only the wisest and the stupidest of men never change. -- Confucius The views and opinions expressed in this email message are the sender's own, and do not necessarily

RE: Viruses

2002-07-18 Thread Nikola Janceski
Viruses work only because of homogeny. The more systems with more diversity and the harder it is for viruses to make any kind of impact. Every system has security holes, but if everyone had the same system you can exploit that hole (MS virus frenzy). But what happens when you hit another system?

RE: Accessing Extra Information in die()

2002-07-11 Thread Nikola Janceski
why aren't you using: use CGI::Carp 'fatalsToBrowser'; -Original Message- From: Camilo Gonzalez [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 11:27 AM To: 'John Pitchko'; [EMAIL PROTECTED] Subject: RE: Accessing Extra Information in die() Will $! suffice for

RE: array of arrays

2002-07-05 Thread Nikola Janceski
you need to learn about references. read the: perldoc perllol here is the jist though. @all = (\@array1, \@array2 ... ); # ... so on to access first array and first element: $all[0]-[0]; # i think or is it: $all[0][0] -Original Message- From: alex [mailto:[EMAIL PROTECTED]]

RE: 2 Questions

2002-07-03 Thread Nikola Janceski
scoping!!! my only scopes the end of the file! so my in fried.dat is scoped only in fried.dat. use our($name); -Original Message- From: Kyle Babich [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 9:19 AM To: [EMAIL PROTECTED] Cc: beginners-cgi Subject: Re: 2 Questions

RE: 2 Questions

2002-07-03 Thread Nikola Janceski
( text/html ); my $hash_ref = do ( 'fried.dat' ) || die error: unable to open fried.txt\n; print Dumper $hash_ref; print EndOfHTML; our($name); chicken EndOfHTML fried.dat: { name = 'fried' } - Original Message - From: Nikola Janceski [EMAIL PROTECTED

RE: Please, ASP or PERL?

2002-06-20 Thread Nikola Janceski
It's like asking which, Java or VB? It's up to you to decide which you know better, which is better for your application, which is better for the portablity that you want. -Original Message- From: joao silva [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 3:11 PM To: [EMAIL

RE: PERL!! : )

2002-06-20 Thread Nikola Janceski
We have one.. IIS machine... I forget what it does, but the Sysadmin has made it an untrusted machine. I wonder why???.. (all the holes and some how Mirco$oft still floats, maybe it's a giant turd). -Original Message- From: Brent Michalski [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: What database would your recommend?

2002-06-07 Thread Nikola Janceski
Perl a dying language? are you nutz?!?!?! Haven't you been reading the Apocalypse pages for PERL 6??!?!? http://dev.perl.org/perl6/apocalypse/ apocalypse 1-4 http://www.perl.com/pub/a/2002/06/04/apo5.html apocalypse 5 (pattern matching will never be the same) I get a w**dy just thinking about

RE: What database would your recommend?

2002-06-07 Thread Nikola Janceski
] -Original Message- From: Camilo Gonzalez [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 12:13 PM To: 'Nikola Janceski'; Camilo Gonzalez; 'Fred Sahakian'; [EMAIL PROTECTED] Cc: Subject: RE: What database would your recommend? Forgive me Nikola. In this business you need to stay

RE: webBotting a Job Hunt

2002-06-07 Thread Nikola Janceski
Depends... there are those that don't know Perl, so I see nothing wrong with it unless you are using this for profitable purposes. Remember, if it's free, how is it wrong? If you think it's wrong that it is free, then help them make it less free. Linus idea, followed by Gates idea. I think this

RE: subroutine or subroutine

2002-06-05 Thread Nikola Janceski
I'd suggest using prototypes if you are going to be passing more than 3 variable references, or 3 or more different types of varible references. This is for your own sanity. -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 9:30 AM To:

RE: Why do we even HAVE to... (was: Why using use strict;)

2002-06-05 Thread Nikola Janceski
because it would reek havoc on all the perl one liners. And deter many beginners that are touching perl for the first time. And would annoy those who have to write a quick 5 line script in 3 seconds that forget a my for $line. -Original Message- From: Jake [mailto:[EMAIL PROTECTED]]

RE: Why do we even HAVE to... (was: Why using use strict;)

2002-06-05 Thread Nikola Janceski
feet wet... now my work is over my head and I am rewriting all my crappy code. P.S. to all newbies COMMENT, wish I knew what I was doing with my code a year ago. Nikola Janceski May the forces of evil become confused on the way to your house. -- George Carlin -Original Message

RE: First and second rate programmers

2002-06-05 Thread Nikola Janceski
The problem lies within the one liner code. But also some just don't understand it, and don't use perl often enough to care about it. This issue was brought up in the Apocalypse for Perl 6: http://dev.perl.org/perl6/apocalypse/1 (scroll to RFC 16) RFC 16: Keep default Perl free of constraints

RE: HTML in E-mail

2002-06-04 Thread Nikola Janceski
to this list and others. Nikola Janceski If at first you don't succeed, try, try again. Then give up. no use being a damned fool about it. -- W.C. Fields -Original Message- From: David T-G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 9:56 AM To: perl beginners cgi Cc: John

RE: HTML in E-mail

2002-06-04 Thread Nikola Janceski
sucka) Poor me stuck with SH1Tty mail programs at work. -Original Message- From: David T-G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 10:15 AM To: perl beginners cgi Cc: Nikola Janceski Subject: Re: HTML in E-mail Nikola -- ...and then Nikola Janceski said

RE: unexpected results with grep

2002-04-23 Thread Nikola Janceski
inside grep $_ is a special var assigned to each value of the array. use another var for the //; -Original Message- From: Nazary, David [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 12:29 PM To: '[EMAIL PROTECTED]' Subject: unexpected results with grep Hi, I am

RE: Removing the last character from a string

2002-04-17 Thread Nikola Janceski
this worked for me: use warnings; use strict; my $string = qq(one two three four); $string =~ s/\$//; # replace last with nothing print $string\n; __END__ What did your code look like? What version of perl are you using? -Original Message- From: Scot Robnett [mailto:[EMAIL

RE: Preview data

2002-04-12 Thread Nikola Janceski
CGI module. --- Kris G Findlay - Original Message - From: Nikola Janceski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 12, 2002 2:18 PM Subject: RE: Preview data uh... Are you using the CGI module? This test CGI script can take 'hello what

Resubmit?

2002-03-28 Thread Nikola Janceski
Is it possible to have a form submit without waiting for a user to click submit? All my parameters are hidden, that's why I ask. Delivery Queue http://www/reldist-bin/build/assign/listassign.cgi?reverse=on Nikola Janceski Summit Systems, Inc. 212-896-3400 There are three parts in truth: first

RE: Resubmit?

2002-03-28 Thread Nikola Janceski
hehe... seen the lonely continue button too often in other people's work... really sucks. I am going to use the meta-refresh, thanx. -Original Message- From: David Gray [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 2:29 PM To: [EMAIL PROTECTED] Subject: RE: Resubmit?