ping TImo: buf as a print

2017-07-08 Thread ToddAndMargo
On 07/08/2017 02:58 AM, timo wrote: @ToddAndMargo here's how to create an email with attachments: my $image = "P5\n64 64\n255\n".encode("utf8") ~ Buf[int8].new( do for -32..^32 X -32..^32 -> ($x, $y) { 255 - (sqrt($x ** 2 + $y ** 2) * 4 % 255).ceiling });

Re: Net::SMTP is messed up

2017-07-08 Thread ToddAndMargo
On 07/08/2017 01:21 AM, Timo Paulssen wrote: The fix is now in rakudo master. HTH - Timo Awesome! Thank you! -- ~~ Computers are like air conditioners. They malfunction when you open windows ~~

[perl #131722] [REGRESSION]? Map and containerization (my %m := Map.new(‘a’, ‘X’); %m = 42)

2017-07-08 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #131722] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131722 > Code: my %m := Map.new(); %m = 42; say %m.perl Result (2015.12~HEAD)

Re: Net::SMTP is messed up

2017-07-08 Thread ToddAndMargo
On 07/08/2017 01:09 AM, Timo Paulssen wrote: It sounds like you're using a rakudo version that's not an official release? That seems quite risky for a security-related program. I am using the one that resides in Fedora's repository: $ rpm -qa rakudo rakudo-0.2017.06-1.fc25.x86_64 $ perl6 -v

Re: Net::SMTP is messed up

2017-07-08 Thread ToddAndMargo
On 07/08/2017 01:21 AM, Timo Paulssen wrote: The fix is now in rakudo master. HTH - Timo Now to get Fedora to update! -- ~~ Computers are like air conditioners. They malfunction when you open windows ~~

[perl #131714] [BUG] Segfault seemingly related to MVMCallCapture's gc_mark, and async

2017-07-08 Thread Justin DeVuyst via RT
On Sat, 08 Jul 2017 10:45:26 -0700, c...@zoffix.com wrote: > Does it still happen after this commit > https://github.com/rakudo/rakudo/commit/f6d4fbd24b ? > > I see you have a couple of `run`s in there which use Proc::Async under > the hood. Seems to fix it. Now I'm up against some other error

[perl #131714] [BUG] Segfault seemingly related to MVMCallCapture's gc_mark, and async

2017-07-08 Thread Zoffix Znet via RT
Does it still happen after this commit https://github.com/rakudo/rakudo/commit/f6d4fbd24b ? I see you have a couple of `run`s in there which use Proc::Async under the hood.

[perl #131714] [BUG] Segfault seemingly related to MVMCallCapture's gc_mark, and async

2017-07-08 Thread Zoffix Znet via RT
Does it still happen after this commit https://github.com/rakudo/rakudo/commit/f6d4fbd24b ? I see you have a couple of `run`s in there which use Proc::Async under the hood.

[perl #131717] [BUG] incorrect sum for large numbers

2017-07-08 Thread Brian Duggan via RT
On Fri, 07 Jul 2017 19:24:48 -0700, c...@zoffix.com wrote: > [..] I'm going to reject both tickets as not a bug. > It's just a natural outcome of treating limited-precision numbers as > 100% precise and getting the prize of floating point noise in return. Sounds good to me! Brian

Re: Net::SMTP is messed up

2017-07-08 Thread Timo Paulssen
The fix is now in rakudo master. HTH - Timo

Re: Net::SMTP is messed up

2017-07-08 Thread Timo Paulssen
This comes from IO::Socket not properly handling non-list values of the nl-in property. This change came in with the recent refactor to make encoders customizable in perl6 code. I'm going to push a fix to rakudo soon. It sounds like you're using a rakudo version that's not an official release? Th