🦋 Welcome to Raku! raku.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: colabti.org/irclogger/irclogger_log/raku
Set by ChanServ on 14 October 2019.
00:02 sena_kun joined 00:04 Altai-man_ left, softmoth left 00:15 Black_Ribbon joined 00:17 Benett left 00:23 oodani joined 00:31 codesections left 00:33 codesections joined 00:36 oddp left 01:20 nightfrog left, nightfrog joined 01:21 Zero_Dogg left 01:35 Zero_Dogg joined 01:52 lucasb left 01:54 reach_satori left, reach_satori joined 02:01 Altai-man_ joined 02:03 ensamvarg3 joined 02:04 sena_kun left 02:06 Manifest0 left, Manifest0 joined 02:29 flossy_ left, flossy_ joined 02:33 Cabanossi left 02:35 vike left 02:43 Cabanossi joined 02:47 vike joined 03:23 zacts joined 03:25 Zero_Dogg left 03:26 Zero_Dogg joined 03:31 Cabanossi left 03:34 zacts left 03:41 Cabanossi joined 04:02 sena_kun joined 04:04 Altai-man_ left 04:09 flossy_ left, flossy_ joined 04:12 zacts joined, xinming_ left, xinming_ joined 04:18 zacts left 04:42 xinming joined 04:45 xinming_ left 04:51 rindolf joined 04:58 rindolf left 05:09 rindolf joined 05:10 rbt left 05:11 rbt joined 05:18 xinming left, xinming joined 05:34 zacts joined 05:41 ensamvarg3 left 06:00 OpenZen left 06:01 hungrydonkey joined 06:02 Altai-man_ joined 06:04 sena_kun left 06:27 tejr left 06:43 Merfont left 06:44 Kaiepi joined 06:48 tejr joined 07:07 notandinus left, hungrydonkey left 07:10 team\andinus joined 07:11 team\andinus is now known as notandinus 07:16 Kaiepi left 07:18 Kaiepi joined 07:19 wamba joined 07:34 Kaiepi left 07:35 JJMerelo left 07:53 Kaiepi joined 07:54 JJMerelo joined 08:02 sena_kun joined 08:04 Altai-man_ left 08:35 stoned75 left 08:37 stoned75 joined, sjm_uk left 08:38 HarmtH joined 08:45 aborazmeh joined, aborazmeh left, aborazmeh joined 08:47 JJMerelo left 08:51 zacts left 08:52 zacts joined 08:53 xinming left 08:55 xinming joined 09:06 wamba left 09:07 hungrydonkey joined, cpan-raku left, cpan-raku joined, cpan-raku left, cpan-raku joined 09:11 aborazmeh left 09:25 xinming left, xinming joined 09:34 wamba joined 09:39 oddp joined 09:52 leont joined 10:02 Altai-man_ joined 10:05 sena_kun left 10:07 Benett joined 10:08 sno left 10:10 sno joined 10:11 pecastro joined 10:25 aborazmeh joined, aborazmeh left, aborazmeh joined 10:29 flossy_ left 10:31 Black_Ribbon left 10:43 Benett left, Benett joined 10:48 vike left 10:50 aborazmeh left 11:34 wamba left 12:02 sena_kun joined 12:03 vike joined 12:04 Altai-man_ left 12:28 flossy joined 12:33 flossy left 12:46 wamba joined 12:50 aborazmeh joined, aborazmeh left, aborazmeh joined 13:05 aborazmeh left 13:14 leah2 left 13:30 leah2 joined 13:31 jqzk joined, jqzk left 13:32 wamba left 13:43 molaf joined 13:51 Cabanossi left 13:58 Cabanossi joined, xinming left 14:00 hungryd89 joined 14:01 xinming joined 14:02 Altai-man_ joined 14:03 hungrydonkey left 14:05 sena_kun left 14:09 jqzk joined
Geth doc/finanalyst-patch-2: a3547c16fa | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/typesystem.pod6
Adding more information about TWEAK

There is almost nothing about TWEAK in the documentation. Even when the TWEAK is mentioned, it is not clear why it is needed, until you get a compile error like the one shown in the example.
   Further, the documentation does not contain any reference to the signature of TWEAK.
