🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org #rakulang). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | Logs available at irclogs.raku.org/raku-dev/live.html | For MoarVM see #moarvm
Set by lizmat on 8 June 2022.
Xliff Raku-GLib suite timing statistics for Raku 2023.08.117.ge.958040.c.43 12:16
Using the following processor: 13th Gen Intel(R) Core(TM) i9-13900K
Total number of projects: 34 (514890 loc)
Total non-parallel compile times: 6990.270 (205.596 avg)
Total parallel compile times: 1105.375 (32.511 avg) 6.324x speedup
lizmat And yet another Rakudo Weekly hits the Net: rakudoweekly.blog/2023/09/04/2023-...september/ 12:24
NemokoschKiwi bisectable: my @foo = 1; @foo ,= 2; say @foo; 12:45
bisectable6 NemokoschKiwi, Will bisect the whole range automagically because no endpoints were provided, hang tight
NemokoschKiwi, More than 4 changes to bisect, please try a narrower range like old=2023.04 new=HEAD
NemokoschKiwi, Output on all releases: gist.github.com/d71b9a60e7c78012f4...44f50463f1
NemokoschKiwi it never worked 12:46
nemokosch github.com/Raku/roast/blob/master/...ign.t#L749 12:49
ugexe for a Encoding::Decoder implementation of base64 decoder how should the consume-*-chars method work? it wouldn't know what the text encoding is 19:36
tellable6 2023-08-31T19:17:51Z #raku <tbrowder__> ugexe if you have time would you mind looking at my doc PR #4354 at github.com/raku/doc? pr is for more info on using %?RESOURCES in run-time code. thnx
2023-09-01T13:48:14Z #raku <tbrowder__> ugexe i've updated the doc RESOURCES PR.
leont Things are tricky because the encoded form is text and the decoded form is bytes, which is the opposite from character set encoders 19:42
My intuition would suggest reuse may not be sensible here. 19:43
ugexe hmm, i guess for something with byte strings it would work 19:45
s/something/language/