00:16 librasteve_ left 00:24 arkiuat left 00:25 arkiuat joined 01:09 KennyLog-in is now known as RoscoColtrane 02:18 stanrifkin joined 03:03 stanrifkin_ joined 03:05 Aedil joined 03:06 stanrifkin left 03:10 arkiuat left 03:22 arkiuat joined 03:29 arkiuat left 03:35 arkiuat joined
japhb I'm trying to `mi6 release` Terminal-Print, which has the auth zef:terminal-printers (which I am an admin of). I am logged in to fez. However when I try the `mi6 release` I get `auth 'zef:terminal-printers' in META6.json does not match auth 'zef:japhb' or 'zef:' in ~/.fez-config.json` -- anyone have any idea what could be messed up? 04:03
Just to be sure, I nuked my `~/.fez-config.json` and recreated it with `fez login`, but that didn't do anything.
05:51 kjp left 05:52 kjp joined 05:54 kjp left, kjp joined 06:05 jgaz left 06:15 Aedil left 06:16 Aedil joined 06:56 oodani left 06:57 oodani joined 07:09 arkiuat left 07:25 arkiuat joined 07:28 stanrifkin_ left 07:42 arkiuat left 08:01 arkiuat joined 08:02 stanrifkin joined 08:06 arkiuat left 08:11 stanrifkin left 08:18 kylese joined 08:35 arkiuat joined 08:40 arkiuat left 09:07 arkiuat joined 09:12 arkiuat left 09:30 Sgeo left 09:40 arkiuat joined 09:45 arkiuat left 09:47 apac joined 10:08 arkiuat joined 10:13 arkiuat left 10:15 Aedil left 10:18 Aedil joined 10:41 arkiuat joined 10:46 arkiuat left 11:08 arkiuat joined 11:12 arkiuat left 11:37 Maylay left 11:41 Maylay joined 11:42 arkiuat joined 11:49 arkiuat left 12:09 arkiuat joined 12:13 arkiuat left 12:42 arkiuat joined 12:49 arkiuat left
[Coke] .seen raiph 13:06
tellable6 [Coke], I saw raiph 2024-11-18T22:12:37Z in #whateverable: <raiph> m: gist.github.com/raiph/d244e984dfbb...97aeebaaf6
[Coke] can we get the bots in raku-doc also?
13:10 arkiuat joined 13:19 apac left, arkiuat left
tbrowder i just filed another doc issue to reflect prob i'm having with raku insisting i am using subtest even though i have not explicitly done so. now i am struggling to make it work with explicit subtests and haven't yet succeeded. 13:32
13:35 arkiuat joined
tbrowder m: use Test; my @a = 0, 1, 2; is @a.elems, 3; for @a.kv -> $i, $n { is $i, $n }; done-testing; 13:35
camelia ok 1 -
ok 2 -
ok 3 -
ok 4 -
1..4
tbrowder hm, my real test is more complex, better go look closer...if i can't make progress will show gist later 13:37
13:39 arkiuat left
[Coke] instead of done-testing in that example, I would recommend plan 1+@.elems; 13:48
You should always plan when possible.
ab5tract [Coke]++ 13:49
I think `plan *` is also possible, though probably less preferrable
13:54 arkiuat joined
[Coke] m: use Test; plan * 13:58
camelia
[Coke] ew.
Note that 'plan *' isn't listed in the docs. (and seems no better than done-testing) 13:59
also plan * isn't in roast.
also why do we even have 'plan *' ?? 14:05
ab5tract it gets you one step closer to a plan, at least ;) 14:18
ugexe plan * doesnt even do anything 14:23
[Coke] I argue that it makes it look like you have a plan when you don't, and then you'll forget to update it. 14:24
that is, it's actively worse.
ab5tract [Coke]: agreed
ugexe m: use Test; plan 1; die 42;
camelia 1..1
42
in block <unit> at <tmp> line 1

