New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Shlomi Fish
Hi good people, there's a new web-site for Perl beginners - perlmeme.org - http://perlmeme.org/ It has Howto's, Tutorials and FAQs for Perl beginners - freely available and freely usable. Its mission ( http://perlmeme.org/start_here/index.html ) is: It's lots of ideas that together define

Re: New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Randal L. Schwartz
Shlomi == Shlomi Fish [EMAIL PROTECTED] writes: Shlomi Hi good people, Shlomi there's a new web-site for Perl beginners - perlmeme.org - Shlomi http://perlmeme.org/ Unless it's hidden, I'm not finding any obvious link there to the defacto standard location for Perl beginners,

Re: New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Gavin Henry
Randal L. Schwartz said the following on 02/10/05 13:17: Shlomi == Shlomi Fish [EMAIL PROTECTED] writes: Shlomi Hi good people, Shlomi there's a new web-site for Perl beginners - perlmeme.org - Shlomi http://perlmeme.org/ Unless it's hidden, I'm not finding any obvious link there to

Re: New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Bill Stephenson
On Oct 2, 2005, at 7:17 AM, Randal L. Schwartz wrote: Shlomi Hi good people, Shlomi there's a new web-site for Perl beginners - perlmeme.org - Shlomi http://perlmeme.org/ Unless it's hidden, I'm not finding any obvious link there to the defacto standard location for Perl beginners,

Re: New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Ovid
--- Shlomi Fish [EMAIL PROTECTED] wrote: http://perlmeme.org/ In http://perlmeme.org/start_here/our_motivations.html there's a lot of talk about dealing with anti-Perl memes and, essentially, how to market Perl. Given that, I can only wonder why the site creators didn't bother to contact The

Re: How to enumerate modules loaded?

2005-10-02 Thread John W. Krahn
Siegfried Heintze wrote: How can I enumerate the file names of all the perl modules that are loaded in the current perl program? $ perl -le'print for keys %INC' $ perl -MB -le'print for keys %INC' XSLoader.pm Exporter.pm strict.pm B.pm $ perl -MBenchmark -le'print for keys %INC'

Need help with XML traversing....

2005-10-02 Thread Anish Kumar K.
Hi Anyone could tell some site where I could get the script in JAVA SCRIPT for traversing the XML with unlimited DEPTH(TREE). I do not want to use the XML:: Modules available in PERL. Say I want to print the name of the tree. I did with Hard Coding. That is not I wantI tried in recursive.

New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Shlomi Fish
Hi good people, there's a new web-site for Perl beginners - perlmeme.org - http://perlmeme.org/ It has Howto's, Tutorials and FAQs for Perl beginners - freely available and freely usable. Its mission ( http://perlmeme.org/start_here/index.html ) is: It's lots of ideas that together define

Re: use strict, aliases, local

2005-10-02 Thread Jeff 'japhy' Pinyan
On Oct 2, Gerard Robin said: use warnings; # use strict; $foo = 26; @foo = (here's, a, list); testsub (*foo); print (The value of \$foo is now $foo\n); sub testsub { local (*printarray) = @_; foreach $element ( @printarray) { print ($element\n); } $printarray = 61; } it gives the expected

Re: Urgent help in h2xs

2005-10-02 Thread sam joseph
Hi All I appreciate your help I have MSVC++ version 6.0 Can you be more precise in telling how to use VC++ for h2xs as i dont have much prior working experience in VC++ except for some basic C++ coding. Are there any steps required for executing h2xs on MSVC++ editor. I have made a default

Re: generating a wordlist from an array of arrays

2005-10-02 Thread Christer Ekholm
mark berger [EMAIL PROTECTED] writes: hey list. i stuck with gererating a wordlist from a changing multidimensional array. each entry in the array contains a list with the possible values. fe: @wordlayout = ((a, b),# possible values for 1st char (c),

Re: New Website for Perl Beginners: perlmeme.org

2005-10-02 Thread Gavin Henry
Randal L. Schwartz said the following on 02/10/05 13:17: Shlomi == Shlomi Fish [EMAIL PROTECTED] writes: Shlomi Hi good people, Shlomi there's a new web-site for Perl beginners - perlmeme.org - Shlomi http://perlmeme.org/ Unless it's hidden, I'm not finding any obvious link there to

BEGIN block question

2005-10-02 Thread Peter Rabbitson
Hello list, I have some trouble understanding why a BEGIN block behaves the way it does. Here are two files to demonstrate: == test = #!/usr/bin/perl use warnings; use strict; use test2 qw($var); our $var2 = 'second'; BEGIN { print I see $var but don't see $var2\n; }

Re: use strict, aliases, local

2005-10-02 Thread Gerard Robin
On Sun, Oct 02, 2005 at 08:49:30AM -0400 Jeff 'japhy' Pinyan wrote: ... If you REALLY want to use package variables instead of lexicals, then you need to follow the instructions in the 'strict' documentation for declaring your global variables: use strict; our ($foo,

Re: BEGIN block question

2005-10-02 Thread Peter Rabbitson
Just to sum it up, so I make sure I got what you are saying. From the previous e-mail I understand that: * Right after the use xxx statement is parsed the corresponding module which is 'use'd is fully parsed AND executed. This execution includes any top level code not enclosed in subroutines

Re: BEGIN block question

2005-10-02 Thread John W. Krahn
Peter Rabbitson wrote: Just to sum it up, so I make sure I got what you are saying. From the previous e-mail I understand that: To sum what up? What who is saying? What previous e-mail? John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: BEGIN block question

2005-10-02 Thread Charles K. Clarkson
Peter Rabbitson mailto:[EMAIL PROTECTED] wrote: : I have some trouble understanding why a BEGIN block behaves the : way it does. Here are two files to demonstrate: : [snip code] : What makes the difference? 'use' and 'BEGIN' blocks are compiled by Perl before our(). So your script is

FW: Re: Urgent help in h2xs

2005-10-02 Thread sam joseph
I have installed activeperl version 5.8.7 for win32 applications on windows 2000. I am using MSVC for compiling the programs and after running h2xs.bat when i run the makefile.pl command it gives me the following error message : Could not open 'lib/03_10_05.pm': No such file or directory at