🦋 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:00
reportable6 left
00:02
reportable6 joined
00:09
knarkhov left
|
|||
ingy | The TPRC/NA CFP just closed. If you wanted to submit a talk but forgot to get it in, rach out to me! | 00:12 | |
00:17
codesections left,
codesections joined
00:21
Bocaneri joined,
Sauvin left,
Bocaneri is now known as Guest6661
00:23
rumgzy joined
00:26
Guest6661 left
00:39
rumgzy is now known as Sauvin
01:04
xinming left
01:05
xinming joined
01:21
jpn left
01:30
nine left,
m_athias left,
nine joined,
m_athias joined
|
|||
Anton Antonov | @ingy Good to know! | 01:46 | |
02:15
derpydoo left
02:35
Aozen joined
|
|||
Aozen | hello it is my first day here | 02:35 | |
is anyone around that i can talk to? | 02:36 | ||
02:38
razetime joined
|
|||
Aozen | anyone around to talk to? | 02:41 | |
coleman | No need to ask to ask, just ask | 02:46 | |
02:57
jpn joined
03:02
jpn left
|
|||
Aozen | i am not asking anything i just came here to make friends | 03:05 | |
i am on a journey to learn perl and larry wall has had a big impact in my decision | 03:06 | ||
which lead me here | |||
03:06
discord-raku-bot left,
discord-raku-bot joined
03:13
Aozen left
03:46
bdju left
03:48
bdju joined
04:18
razetime left
04:35
derpydoo joined
04:46
jpn joined
04:50
jpn left
05:05
razetime joined
05:06
swaggboi left
05:07
bdju left
05:45
razetime left
06:00
reportable6 left,
reportable6 joined
06:02
jpn joined
06:09
jpn left
06:51
tea3po joined
06:54
an3223 joined
06:55
teatwo left
06:56
tea3po left,
tea3po joined
07:28
an3223_ joined,
an3223 left
07:31
jpn joined
07:55
jpn left
08:06
jpn joined
08:17
sena_kun joined
08:38
jpn left
08:50
Sgeo left
08:57
knarkhov joined
08:59
knarkhov left
09:19
jpn joined
09:20
an3223_ left
09:38
lizmat_ joined
09:42
lizmat left,
lizmat_ is now known as lizmat
|
|||
Nemokosch | then the answer is apparently no 😅 | 09:45 | |
lizmat | yeah, if you want to get to perl, you're on the wrong path here | 09:48 | |
10:42
linkable6 left,
evalable6 left
10:45
evalable6 joined,
linkable6 joined
10:48
jpn left
11:16
jpn joined
11:27
jpn left
11:37
bdju joined
|
|||
Nemokosch | somebody - accidentally, I suppose - created a raku-community-modules fork of a PHP project called SMF | 11:44 | |
can that be deleted? | |||
lizmat | done | 11:47 | |
afk& | |||
Nemokosch | thanks | 11:57 | |
12:00
reportable6 left,
reportable6 joined
12:41
jpn joined
|
|||
Anton Antonov | @Aozen Some of us are here to make enemies. | 13:17 | |
Voldenet | What's the point of making more enemies if pretty much most of humanity is your enemy by default | 13:29 | |
Anton Antonov | @Voldenet Damn, yeah! Granted, for some “enemies you know” are preferable… | 13:35 | |
13:39
nommef joined
|
|||
tbrowder__ | i say anyone following larry for perl who comes here should be greeted kindly and tell him the “ rest of the story” (larry and raku) | 13:40 | |
14:07
jpn left
14:25
Aozen joined
|
|||
Aozen | so who here wants to make friends and not enemies XD | 14:27 | |
also who is a fan of larry wall? | |||
14:28
Aozen left
|
|||
moritz | I kinda like Larry, he's kind, has very colorful shirts and nice sense of humor | 14:37 | |
though he hasn't been hanging around here for a few years :-( | 14:38 | ||
Geth | ¦ problem-solving: bbkr assigned to codesections Issue LinkedIn does not recognize "Raku Developer" as a job title. github.com/Raku/problem-solving/issues/368 | ||
14:53
rakuuser joined
|
|||
Voldenet | Aozen is a special kind of april fool | 14:58 | |
I'm not supporting that trolling | |||
ugexe | i am larry wall | 15:01 | |
lizmat | i am larry wall | 15:04 | |
Voldenet | i am not larry wall | 15:09 | |
Anton Antonov | We Are All Larry Wall !!! | ||
moritz | all in all we're just a brick in larry's wall | ||
Anton Antonov | Aozen is another brick in the Wall. (Or dozen) | 15:10 | |
@moritz You beat me to the wall... | |||
lizmat | .oO( we're all wallflowers ) |
15:17 | |
Anton Antonov | @lizmat LOL, but, I think ,mostly wall-weeds. | 15:18 | |
15:32
jpn joined
|
|||
moritz | weed-loving summer child :-) | 15:33 | |
15:37
jpn left
|
|||
rakuuser | In a grammar, is it possible to invoke a specific member of a multi rule/token? Something like <foo:sym<bar>> seems work the same as <foo>. | 15:47 | |
tellable6 | 2021-10-26T15:05:00Z #moarvm <nine> raku_user: also code in the wild depends on the behaviour | ||
Anton Antonov | And, coal-hating winter grandpas. | ||
moritz | rakuuser: no, just like there's no way to invoke a specific variant of a multi sub | 15:56 | |
lucs | For what it's worth, sigils in Raku are more well-behaved than in Perl. | ||
I can't quite figure it out, but the problem seems to be more with the multiple levels of indirections and evaluations. | |||
Here's the same code, golfed down somewhat: gist.github.com/lucs/bb2613fa3b279...f35f4f7f89 | |||
moritz | rakuuser: instead, write `token sym:<foo> { <foo> }; token foo { actual parsing goes here}`, and then call `<foo>` where you need it | ||
lucs | Maybe someone more expert can explain what's going on. | 15:57 | |
moritz | m: my $match = /x/ ~~ 'x'; say 'x' ~~ $match | 15:58 | |
camelia | Regex object coerced to string (please use .gist or .raku to do that) False in block <unit> at <tmp> line 1 |
||
moritz | m: my $match = 'x' ~~ /x/; say 'x' ~~ $match | ||
camelia | 「x」 | ||
lucs | Dammit, wrong channel. | 15:59 | |
moritz | lucs: ah, I finally understood | 16:03 | |
The regex you're building and storing in %h2<s> tries, at runtime, to look up a value from %h2<s> | |||
so it finds itself, calls itself, and what does it do? it looks up a value from %h2<s> | 16:04 | ||
lucs | moritz: can you join raku-beginner and explain this to nommef please (they might have questions) | ||
16:06
squashable6 left
16:07
squashable6 joined
|
|||
lucs | moritz++ Thank you sir :) | 16:09 | |
16:52
jpn joined
17:00
jpn left
17:02
jpn joined
17:53
jpn left
17:54
derpydoo left
17:58
jpn joined
18:00
reportable6 left,
reportable6 joined
18:21
fernandooliveira joined
18:44
jpn left
18:51
teatwo joined,
Aozen joined
|
|||
Aozen | sadly i dont get notified but i saw that Anton Antonov Voldenet and moritz replied ty for saying something | 18:53 | |
and no i am not trolling anyone | |||
lizmat | Aozen: glad to heat, it's just that asking for perl guidance here is a bit off-topic :-) | 18:54 | |
*hear | |||
18:54
tea3po left
|
|||
Aozen | i am new so second day here ( i came just to see the community) | 18:55 | |
i dont know how things work or what i should do here | |||
hoped to make friends that is all | |||
lizmat | well, we focus on the Raku Programming Language here: raku.org | ||
Aozen | okay so what generally can i talk about? like only specific code in raku or like | 18:56 | |
can i ask stuff about the docs and such? | |||
lizmat | that's basically the idea yes | ||
Aozen | okay so i want to learn raku | ||
lizmat | sure, docs is also on topic, as long as they're raku docs :-) | ||
Aozen | i want to learn raku ( perl 6) | 18:57 | |
which part from docs.raku.org/ doc should i start with? Language Reference & Tutorials? | |||
lizmat | you could start with a very basic intro: raku.guide | 18:58 | |
Aozen | oh cool | ||
lizmat | if English is not your native language, then maybe that has an intro in a language | ||
that you're more comfy with | |||
Aozen | its not my native but i can do good don't worry | 18:59 | |
19:20
codesections left
19:21
jpn joined
19:25
jpn left
19:35
Sgeo joined
|
|||
[Coke] | There is also a beginner channel, I think. | 19:44 | |
welcome aboard, either eay | |||
*way | |||
Aozen | thank you <3 | 20:08 | |
20:35
linkable6 left,
evalable6 left
20:36
evalable6 joined,
linkable6 joined
20:51
jpn joined
20:55
fernandooliveira left
20:56
jpn left
21:00
fernandooliveira joined
21:07
fernandooliveira left
21:11
nommef left
21:31
abhinav left
21:32
abhinav joined
21:35
fernandooliveira joined
21:45
fernandooliveira left,
teatwo left
21:48
jpn joined
21:52
jpn left
21:53
teatime joined
21:59
abhinav left
22:00
abhinav joined,
sena_kun left
22:13
fernandooliveira joined,
Aozen40 joined
|
|||
Aozen40 | btw how do i save myself? when i reload the page it changes my name | 22:14 | |
22:14
Aozen40 left,
Aozen left,
Aozen joined
|
|||
Voldenet | I think most people here use desktop irc clients and sasl | 22:15 | |
Aozen | how does that work? | ||
22:16
teatime left
|
|||
Voldenet | you register a nick on libera, then just type it in the client somehow, depends on the irc client | 22:16 | |
or you can use a bouncer | |||
22:17
teatime joined
|
|||
Voldenet | just pick one of the clients and read the sasl guide for it libera.chat/guides/clients | 22:20 | |
22:24
teatime left,
fernandooliveira left
22:25
an3223_ joined
|
|||
tonyo | added spdx licenses to fez | 22:27 | |
22:45
nebuchadnezzar left
22:50
jgaz joined
|
|||
Aozen | okay i will check it | 22:51 | |
22:53
fernandooliveira joined
23:01
an3223_ left
23:02
fernandooliveira left
23:04
an3223_ joined
23:18
jgaz left
23:25
fernandooliveira joined
|
|||
uzl[m] | Howdy everyone, long time no see :)! | 23:27 | |
I've created this NodeJS to Raku -- Buffers document, and I'm wondering if you think it'd be good addition to the NodeJS to Raku migration guide. I'm sure I could not be using idiomatic Raku or am making some mistake so I welcome any corrections. | |||
Markdown for now, though I can mark it up in Pod if it's to be added to the docs: gist.github.com/uzluisf/80bd9d6b1a...b61947faaa | |||
23:38
Aozen left
23:42
fernandooliveira left
|