A small test with `submethod TWEAK(|c) {say $c.raku}` shows that it is passed the same variables as are passed to BUILD.
14:13
doc: finanalyst++ created pull request #3502:
Adding more information about TWEAK
14:14
14:22 jqzk left 14:48 zacts left 14:49 flossy joined 15:01 flossy left 15:02 flossy joined 15:07 bdju left, bdju joined
codesections I've got a couple of (possibly dumb) questions that I haven't been able to find answers to in the docs: first, is there a way to `use` a module that isn't currently in the module search path? For example, if I'm in the REPL and want to use a module that isn't in the current path, is there a Raku command that lets me do so, or do I need to exit the REPL and restart it with the correct `-I` argument? 15:43
Second, what does the `-o` flag do when invoking raku? The help output states " -o, --output=name specify name of output file". I thought that might be an output file for stdout, but `say` still prints to normal stdout. Or I thought it might be an output file for generated bytecode, but it doesn't seem to be (or, at least, I can't find the output if it is) 15:46
(in an effort to avoid an XY problem, the reason I was looking into the `-o` flag in the first place is that I was curious whether there's a way to output precompiled bytecode for a Raku script. Raku is *so nice* for writing bash-like utility scripts except for the startup time, so I've been looking into configuration options that might speed that up) 15:49
I know startup time is improving/will improve, but I'm looking at interim measures :)
timotimo ohai codesections 15:51
codesections hi :)
timotimo you can change the search path at any time with a "use lib '/foo/bar'" statement
-o is indeed for compiler's stages rather than for programs you run, and it's actually used to generate bytecode for big modules; the core setting is pre-compiled this way 15:52
the easiest way to get a "program" or "script" precompiled for faster startup is to move all of its functionality into a module and just "use TheModule" as the only thing in the script 15:53
or like rakudo -MTheModule -e ''
what's your startup time like at the moment? 15:54
15:55 flossy_ joined
codesections I have a really detailed answer to that :D 15:55
15:55 flossy left
codesections I was playing around profiling startup times for "hello, world" programs in various languages on my development machine and got 117.63ms for Raku 15:56
which is not bad at all, but noticeable for interactive use 15:57
here are some other langs, if you're interested:
Shell (dash 0.5.10.2): 0.17 ms
Yash 2.49: 0.30 ms 15:58
Lua 5.3.3: 0.32 ms
Bash 5.0.16(1): 0.36 ms
Perl 5.30.0: 0.50 ms
ZShell 5.8: 0.54 ms
Tcl 8.6: 1.23 ms
CShell 20110502: 1.46 ms
Vimscript 8.1: 2.53 ms
Fish 3.1.0: 2.25 ms
Python2 2.7.18rc1: 3.87 ms
PHP 7.4.3: 3.94 ms
Elisp 26.3: 5.62 ms
Guile 3.0.1: 5.73 ms
Python 3.8.2: 5.78 ms
PyPy 7.3.1: 16.25 ms
Lisp SBCL 1.4.3: 22.11 ms
Fennel 0.4.1: 22.88 ms
JavaScript v14.5.0: 25.81 ms
Ruby 2.7.0p0: 30.53 ms
Factor 0.98: 71.96 ms 15:59
Racket v7.7: 77.22 ms
Julia 1.4.2: 97.18 ms
Raku 2020.01: 117.63 ms
Clojure 1.10.1: 811.87 ms
(after running that test, I switched to the 2020.06 version of Raku)
16:01 leah2 left 16:02 sena_kun joined 16:04 Altai-man_ left
timotimo yeah that about matches what i get 16:11
the work jonathan is doing at the moment (the RakuAST thing) sounds like it can enable a decent start-up time decrease 16:12
sena_kun timotimo, how so? Isn't it adding up a layer for `parse -> RakuAST -> QAST -> bytecode`? 16:21
codesections if it does, that would be pretty great. I'm just starting to dip my toes into the Raku ecosystem, but it sure seems like Johathan is everywhere – that RakuAST, MoarVM, cro, Comma 16:22
I can't tell how much of that is because Raku really *is* as productive as y'all say, and how much he's just really impressive :D But I'm hoping it's at least a bit of both! 16:23
sena_kun codesections, to be precise, cro does not demand tremendous amounts of time these days and every release of Comma these days is mostly done by me, so jnthn can take the more interesting bits. :P 16:24
16:24 wamba joined
codesections Oh, thanks for the clarification! 16:24
I hope it didn't sound like I was minimizing your contribution (or anyone else's, for that matter). Like I said, I'm very new 16:25
sena_kun No problem. I mean, there are _indeed_ a lot of things on jnthn's shoulders, hard to say otherwise. But it is not a "almost one contributor project", there are people around, so it isn't "too" cruel. 16:27
codesections That makes sense, thanks for the clarification. (I like the implication that it's not too cruel – just cruel enough!) 16:29
re: "adding up a layer for `parse -> RakuAST -> QAST -> bytecode`", things like that *can* speed things up. I mostly program in Rust, and they had a similar addition: they previously went from src->HIR->LLVM IR->machine code, and changed to src->HIR->MIR->LLVM IR->machine code. And that resulted in a significant speedup 16:36
(even though it added a step, it saved enough work at the LLVM level to *much* more than pay for itself 16:37
)
sena_kun May be, would be rather cool if so. :)
16:41 MilkmanDan left 16:44 flossy_ left, flossy joined 16:48 softmoth joined
Geth doc/finanalyst-patch-2-1: a101f8c393 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/typesystem.pod6
Update typesystem.pod6

