|
00:23
leppard left
01:18
leah2 left
01:24
hulk joined
01:25
kylese left
|
|||
| [Coke] | on rakudo, I agree. on NQP, there's just one failure in make test | 01:29 | |
|
01:31
leah2 joined
|
|||
| [Coke] | ... looks like we're already just testing the build for JVM, not the tests. | 01:44 | |
| Looks like we're not doing win or mac rakuast by default? | 01:47 | ||
| I assume relocatable doesn't work on mac? | 01:52 | ||
|
02:15
hulk left,
kylese joined
02:39
wayland left
03:09
human-blip left
03:12
human-blip joined
|
|||
| disbot | <simon_sibl> timo: if the rule contains a rule, that would propagate as well ? | 03:55 | |
|
03:55
human-blip left
|
|||
| disbot | <simon_sibl> m: grammar G { rule TOP { :i 'Foo' <bar> }; rule bar {'bar'} }; say G.parse("FOO bar") | 03:56 | |
| evalable6 | 「FOO bar」 bar => 「bar」 |
||
| disbot | <simon_sibl> m: grammar G { rule TOP { :i 'Foo' <bar> }; rule bar {'bar'} }; say G.parse("FOO BAR") | ||
| evalable6 | Nil | ||
| disbot | <simon_sibl> ok ok | ||
| <simon_sibl> m: grammar G { rule TOP { :i 'Foo' 'Foo' <bar> }; rule bar {'bar'} }; say G.parse("FOO foo bar") | 03:57 | ||
| evalable6 | 「FOO foo bar」 bar => 「bar」 |
||
| disbot | <simon_sibl> and it is indeed for the whole rule, still fine for what I wrote ok ! thanks | ||
|
03:58
human-blip joined
04:46
leppard joined
04:56
xinming joined
05:32
hwj joined
05:34
lucerne90 left
05:36
Sgeo_ joined
05:38
Sgeo left
06:06
Sgeo_ left
07:13
rnddim joined
07:14
rnddim left,
ShimmerFairy left,
rnddim joined
07:15
rnddim left
07:16
rnddim joined
07:29
rnddim left,
rnddim joined
07:33
leppard|2 joined,
leppard|2 is now known as Inline,
leppard left,
Inline is now known as leppard
08:05
lucerne90 joined
08:17
dakkar joined
08:22
spa1983 joined,
spa1983 left,
sp1983 joined
|
|||
| sp1983 | . | 08:23 | |
| voldenet: I have decided to start my own git server from the scratch and incorporate dsci into it ) | |||
| let's play big, ha-ha ) | 08:24 | ||
|
08:32
sp1983 left
09:56
sp1983 joined
|
|||
| sp1983 | By starting from the scratch I mean I am going to develop my own gitlab/forgejo alternative to host git repos . In mvp version I am thinking git pull / push and merge request . Plus of course dsci ci which will be part of the solution … | 09:58 | |
|
09:59
sp1983 left
12:17
El_Che_ left
12:18
El_Che joined
13:19
leppard|2 joined
13:22
leppard left
14:05
vrurg_ joined
|
|||
| ab5tract | [Coke]: if there is a limit, I have missed it. Also worth mentioning is the tap vs act distinction | 14:08 | |
| [Coke] | ? | ||
| ab5tract | [Coke]: eek, sorry, it looks like I responded to a quite earlier message from you :/ | ||
| [Coke] | Is that a throwback to an older discussion? | ||
|
14:09
vrurg left
|
|||
| ab5tract | You had asked about whether there is a limit to the number of taps on a supply | 14:09 | |
| tbrowder | hi, is it possible to have a published package with an independent sub package which can be used alone? for example, use A; or use A::B | ||
| ab5tract | I need to remember that Halloy doesn't scroll forward automatically | 14:10 | |
| tbrowder | the purpose is to use common constant resources. | 14:12 | |
| ab5tract | [Coke]: Since I can no longer even find the message in the scrollback, were you able to successfully do a bunch of taps on a supply? | 14:13 | |
| Because I don't think there is any set limit, but it would be interesting to have some details from a stress test | |||
| [Coke] | ab5tract: i think I ended up completely giving up on that approach. | 14:14 | |
| instead of having chained supplies, I did a race on the first set to get a second set, then did a race on that. | |||
| And then went further and added a skiplist so I only had a small number to process (theoretically I should be checking everything, but it was just WAAAAAY too slow) | 14:15 | ||
| s/set/group/, not Set | |||
| ab5tract | ah, makes sense. I took a similar approach in some local code I inted to share eventually for converting cbr files to pdf | ||
| (minus the skiplist) | 14:16 | ||
| you could "shake" the skiplist so that each run excludes a random subset, in case that feels like more "honest" coverage | 14:17 | ||
| Am I ass'ming myself with the assumption that this is blin related? | 14:18 | ||
|
14:25
hwj left
|
|||
| [Coke] | nope, $dayjob | 14:27 | |
| trying to find all instances of "X" across hundreds of git repos with maaaaany matching file types. | |||
| ab5tract | oh, slick! sounds like a perfect task for Raku | 14:31 | |
| [Coke] | s/file types/files/ | 14:39 | |
|
14:39
Sgeo joined
|
|||
| [Coke] | I also thought slow and then didn't want to wait hours for it to finish. :| | 14:39 | |
| HEH | |||
| thought *so* | |||
| ab5tract | :| indeed | 14:42 | |
| [Coke] | It's to grab a metric that we only need to look at once a quarter anyway. | 14:51 | |
| ... so I should care less about how long it takes. | 14:56 | ||
| ab5tract | weekly: 5ab5traction5.bearblog.dev/shellin...log-lines/ | 14:58 | |
| notable6 | ab5tract, Noted! (weekly) | ||
| ab5tract | So I haven't really done much with it before, but a single supplier can have multiple supplies | 15:04 | |
| so if there were issues with having many taps, I wonder if they could be resolved by fanning out at the supply level instead of the tap level | |||
| m: dd my $supplier = Supplier.new | 15:07 | ||
| camelia | $supplier = Supplier.new(taplist => Supplier::TapList.new) | ||
| ab5tract | the presence of taplist at the Supplier level makes me think not | ||
| tbrowder | forget my question about class and independent subs. | 15:15 | |
| new question: didn't the default META6.json used to have an api value? if not, shoiuld i add it for a major incompatibility revision? if so should i start at 1 or 2? | 15:20 | ||
| timo | m: my @foo = <a b c d e f>; @foo[1,2,*.raku.say]; | ||
| camelia | 6 | ||
| timo | ab5tract: the callable in postcircumfix:<[ ]> gets only the number of elements, not the entire list | ||
| also: cool post! | 15:28 | ||
| ab5tract | timo: I assumed that -1 put it into numeric context | 16:29 | |
|
16:29
dakkar left
|
|||
| ab5tract | well, first I remembered it to be as you said | 16:29 | |
| fixed. and thanks for reading! | 16:31 | ||
| "it sends the size" --> "but what about @a[*]?" --> "ah, but that's not a callable" | 16:32 | ||
| ^ the way my thinking _should_ have gone | |||
|
16:54
leppard|2 left
|
|||
| disbot | <melezhik.> . | 17:23 | |
|
17:34
lizmat left
17:45
lizmat joined
17:52
leppard|2 joined
17:54
wayland joined,
belluzj joined
17:57
leppard|2 left,
lizmat left
17:58
sergot left
17:59
lizmat joined
18:01
sergot joined
18:02
belluzj left
18:41
hwj joined
18:58
silug2 joined
18:59
silug left,
silug2 is now known as silug
|
|||
| Voldenet | wow git server is a big goal | 19:31 | |
|
20:37
hwj left
|
|||
| tonyo | . | 21:13 | |
|
21:57
[Coke] left
22:13
[Coke] joined
22:21
erooke left
22:27
silug left
22:49
erooke joined
22:50
silug joined
23:01
silug left
23:10
silug joined
|
|||