Re: learning resources for perl6 beginner

2019-08-24 Thread Wesley Peng
Thanks for all great books and their authors. I downloaded these two and have been reading them. https://deeptext.media/i/perl6-at-a-glance/perl6-at-a-glance-downloadable.pdf https://github.com/LaurentRosenfeld/thinkperl6/raw/master/PDF/thinkperl6.pdf regards. On Sun, Aug 25, 2019 at 2:50 AM

Re: learning resources for perl6 beginner

2019-08-24 Thread Wesley Peng
Thank you William. That's awesome! On Sun, Aug 25, 2019 at 12:07 AM William Michels wrote: > Hi Wesley, > > Andy's being modest. In addition to the official Perl6 docs at: > http://docs.perl6.org (as Andy suggests), Check out his many Perl6 > resources (including videos) at: > >

p6doc issue - #2387

2019-08-24 Thread Parrot Raiser
https://github.com/perl6/doc/issues/2387 Coke closed the issue , but for me, "p6doc build" is still broken. It looks as though whatever was "fixed in HEAD" hasn't made it into Rakudo*. Could we have details (or at least an issue number) to help implement the fix, please?

Re: learning resources for perl6 beginner

2019-08-24 Thread Laurent Rosenfeld via perl6-users
Just one additional point: *Think Perl 6* is available in printed form (e.g. from Amazon), but is also available for free download in PDF format: https://greenteapress.com/wp/think-perl-6/ Le sam. 24 août 2019 à 20:32, Parrot Raiser <1parr...@gmail.com> a écrit : > Some books: > > "Think Perl

Re: learning resources for perl6 beginner

2019-08-24 Thread Parrot Raiser
Some books: "Think Perl 6"http://shop.oreilly.com/product/0636920065883.do "Learning Perl 6"http://shop.oreilly.com/product/0636920062776.do "Perl 6 At a Glance" https://perl6.online/perl6-at-a-glance/ (which Andrew did mention) On 8/24/19, William Michels via perl6-users

Executing remote command via ssh

2019-08-24 Thread Mario Galindez
Folks, I need to execute a program in a remote machine, that takes its input from STDIN. I created a user in such remote machine, and set my program as the shell for that account (so I don't need to provide shell access). On my local node, I have this program: #!/usr/bin/perl use

Re: Lookbehind assertion weirdness

2019-08-24 Thread William Michels via perl6-users
Lookahead/lookbehind assertions: maybe the mnemonic "ABBA" will help? In Markdown: 'Use *A*fter for a look-*B*ehind, use *B*efore for a look-*A*head', or... 'For a look-*A*head' use *B*efore, for a look-*B*ehind" use *A*fter'. As a trivial example of the first mnemonic in practice, below are

Re: learning resources for perl6 beginner

2019-08-24 Thread William Michels via perl6-users
Hi Wesley, Andy's being modest. In addition to the official Perl6 docs at: http://docs.perl6.org (as Andy suggests), Check out his many Perl6 resources (including videos) at: https://perl6.online/ https://perl6.online/contents/ https://perl6.online/category/talks/ I'm using Andy Shitov's "Perl6

Re: learning resources for perl6 beginner

2019-08-24 Thread Andrew Shitov
https://perl6.online/perl6-at-a-glance/ http://docs.perl6.org On Sat, 24 Aug 2019 at 13:13, Wesley Peng wrote: > Hello, > > I am a programmer most time writing code with c/perl 5/ruby. > > I know perl6 is coming to the world, have the interest to take a glance on > it. > > For beginner of

learning resources for perl6 beginner

2019-08-24 Thread Wesley Peng
Hello, I am a programmer most time writing code with c/perl 5/ruby. I know perl6 is coming to the world, have the interest to take a glance on it. For beginner of perl6, can you suggest some resources including online documentation or books to get start? thanks & regards Wesley