00:26 patrickb left 02:56 reportable6 left, notable6 left, unicodable6 left, bloatable6 left, greppable6 left, shareable6 left, nativecallable6 left, releasable6 left, benchable6 left, coverable6 left, committable6 left, quotable6 left, squashable6 left, statisfiable6 left, coverable6 joined, unicodable6 joined 02:57 reportable6 joined, greppable6 joined, statisfiable6 joined, bloatable6 joined, notable6 joined, nativecallable6 joined 02:58 quotable6 joined, squashable6 joined, releasable6 joined, committable6 joined, shareable6 joined 02:59 benchable6 joined 03:59 benchable6 left, shareable6 left, bloatable6 left, unicodable6 left, notable6 left, committable6 left, notable6 joined 04:00 benchable6 joined, committable6 joined, unicodable6 joined, shareable6 joined 04:02 bloatable6 joined 04:54 Xliff joined 05:58 shareable6 left, benchable6 left, bloatable6 left, notable6 left, committable6 left, unicodable6 left, squashable6 left, coverable6 left, greppable6 left, releasable6 left, statisfiable6 left, nativecallable6 left, reportable6 left, quotable6 left, committable6 joined 05:59 greppable6 joined, squashable6 joined, reportable6 joined, releasable6 joined, bloatable6 joined, statisfiable6 joined 06:00 unicodable6 joined, shareable6 joined, coverable6 joined, notable6 joined 06:01 nativecallable6 joined, benchable6 joined, quotable6 joined 07:44 bloatable6 left, releasable6 left, quotable6 left, benchable6 left, squashable6 left, greppable6 left, coverable6 left, committable6 left, unicodable6 left, nativecallable6 left, statisfiable6 left, reportable6 left, shareable6 left, notable6 left 07:45 quotable6 joined, unicodable6 joined, shareable6 joined, squashable6 joined, AlexDaniel left 07:46 greppable6 joined, bloatable6 joined, committable6 joined, nativecallable6 joined, coverable6 joined, statisfiable6 joined, releasable6 joined, benchable6 joined, notable6 joined 07:47 reportable6 joined 07:53 jmerelo joined 08:28 ZzZombo_ joined 08:30 ZzZombo left, ZzZombo_ is now known as ZzZombo 09:06 sena_kun joined 09:10 ExtraCrispy joined
[Tux] Rakudo version 2019.07.1-468-g0b8ede6c4 - MoarVM version 2019.07.1-315-gf10a31b43
csv-ip5xs0.804 - 0.817
csv-ip5xs-206.623 - 6.681
csv-parser22.798 - 23.665
csv-test-xs-200.431 - 0.454
test7.400 - 7.619
test-t1.753 - 1.799
test-t --race0.825 - 0.922
test-t-2030.301 - 32.850
test-t-20 --race9.614 - 10.037
09:33
10:14 ilogger2 joined 11:07 Altai-man_ joined
tbrowder has there been a moarvm release yet? 11:25
11:40 chloekek joined
chloekek I'm experiencing weird behavior from install-dist.p6. When I look at the source code of Rakudo I see this $perl_wrapper: github.com/rakudo/rakudo/blob/40b1...m6#L53-L56 11:42
But when I run install-dist.p6 to install a distribution (both install-dist.p6 and Rakudo are version 2019.07.1), I get a wrapper that looks like this: gist.github.com/chloekek/710fcb48a...122b251e67 11:43
This looks similar to the source code of the CompUnit::RepositoryRegistry.run-script method, but it's not entirely the same (uses exit run instead of require). Yet I can't find "exit run" mentioned anywhere in the source code of Rakudo 2019.07.1. 11:44
Where does the wrapper template come from and why is it not the same as $perl_wrapper? 11:45
Altai-man_ tbrowder, nope, the latest is 07 12:15
*07.1 to be precise
tbrowder thnx 12:48
and we're waiting for a new moarvm release to release rakudo, correct? 12:50
Altai-man_ yes 12:51
13:10 Altai-man_ left
lizmat tyil: looks like new CPAN uploads are now reported on twitter.com/raku_cpan_new 13:11
tyil lizmat: nice 13:41
I can make a service to scrape that :>
13:54 chloekek left 14:23 lucasb joined 14:35 chloekek joined 14:38 patrickb joined 15:12 MasterDuke joined 15:18 pmurias joined 15:39 ExtraCrispy joined 15:41 ExtraCrispy left, ExtraCrispy joined 15:42 ExtraCrispy left, ExtraCrispy joined 15:44 ExtraCrispy left, ExtraCrispy joined 15:45 ExtraCrispy left, ExtraCrispy joined 15:47 ExtraCrispy left, ExtraCrispy joined 15:48 ExtraCrispy left, ExtraCrispy joined 15:50 ExtraCrispy left 16:00 ExtraCrispy joined, ExtraCrispy left 16:01 ExtraCrispy joined 16:02 ExtraCrispy left, ExtraCrispy joined 16:04 ExtraCrispy left 16:50 pmurias left 16:57 Voldenet left 17:03 Voldenet joined, Voldenet left, Voldenet joined 17:57 sena_kun joined
lizmat tyil: I thought you already did ? 18:47
tyil lizmat: not for twitter 18:59
I have 2 other sources I'm scraping
lizmat ok
well... I have updated ~ 50 modules today sofar, and have not seen any mention of this on channel
19:07 Altai-man_ joined 19:10 sena_kun left 19:20 patrickb left
tyil hmm 19:21
let me hit it and see if it does anything with that
19:43 lucasb left 21:08 sena_kun joined 21:09 Altai-man_ left 21:47 chloekek left
lizmat hmmm... do we need capturing parens for a named capture or not? 22:50
m: "þor is mighty good" ~~ /is \s+ $<iswhat>=(\w+) \s+ good/; say $<iswhat>; say $0
camelia 「mighty」
Nil
lizmat m: "þor is mighty good" ~~ /is \s+ $<iswhat>=\w+ \s+ good/; say $<iswhat>; say $0
camelia 「mighty」
Nil
lizmat looks like it is not needed ? 22:51
I guess it does if you want to match across whitespace ?
m: "þor is mighty good" ~~ /is \s+ $<iswhat>=(\w+ \s+ good)/; say $<iswhat>; say $0
camelia 「mighty good」
Nil
22:52 tobs joined
jnthn Yes, but you could also use $<foo>=[...] 22:53
lizmat m: "þor is mighty good" ~~ /is \s+ $<iswhat>=[\w+ \s+ good]/; say $<iswhat>; say $0 22:57
camelia 「mighty good」
Nil
lizmat so why does the ( ) version not also populate $0 ? 22:58
feels a bit meh 22:59
anyways...
jnthn 'cus capturiung the same thing under two names would probably be an accident most of the time, I guess
lizmat m: "þor is mighty good" ~~ /is \s+ $<iswhat>=(\w+) \s+ (good)/; say $<iswhat>; say $0 23:00
camelia 「mighty」
「good」
lizmat reading that regex, you might think that "good" would be stored in $1 23:01
anyways, it just caught my attention :-) 23:02
lizmat goes off to get some shuteye
23:07 Altai-man_ joined 23:09 sena_kun left 23:53 Altai-man_ left