🦋 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:16 sena_kun left 01:07 Manifest0 left 02:07 kylese left, hulk joined 02:12 yewscion joined 02:17 yewscion left 02:23 zetaaaa left 03:12 jpn joined 03:15 hulk left, kylese joined 03:16 guifa left 03:17 jpn left 04:03 jaguart joined 04:05 ryoskzypu left 04:06 ryoskzypu joined 04:24 guifa joined 04:25 yewscion joined 04:30 yewscion left 05:00 peder_ left 05:03 peder_ joined 05:16 Guest60 joined 05:51 kylese left 05:52 guifa left 05:56 kylese joined 06:00 Aedil joined 06:59 jpn joined 07:03 jpn left 07:08 silug left 07:16 nil78 left, silug joined 07:20 nil78 joined 07:22 [Coke] left 07:47 Aedil left 07:49 [Coke] joined 07:50 jpn joined 08:09 kst left 08:11 jpn left
melezhik. SmokeMachine: I guess you try to build framework for EDA? 08:13
Raku framework 08:14
08:16 kst joined 08:19 Guest60 left
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
08:40 nil78 left 08:42 Sgeo left, Manifest0 joined
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 👍
08:47 peder_ left
SmokeMachine that's a very good suggestion! Thanks! 08:47
melezhik. 👍 08:48
08:48 nil78 joined 09:25 dakkar joined
ab5tract landyacht: I'm working on getting a 2025.1 beta up 09:26
09:32 Aedil joined 09:58 yewscion joined 10:06 yewscion left
ab5tract landyacht: here it is! I hope this gets a lot smoother once we are hooked into the intellij marketplace 10:10
10:22 jpn joined 10:25 sena_kun joined 11:01 yewscion joined 11:06 yewscion left 11:54 lizmat left 12:18 lizmat joined 12:20 jpn left 12:21 jpn joined 12:26 jpn left 12:28 lizmat_ joined 12:30 lizmat left 12:37 sena_kun left 12:45 lizmat_ left, lizmat joined 12:46 jpn joined 12:51 jpn left 12:54 sena_kun joined 13:06 jpn joined 14:16 hvxgr left 14:24 jaguart left 14:49 yewscion joined 15:14 jpn left 15:16 jpn joined 15:21 jpn left
antononcube @melezhik. “EDA” can also mean “Experimental Data Analysis“. 15:24
melezhik. Or - “Extremely Difficult Architecture/Analysis” ))) 15:25
15:27 jpn joined 16:00 apac joined 16:37 yewscion left 16:55 yewscion joined
.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
17:20 yewscion left
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
17:32 dakkar left 17:46 yewscion joined 17:49 bdju left 17:51 bdju joined 17:52 apac left 18:05 human-blip left 18:07 human-blip joined 18:10 yewscion_ joined 18:11 yewscion left 18:15 yewscion_ left 18:42 jpn left 18:56 yewscion joined 18:57 apac joined 19:32 swaggboi joined 19:39 Sgeo joined 19:49 yewscion left 20:03 grondilu left, yewscion joined, Aedil left 21:20 apac left 21:48 nil78 left 21:50 zetaaaa joined 22:04 nil78 joined 22:16 sena_kun left 22:18 zetaaaa left 22:19 zetaaaa joined 22:25 zetaaaa left, zetaaaa joined 22:26 zetaaaa left 22:39 lizmat_ joined 22:42 MyNetAz left 22:43 lizmat left 22:57 MyNetAz joined, guifa joined 23:03 nil78 left 23:07 yewscion left 23:09 yewscion joined 23:11 nil78 joined 23:13 yewscion left 23:39 lizmat_ left, lizmat joined 23:44 Xliff joined
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&