There is almost nothing about TWEAK in the documentation. Even when the TWEAK is mentioned, it is not clear why it is needed, until you get a compile error like the one shown in the example.
   Further, the documentation does not contain any reference to the signature of TWEAK.
A small test with `submethod TWEAK(|c) {say $c.raku}` shows that it is passed the same variables as are passed to BUILD.
16:50
doc: finanalyst++ created pull request #3503:
Update typesystem.pod6
16:53 MilkmanDan joined 16:59 lainon joined 17:09 yuplushi joined 17:12 softmoth left 17:13 lichtkind joined 17:18 hungryd89 left 17:21 stux|RC-only joined 17:25 leah2 joined 17:36 sftp left 17:41 sftp joined
skaji_ Hi, 17:45
I tried making setup-raku-action for GitHub Actions: github.com/skaji/setup-raku
It seems it works fine. github.com/skaji/raku-Acme-Test-Mo.../158432076
I think I could transfer the repository to github.com/Raku, and we could maintain it as Raku community. 17:46
Any thoughts?
lizmat skaji_: excellent idea... please go ahead :-) 17:52
17:59 sftp left 18:02 leont left, Altai-man_ joined 18:05 sena_kun left 18:08 sftp joined
SmokeMachine skaji_: what about a mi6 release GitHub action? 18:14
codesections By the way, it looks like precompiling a "hello world" script as a module and en 18:16
*invoking it with -e '' (as discussed above) doesn't make the startup faster – though I bet it would for less trivial scripts 18:17
timotimo it should make a bigger difference if the module has more code in it 18:32
codesections Yeah, I figured as much :) Just adding to my chart for best-case/hello world times
skaji_ lizmat: Thanks! Done. github.com/Raku/setup-raku 18:33
I would like to publish setup-raku to github.com/marketplace. 18:36
For this, it seems that Raku org admins must accept the GitHub Marketplace Developer Agreement.
lizmat: Could you do that? 18:37
SmokeMachine: It's not difficult to create mi6 release GitHub actions. 18:39
I personally hesitate to store PAUSE password in GitHub Actions, though:)
SmokeMachine even with GH secrets?
skaji_ Personally, yes. 18:40
18:40 oneeggeach joined, oneeggeach left 18:44 OpenZen joined
skaji_ A PAUSE account usually correspond to a real person, not to some organization. 18:48
If you store your PAUSE password in GitHub repository, then any collaborators can access your PAUSE password. 18:49
18:54 sftp left
codesections The docs list several "module builder and authoring tools", docs.raku.org/language/modules-extra, and I don't really understand the difference between them. skaji, is your App::Mi6 a replacement/alternative to App::Assixt and/or Module::Skeleton? Or do the three serve different purposes, so that I'd use more than one at a time? 18:55
18:56 flossy left 18:57 flossy joined 18:59 sftp joined 19:12 rbt left
skaji_ As it says, Module::Skeleton only generates a skeleton module. 19:12
App::Assixt may have some useful features that mi6 does not have.
19:12 rbt joined
skaji_ I make mi6 intentionally simple and "self-assertive". 19:14
codesections Thanks! So, if I'm understanding correctly, App::Assixt and mi6 are alternatives (that is, I should use one or the other, but probably not both)? 19:15
And mi6 exists to be a simpler/more minimal alternative?
skaji_ Right, it does not make sense to use 2 authoring tools to the same 1 repository. 19:18
codesections Thanks, makes sense! And, in this context, I read "self-assertive" to mean something like "declarative" – that is, based on a config file that describes what you want, rather than a more procedural description of how to do it?
(Is that right? I haven't come across the term "self-assertive" in this context before) 19:19
19:20 nightfrog left, nightfrog joined
skaji_ By "self-assertive", I mean: 19:22
"mi6 build" always regenerates META6.json and README.md. "mi6 release" always checks you have Changes entries, and creates git commit and tag. 19:23
codesections aha, I get it – "assertive" in the sense of test "assertions" 19:24
thanks for clearing that up
Sounds like just the right tool for me, then :D
One other quick question about mi6 while you're here: I notice that `mi6 new` creates a `.pm6` file with `use v6.c`. Is there a particular reason to use 6.c instead of 6.d? 19:27
19:31 molaf left, stoned75 left 19:32 Black_Ribbon joined
skaji_ actually i'm thinking about removing "use v6" things 19:32
github.com/skaji/mi6/pull/93 19:33
(I'm going to go to bed. See ya) 19:34
codesections Thanks again :D
19:37 stoned75 joined
SmokeMachine I'm starting to explain the Red's architecture on documentation (still att the beginning) could some one take a look and give me some opinions/suggestions/ help on how it's going? fco.github.io/Red/tutorials/architecture 19:44
codesections I might not be the right audience for this – I'm very new to Raku and don't do a ton of work with ORMs in my main language. But I took a look at the page you linked and am happy help if I can 19:56
I thought that page was very clear and gave a nice overview :) 19:58
I have a few suggestions for the 2nd paragraph – mostly just tweaking the wording slightly to break up the concepts a bit. Would you like me to paste my suggestion in? 19:59
MasterDuke SmokeMachine: github.com/FCO/Red/pull/432 has some minor edits 20:01
codesections Oh, that's obviously a better approach than pasting suggestions in IRC. I'll also open a PR 20:03
20:03 sena_kun joined 20:04 Altai-man_ left 20:14 wamba left, epony left, dustinm`_ left 20:17 lainon left 20:19 cj joined 20:20 broquaint joined, avar joined, avar left, avar joined, poga joined 20:24 xinming left, stux|RC joined 20:25 wamba joined, epony joined, dustinm`_ joined, benaiah joined, lucs joined, ensamvarg joined, kst joined, xxpor joined, ambs_ joined, camelia joined, ribasushi joined, a6502 joined, tadzik joined, mojca joined, fvox joined, protium joined 20:27 xinming joined, sena_kun left, Black_Ribbon left, oddp left, oodani left, maggotbrain left, charsbar left, fling left, samebchase left, AlexDaniel left, tinita left, m0ltar left, APic left, japhb left, perlbot left, kybr left, gugod left 20:29 sena_kun joined, Black_Ribbon joined, oddp joined, oodani joined, maggotbrain joined, charsbar joined, fling joined, samebchase joined, AlexDaniel joined, tinita joined, m0ltar joined, APic joined, japhb joined, perlbot joined, kybr joined, gugod joined 20:30 MilkmanDan left, yuplushi left, linkable6 left, elcaro_ left, moony left, Cabanossi left, dudz left 20:31 yuplushi joined, MilkmanDan joined, linkable6 joined, elcaro_ joined, moony joined, ShimmerFairy joined, mithaldu_ joined, nativecallable6 joined, releasable6 joined, unicodable6 joined, kent\n joined, neheist2 joined, kawaii joined, zostay joined, peteretep joined, tbrowder joined, cooper joined, roguelazer joined, a3f joined, domm joined, isacl___ joined, BinGOs joined, mtj_ joined, Grrrr joined, perlmaros joined, neheist2 left, Cabanossi joined, dudz joined, spycrab0 joined, xkr47 joined, reportable6 joined, tellable6 joined, bisectable6 joined, Hotbees joined, Nasrudin joined, BlackChaosNL[m] joined, committable6 joined, statisfiable6 joined, Grinnz joined, PotatoGim joined, jhill joined, smash joined, holyghost left, kawaii left 20:32 jhill left, holyghost joined, Geth joined, hoelzro joined, Altreus joined, moon-child joined, Grauwolf joined, wbn joined, eiro joined, jcallen joined, jnthn joined 20:33 xinming left, telex left, sergot_ left, xinming joined, telex joined, sergot_ joined, dotdotdot joined, mniip joined, Noisytoot joined, schlaftier joined, greppable6 joined, bloatable6 joined, shareable6 joined, benchable6 joined, sourceable6 joined, notable6 joined, quotable6 joined, coverable6 joined, x[LGWs4x4i]uG2N0 joined, lizmat joined, raku-bridge joined, eery joined, TimToady joined, Voldenet joined, pierrot joined, karupanerura joined, shadowpaste joined, robertle joined, cibs joined, peteretep left 20:34 aindilis left, dogbert17 left, skyl4rk left, spycrab0 left, Grinnz left, aindilis joined, dogbert17 joined, skyl4rk joined, phogg joined, jjatria joined, gabiruh joined, helit joined, gfldex joined, SmokeMachine joined, Util joined, astronavt joined, ingy joined, dg joined, Ulti joined, masak joined, autarch joined, moritz joined, cxreg joined, broquaint left, stoned75 left, bdju left, HarmtH left, rindolf left, orinthe left, cpage left, erdic left, grumble left, abraxxa left, nebuchadnezzar left 20:35 PotatoGim left, AlexDaniel` left, webstrand left, ecocode left, skaji_ left, broquaint joined, stoned75 joined, bdju joined, HarmtH joined, rindolf joined, orinthe joined, cpage joined, erdic joined, grumble joined, abraxxa joined, nebuchadnezzar joined, samcv joined, jhill joined, AlexDaniel` joined, pnu__ joined, CIAvash joined, unclechu joined, timeless joined, robinsmidsrod joined, ChoppedBacon joined, webstrand joined, ecocode joined, skaji_ joined 20:36 timeless left, flossy left, OpenZen left, pecastro left, sno left, Maylay left, Xliff left, go|dfish left, veesh left, eseyman left, lnx left, erdic left 20:37 flossy joined, OpenZen joined, pecastro joined, sno joined, Maylay joined, Xliff joined, go|dfish joined, veesh joined, eseyman joined, lnx joined, mst joined, riatre joined, sivoais joined, timotimo joined, Nasrudin left, BlackChaosNL[m] left, vike left, Kaiepi left, Manifest0 left, libertas left, jast left, spacebat2 left, TreyHarris left, perigrin left, ptrcmd left, freezing_ left, brass left 20:38 hobbs left, eater left, nekomune left, vike joined, Kaiepi joined, Manifest0 joined, libertas joined, jast joined, spacebat2 joined, TreyHarris joined, krunen joined, Woodi joined, rjbs joined, kini joined, literal joined, samebchase- joined, perigrin joined, ptrcmd joined, freezing_ joined, brass joined, silug joined, Summertime joined, Celelibi joined, hobbs joined, eater joined, nekomune joined, Celelibi left, flossy left, a3r0_ left, El_Che left, dpk left, tomaw left, renormalist left, xi left, Mithaldu left, nine left, jdv79 left, jhill left, poga left, avar left, nightfrog left, leah2 left, stux|RC-only left, Benett left, cpan-raku left, notandinus left, Zero_Dogg left, reach_satori left, cgfbee left, jvverde_ left, squashable6 left, silug left, Summertime left, hobbs left, eater left, nekomune left, vike left, Kaiepi left, Manifest0 left, libertas left, jast left, spacebat2 left, TreyHarris left, krunen left, Woodi left, rjbs left, kini left, literal left, samebchase- left, perigrin left, ptrcmd left, freezing_ left, brass left, OpenZen left, pecastro left, sno left, Maylay left, Xliff left, go|dfish left, veesh left, eseyman left, lnx left, mst left, riatre left, sivoais left, timotimo left, AlexDaniel` left, pnu__ left, CIAvash left, unclechu left 20:39 robinsmidsrod left, ChoppedBacon left, webstrand left, ecocode left, skaji_ left, broquaint left, stoned75 left, bdju left, HarmtH left, rindolf left, orinthe left, cpage left, grumble left, abraxxa left, nebuchadnezzar left, samcv left, aindilis left, dogbert17 left, skyl4rk left, phogg left, jjatria left, gabiruh left, helit left, gfldex left, SmokeMachine left, Util left, astronavt left, ingy left, dg left, Ulti left, masak left, autarch left, moritz left, cxreg left, xinming left, telex left, sergot_ left, dotdotdot left, mniip left, Noisytoot left, schlaftier left, greppable6 left, bloatable6 left, shareable6 left, benchable6 left, sourceable6 left, notable6 left, quotable6 left, coverable6 left, x[LGWs4x4i]uG2N0 left, lizmat left, raku-bridge left, eery left, TimToady left, Voldenet left, pierrot left, karupanerura left, shadowpaste left, robertle left, cibs left, holyghost left, Geth left, hoelzro left, Altreus left, moon-child left, Grauwolf left, wbn left, eiro left, jcallen left, jnthn left, Cabanossi left, dudz left, xkr47 left, reportable6 left, tellable6 left, bisectable6 left, Hotbees left, committable6 left, statisfiable6 left, smash left, MilkmanDan left, yuplushi left, linkable6 left, elcaro_ left, moony left, ShimmerFairy left, mithaldu_ left, nativecallable6 left, releasable6 left, unicodable6 left, kent\n left, zostay left, tbrowder left, cooper left, roguelazer left, a3f left, domm left, isacl___ left, BinGOs left, mtj_ left, Grrrr left, perlmaros left, sena_kun left, Black_Ribbon left, oddp left, oodani left, maggotbrain left, charsbar left, fling left, samebchase left, AlexDaniel left, tinita left, m0ltar left, APic left, japhb left, perlbot left, kybr left, gugod left, wamba left, epony left, dustinm`_ left, benaiah left, lucs left, ensamvarg left, kst left, xxpor left, ambs_ left, camelia left, ribasushi left, a6502 left, tadzik left, mojca left, fvox left, protium left, cj left, sftp left, lichtkind left, codesections left, vrurg left, evalable6 left, bocaneri left, marcusr left, [Coke] left, tejr left, rir left, MasterDuke left, Roamer`_ left, mrsolo left, daxim left, DarthGandalf left, albino left, esh left, rba left, [ptc] left, Bucciarati left, KotH left, flossy joined, nekomune joined, eater joined, hobbs joined, Summertime joined, silug joined, brass joined, freezing_ joined, ptrcmd joined, perigrin joined, samebchase- joined, literal joined, kini joined, rjbs joined, Woodi joined, krunen joined, TreyHarris joined, spacebat2 joined, jast joined, libertas joined, Manifest0 joined, Kaiepi joined, vike joined, timotimo joined, sivoais joined, riatre joined, mst joined, lnx joined, eseyman joined, veesh joined, go|dfish joined, Xliff joined, Maylay joined, sno joined, pecastro joined, OpenZen joined, skaji_ joined, ecocode joined, webstrand joined, ChoppedBacon joined, robinsmidsrod joined, unclechu joined, CIAvash joined, pnu__ joined, AlexDaniel` joined, jhill joined, samcv joined, nebuchadnezzar joined, abraxxa joined, grumble joined, cpage joined, orinthe joined, rindolf joined, HarmtH joined, bdju joined, stoned75 joined, broquaint joined, cxreg joined, moritz joined, autarch joined, masak joined, Ulti joined, dg joined, ingy joined, astronavt joined, Util joined, SmokeMachine joined, gfldex joined, helit joined, gabiruh joined, jjatria joined, phogg joined, skyl4rk joined, dogbert17 joined, aindilis joined, cibs joined, robertle joined, shadowpaste joined, karupanerura joined, pierrot joined, Voldenet joined, TimToady joined, eery joined, raku-bridge joined, lizmat joined, x[LGWs4x4i]uG2N0 joined, coverable6 joined, quotable6 joined, notable6 joined, sourceable6 joined, benchable6 joined, shareable6 joined, bloatable6 joined, greppable6 joined, schlaftier joined, Noisytoot joined, mniip joined, dotdotdot joined, sergot_ joined, telex joined, xinming joined, jnthn joined, jcallen joined, eiro joined, wbn joined, Grauwolf joined, moon-child joined, Altreus joined, hoelzro joined, Geth joined, holyghost joined, smash joined, statisfiable6 joined, committable6 joined, Hotbees joined, bisectable6 joined, tellable6 joined, reportable6 joined, xkr47 joined, dudz joined, Cabanossi joined, perlmaros joined, Grrrr joined, mtj_ joined, BinGOs joined, isacl___ joined, domm joined, a3f joined, roguelazer joined, cooper joined, tbrowder joined, zostay joined, kent\n joined, unicodable6 joined, releasable6 joined, nativecallable6 joined, mithaldu_ joined, ShimmerFairy joined, moony joined, elcaro_ joined, linkable6 joined, MilkmanDan joined, yuplushi joined, gugod joined, kybr joined, perlbot joined, japhb joined, APic joined, m0ltar joined, tinita joined, AlexDaniel joined, samebchase joined, fling joined, charsbar joined, maggotbrain joined, oodani joined, oddp joined, Black_Ribbon joined, sena_kun joined, protium joined, fvox joined, mojca joined, tadzik joined, a6502 joined, ribasushi joined, camelia joined, ambs_ joined, xxpor joined, kst joined, ensamvarg joined, lucs joined, benaiah joined, dustinm`_ joined, epony joined, wamba joined, poga joined, avar joined, cj joined, nightfrog joined, sftp joined, leah2 joined, stux|RC-only joined, lichtkind joined, Benett joined, cpan-raku joined, notandinus joined, tejr joined, Zero_Dogg joined, reach_satori joined, codesections joined, vrurg joined, rir joined, evalable6 joined, bocaneri joined, marcusr joined, cgfbee joined, jvverde_ joined, MasterDuke joined, squashable6 joined, [Coke] joined, Roamer`_ joined, tardisx joined, perryprog joined, tailgate joined, rba joined, esh joined, albino joined, DarthGandalf joined, daxim joined, mrsolo joined, KotH joined, Bucciarati joined, [ptc] joined, a3r0_ joined, El_Che joined, dpk joined, tomaw joined, renormalist joined, xi joined, Mithaldu joined, nine joined, jdv79 joined, e joined, simcop2387 joined, xq joined, timlegge joined, rypervenche joined, caasih joined, xelxebar joined, dylanwh joined, Ekho left, stux|RC left, Roamer`_ left, dylanwh left, caasih left, rypervenche left, simcop2387 left, mrsolo left, daxim left, DarthGandalf left, xq left, albino left, esh left, rba left 20:40 AlexDaniel` left, CIAvash left, unclechu left, Roamer`_ joined, dylanwh joined, caasih joined, rypervenche joined, xq joined, simcop2387 joined, mrsolo joined, daxim joined, DarthGandalf joined, albino joined, esh joined, rba joined, timlegge left, [ptc] left, Bucciarati left, KotH left, Grinnz joined, timlegge joined, [ptc] joined, Bucciarati joined, KotH joined 20:41 kawaii joined, erdic joined, spycrab0 joined, spycrab0 left, spycrab0 joined, tailgate left, perryprog left, tardisx left, stux|RC joined, jmcgnh joined, tardisx joined, tailgate joined, perryprog joined 20:42 xinming left, e left, a3r0_ left, El_Che left, dpk left, tomaw left, renormalist left, xi left, Mithaldu left, nine left, jdv79 left, e joined, a3r0_ joined, El_Che joined, dpk joined, tomaw joined, renormalist joined, xi joined, Mithaldu joined, nine joined, jdv79 joined 20:43 peteretep joined, Ekho- joined, timeless joined, timeless left, timeless joined, timeless left, timeless joined, peteretep left, peteretep joined, BlackChaosNL[m] joined 20:44 xinming joined 20:49 BuildTheRobots joined, broquaint left, stoned75 left, bdju left, HarmtH left, rindolf left, orinthe left, cpage left, grumble left, abraxxa left, nebuchadnezzar left, samcv left 20:50 broquaint joined, stoned75 joined, bdju joined, HarmtH joined, rindolf joined, orinthe joined, cpage joined, grumble joined, abraxxa joined, nebuchadnezzar joined, samcv joined, Celelibi joined, AlexDaniel` joined, unclechu joined, matiaslina joined, xfix joined, Nasrudin joined, CIAvash joined 20:52 xinming left
rypervenche Is it safe to say that when using .kv on a hash, there would be no need to use a .map on it since the .kv already kind of does that? 20:52
20:53 xinming joined 20:54 PotatoGim joined
timotimo i wouldn't say so? 20:55
i mean you'd put whatever code you like in the map, kv just gives you keys and values rather than pair objects which is the default listification of hashes 20:57
20:57 softmoth joined 20:58 xinming left 20:59 xinming joined 21:15 aborazmeh joined, aborazmeh left, aborazmeh joined 21:21 rindolf left 21:30 dolmen joined 21:31 Ekho- is now known as Ekho, jvverde_ left 21:42 wamba left 21:44 m_athias joined 21:45 dolmen left, dolmen joined 21:46 dolmen left 21:50 stoned75 left 21:52 stoned75 joined 21:53 m_athias left 21:55 m_athias joined 22:00 gordonfish joined 22:02 Altai-man_ joined 22:04 sena_kun left 22:11 stoned75 left 22:13 xinming left, xinming joined 22:14 leont joined 22:18 m_athias left 22:22 m_athias joined 22:40 fridim joined 22:41 m_athias left 22:43 molaf joined 22:46 leont left 22:52 hungrydonkey joined 22:58 m_athias joined 23:07 bocaneri is now known as Sauvin
Xliff Ooh! VTE! 23:19
Xliff discoveres another GLib project for portin' 23:20
23:20 pecastro left
raku-bridge <DataKinds> has the file extension been officially changed to .rakumod yet? 23:21
<DataKinds> it seems my install (Rakudo version 2020.06-7-gf1960baa9 built on MoarVM version 2020.06-6-gbf6af07de) isn't recognizing some files unless they have .pm6 23:22
<DataKinds> despite my META6.json reporting otherwise
Xliff DataKinds: To my knowledge, .rakumod should work, but I don't know if all of the authoring tools have been updated to use it, yet. 23:23
23:25 aborazmeh left 23:27 skyl4rk left 23:28 skyl4rk joined
raku-bridge <DataKinds> that's so bizarre Xliff, because I have a cro project here and a Routes.rakumod 23:36
<DataKinds> if I write it as Routes.rakumod (with the same in my META6), I get a Could not find Routes error 23:37
<DataKinds> whereas if I rename it Routes.pm6 and change the META6 accordingly, it works fine
AlexDaniel somebody please tell them? :) www.reddit.com/r/ProgrammerHumor/c...s/fx0zbyf/ 23:40
23:42 JRaspass joined 23:47 Xliff left 23:58 cpan-raku left 23:59 cpan-raku joined