Re: is there a limit to a s/ ?

2018-08-11 Thread Simon Proctor
One thing your example you'll lose the second <\div>. ff is great for working though lines of data. Going back to your previous example say we have a file like. A B C D E F G And we want to print the lines from C to F we can write. for "file".IO.lines { print if /C/ ff /F/; } Each line in t

Data::Dump::Tree maintenance

2018-08-11 Thread JJ Merelo
Dear Mr. Khemir: I have noticed that there are a number of PRs and issues in the module mentioned above, including mine, which you apparently couldn't address. I have made several modifications to the module, and would be willing to take over it. Maybe you could give me a push bit in the repo? My G

[perl #131003] [SEVERE][SEGV] Heap corruption when using Gumbo

2018-08-11 Thread Stefan Seifert via RT
I patched Gumbo to no longer create an XML tree but just a bunch of hashes, yet the error remains. So it's clearly not the XML module causing the issue but some NativeCall Gumbo thing. Gumbo makes heavy use of structs and nested structs. I guess the latter could be worth having a look as that's

Making sure Perl6 is in all of the Wikipedia examples articles

2018-08-11 Thread Benji
Here are all the ones I've found that need Perl6 examples: https://pastecode.xyz/view/5a4e619d

[perl6/specs] 26266b: Update builder example to use full namespace

2018-08-11 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 26266b1bc69cd15b58ab03338af7f3938052b666 https://github.com/perl6/specs/commit/26266b1bc69cd15b58ab03338af7f3938052b666 Author: Nick Logan Date: 2018-08-11 (Sat, 11 Aug 2018) Changed paths: M S22-pac

Re: is there a limit to a s/ ?

2018-08-11 Thread yary
I'm happy when I can use the .. and ... operators in p5, thanks for the tip on the p6 analog! -y On Sat, Aug 11, 2018 at 1:44 AM, Simon Proctor wrote: > One thing your example you'll lose the second <\div>. > > ff is great for working though lines of data. Going back to your previous > example s