🦋 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.
melezhik. SmokeMachine: I guess you try to build framework for EDA? 08:13
Raku framework 08:14
SmokeMachine sorry, EDA? 08:20
melezhik. Yeah - event driven architecture 08:32
SmokeMachine ah! ok, sorry... yes... that's the idea! 08:36
did you have the chance to take a look? it's still at the very baginning... 08:37
melezhik. Yeah . I looked briefly. Without digging into. I’d recommend to postulate the main idea In the beginning of Readme. Something like - Sourcing - Raku based framework for EDA and distributed systems . It implements following architecture patterns - ERA, Saga, CQRS . And would give it a reference to the mentioned patterns docs/wiki page. It would help unprepared users to get the context first )) But overall it looks 08:46
great 👍
SmokeMachine that's a very good suggestion! Thanks! 08:47
melezhik. 👍 08:48
ab5tract landyacht: I'm working on getting a 2025.1 beta up 09:26
ab5tract landyacht: here it is! I hope this gets a lot smoother once we are hooked into the intellij marketplace 10:10
antononcube @melezhik. “EDA” can also mean “Experimental Data Analysis“. 15:24
melezhik. Or - “Extremely Difficult Architecture/Analysis” ))) 15:25
.landyacht. ab5tract - awesome, I'll check it out soon 17:05
for the time being I went back to the last release of Comma Complete
librasteve I am still running comma complete ... but sunsetting and putting new stuff (eg jupyter nb plugins and so on in IntelliJ + Comma Plugin) 17:32
Xliff Hello. 23:44
How can I MUTE the "Use of uninitialized value" warnings? 23:45
lizmat m: my $a; say $a ~ "foo" 23:50
camelia Use of uninitialized value element of type Any in string context.
Methods .^name, .raku, .gist, or .say can be used to stringify it to something meaningful.
foo
in block <unit> at <tmp> line 1
lizmat m: my $a; quietly say $a ~ "foo"
camelia foo
lizmat alternately: 23:51
m: CONTROL { .resume }; my $a; say $a ~ "foo"
camelia foo
lizmat possibly check for type of exception
m: CONTROL { .resume if $_ ~~ CX::Warn }; my $a; say $a ~ "foo" 23:52
camelia foo
lizmat afk&