Benjamin Bannier
Benjamin Bannier
zkg creates a lot of files which are not cleaned up after installation, e.g., from [a user listing their `/var/lib/zkg`](https://zeekorg.slack.com/archives/CTGDGK6EA/p1665675873375119): ``` 219M clones 72K logs 16K manifest.json 37M scratch 393M...
One can currently override the template used during `zkg create` with `--template `. In order to discover `features` of a template `create`'s documentation suggest using `template info` ```console --features FEATURE...
If an installed packaged `foo/A` `depends` on another package `foo/B` (which would have been installed automatically), one can still execute `zkg remove foo/B` without being notified that one might break...
It would be nice if `zkg info` would be able to show dependencies of a package (i.e., information derived from `depends` and `external_depends`). Ideally it would even be able to...
The style for `.code` uses `white-space: nowrap;` which causes all line breaks in e.g., preformated code blocks to be ignored. It seems almost any other value than `nowrap` would have...
Currently the Spicy operator `bytes::match` returns `result` where `result` is a HILTI type we do not expose or documented anywhere in Spicy, https://github.com/zeek/spicy/blob/b1f54e4d42fb950230f70633ad74d1aac9216e18/hilti/toolchain/src/ast/operators/bytes.cc#L987-L988 I would naively have expected that this...
As of `spicyc v1.11.0-dev.168 (b8776965e)` it seems impossible to initialize a `const` with the result of a function call, ```ruby module foo; function bar(): uint16 { return 4711; } #...
We have an optimization pass which removes dummy hook implementations hook we do emit when users did not provide their own hook implementations. What we did not implement at the...