00:46 pmurias left
Geth rakudo: tbrowder++ created pull request #3310:
Implement log2 function
02:26
04:05 committable6 left, notable6 left, shareable6 left, reportable6 left, coverable6 left, squashable6 left, unicodable6 left, benchable6 left, releasable6 left, statisfiable6 left, quotable6 left, nativecallable6 left, bloatable6 left 04:06 benchable6 joined, bloatable6 joined, statisfiable6 joined, unicodable6 joined 04:07 quotable6 joined 04:08 nativecallable6 joined, coverable6 joined, greppable6 joined, releasable6 joined, notable6 joined, committable6 joined, shareable6 joined, squashable6 joined 04:09 reportable6 joined 05:36 maettu joined 09:07 sena_kun joined
lizmat hmmm... did we lose bisectable6 ? 09:19
AlexDaniel lizmat: restarted let's see if it joins 09:47
it probably failed to connect because freenode didn't like that many connections :)
09:48 bisectable6 joined
AlexDaniel thank you bisectable6 for coming back :) 09:49
bisectable6 AlexDaniel, You're welcome!
|Tux| Rakudo version 2019.07.1-479-ged8f5141f - MoarVM version 2019.07.1-317-g1b2f72e5e
csv-ip5xs0.706 - 0.726
csv-ip5xs-206.241 - 6.503
csv-parser21.768 - 21.961
csv-test-xs-200.423 - 0.423
test6.886 - 7.052
test-t1.807 - 1.895
test-t --race0.792 - 0.915
test-t-2029.499 - 30.119
test-t-20 --race9.503 - 9.602
09:50
AlexDaniel oh wow 🎉🎉🎉 09:52
first sponsor on github!
sena_kun: ♥♥♥
sena_kun AlexDaniel, you are welcome! 09:53
github has finally unblocked my account...
AlexDaniel btw github did match the contribution, so it says 14.44€ (16$) per month
ok maybe shouldn't have revealed that :) 09:54
sena_kun : )
AlexDaniel but it's weird, it doesn't really list their part anywhere (they just say that they'll match contributions, but it doesn't show up) 09:55
but when you look at the final overview the amount is just different 09:56
10:02 Altai-man_ joined 10:05 sena_kun left
AlexDaniel jnthn: btw I'm now learning that whole organizations can be sponsored (I think?). See github.com/sponsors/rakudo/waitlist 10:07
more info: help.github.com/en/github/supporti...ganization 10:14
Altai-man_: maybe consider adding an issue template to github.com/croservices/cro that has a link to github.com/issues?utf8=%E2%9C%93&a...roservices 10:18
or maybe a link to all existing issues from cro.services/ can help? 10:19
that /issues feature is really helpful when you have to deal with multiple repos, I wish github linked to it by default from org pages 10:20
(why: I went to github.com/croservices/cro/issues to take a look at issues and realized that some of them are moved to/created at other repos) 10:22
12:03 sena_kun joined 12:04 Altai-man_ left
Geth ¦ problem-solving: bbkr assigned to JJ Issue "Path to Raku" is missing change of linux module namespaces github.com/perl6/problem-solving/issues/130 12:20
12:27 lucasb joined 12:50 Kaiepi left, Kaiepi joined
lizmat bisectable6: my $a = Str(<123>); say $a.^name 13:07
bisectable6 lizmat, On both starting points (old=2015.12 new=ed8f514) the exit code is 0 and the output is identical as well
lizmat, Output on both points: «Str␤»
lizmat bisectable6: old=2019.03 my $a = Str(<123>); say $a.^name
bisectable6 lizmat, On both starting points (old=2019.03 new=ed8f514) the exit code is 0 and the output is identical as well
lizmat, Output on both points: «Str␤»
lizmat bisectable6: my $a = Str($*USER); say $a.^name
bisectable6 lizmat, Bisecting by output (old=2015.12 new=ed8f514) because on both starting points the exit code is 0
lizmat, bisect log: gist.github.com/ed9af9ccb2b140d667...ca8e6dee02 13:08
lizmat, (2017-06-13) github.com/rakudo/rakudo/commit/b0...b68bfcfd31
nine lizmat: there used to be difference in between v.6c mode and v.6d. There's a decontrv_op sub that emits a p6decontrv versus a p6decontrv_6c op based on language version. jnthn's shortcut seems to miss this distinction. 13:24
lizmat well, I can't seem to find that code in HEAD anymore, but then again I'm not functioning at 100% atm 13:25
nine me neither :/ On the latter 13:29
github.com/rakudo/rakudo/blob/mast....nqp#L3923
The difference between decontrv and decontrv_v6c seems to be about the special handling of Proxy 13:33
14:02 Altai-man_ joined 14:04 sena_kun left 14:14 cognominal joined 14:22 sjn joined 14:55 cognomin_ joined 14:59 cognominal left 16:03 sena_kun joined 16:05 Altai-man_ left 16:13 ExtraCrispy joined 16:46 Xliff left 17:07 entonian joined 17:08 entonian left
Kaiepi shit, misread the issue i just posted a comment in 17:34
would it be worth making a problem solving issue about what i posted though? it was about how the MOP still requires knowing nqp if you're writing your own HOW, even with Metamodel::Primitives 17:36
17:42 patrickb joined 17:47 ExtraCrispy_ joined 17:48 ExtraCrispy_ left, ExtraCrispy_ joined 17:49 ExtraCrispy_ left 17:51 ExtraCrispy left 17:54 ExtraCrispy joined 17:57 lizmat joined 18:02 Altai-man_ joined 18:04 sena_kun left 18:05 ExtraCrispy left 18:49 patrickb left
AlexDaniel Kaiepi: can't answer without some context :) 19:12
link?
Kaiepi AlexDaniel, i deleted it, but the gist is when writing your own HOW, rakudo's metamethods often expect arrays and hashes to have a repr you can use nqp's array and hash ops with, not P6opaque like List and Hash have 19:18
this means metaroles like Metamodel::TypePretense require you to either use nqp or use a type with the right repr to represent arrays and hashes with 19:21
this was the example i used. this throws, but if you change it so it uses an nqp::list instead of a List it works fine hastebin.com/torazomapo.rb 19:23
AlexDaniel I see…
how did you get into this issue? 19:24
anyway, yeah, please submit a ticket
19:30 Kaiepi left, Kaiepi joined 19:31 Kaiepi left 19:32 Kaiepi joined 19:33 Kaiepi left 19:34 Kaiepi joined 19:35 Kaiepi left, Kaiepi joined
Kaiepi i found this while toying with the idea of implementing a HOW for typeclasses 19:49
19:57 lucasb left 19:59 Kaiepi left 20:00 Kaiepi joined 20:01 Kaiepi left 20:02 Kaiepi joined, Kaiepi left 20:03 sena_kun joined 20:04 Altai-man_ left
nine Kaiepi: I don't think this is a problem solving issue. It's plain bugs that need fixing and the fix is usually some deconts and hllize. See commit 7bc6e46fbd47d7a3c5d51225348bac756d3b7ff6 20:42
tellable6 nine, I'll pass your message to Kaiepi
20:49 lizmat left 21:09 lucasb joined 21:15 epony joined
vrurg_ .tell AlexDaniel Don't know what's the status of moar release, but I hope to have raku executable in the build system by today/tomorrow. 21:22
tellable6 vrurg_, I'll pass your message to AlexDaniel
AlexDaniel vrurg_: nice, I'll include that 21:24
22:02 Altai-man_ joined 22:05 sena_kun left 22:28 b2gills left 22:31 b2gills joined 23:07 vrurg joined, vrurg left 23:08 vrurg_ is now known as vrurg 23:18 vrurg left 23:20 vrurg joined 23:31 lizmat joined 23:57 cognominal joined