»ö« #raku and #raku-dev are OPEN FOR BUSINESS | perl6.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_log/perl6 | UTF-8 is our friend! 🦋 Set by mst on 15 October 2019. |
|||
00:26
reportable6 left,
releasable6 left,
shareable6 left,
squashable6 left,
bloatable6 joined,
ChanServ sets mode: +v bloatable6,
reportable6 joined
00:27
squashable6 joined,
ChanServ sets mode: +v squashable6,
benchable6 joined,
ChanServ sets mode: +v benchable6,
quotable6 joined,
evalable6 joined,
ChanServ sets mode: +v evalable6,
notable6 joined,
ChanServ sets mode: +v notable6
00:28
releasable6 joined,
ChanServ sets mode: +v releasable6,
unicodable6 joined,
ChanServ sets mode: +v unicodable6
00:29
greppable6 joined
00:30
shareable6 joined,
ChanServ sets mode: +v shareable6,
warriors left,
Itaipu left,
committable6 joined,
ChanServ sets mode: +v committable6,
coverable6 joined,
ChanServ sets mode: +v coverable6,
nativecallable6 joined,
ChanServ sets mode: +v nativecallable6,
Doc_Holliwood left,
statisfiable6 joined
00:31
Itaipu joined,
tellable6 joined,
ChanServ sets mode: +v tellable6
00:32
aviral-goel joined
00:34
aviral-goel left
00:47
aborazmeh joined,
aborazmeh left,
aborazmeh joined,
Sgeo_ joined
00:50
Sgeo__ left
01:02
jeromelanteri joined
01:04
brass_ left,
brass joined
01:19
jeromelanteri left
01:20
lucasb left
01:26
aborazmeh left
02:33
oodani joined
02:40
farcas82 joined
02:42
Cabanossi left
02:47
Cabanoss- joined
02:48
sharmaso left
02:50
Cabanoss- is now known as Cabanossi
03:21
stanleytam joined
03:22
warriors joined
|
|||
k-man | is everyone moving to #raku? | 03:50 | |
discord6 | <Aearnus> k-man: eventually, yeah | 04:06 | |
k-man | thanks | 04:07 | |
see you there! | |||
04:13
cinch left
04:16
ZzZombo_ joined
04:19
molaf joined
04:20
ZzZombo left,
ZzZombo_ is now known as ZzZombo
04:24
jimtron joined
04:32
Doc_Holliwood joined
04:35
ZzZombo_ joined
04:38
ZzZombo left,
ZzZombo_ is now known as ZzZombo
04:45
cinch joined
04:56
riatre joined
05:10
riatre left,
riatre joined
05:19
sauvin joined
05:27
staypufd joined
|
|||
staypufd | On OS X after I install Raku in /Applications folder if I use #!/Applications/.../bin/perl6 as my shebang line in a script I get failures about syntax being wrong etc. any idea what the shebang should be? If I run via perl6 <scriptname> it works fine. | 05:31 | |
05:36
stanleytam left
05:37
staypufd left
05:44
tatmantech joined
05:47
jimtron left
05:54
Itaipu left
06:08
Itaipu joined
06:14
tatmantech left
06:23
tatmantech joined
06:26
Doc_Holliwood left
06:28
domidumont joined,
Itaipu left
06:35
finanalyst_ joined
|
|||
El_Che | what says "which perl6" | 06:38 | |
? | |||
moritz | El_Che: I think staypufd has left long ago :( | 06:42 | |
El_Che | I hadd joins and parts to my ignore config. It seems it wasn't the best of my ideas :) | ||
moritz | it's necessary for big channels such as this | 06:44 | |
but I try to tab-complete the nick of the one who asks | |||
El_Che | good point | 06:46 | |
06:48
reach_satori_ joined
06:50
reach_satori left,
Itaipu joined
06:53
wamba joined
06:55
cpan-raku left
06:57
cpan-raku joined,
cpan-raku left,
cpan-raku joined
07:03
farcas82 left
07:04
sarna joined
07:12
apathor left
07:14
apathor joined
07:49
satori__ joined
07:51
reach_satori_ left
08:02
dakkar joined
08:10
warriors left
08:24
sena_kun joined
08:33
Black_Ribbon left
08:45
sarna left
08:53
satori__ left
09:09
abraxxa joined
09:12
sarna joined
09:25
satori__ joined
09:42
rindolf3 joined
|
|||
rindolf3 | hi all, sup? | 09:43 | |
09:52
molaf left
09:58
xelxebar left
09:59
xelxebar joined
10:16
Doc_Holliwood joined,
wamba left
10:18
patrickb joined
10:21
cpan-raku left
10:23
cpan-raku joined,
cpan-raku left,
cpan-raku joined
|
|||
xinming_ | m: slip(2,3).perl.say; |(2,3).perl.say; | 10:23 | |
evalable6 | slip(2, 3) (2, 3) |
10:24 | |
xinming_ | In my understanding, that the slip(2, 3) will create an slip object, but |(2, 3) won't, it'll expand the list item, Is my udnerstanding correct? | ||
and another quesiton, How do we create a "raw" container for array when we do @array.push: ? | 10:25 | ||
lizmat | m: dd slip(2,3) | ||
evalable6 | slip(2, 3) | ||
lizmat | m: dd |(2,3) | ||
evalable6 | 2 3 |
||
lizmat | hmmm... | ||
xinming_ | Let's say, my @x = (2, 3); my @result; @result.push: @x.map: * + 1; | ||
lizmat | m: dd $|(2,3) | ||
xinming_ | m: my @x = (2, 3); my @result; @result.push: @x.map: * + 1; | ||
evalable6 | any(Any, (2, 3)) | ||
lizmat | he | ||
xinming_ | m: my @x = (2, 3); my @result; @result.push: @x.map: * + 1; @result.perl.say; | ||
evalable6 | [(3, 4).Seq,] | ||
lizmat | m: dd $(|(2,3)) | 10:26 | |
evalable6 | $(slip(2, 3)) | ||
lizmat | hmmm... | ||
xinming_ | In this example, How can I make the @x.map: * + 1 returns the raw cotnainer? | ||
So, I don't need to use slip or force something liek @result.push: |(@x.map: * + 1); | |||
@result.push: slip @x.map: * + 1; | 10:27 | ||
lizmat | use .append | ||
xinming_ | Thanks, let me try. | 10:28 | |
lizmat | m: my @a =1,2,3; @a.append( (4,5,6) ); dd @a | ||
evalable6 | Array @a = [1, 2, 3, 4, 5, 6] | ||
xinming_ | m: my @x = (2, 3); my @result; @result.append: @x.map: * + 1; | ||
evalable6 | |||
lizmat | m: my @a =1,2,3; @a.push( (4,5,6) ); dd @a | ||
evalable6 | Array @a = [1, 2, 3, (4, 5, 6)] | ||
xinming_ | m: my @a =1,2,3; @a.append( @(4,5,6) ); dd @a | ||
evalable6 | Array @a = [1, 2, 3, 4, 5, 6] | ||
xinming_ | m: my @a =1,2,3; @a.append( $(4,5,6) ); dd @a | ||
evalable6 | Array @a = [1, 2, 3, (4, 5, 6)] | ||
xinming_ | So, understanable. | ||
thanks. | |||
lizmat: Then, slip(xxx) is the same as |(xxx) right? | 10:29 | ||
the | is just a syntax sugar | |||
lizmat | yeah, but there appears to be a subtle difference wrt to "dd", but that could be an artefact of how "dd" works | 10:30 | |
m: say (slip(2,3)).perl | |||
evalable6 | slip(2, 3) | ||
lizmat | m: say (|(2,3)).perl | ||
evalable6 | slip(2, 3) | ||
lizmat | yeah, artefact of dd | ||
10:37
sena_kun left
10:38
sena_kun joined
10:42
jt45 joined
|
|||
jt45 | Can someone please pooint me in the right direction to find out more about the name change to Raku? What it means, how to pronounce it, what was behind the decision, what will happen to all the existing things in the Perl 6 namespace such as DNS domains, modules, etc... | 10:45 | |
Can someone please point me in the right direction to find out more about the name change to Raku? What it means, how to pronounce it, what was behind the decision, what will happen to all the existing things in the Perl 6 namespace such as DNS domains, modules, etc... | |||
moritz | jt45: github.com/perl6/problem-solving/issues/81 and github.com/perl6/problem-solving/p...8f232017cf should answer most of your questions | 10:47 | |
jt45 | Ok, thanks Moritz. :) | ||
lizmat | perhaps better readable: github.com/perl6/problem-solving/b...to-Raku.md | 10:49 | |
jt45 | ok | ||
Yes, thanks Liz. | 10:51 | ||
11:15
jt45 left
11:17
xelxebar left
|
|||
rindolf3 | hi all | 11:22 | |
lizmat: meow, sup? | |||
TimToady: hi, sup? | |||
lizmat | rindolf3: you should probably move to the #raku channel :-) | 11:23 | |
rindolf3 | lizmat: ah force of habit | ||
11:28
wamba joined
11:32
xelxebar joined
11:35
xinming_ left
11:36
xinming_ joined
|
|||
timotimo | i approciate the PR work lizmat is doing for the raku tagging | 11:38 | |
lizmat | yeah, figured it was a good time to get a twitter account | 11:39 | |
El_Che | you have twitter? | 11:42 | |
lizmat | yes, I haz twitter now | 11:51 | |
12:04
sena_kun left
12:10
sena_kun joined
|
|||
rindolf3 | lizmat: twitter has increasingly been feeling like www.shlomifish.org/humour/fortunes...d-dialogue | 12:15 | |
lizmat | well I think I covered all people that used #raku in the past 2 weeks :-) so I'm done monologuing | 12:22 | |
finanalyst_ | I just went on to #raku. Not much happening there yet. Are all the bots active on that channel too? | 12:24 | |
lizmat | finanalyst_ : think so | ||
finanalyst_ | I was trying to find out more about the bots. AlexDaniel said that perl.org/community/irc has a description, but that .../whateverable/wiki has more | 12:26 | |
I was wondering which should be the cannon? | |||
Also in this channel, I note that some bots, eg. benchable6 have name in user list, but camelia does not | 12:27 | ||
So, how can I discover which bots are active? | |||
Is there a sort of help bot? | 12:28 | ||
Doc_Holliwood | guys, come over to #raku | ||
lizmat | camelia *is* on #raku | 12:29 | |
12:33
lucasb joined
13:06
aborazmeh joined,
aborazmeh left,
aborazmeh joined
13:19
Xliff joined
13:25
rindolf3 left
13:35
Xliff_ joined,
Xliff left
13:41
sena_kun left
13:42
warriors joined,
patrickb left
|
|||
domm | nine: erikbern.com/2019/10/16/buffet-lin...rible.html | 13:43 | |
13:44
patrickb joined
13:46
tatmantech left,
tatmantech joined
13:57
sarna left
14:01
domidumont left
14:02
domidumont joined
14:13
Eddward joined
|
|||
Eddward | I haven't really been following the p6 web sites for the last year or so. I noticed that last star release was 6-ish months ago and they seemed irregular before that. Are they not a thing any more? | 14:16 | |
14:37
tamiko is now known as darth_tamiko
14:44
sena_kun joined
|
|||
vrurg | Eddward: you're welcome to join #raku which the official channel now. | 14:46 | |
14:48
abraxxa left,
aborazmeh left
14:51
aborazmeh joined,
aborazmeh left,
aborazmeh joined
14:52
aborazmeh left
14:58
Eddward left
15:00
benjif joined
|
|||
warriors | why arent we already redirecting #perl6 to #raku ?? | 15:01 | |
15:07
sno left
15:13
ab6tract joined
|
|||
ab6tract | big hugs to all my #perl6 friends. it's been a big shift for the whole community recently but i have to say i think we handled it in typical Perl 6 fashion | 15:14 | |
which is a great sign, since the strength of our community is one thing that shouldn't change imo just because we put a different name on the efforts | 15:15 | ||
there's still a big ol butterfly on our battle flag! :D | |||
15:17
jeromemathias joined
|
|||
jeromemathias | Hello dear friends. I am French. I like programming languages. I do not know either perl5 or perl6. But the more I try to start learning this language (perl6) and the more I love it. Thanks to its creators. | 15:20 | |
15:22
satori__ left
|
|||
benjif | Glad to hear you're liking the language so far, jeromemathias | 15:23 | |
I enjoy it too | |||
ab6tract | -Ofun :) | 15:30 | |
AlexDaniel | btw there's more activity on #raku :) | 15:33 | |
.tell Eddward rakudo star is still a thing! It's just that it's released less often than rakudo itself | 15:34 | ||
tellable6 | AlexDaniel, I'll pass your message to Eddward | ||
15:39
domidumont left
15:43
mrbrik joined
15:44
mrbrik left
15:46
benjif left,
benjif joined
|
|||
nine | domm: OMG that's like a dream come true! | 15:58 | |
tellable6 | 2019-10-16T21:45:08Z #raku-dev <patrickb> nine I didn't know there was a problem. Is there a bug report or something I can read up on? | ||
16:08
kaare__ joined
16:18
softmoth joined
16:39
dakkar left
17:07
xinming_ left
17:08
xinming_ joined
|
|||
xinming_ | hmm | 17:08 | |
m: my $x = "--- top number: 123; middle number: 234; bottom number: 456"; $x ~~ m:g{"number:"\s*$<no> = [\d+]}; @$/.map: *.<no>.Str.say; | |||
evalable6 | 123 234 456 |
||
xinming_ | In this example, How can we rewrite the regex without :g but we also capture all the numbers please? | ||
sorry if I re-post the question, As I saw I've got disconnected. | |||
17:13
jeromemathias left
|
|||
xinming_ | I think I have an idea. | 17:20 | |
17:20
benjif left
17:21
benjif1 joined,
benjif1 left,
benjif1 joined
17:24
moon_child left
17:27
xinming_ left,
warriors left
17:28
xinming_ joined
17:29
moon_child joined
17:31
sena_kun left
17:33
sena_kun joined
17:35
sena_kun left
17:36
sena_kun joined
17:44
sena_kun left
18:00
benjif1 left,
benji joined,
benji is now known as benjif
18:06
pecastro joined
18:07
lizmat joined
|
|||
AlexDaniel | m: my $x = "--- top number: 123; middle number: 234; bottom number: 456"; $x.comb(/"number:"\s*$<no> = [\d+]/).map: *.<no>.Str.say; | 18:08 | |
evalable6 | (exit code 1) Type Str does not support associative indexing. in block <unit> at /tmp/DumtjYhQCc line 1 |
||
AlexDaniel | m: my $x = "--- top number: 123; middle number: 234; bottom number: 456"; .say for $x.comb: /"number:"\s*<([\d+]/ | 18:09 | |
evalable6 | 123 234 456 |
||
AlexDaniel | xinming_: what about this? | ||
xinming_: also, I think you'll get more answers on #raku :) | 18:10 | ||
18:10
ab6tract left
18:13
sno joined
18:20
[Sno] joined,
sno left
|
|||
nine | .tell patrickb Even when Inline::Perl5 is installed make spectest will claim that it is not and therefore not run the Perl 5 integration tests | 18:29 | |
tellable6 | nine, I'll pass your message to patrickb | ||
18:59
patrickb left
19:11
MasterDuke joined
19:16
krychu joined
19:21
xinming_ left,
xinming_ joined
|
|||
xinming_ | AlexDaniel: Thanks, will change my autojoin list to raku | 19:27 | |
19:29
[Sno] left
|
|||
AlexDaniel | xinming_: thank you! | 19:32 | |
19:36
lizmat left
19:54
reach_satori joined
|
|||
cpan-raku | New module released to CPAN! Tomtit (0.1.6) by 03MELEZHIK | 19:57 | |
20:03
wildtrees joined
20:04
wildtrees left,
wildtrees joined
20:05
Black_Ribbon joined
20:15
vrurg joined
20:16
molaf joined
20:37
Cabanossi left
20:43
jjatria joined
|
|||
guifa | When doing declarator blocks in pod, if you have multiple lines beginning with #| will they get merged together or will they be interpreted as separate comments? | 20:46 | |
timotimo | they get merged together | 20:47 | |
or at least are supposed to? | |||
20:48
Cabanossi joined
|
|||
guifa | timotimo++ Multiple lines of #| look a lot cleaner to me than the #|( … ) syntax so just wanted to check. Pod6 documentation is a bit sparse ATM | 20:49 | |
Also, what’s considered to be the difference between NAME and TITLE for the semantic blocks? | 20:50 | ||
timotimo | i guess NAME is for when you have a module and you want to put the name, and TITLE is a more human-friendly thing? | 20:51 | |
don't know | |||
21:07
tatmantech left
21:08
jimtron joined,
[Sno] joined
21:20
kotrcka joined
21:23
reach_satori left
21:24
reach_satori joined
21:54
jjatria left,
jjatria joined
21:59
benjif left,
eiro joined,
benjif joined
22:07
releasable6 left
22:08
lizmat joined,
squashable6 left
22:12
releasable6 joined,
ChanServ sets mode: +v releasable6,
squashable6 joined,
ChanServ sets mode: +v squashable6
22:28
cpan-raku left
22:30
cpan-raku joined,
cpan-raku left,
cpan-raku joined
22:36
finanalyst_ left
22:41
krychu left
23:02
wamba left
23:15
Xliff_ left
|
|||
cpan-raku | New module released to CPAN! Red (0.0.5) by 03FCO | 23:18 | |
23:29
pecastro left
|
|||
cpan-raku | New module released to CPAN! Red (0.0.6) by 03FCO | 23:48 | |
23:52
lucasb left
23:58
|oLa|1 joined
|