🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | Logs can be inspected at colabti.org/irclogger/irclogger_log/raku-dev | For MoarVM see #moarvm
Set by lizmat on 24 April 2021.
sena_kun pinb rba 08:00
lizmat notable6: weekly 11:44
lizmat drops a pin 11:46
moritz catches the pin 11:47
lizmat notable6: weekly 12:10
so who runs notable6 ?
MasterDuke AlexDaniel`: ^^^ 13:16
lizmat and another Rakudo Weekly News hits the Net: rakudoweekly.blog/2021/04/26/2021-...leastable/ 13:24
brrt lizmat++ 13:25
AlexDaniel` Ahmmm something wong with notable? 13:26
notable6: help
AlexDaniel` notable6: help 13:28
notable6 AlexDaniel`, Like this: notable6: weekly rakudo is now 10x as fast # See wiki for more examples: github.com/Raku/whateverable/wiki/Notable
AlexDaniel` Notable6: weekly
notable6 AlexDaniel`, 2 notes: 2021-04-21T08:05:47Z <El_Che>: twitter.com/rakuconference/status/...57664?s=19 ; 2021-04-24T20:47:45Z <lizmat>: twitter.com/koto_san_kana/status/1...1617976324
AlexDaniel` It just needed a kick for some reason, I think it would have rejoined by itself given enough time 13:29
Any other boys that are down?
lizmat AlexDaniel`++
I waited for ~ 2 hours and used the log to figure out weekly mentions
notable6: weekly reset 13:30
notable6 lizmat, Moved existing notes to “weekly_2021-04-26T13:30:08Z”
AlexDaniel` Bots** damn autocorrect 13:32
Ok tellable seemed to be down too, everyone else rejoined by themselves
Please let me know if it happens again, usually they're able to rejoin quicker 13:33
Back to wörk, bye
MasterDuke lizmat: "instalment" -> "installment" 13:43
lizmat br -> us :-) 13:47
afk&
MasterDuke ha 13:48
[Tux] Rakudo v2021.04-5-ga0ea55b5f (v6.d) on MoarVM 2021.04-1-gce733ddf8
csv-ip5xs0.841 - 0.842
csv-ip5xs-208.104 - 8.688
csv-parser25.627 - 26.256
csv-test-xs-200.379 - 0.379
test8.181 - 8.269
test-t1.940 - 2.048
test-t --race0.909 - 0.912
test-t-2034.217 - 34.480
test-t-20 --race9.852 - 10.933
16:13
grimler32 any universe editors with access to the 4 bit 3 dimensional god code at the multiverse level?
lizmat 🦋 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 can be inspected at colabti.org/irclogger/irclogger_log/raku-dev | For MoarVM see #moarvm
nine m: class CStr is repr("CStr") { multi method new(Str $orig) { use nqp; nqp::box_s(nqp::unbox_s($orig), self.WHAT) } }; CStr.new("a string") 20:25
camelia Default constructor for 'CStr' only takes named arguments
in block <unit> at <tmp> line 1
nine Huh?
m: class CS is repr("CStr") { method new(Str $orig) { "a string" } }; CS.new("a string") 20:32
camelia Cannot unbox a type object (CS) to a str.
in method new at <tmp> line 1
in block <unit> at <tmp> line 1
nine But:
m: class CS is repr("CPointer") { method new(Str $orig) { "a string" } }; CS.new("a string")
camelia ( no output )