Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
https://github.com/perl-foundation-outreach/gsoc-2021-ideas/issues Here you go Cheers El dom, 31 ene 2021 a las 8:56, JJ Merelo () escribió: > Hi, > > El sáb, 30 ene 2021 a las 23:14, ToddAndMargo via perl6-users (< > perl6-users@perl.org>) escribió: > >> On 1/30/21 9:11 AM, JJ Merelo wrote:

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
Hi, El sáb, 30 ene 2021 a las 23:14, ToddAndMargo via perl6-users (< perl6-users@perl.org>) escribió: > On 1/30/21 9:11 AM, JJ Merelo wrote: > > Anyway, my 2¢ is that in the grand scheme of things, compile time is not > > that important. > > It drives me around the bend and wastes a lot of my >

Re: I need help with ~~m/

2021-01-30 Thread Patrick R. Michaud
On Sat, Jan 30, 2021 at 05:52:54PM -0800, Joseph Brenner wrote: > Which means there's some potential confusion if you really need > to match quotes: > > my $str = 'string_632="The chicken says--", voice="high"'; > > say > $str ~~ m:g{ ( " .*? " ) }; # False > say > $str

Re: I need help with ~~m/

2021-01-30 Thread ToddAndMargo via perl6-users
On 1/30/21 5:52 PM, Joseph Brenner wrote: I think ToddAndMargo was thinking of perl5 regexes, where [.] is a good way of matching a literal dot-- though myself, I'm more inclined to use \. In Raku, the square brackets just do non-capturing grouping much like (?: ... } in perl5. To do a

Re: I need help with ~~m/

2021-01-30 Thread Joseph Brenner
> My mistake was think that if a value at the end > did not exist, I was given back a null. Now I know > to look for a false. > > say "1.33" ~~ m/(\d+) ** 3..4 % "." / > False That pattern says there has to be three or four fields of digits, so if you don't have that many, the entire match has

Re: I need help with ~~m/

2021-01-30 Thread Joseph Brenner
I think ToddAndMargo was thinking of perl5 regexes, where [.] is a good way of matching a literal dot-- though myself, I'm more inclined to use \. In Raku, the square brackets just do non-capturing grouping much like (?: ... } in perl5. To do a character class, you need angles around the

Re: perl.com's registration appears to have been hijacked

2021-01-30 Thread Wesley Peng
Nice sender domain. You would better sell it to ruby language developer. On Sun, Jan 31, 2021, at 5:20 AM, Earl Ruby wrote: > Re-sending using the "from" address that's subscribed to the list... > > On Fri, Jan 29, 2021 at 3:07 PM Earl Ruby wrote: >> A glance at the domain records show the

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread ToddAndMargo via perl6-users
On 1/30/21 9:11 AM, JJ Merelo wrote: You can also suggest project ideas in the "issues" of the repo; Would you send me a link for such.

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread ToddAndMargo via perl6-users
On 1/30/21 9:11 AM, JJ Merelo wrote: Anyway, my 2¢ is that in the grand scheme of things, compile time is not that important. It drives me around the bend and wastes a lot of my time. It is also embarrassing to hand something like that over to a customer.

Re: perl.com's registration appears to have been hijacked

2021-01-30 Thread Earl Ruby
Re-sending using the "from" address that's subscribed to the list... On Fri, Jan 29, 2021 at 3:07 PM Earl Ruby wrote: > A glance at the domain records show the contact information is now > "REDACTED FOR PRIVACY". Prior to the change Tom Christiansen was listed as > the domain administrative

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
You can also suggest project ideas in the "issues" of the repo; someone else will have to pick them up and be willing to mentor them, though. Anyway, my 2¢ is that in the grand scheme of things, compile time is not that important. Look at rust. El sáb, 30 ene 2021 a las 10:59, ToddAndMargo via

Re: perl.com's registration appears to have been hijacked

2021-01-30 Thread Elizabeth Mattijsen
See also: https://log.perl.org/2021/01/perlcom-hijacked.html The site is currently hosted at https://perldotcom.perl.org > On 30 Jan 2021, at 00:07, Earl Ruby wrote: > > A glance at the domain records show the contact information is now "REDACTED > FOR PRIVACY". Prior to the change Tom

perl.com's registration appears to have been hijacked

2021-01-30 Thread Earl Ruby
A glance at the domain records show the contact information is now "REDACTED FOR PRIVACY". Prior to the change Tom Christiansen was listed as the domain administrative contact. https://www.theregister.com/2021/01/28/perl_hijacking/

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread ToddAndMargo via perl6-users
On 1/30/21 12:11 AM, JJ Merelo wrote: Hi, You probably know that GSoC is an annual event where Google provides grants for students to help develop new stuff in open source organizations. https://summerofcode.withgoogle.com/ We participated a couple of

Re: I need help with ~~m/

2021-01-30 Thread ToddAndMargo via perl6-users
On 1/30/21 1:03 AM, William Michels via perl6-users wrote: Hi Todd (and JJ), On Fri, Jan 29, 2021 at 11:58 PM JJ Merelo wrote: El sáb, 30 ene 2021 a las 7:24, ToddAndMargo via perl6-users () escribió: Hi All, rakudo-pkg-2020.12-01.x86_64 Why does this work? > $x = "1.33.222.4";

Re: I need help with ~~m/

2021-01-30 Thread William Michels via perl6-users
Hi Todd (and JJ), On Fri, Jan 29, 2021 at 11:58 PM JJ Merelo wrote: > > > > El sáb, 30 ene 2021 a las 7:24, ToddAndMargo via perl6-users > () escribió: >> >> Hi All, >> >> rakudo-pkg-2020.12-01.x86_64 >> >> Why does this work? >> >> > $x = "1.33.222.4"; >> 1.33.222.4 >> > $x ~~ m/ (<:N>+) [.]

We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
Hi, You probably know that GSoC is an annual event where Google provides grants for students to help develop new stuff in open source organizations. https://summerofcode.withgoogle.com/ We participated a couple of years ago, and got a lot of help for the documentation and other stuff. Last year