# You planned 1 test, but ran 0
ugexe m: use Test; plan *; die 42; 14:25
camelia
42
in block <unit> at <tmp> line 1
ugexe 'plan *', even if it did work, could only be a much worse done-testing() 14:26
[Coke] ugexe++
ugexe m: use Test; plan 3..4; die 42;
camelia 1..3 4
42
in block <unit> at <tmp> line 1

# You planned 3 4 tests, but ran 0
ugexe i dont even know what that is supposed to mean
[Coke] ... 14:31
m: use Test; plan "BARF"
camelia 1..BARF
# You planned BARF tests, but ran 0
[Coke] reverts my recent documentation of 'plan *' and instead decides we should enforce plan Int. 14:32
[Coke] opens github.com/Raku/problem-solving/issues/498 14:34
tbrowder note i found the problem, at least i "fixed". some debug "say" statements were unintentionally leaking out. eliminating those made the problem go away. 14:36
14:54 simcop2387 left 14:58 arkiuat left 15:02 derpydoo joined 15:03 MoC joined 15:11 arkiuat joined 15:16 arkiuat left 15:28 arkiuat joined 15:33 arkiuat left 15:45 arkiuat joined 15:50 arkiuat left 16:18 arkiuat joined 16:20 derpydoo left 16:22 arkiuat left 16:39 arkiuat joined 16:43 arkiuat left 16:44 xkr47 left, xkr47 joined
Geth ¦ problem-solving: coke self-assigned Seq vs. List - Iterable, instead? github.com/Raku/problem-solving/issues/499 16:47
17:01 arkiuat joined
[Coke] if I have a snippet that has the test "use Foo" - is there a oneliner of code I can put before that so that the use will not fail (even if it has no content to use in it) 17:42
lizmat ugexe might have an idea about that 17:43
[Coke] Just trying to test more stuff in the docs. 17:45
patrickb tonyo: Tagging you for the above fez question by japhb 18:09
18:26 Sgeo joined 18:34 arkiuat left
ugexe [Coke]: you'd have to do something like github.com/niner/CompUnit-Repository-Mask which isn't very much code at all, but the repo i link to doesn't have a way to make the it pretend to work when it is not installed 18:38
[Coke] I can make that a pre-req for raku/doc testing, that's fine 18:43
thanks!
El_Che .
18:47 arkiuat joined 18:52 arkiuat left
[Coke] .seen wayland 19:02
tellable6 [Coke], I saw wayland 2025-08-30T11:30:28Z in #raku: <wayland76> [Coke]: Thanks! Resubmitted!
[Coke] .tell wayland - hey, sorry I fell off the internet for a while. Back now, trying to get your PR in!
tellable6 [Coke], I'll pass your message to wayland76
[Coke] .seen wayland76 19:03
tellable6 [Coke], I saw wayland76 2025-08-30T11:30:28Z in #raku: <wayland76> [Coke]: Thanks! Resubmitted!
19:05 melezhik joined
melezhik . 19:05
19:10 arkiuat joined, apac joined 19:15 arkiuat left 19:18 arkiuat joined 19:25 arkiuat left 19:39 arkiuat joined
Geth planet.raku.org: schultzdavid++ created pull request #12:
In index.tt, add link to Atom feed and to GitHub file containing the incorporated individual feeds
19:52
20:02 MoC left
[Coke] ugexe: niner's module doesn't seem to work when useing instead of requiring 20:12
(even if I BEGIN the mask step)
20:18 arkiuat left 20:47 arkiuat joined 20:54 arkiuat left 21:10 arkiuat joined 21:15 melezhik left 21:50 RoscoColtrane is now known as KennyLog-in 21:55 simcop2387 joined 22:10 simcop2387 left 22:41 simcop2387 joined 22:55 arkiuat left 23:07 arkiuat joined
Geth planet.raku.org: 4822367b65 | schultzdavid++ (committed using GitHub Web editor) | index.tt
In index.tt, add link to Atom feed and to GitHub file containing the individual feeds (#12)
23:15
23:15 simcop2387 left, simcop2387_ joined 23:17 simcop2387_ is now known as simcop2387