🦋 Welcome to Raku! raku.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: colabti.org/irclogger/irclogger_log/raku
Set by ChanServ on 14 October 2019.
Xliff say "\c[REGIONAL INDICATOR SYMBOL LETTER U]" ~ "REGIONAL INDICATOR SYMBOL LETTER S".uniparse 00:28
m: say "\c[REGIONAL INDICATOR SYMBOL LETTER U]" ~ "REGIONAL INDICATOR SYMBOL LETTER S".uniparse
camelia 🇺🇸
Xliff [Coke]++ 00:29
Xliff Nifty trick 00:29
[Coke] only need the uniparse if the string is dynamic. 02:01
cpan-raku New module released to CPAN! Test::Async (0.0.15) by 03VRURG 02:29
Geth doc: coke self-assigned sub form of `round` is not documented fully github.com/Raku/doc/issues/3555
frithnanth++ created pull request #3685: Add equality set operators
02:36
Geth ecosystem: a7343c4a8e | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Updates PSGI after testing
09:13
ecosystem/JJ-patch-1: fa87dbc8b8 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Moves to new location
09:15
ecosystem: JJ++ created pull request #559:
Moves to new location
Geth ecosystem: fa87dbc8b8 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Moves to new location
09:18
ecosystem: 9978f4ad47 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Merge pull request #559 from Raku/JJ-patch-1

Moves to new location
doc: 9571d63520 | (Fernando Santagata)++ (committed by Juan Julián Merelo Guervós) | 3 files
Add equality set operators
09:34
doc: 87e5ad6e2f | (Fernando Santagata)++ (committed by Juan Julián Merelo Guervós) | 3 files
More occurences of set operators
Geth doc/frithnanth-patch-2: 554c9d92cb | (Fernando Santagata)++ (committed using GitHub Web editor) | doc/Language/list.pod6
Update list.pod6
10:01
Geth ecosystem/JJ-patch-2: 7f3c2cabe9 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Updates to new URL for re-release
10:32
ecosystem: JJ++ created pull request #560:
Updates to new URL for re-release
ecosystem/JJ-patch-2: f0b8248c56 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Wow, hadn't noticed that...
10:35
ecosystem: 7f3c2cabe9 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Updates to new URL for re-release
10:36
ecosystem: f0b8248c56 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Wow, hadn't noticed that...
ecosystem: f3857b1870 | (Juan Julián Merelo Guervós)++ (committed using GitHub Web editor) | META.list
Merge pull request #560 from Raku/JJ-patch-2

Updates to new URL for re-release
cpan-raku New module released to CPAN! HTTP::Tiny (0.1.0) by 03JJATRIA 18:11
melezhik what is the simplest way to implement array of array in Raku, basically I need to generate a matrix of ints, where both columns and rows are sorted from left to the right and top to the bottom 20:45
tellable6 2020-10-30T08:24:55Z #raku <jmerelo> melezhik not totally sure what you're talking about...
2020-11-01T10:25:31Z #raku-dev <jmerelo> melezhik Hacktoberfest is over... We still need the testing, too.
melezhik ?
Xliff How can I stop "Malformed UTF8" errors globally? 21:54
I know I should use utf8-c8, but I am getting these errors without using encode/decode 21:55
Grinnz in a completely uneducated guess, your input might not be valid UTF-8 bytes?
Xliff Yep. I realize. 21:56
Grinnz what is it then?
Xliff Getting string data from a C-Struct is throwing the error.
Xliff Can't debug further unless I mute that and look at what's coming back. 21:57
I may need to use another method, then.
lizmat .tell melezhik you know of the existence of native shaped arrays, aka: my int @matrix[100;100] ? 23:17
tellable6 lizmat, I'll pass your message to melezhik