Re: Where to put example script of my CPAN distribution

2014-10-09 Thread Sebastien Feugere
You can put a simple example in the POD's "SYNOPSYS" section of your module as you can find on most of Perl modules (check a random CPAN module to see). See : * http://juerd.nl/site.plp/perlpodtut * http://perldoc.perl.org/perlpodstyle.html ~$&bast1 On Thu, Oct 9, 2014 at 10:52 PM, Alex Bec

Re: Good pointers.

2014-10-01 Thread Sebastien Feugere
For logging, please take a look at this tutorial that describe a convenient answer to this problem, based on the use of Log::Minimal : http://smonff.github.io/blog/2013/09/24/how-to-log-easily-with-log-minimal-and-file-stamped/ Note : I wrote it Le 28 sept. 2014 20:58, "Santosh Kumar" a écrit :

Re: About staying brushed up on perl

2014-07-21 Thread Sebastien Feugere
I strongly recommend to use a cheat sheet or pocket reference books as this one http://shop.oreilly.com/product/0636920018476.do. Personally, I use a french language "Perl Moderne" pocket reference book (http://perlmoderne.fr/) that helps me almost daily. I really love this way to learn because it

Re: Impossible to install Perl modules

2014-07-08 Thread Sebastien Feugere
It's strongly recommended to use Cpanminus, that will make your life easier. Also, take a look at local::lib and eventually Perlbrew. https://metacpan.org/pod/local::lib http://perlbrew.pl/ ~$&bast1 On Tue, Jul 8, 2014 at 8:59 PM, Sam wrote: > On 07/08/2014 05:07 AM, Bob Sauvage wrote: > >>

Re: Error in installing "Bundle::Expect" as dependency for some other module using CPAN

2014-05-28 Thread Sebastien Feugere
Successfully installed it using "cpanm Net::Netconf". You should take a look at cpanminus, it will make your working life easier. https://metacpan.org/pod/App::cpanminus Note that it fails if you omit the capital "N" in "Netconf". If it don't work for you, you could maybe post the full failure lo

Re: TDD and BDD with perl scripts

2014-03-31 Thread Sebastien Feugere
> Also of possible interest is Curtis "Ovid" Poe's > https://github.com/Ovid/zen-of-test-suites ("Serious testing for serious > software" ) which focuses on large-scale test suites. +1 for any Curtis "Ovid" Poe things about tests. For beginners, he wrote a book "Beginning Perl" (for sale) with a f

Re: TDD and BDD with perl scripts

2014-03-30 Thread Sebastien Feugere
Hi, You can start here : http://modernperlbooks.com/books/modern_perl/chapter_09.html Then, you can take a look at the Test Anything Protocol (TAP) concept. After that, you can check the Test::SImple and Test::More. http://testanything.org/ https://metacpan.org/pod/Test::Simple

Re: Brand New

2014-03-23 Thread Sebastien Feugere
Because it requires us to get a Perl interpreter in our browsers but this is not a common thing (even if some experiments exists, but I believe it would include several security issues). The mentionning "required Javascript" is the browser-side one. As far as I know, Perl is more used as a server-s

Re: OO perl programming

2014-02-16 Thread Sebastien Feugere
Chromatic Modern Perl [1] + Ovid's Beginning Perl [2] [1] http://modernperlbooks.com/books/modern_perl/chapter_00.html [2] http://shop.oreilly.com/product/9781118013847.do Sébastien On Thu, Feb 6, 2014 at 5:30 AM, kavita kulkarni wrote: > Can somebody suggest me good book to learn/practice obj

Re: Creating a new module

2014-01-01 Thread Sebastien Feugere
I would recommend a brian d. foy presentation from YAPC::EU 2010 : http://slideshare.net/brian_d_foy/create-and-upload-to-cpan I've use it with Module::Starter recently to create my fist module and share it on CPAN and it has been very effective. Sébastien On Tue, Dec 31, 2013 at 5:03 AM, Shlo