source code

2001-09-05 Thread nafiseh saberi
hi all. what are the meaninig in source code of perl: 1-$|=1 (in second line in perl ???) 2-what is the main meaning of undef ?? 3-why in define associative array sometimes use %array(a=>d) and sometimes use%array('a'=&g

source code !

2001-09-07 Thread nafiseh saberi
hi all. I saw in source code: $array[112]='a'; but there isnot any array with this name.why? and for initialize the array,what is the meaninig of '\' in %array(id=>\$var) what is the meaning of this in one source code.? ### What's the prefix we tag on each fi

Source Code Audit

2004-12-01 Thread Joshua Berry
Does anyone know somebody or some company that does Perl source code auditing? I have written a Perl Server application that is leaking memory and cannot find the leak. Thanks, Josh Berry | CISSP GCIA Information Security 214-765-1296

Re: source code

2001-09-05 Thread Jos I. Boumans
#x27;re called hashes, and => makes '' unnecessary in most cases. for more elaborate answers, read the tutorials i wrote about just this at http://japh.nu you'll want the data types tutorial and the perlvar tutorial regards, Jos hi all. what are the meaninig in source code of

Re: source code

2001-09-05 Thread Brett W. McCoy
On Wed, 5 Sep 2001, nafiseh saberi wrote: > what are the meaninig in source code of perl: > 1-$|=1 (in second line in perl ???) This turns on autoflushing of the currently selected filehandle, so you don't have to explicitly flush an output buffer, it's done automatically ev

Re: source code !

2001-09-07 Thread Me
> $array[112]='a'; > but there isnot any array with this name.why? 1. perhaps the programmer made a mistake. execute perl with -w to find out more. 2. the array name is @array. are you sure there isn't an @array? 3. you merely have to mention a variable or element of an array or hash, and it wi

Studying & Source Code

2002-04-18 Thread Anthony Beaman
How's the best way to get the most out of studying and studying source code? I'm always reading that looking at source code (and coding in general) is the best way to learn to program. I'm taking stuff of the net and going through it and trying to make sure I can "read&q

Perl source code beautifier

2011-04-18 Thread Bruno Costacurta
Hello, I'm looking for a command line tool for Perl source code beautifier. Thanks for your help and advice. Bye, Bruno -- Linux Counter #353844 http://counter.li.org/ -- To unsubscribe, e-mail: beginners-unsubscr...@per

Re: Source Code Audit

2004-12-01 Thread James W. Thompson, II
e company that does Perl source code > auditing? I have written a Perl Server application that is leaking > memory and cannot find the leak. > > Thanks, > Josh Berry | CISSP GCIA > Information Security > 214-765-1296 > > ---

RE: Source Code Audit

2004-12-01 Thread Bob Showalter
Joshua Berry wrote: > Does anyone know somebody or some company that does Perl source code > auditing? I don't know personally. Perhaps you can get help here... > I have written a Perl Server application that is leaking > memory and cannot find the leak. There are some mod

RE: Source Code Audit

2004-12-01 Thread Joshua Berry
, 2004 4:08 PM To: Joshua Berry; [EMAIL PROTECTED] Subject: RE: Source Code Audit Joshua Berry wrote: > Does anyone know somebody or some company that does Perl source code > auditing? I don't know personally. Perhaps you can get help here... > I have written a Perl Server application t

Re: Source Code Audit

2004-12-01 Thread Casey West
It was Wednesday, December 01, 2004 when Joshua Berry took the soap box, saying: : Quite honestly, I am not much of a programmer so these modules (even : though they are simple) are a little over my head. The output is always : more cryptic than what I can understand. If this is the case I might

Re: Source Code Audit

2004-12-01 Thread Jonathan Paton
Joshua, Do you think it is the script, or the PSP/perl enviroment that is leaking memory? How serious is the memory leak? Are you using the latest perl? If it is your perl code that leaks (try a dummy script as a check) then the most likely cause is circular references or eval problems. On old

Dump running source code?

2005-03-20 Thread Chris
Greetings, I'm not really sure how to explain it, or if it makes sense, but we provide a webservice written in perl. We have a number of modules for the software, and have designed the software to allow "plug-ins". We would like to be able to offer this "plug-in" feature to developers looking t

Encrypting PERL source code...

2003-12-01 Thread Richard.C.1
t yet will execute as if "unencrypted"?? I'd like to make the source code as difficult to pirate as I can for a program that I'm developing. Thanks! Portions of this message may be confidential under an exemption to Ohio's public records law or under a legal privilege. I

perl source code encryption

2008-04-29 Thread Anirban Adhikary
Dear list I want to encrypt my perl source code. I am using some modules in my code. Among them some are downloaded from CPAn as well as some are written by my -self. So how to encrypt all perl codes includes the modules. Thanks&Regards in advance Anirban Adhikary

error in source code !

2001-09-10 Thread nafiseh saberi
hi all. when I run cgi form that write with perl. this error shown in error log of system : malformed header from script. Bad header =---: /var/www/cgi-bin/ do you know why ?? thanks. - Best regards. Nafiseh Saberi Iran - Sh

Re: Studying & Source Code

2002-04-18 Thread Jenda Krynicky
From: "Anthony Beaman" <[EMAIL PROTECTED]> > How's the best way to get the most out of studying and studying source > code? I'm always reading that looking at source code (and coding in > general) is the best way to learn to program. You should not just look a

Re: Studying & Source Code

2002-04-18 Thread Jonathan E. Paton
> How's the best way to get the most out of studying and > studying source code? I'm always reading that looking > at source code (and coding in general) is the best way > to learn to program. The best way is to join a programming project, and learn the required aspects of

Re: Studying & Source Code

2002-04-18 Thread Felix Geerinckx
on Thu, 18 Apr 2002 13:01:39 GMT, [EMAIL PROTECTED] (Jonathan e. paton) wrote: > Studying other peoples Perl code is probably a Bad Thing, > since Perl doesn't enforce any style, design, efficency > or robustness on the programmer. > [...] > Not in my opinion. As above, many perl scripts availa

Re: Studying & Source Code

2002-04-18 Thread drieux
On Thursday, April 18, 2002, at 05:35 , Anthony Beaman wrote: [..] > I then try to study code but it's usually beyond me. [..] always remember perldoc -m will let you skim through the module completely - POD/Code/Comments. the three responses I have seen from Felix, Jonathan and Jen

RE: Studying & Source Code

2002-04-18 Thread Paul Ennis
rtise. PKE -Original Message- From: Anthony Beaman [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 7:36 AM To: [EMAIL PROTECTED] Subject: Studying & Source Code How's the best way to get the most out of studying and studying source code? I'm always reading tha

perl source code instructions

2001-10-29 Thread Gary M Rocco
When i used to program in BASIC, I had a reference card that listed all the instructions, variables and operators in alphabetical/numerical order. It also had brief descriptions of usage and syntax rules. Is something similar available for perl? Thank you for your help! Gary Rocco

Streaming Source Code Updates

2002-01-30 Thread Morbus Iff
I'd like to: - create or use a module that allows me to stream source code updates to a specific program. Something like: the user clicks "update me now", the program downloads all differing modules and libraries, sticks them in the current install directory, and

source code for builtin functions

2009-08-27 Thread heyi xiao
Hello all, My linux system has a pre-installed perl. Is there a good way to check the source code for builtin functions, like reverse etc. I want to check the source code for better learning/understanding. Thanks a lot! Heyi

Re: Perl source code beautifier

2011-04-18 Thread marcos rebelo
try perltidy http://search.cpan.org/dist/Perl-Tidy/bin/perltidy Best Regards Marcos Rebelo On Mon, Apr 18, 2011 at 12:05, Bruno Costacurta wrote: > Hello, > > I'm looking for a command line tool for Perl source code beautifier. > Thanks for your help and advice. > > Bye,

Re: Perl source code beautifier

2011-04-18 Thread Alan Haggai Alavi
Hello Bruno, I'm looking for a command line tool for Perl source code beautifier. Have a look at Perl::Tidy. It also includes a script named `perltidy` which can be run from the command-line. Regards, Alan Haggai Alavi. -- The difference makes the difference -- To unsubscribe, e

Re: Perl source code beautifier

2011-04-20 Thread Bruno Costacurta
Indeed Perl::Tidy and perltidy does perfectly the job. Thanks to all for your help. Bye, Bruno -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl

Re: Dump running source code?

2005-03-21 Thread JupiterHost.Net
Hello, Is there any possible way that somebody writing a "plug-in" would be able to some how dump the code from the require'ing script? The people writing the plug-ins do not have access to any of the code, so im trying to make sure they can't access it in any other way. If I was trying to see t

Re: Dump running source code?

2005-03-21 Thread Randal L. Schwartz
int while(); JupiterHost> close ZERO And more than that: my %sources; local *ARGV; local $/; @ARGV = ($0, values %INC); while (<>) { $sources{$ARGV} = $_; } There. The entire source code for the application is now in %sources. Every .pm, every require, and the top-le

Re: Dump running source code?

2005-03-21 Thread JupiterHost.Net
And more than that: my %sources; local *ARGV; local $/; @ARGV = ($0, values %INC); while (<>) { $sources{$ARGV} = $_; } There. The entire source code for the application is now in %sources. Every .pm, every require, and the top-level application. Nice and slick :) -- To unsubscribe,

Re: Dump running source code?

2005-03-21 Thread Wiggins d'Anconia
; close ZERO And more than that: my %sources; local *ARGV; local $/; @ARGV = ($0, values %INC); while (<>) { $sources{$ARGV} = $_; } There. The entire source code for the application is now in %sources. Every .pm, every require, and the top-level application. Enjoy. Out of curiousity (because I

Re: Dump running source code?

2005-03-21 Thread Chris
> And more than that: > > my %sources; > local *ARGV; local $/; > @ARGV = ($0, values %INC); > while (<>) { > $sources{$ARGV} = $_; > } > > There. The entire source code for the application is now in %sources. > Every .pm, every require, and the top-level

perl builtin function source code

2015-02-05 Thread prateek goyal
Hi, Please excuse me if I am posting wrong question. I wan to search the source code of PERL builtin functions e.g. reverse function. How can I see that on my machine or on web? I went to github repository of perl project but I ma unable to search that. Please help me. -- *Thanks,Prateek

Where is the source code?

2006-01-02 Thread Siegfried Heintze
enson/DCE-Perl-0.21/UUID/UUID.pm http://search.cpan.org/~braam/UUID-0.02/UUID.pm I cannot find the source code for the algorithm. I was surprised to learn that some or all of these called C. I would think a simple algorithm like this could be implemented easily in perl. Well, C source code is

RE: Encrypting PERL source code...

2003-12-01 Thread Tom Kinzer
even better, check out PAR: http://search.cpan.org/~autrijus/PAR/ -Tom Kinzer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 10:40 AM To: [EMAIL PROTECTED] Subject: Encrypting PERL source code... Can anyone suggest where I might

Re: Encrypting PERL source code...

2003-12-01 Thread Paul Johnson
oing such things as > removing whitespace, etc. so that it is much more difficult to read but > yet will execute as if "unencrypted"?? I'd like to make the source code > as difficult to pirate as I can for a program that I'm developing. Don't remove the whitespace; whit

Re: Encrypting PERL source code...

2003-12-01 Thread Tassilo von Parseval
oing such things as > removing whitespace, etc. so that it is much more difficult to read but > yet will execute as if "unencrypted"?? I'd like to make the source code > as difficult to pirate as I can for a program that I'm developing. Those attempts are usually futile sin

RE: Encrypting PERL source code...

2003-12-01 Thread Bakken, Luke
ng > such things as > removing whitespace, etc. so that it is much more difficult > to read but > yet will execute as if "unencrypted"?? I'd like to make the > source code > as difficult to pirate as I can for a program that I'm developing. > Thanks!

Re: Encrypting PERL source code...

2003-12-01 Thread R. Joseph Newton
Paul Johnson wrote: > Don't remove the whitespace; whitespace is useful. Instead you want to > remove all the other characters. You want Acme::Bleach from CPAN. > > perldoc -q "hide the source" > > -- > Paul Johnson - [EMAIL PROTECTED] Aaaah, Paul, I don't know. If you're going to do that, you

Re: Encrypting PERL source code...

2003-12-01 Thread drieux
On Dec 1, 2003, at 2:33 PM, R. Joseph Newton wrote: [..] Aaaah, Paul, I don't know. If you're going to do that, you might as well make an articulate statement in the process. I would recommend Acme Bushisms instead. for those who are playing along at home,

RE: Encrypting PERL source code...

2003-12-02 Thread Ichim, Adrian N.
> such things as > removing whitespace, etc. so that it is much more difficult > to read but > yet will execute as if "unencrypted"?? I'd like to make the > source code > as difficult to pirate as I can for a program that I'm developing. > Thanks! A pre

RE: Encrypting PERL source code...

2003-12-02 Thread Jenda Krynicky
windows system or a PERL script that would "encrypt" a perl script > > by doing such things as removing whitespace, etc. so that it is much > > more difficult to read but yet will execute as if "unencrypted"?? > > I'd like to make the source code as diffi

Re: perl source code encryption

2008-04-29 Thread Chas. Owens
On Wed, Apr 30, 2008 at 1:11 AM, Anirban Adhikary <[EMAIL PROTECTED]> wrote: > Dear list > I want to encrypt my perl source code. I am using some modules in my code. > Among them some are downloaded from CPAn as well as some are written by my > -self. So how to encrypt all p

Re: perl source code encryption

2008-04-29 Thread Anirban Adhikary
/Bytecode.pm perl -MO=Bytecode,-H,-b,-k,-orundbload rundbload.pl On Wed, Apr 30, 2008 at 11:01 AM, Chas. Owens <[EMAIL PROTECTED]> wrote: > On Wed, Apr 30, 2008 at 1:11 AM, Anirban Adhikary > <[EMAIL PROTECTED]> wrote: > > Dear list > > I want to encrypt my perl source

Re: perl source code encryption

2008-04-29 Thread Chas. Owens
On Wed, Apr 30, 2008 at 1:52 AM, Anirban Adhikary <[EMAIL PROTECTED]> wrote: > I Have gone through google and CPAN and finds some information over there . > can it be helpful for completion my purpose. U people please suggest. > > If my program name is rundbload.pl > > perl -MO=Bytecode,-H,-b,-k

Re: perl source code encryption

2008-04-29 Thread John W. Krahn
Anirban Adhikary wrote: Dear list Hello, I want to encrypt my perl source code. I am using some modules in my code. Among them some are downloaded from CPAn as well as some are written by my -self. So how to encrypt all perl codes includes the modules. perldoc -q "How can I hid

Re: perl source code encryption

2008-04-30 Thread Jerald Sheets
Dear list I want to encrypt my perl source code. I am using some modules in my code. Among them some are downloaded from CPAn as well as some are written by my -self. So how to encrypt all perl codes includes the modules. Thanks&Regards in advance Anirban Adhikary Short answer: It is

Re: perl source code encryption

2008-04-30 Thread Jenda Krynicky
From: Jerald Sheets <[EMAIL PROTECTED]> > I have to second what Chas. is saying here. > > The "perl way" doesn't lend itself well ideologically to what you're > attempting to do. If you wanted to hide your source, or create a > proprietary product, maybe perl wasn't the best route for you. >

Re: perl source code encryption

2008-05-17 Thread Gowtham M
On Wed, Apr 30, 2008 at 10:41 AM, Anirban Adhikary < [EMAIL PROTECTED]> wrote: > Dear list Hello > > I want to encrypt my perl source code. I am using some modules in my code. > Among them some are downloaded from CPAn as well as some are written by my > -self. So ho

Re: perl source code encryption

2008-05-17 Thread Paul Johnson
On Sat, May 17, 2008 at 08:42:54PM +0530, Gowtham M wrote: > I believe there is one such tool available in standard perl distro (perlcc) > This perlcc was experimental when I first had a look at it (long time back), > not sure how stable it is now. You'll no doubt be very pleased to hear that it

Re: perl source code encryption

2008-05-17 Thread Chas. Owens
suffers from the same problems all solutions will: you can recover the source fairly easily*. Of course, that is only an issue if you are trying to hide your source code (which is futile even with things like ANSI C). If you don't want your users "stealing" your code all you need is

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

Source code of Perl Modules?

2001-08-28 Thread Rahul Garg
>From where can I get the source code for modules of perl(exact path),specifically of >LWP and CGI.pm thanx, Rahul

Re: error in source code !

2001-09-17 Thread Teresa Raymond
Usually when it is a header error make sure you have the following correct: print "Content-type: text/html \n\n"; Also, FYI there is a beginner's cgi list: [EMAIL PROTECTED] >hi all. >when I run cgi form that write with perl. >this error shown in error log of system : > malformed header from sc

Re: perl source code instructions

2001-10-29 Thread Pete Sergeant
"Gary M Rocco" said qq! When i used to program in BASIC, I had a reference card that listed all the instructions, variables and operators in alphabetical/numerical order. It also had brief descriptions of usage and syntax rules. Is something similar available for perl? ! May I suggest: Perl 5

build directory with source code

2001-11-25 Thread nafiseh saberi
hi all... would you know any info for build directory in specific path in middle of source code of perl?? I need the syntax ,that open dir and if it isn't exist... build that. thx. Nafiseh Saberi

Re: source code for builtin functions

2009-08-27 Thread Uri Guttman
>>>>> "hx" == heyi xiao writes: hx> My linux system has a pre-installed perl. Is there a good way to hx> check the source code for builtin functions, like reverse etc. I hx> want to check the source code for better learning/understanding. all builtin func

Re: source code for builtin functions

2009-08-27 Thread Shawn H. Corey
heyi xiao wrote: Hello all, My linux system has a pre-installed perl. Is there a good way to check the source code for builtin functions, like reverse etc. I want to check the source code for better learning/understanding. Thanks a lot! Heyi Documentation for the built-in functions is

Re: source code for builtin functions

2009-08-27 Thread Telemachus
On Thu Aug 27 2009 @ 4:55, Shawn H. Corey wrote: > Nowadays, Linux comes with Perl but not its documentation. To > download it, start your favourite package manager and download the > package "perl-doc" Also, since some of it refers to the Syscalls, > you may want its documentation. Its package

Re: source code for builtin functions

2009-08-27 Thread heyi xiao
Thanks,Uri and Shawn, for all the information. I knew perl is written in C, but I am still interested in checking the C source for some builtin function directly. Is there any good way to go? Heyi --- On Thu, 8/27/09, Uri Guttman wrote: From: Uri Guttman Subject: Re: source code for

Re: source code for builtin functions

2009-08-27 Thread Uri Guttman
> "hx" == heyi xiao writes: hx> Thanks,Uri and Shawn, for all the information. I knew perl is hx> written in C, but I am still interested in checking the C source hx> for some builtin function directly. Is there any good way to go?

Re: source code for builtin functions

2009-08-27 Thread Telemachus
On Thu Aug 27 2009 @ 2:40, heyi xiao wrote: > I knew perl is written in C, but I am still interested in > checking the C source for some builtin function directly. Is there any good > way > to go? If you browse to this site, you can download the source code for whatever version of

Re: source code for builtin functions

2009-08-27 Thread Shawn H. Corey
Telemachus wrote: On Thu Aug 27 2009 @ 2:40, heyi xiao wrote: I knew perl is written in C, but I am still interested in checking the C source for some builtin function directly. Is there any good way to go? If you browse to this site, you can download the source code for whatever version of

Re: source code for builtin functions

2009-08-27 Thread Chas. Owens
On Thu, Aug 27, 2009 at 17:18, Telemachus wrote: > On Thu Aug 27 2009 @  4:55, Shawn H. Corey wrote: >> Nowadays, Linux comes with Perl but not its documentation.  To >> download it, start your favourite package manager and download the >> package "perl-doc"  Also, since some of it refers to the Sy

Re: source code for builtin functions

2009-08-27 Thread Shawn H. Corey
Telemachus wrote: On Thu Aug 27 2009 @ 4:55, Shawn H. Corey wrote: Nowadays, Linux comes with Perl but not its documentation. To download it, start your favourite package manager and download the package "perl-doc" Also, since some of it refers to the Syscalls, you may want its documentation.

Re: source code for builtin functions

2009-08-27 Thread Paul Johnson
any good >>> way >>> to go? >> >> If you browse to this site, you can download the source code for whatever >> version of Perl you're working with and read away: >> >> http://www.cpan.org/src/README.html > > Perhaps you should take yo

Re: source code for builtin functions

2009-08-27 Thread Shawn H. Corey
Paul Johnson wrote: I don't think there's any need for that. I also don't think this is an inappropriate question for this list or that the C code is particularly ugly for that matter, but there you go. I didn't mean to offend anyone. All I meant was the questions about how Perl is implement

Re: source code for builtin functions

2009-08-27 Thread Randal L. Schwartz
>>>>> "heyi" == heyi xiao writes: heyi> Hello all, heyi> My linux system has a pre-installed perl. Is there a good way to check heyi> the source code for builtin functions, like reverse etc. I want to check heyi> the source code for better learning/unders

Re: source code for builtin functions

2009-08-27 Thread heyi xiao
Thanks a lot, guys, for your help and the hot, informative discussion! I really got better idea at where/how to look perl source code. Although I may not fully understand the C code itself. Heyi --- On Thu, 8/27/09, Randal L. Schwartz wrote: From: Randal L. Schwartz Subject: Re: source

Re: source code for builtin functions

2009-09-04 Thread Peter Scott
On Thu, 27 Aug 2009 13:04:39 -0700, heyi xiao wrote: > My linux system has > a pre-installed perl. Is there a good way to check the source code for > builtin functions, like reverse etc. I want to check the source code for > better learning/understanding. http://github.com/github/per

Re: perl builtin function source code

2015-02-06 Thread Shlomi Fish
Hi Prateek Goyal, On Fri, 6 Feb 2015 12:24:46 +0530 prateek goyal wrote: > Hi, > > > Please excuse me if I am posting wrong question. > I wan to search the source code of PERL builtin functions e.g. reverse > function. How can I see that on my machine or on web? > I went

Re: perl builtin function source code

2015-02-06 Thread prateek goyal
> > > Please excuse me if I am posting wrong question. > > I wan to search the source code of PERL builtin functions e.g. reverse > > function. How can I see that on my machine or on web? > > I went to github repository of perl project but I ma unable to search > t

RE: Where is the source code?

2006-01-02 Thread Siegfried Heintze
Sorry, I lied. I guess there is source code for Data::UUID but I cannot get it to work on windows. I tried ppm install Data::UUID and it could not find it. I tried downloading and following the instructions in the README me but that produced a lot of syntax errors. Can someone suggest how I

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

Re: Compiling into C source code.

2001-07-29 Thread Rachel Coleman
> sorry, i figured this one out myself, > > thanks anyway! :) What was the answer? Best wishes, Rachel -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to read Perl source code

2007-09-05 Thread PeiYu Zeng
I'd like to read the built-in fuctions' code such as 'split', but I don't know where it is in perl source code (e.g. perl-5.8.8). Can you tell me how to locate it? Thanks, Cheellay Zen

Re: build directory with source code

2001-11-25 Thread Ahmed Moustafa Ibrahim Ahmed
eh Saberi wrote: > hi all... > would you know any info for > build directory in specific path in middle > > of source code of perl?? > > I need the syntax ,that open dir and if it isn't exist... > > build that. > > thx. > >

RE: build directory with source code

2001-11-26 Thread Bob Showalter
> -Original Message- > From: nafiseh saberi [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 25, 2001 4:26 AM > To: [EMAIL PROTECTED] > Subject: build directory with source code > > > hi all... > would you know any info for > build directory in s

ok how about this: source code compressor

2013-02-15 Thread Rajeev Prasad
it not only decreases the size, to load in RAM, also make it 'little harder' for cocky-novices to steal the tricks (perl guru's anyway dont care). http://www.stunnix.com/prod/po/  (binary not present to download??) http://blueboxtech.co.uk/perlplexity/  (failed to remove trailing comments...) ht

RE: How to read Perl source code

2007-09-05 Thread Andrew Curry
The majority of these are compiled c programs. Im not sure of split but I know many are many which are. -Original Message- From: PeiYu Zeng [mailto:[EMAIL PROTECTED] Sent: 05 September 2007 14:42 To: beginners@perl.org Subject: How to read Perl source code I'd like to read the bui

Re: How to read Perl source code

2007-09-05 Thread Paul Johnson
On Wed, Sep 05, 2007 at 09:42:18PM +0800, PeiYu Zeng wrote: > I'd like to read the built-in fuctions' code such as 'split', > but I don't know where it is in perl source code (e.g. perl-5.8.8). > > Can you tell me how to locate it? http://search.cpan.org/CP

Perl syntax questions from source code in queue.pm

2005-05-18 Thread Siegfried Heintze
I'm looking at the source code for queue.pm and I'm quite surprised at how short it is. I have some questions about the syntax. (1) What does this colon (": shared") mean on line 69? I have not seen a colon used like this before. 67 sub new { 68 my $class =

Re: ok how about this: source code compressor

2013-02-15 Thread Brian Fraser
On Fri, Feb 15, 2013 at 8:19 PM, Rajeev Prasad wrote: > it not only decreases the size, to load in RAM, also make it 'little harder' > for cocky-novices to steal the tricks (perl guru's anyway dont care). > > > http://www.stunnix.com/prod/po/ (binary not present to download??) > http://blueboxte

Re: ok how about this: source code compressor

2013-02-18 Thread Rajeev Prasad
hmm i thought, it would load the whole script in memory and then execute. so a smaller file size will take less RAM... thx. From: Brian Fraser To: Rajeev Prasad Cc: perl list Sent: Friday, February 15, 2013 7:56 PM Subject: Re: ok how about this: source

Re: Got it.....Source code of Perl Modules?

2001-08-28 Thread Rahul Garg
Well, I got it myself... http://www.linpro.no/lwp/libwww-perl/ - Original Message - From: Rahul Garg To: [EMAIL PROTECTED] Sent: Wednesday, August 29, 2001 10:37 AM Subject: Source code of Perl Modules? From where can I get the source code for modules

Re: Got it.....Source code of Perl Modules?

2001-08-29 Thread register
Why do you need to go to the website for the source code when you can read it on your local machine (unless you have not installed those modules ... in which case I will shut up now) On Wed, Aug 29, 2001 at 11:13:33AM +0530, Rahul Garg shaped the electrons to read: > > Well, I got it

Re: Got it.....Source code of Perl Modules?

2001-08-29 Thread register
got it myself... > http://www.linpro.no/lwp/libwww-perl/ > > - Original Message - > From: Rahul Garg > To: [EMAIL PROTECTED] > Sent: Wednesday, August 29, 2001 10:37 AM > Subject: Source code of Perl Modules? > > > From where can I

RE: Got it.....Source code of Perl Modules?

2001-08-29 Thread Sid Malhotra
hth. Sid. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 5:09 AM To: Rahul Garg Cc: [EMAIL PROTECTED] Subject: Re: Got it.Source code of Perl Modules? If you need to install the modules and want to know where to get it to inst

Could someone help me with this source code?

2007-01-21 Thread Caduceus
Hi: I'm trying to run this perl script called "salter" on activestates komodo. I hope to use it with Mozilla Thunderbird. I've read Learning Perl, another perl book, went to perl.com, perl.org, pm.org, and cpan.com but nothing seems to help. I will show you the script. Any help will be apprecia

Re: Perl syntax questions from source code in queue.pm

2005-05-18 Thread John W. Krahn
Siegfried Heintze wrote: I'm looking at the source code for queue.pm Perl is case sensitive so that should be Queue.pm. and I'm quite surprised at how short it is. I have some questions about the syntax. (1) What does this colon (": shared") mean on line 69? I have not se

RE: Perl syntax questions from source code in queue.pm

2005-05-19 Thread Siegfried Heintze
Problem with Thread::Queue fixed. The sample program for Thread::Queue is incorrect (or maybe I just missed the ":shared" when declaring variable @Q). Well it is definitely incorrect in Larry's book: Programming Perl, 3rd Edition. Do they need a volunteer to update the documentation? This works f

Re: Could someone help me with this source code?

2007-01-21 Thread Tom Phoenix
On 1/20/07, Caduceus <[EMAIL PROTECTED]> wrote: I'm trying to run this perl script called "salter" on activestates komodo. I hope to use it with Mozilla Thunderbird. I've read Learning Perl, another perl book, went to perl.com, perl.org, pm.org, and cpan.com but nothing seems to help. I will s

Re: Could someone help me with this source code?

2007-01-22 Thread Caduceus
""Tom Phoenix"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On 1/20/07, Caduceus <[EMAIL PROTECTED]> wrote: > >> I'm trying to run this perl script called "salter" on activestates >> komodo. >> I hope to use it with Mozilla Thunderbird. I've read Learning Perl, >> another >>

Re: Could someone help me with this source code?

2007-01-22 Thread Tom Phoenix
On 1/22/07, Caduceus <[EMAIL PROTECTED]> wrote: What I want to know is would this unix perl script work in windows TIA What happened when you tried it? There's good information on Perl portability issues in the perlport manpage. Good luck with it! --Tom Phoenix Stonehenge Perl Training --

Advice wanted: source code to perl-postgres web app

2002-02-19 Thread GoodleafJ
more about it.) I am new at this though, and I think it would help me to be able to root though source code to an existing app, just to see how it all hooks together. Does anyone know of a postgresql-perl-apache application available for download with source code -- preferably well-commented? I ju

Source Code Control and Naming ThingiePoo was Re: Starting Perl

2003-11-13 Thread drieux
; and installed. But why not treat your 'perl code' like as if it were RealCode[tm]? The code that makes it out onto the 'production machines' should be treated with some respect, irregardless of the language used, eh no? So why not start an 'organizational process'

Re: where to find perl source code for learning purpose?

2003-04-09 Thread Stefan Lidman
caven wrote: > > Thank you for reading my passage! > I am a beginner and need read some source code for my better > understanding of perl. > > Thank you in advance! ^_^ http://www.cpan.org/ or write your own :-) try and error is a good way to learn. remember to d

Re: Source Code Control and Naming ThingiePoo was Re: Starting Perl

2003-11-13 Thread Chuk Goodin
On Thu, Nov 13, 2003 at 11:33:14AM -0800, drieux wrote: > So let us step back and look at the 'root cause problem' > > so I want to just 'fix it on the fly' > > and yes, foo.pl as an editable text file will allow you > simply open it with a text editor and WHACK a fix in. Unlike > RealCode[

Re: Source Code Control and Naming ThingiePoo was Re: Starting Perl

2003-11-13 Thread drieux
lib/perl"; docs/ # stuff that documents code stuff man/ # where manpages go... so that I can work on ideas that I find interesting that are not related to any specific 'paying gig' and/or 'proprietary code' - but things that make my life easier.

  1   2   >