🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). Log available at irclogs.raku.org/raku/live.html . If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 6 September 2022.
00:00 reportable6 left, reportable6 joined 00:50 Xliff joined
Xliff gist.github.com/Xliff/20ef0dce6be4...4aa6ad99c5 00:50
01:12 razetime joined 01:36 poohman joined 01:54 timo left 01:56 bigdata left 02:21 timo joined 02:59 timo left 03:00 timo joined 03:20 timo left 03:22 timo joined 03:28 timo left 03:37 timo joined 03:51 guifa_ left 04:15 razetime left 04:16 xinming left 04:17 xinming joined 04:37 rf left 05:01 razetime joined 05:07 jpn joined 05:09 siavash joined 05:11 jpn left 06:00 reportable6 left 06:02 reportable6 joined 06:35 razetime left, razetime joined 06:55 razetime left 06:56 razetime joined 07:00 Maylay left 07:03 Maylay joined 07:09 Sgeo left 07:24 sena_kun joined 07:52 jpn joined 08:08 Xliff left 08:10 El_Che left 08:11 El_Che joined 08:12 razetime left 08:13 teatwo left, teatwo joined 08:14 razetime joined 08:15 dakkar joined 08:16 Xliff joined
Xliff \o 08:16
Does anyone know how to create a Buf[uint8] from the same memory as a CArray[uint8]?
08:22 razetime left 08:34 jpn left
kjp Unfortunately not -- it would be really useful. 08:34
Being able to have methods like read-uint32 and so on available on CArrays would be nearly as good. 08:35
08:42 jpn joined 08:46 ab5tract joined 08:52 ab5tract left 09:09 ProperNoun left 09:34 gh2k joined 09:36 gh2k left 09:50 sena_kun left
nemokosch could Template::Mojo be also adopted? 09:57
09:58 jpn left
lizmat and yet another Rakudo Weekly News hits the Net: rakudoweekly.blog/2023/07/31/2023-...explained/ 10:01
10:04 jpn joined
nemokosch cool, so Andrew did make the idea I also had (Roman numeral task with grammars) 10:05
El_Che lizmat: thx, interesting discussion about regex 10:06
10:06 siavash left
Geth ¦ problem-solving: 2colours assigned to codesections Issue How is the design of the RakuAST interface discussed? github.com/Raku/problem-solving/issues/379 10:45
¦ problem-solving: lizmat unassigned from codesections Issue How is the design of the RakuAST interface discussed? github.com/Raku/problem-solving/issues/379 11:08
11:38 ProperNoun joined 12:00 reportable6 left, jpn left 12:01 reportable6 joined 12:41 jgaz left 12:42 jgaz joined 12:57 poohman left 13:01 MitarashiDango[m left 13:02 uzl[m] left, Matthew|m left, Orbstheorem left 13:03 jpn joined 13:15 Orbstheorem joined
Geth ¦ problem-solving: finanalyst assigned to coke Issue RakuDoc GAMMA revision open github.com/Raku/problem-solving/issues/380 13:22
13:23 Matthew|m joined 13:27 MitarashiDango[m joined 13:30 ab5tract joined 13:42 xinming left 13:44 xinming joined 14:35 Sgeo joined
Geth ecosystem/main: 2dcf6b6b30 | (Elizabeth Mattijsen)++ | META.list
Remove Template-Mojo, it will live in zef soon
14:53
14:53 uzl[m] joined 15:20 jpn left 15:25 jpn joined 15:58 poohman joined 16:03 razetime joined 16:04 razetime left, razetime joined, razetime left 16:31 rf joined 16:35 dakkar left 16:55 bigdata joined
Geth ¦ problem-solving: lizmat unassigned from coke Issue RakuDoc GAMMA revision open github.com/Raku/problem-solving/issues/380 17:23
17:55 evalable6 left 17:57 evalable6 joined 18:00 reportable6 left 18:01 reportable6 joined 18:34 sena_kun joined 18:54 vrurg left 19:07 vrurg joined 19:26 jpn left 19:29 poohman left 19:56 jpn joined 20:18 teatwo left, teatwo joined 20:20 jpn left 20:40 rf left 20:47 rf joined 20:51 rf left, rf joined 20:53 tea3po joined 20:57 teatwo left 21:04 rf left 21:05 jpn joined 21:09 jpn left 21:21 jpn joined 21:52 jpn left 21:54 jpn joined 21:59 jpn left 22:08 sena_kun left 22:17 ab5tract left 22:32 MitarashiDango[m left, Orbstheorem left, uzl[m] left 22:36 Matthew|m left 22:39 guifa_ joined
guifa_ can we access the unicode property Script_Extensions in RAku regex? 23:06
m: say 'A ticket to 大阪 costs ¥2000 👌.' ~~ m:g/<-:Script_Extensions("Latin")>+/
camelia (「A ticket to 大阪 costs ¥2000 👌.」)
guifa_ ^^ should yield <大阪 2000 👌> if I can figure out the syntax and we support 23:07
23:24 rf joined 23:40 NemokoschKiwi joined 23:43 jpn joined, NemokoschKiwi left 23:48 jpn left, timo left 23:49 vrurg_ joined, vrurg left 23:50 timo joined
guifa_ hmmm, trying to call a parent method isn't working as expected in RakaAST. 23:55
m: class A is Array { method AT-POS(|) { 'nope' } }; my @a is A = 1,2,3,4; say @a.Array::AT-POS(2), @a.AT-POS(2). 23:56
camelia ===SORRY!=== Error while compiling <tmp>
Malformed postfix call
at <tmp>:1
------> ; say @a.Array::AT-POS(2), @a.AT-POS(2).⏏<EOL>
guifa_ m: class A is Array { method AT-POS(|) { 'nope' } }; my @a is A = 1,2,3,4; say @a.Array::AT-POS(2), @a.AT-POS(2)
camelia 3nope
guifa_ if you construct a method call as name => RakuAST::Name.from-identifier-parts("Array","AT-POS"), it errors with a No such method `Array::AT-POS` 23:57