🦋 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:03 jpn joined 00:06 Maximus joined 00:07 Sevalecan left, Maximus is now known as Sevalecan 00:08 jpn left 00:17 lichtkind__ left
antononcube @japhb Thank you! 00:25
00:37 vrurg_ joined 00:38 constxqt_ joined 00:39 cm_ joined, Tirifto_ joined, tobs` joined 00:40 tobs left, camelia left, ecocode left, vrurg left, jcallen left, Tirifto left, constxqt left, rypervenche left, bartolin left, thowe left, cm left, avar left, bartolin_ joined, tobs` is now known as tobs, cm_ is now known as cm, jcallen_ joined 00:41 avar joined 00:42 rypervenche joined 00:43 ecocode joined 00:45 thowe joined 00:54 camelia joined 01:50 jpn joined 01:54 jpn left 02:00 jmcgnh left 02:07 Sgeo joined 02:29 jmcgnh joined 02:53 hulk joined 02:54 kylese left 03:01 hythm joined 03:15 hulk left, kylese joined 03:19 cm left, cm joined
elcaro Who manages rakudo.org? I still cannot download the Linux release. I've also tried from a VPS in New Zealand and Japan and it also fails 03:44
As mentioned previously, curl gives error `HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR` 03:45
based on search results, this is possibly an issue with nginx or AWS Application Load Balancer.
MasterDuke coleman or andinus are probably your best bets 04:32
04:50 japhb left 04:52 japhb joined 05:49 hythm left
andinus elcaro: that's weird, can you share the release you're trying to download? (link) 06:54
i tested on a few networks, unable to reproduce 07:03
07:06 HobGoblin left, goblin joined 07:07 samebchase2 joined, samebchase left, samebchase2 is now known as samebchase 07:08 mst left 07:09 mst left, mst joined 07:14 raf joined 07:16 raf left 07:17 rakuraf joined, rakuraf left 07:20 rakuraf joined 07:33 abraxxa joined 07:43 rakuraf left, sena_kun joined 08:13 verzit joined
_elcaro_ I ended up spinning up a VPS in NY and downloading it, but as mentioned above, downloading from Australia, New Zealand, or Japan failed. I mentioned link yesterday 08:28
rakudo.org/dl/rakudo/rakudo-moar-2...gcc.tar.gz 08:29
VPS in NY downloaded fine, so possibly only affecting APAC regions?
08:53 dakkar joined 09:18 Sgeo left 09:21 jpn joined 09:27 jpn left 09:32 lichtkind__ joined 09:36 jpn joined 09:53 japhb left 10:02 japhb joined 10:09 japhb left 10:25 jpn left 10:39 japhb joined 10:46 japhb left 10:49 jpn joined
antononcube Is participation (with a presentation) in FOSDEM 2024 in person only? 11:11
11:18 CIAvash joined
lizmat I think it is 11:22
antononcube @lizmat ok, thanks! 11:25
11:30 kylese left, kylese joined
Xliff m: (2, 0, 3).permutations.gist.say' 11:31
camelia ===SORRY!=== Error while compiling <tmp>
Two terms in a row
at <tmp>:1
------> (2, 0, 3).permutations.gist.say⏏'
expecting any of:
infix
infix stopper
statement end
statement modifier…
Xliff m: (2, 0, 3).permutations.gist.say
camelia ((2 0 3) (2 3 0) (0 2 3) (0 3 2) (3 2 0) (3 0 2))
11:44 CIAvash left 11:51 lichtkind_ joined 11:54 lichtkind__ left 12:16 xinming left 12:18 xinming joined
El_Che antoncube: Fosdem is normally also streamed 13:42
lizmat El_Che: yeah, but they expect the presenters to be, eh... present ? 13:55
13:59 suman joined
suman m: my @test = [c => (2,3), d => (9,10,12), e => (4,11,16)];say @test.map: {$_.value.elems}; 14:04
camelia (2 3 3)
El_Che lizmat: good point.
suman Given an array of hashes, how to check if the elems is each hash is same?
m: my @test = [c => (2,3), d => (9,10,12), e => (4,11,16)];say @test.map: {$_.value.elems}; 14:06
camelia (2 3 3)
lizmat suman: that'd be an array of Pairs, not hashesh
*hashes :-)
m: my @test = c => (2,3,4), d => (9,10,12), e => (4,11,16); say [==] @test>>.value>>.elems' 14:07
camelia ===SORRY!=== Error while compiling <tmp>
Two terms in a row
at <tmp>:1
------> 34,11,16); say [==] @test>>.value>>.elems⏏'
expecting any of:
infix
infix stopper
postfix
statement end…
lizmat m: my @test = c => (2,3,4), d => (9,10,12), e => (4,11,16); say [==] @test>>.value>>.elems 14:08
camelia True
lizmat m: my @test = c => (2,3), d => (9,10,12), e => (4,11,16); say [==] @test>>.value>>.elems
camelia False
suman Ah cool
lizmat m: my @test = c => (2,3), d => (9,10,12), e => (4,11,16); say [==] @test.map: { .value.elems } # alternately with .map 14:09
camelia False
lizmat m: my @test = c => (2,3), d => (9,10,12), e => (4,11,16); say [==] @test.map: *.value.elems 14:10
camelia False
14:12 japhb joined 14:24 japhb left
antononcube El_Che and lizmat -- I spent 10-12 min browsing the FOSDEM 2024 annoucements, call for papers, etc. Yes, the presentations are also streamed online. Nowhere it was said that the presenters can attend online. (Last year FOSDEM was mixed, with both in-person and online for presenters.) 14:40
tbrowder__ m: lives-ok { say "boo" } 14:49
camelia ===SORRY!=== Error while compiling <tmp>
Undeclared routine:
lives-ok used at line 1
tbrowder__ m: use Test; lives-ok { say "boo" } 14:50
camelia boo
ok 1 -
14:51 init left
tbrowder__ m: use Test; lives-ok { note "boo" } 14:52
camelia boo
ok 1 -
15:00 jpn left 15:07 edr joined 15:10 japhb joined, suman left 15:11 jpn joined 15:14 japhb left 15:18 jpn left 15:26 jpn joined 15:45 japhb joined 16:09 sdfgsdfg left 16:10 sdfgsdfg joined 16:18 japhb left 16:37 japhb joined 16:40 sdfgsdfg left 16:41 sdfgsdfg joined
lizmat and yet another Rakudo Weekly News hits the Net: rakudoweekly.blog/2023/11/27/2023-...-ab5tract/ 16:47
17:02 verzit left 17:14 phogg left
Xliff lizmat: Are you only tracking new modules via zef? 17:21
I release GIO over the last week and it wasn't mentioned.
lizmat oops... sorry, I missed a few 17:22
Xliff lizmat: Can you give it a mention in the next one, please? 17:23
lizmat I'll update the current
Xliff Thanks!
lizmat fixed 17:25
17:34 jpn left 17:35 dakkar left 17:53 jpn joined 18:37 verzit joined 18:41 derpydoo joined 18:48 jpn left 18:56 japhb left 19:20 jpn joined 19:23 abraxxa left 19:25 jpn left 20:07 jpn joined 20:12 jpn left 20:15 jpn joined 20:21 jpn left 21:04 Xliff left 21:14 RandalSchwartz joined 21:31 RandalSchwartz left 21:37 verzit left 21:58 jpn joined 22:28 jpn left 22:37 Sgeo joined 22:40 japhb joined 22:46 japhb left 22:47 japhb joined 22:50 jpn joined 22:53 sena_kun left 23:24 japhb left 23:35 vrurg_ is now known as vrurg 23:40 lichtkind_ left 23:42 jpn left 23:58 japhb joined 23:59 lizmat_ joined