lonix1

Results 448 comments of lonix1

Same here, and I can't repro the problem. Works from the codelens, but not from the panel.

I also want a hook run after *cert creation* (rather than *cert renewal*). What I'm doing is defining a script in `cli.ini` - according to @bmw it [will be run](https://community.letsencrypt.org/t/is-certbot-certonly-renew-with-new-domains-executing-the-hook-deploy-scripts-if-the-cert-is-renew/70741/11)...

FYI this is how [FluentAssertions](https://fluentassertions.com/exceptions/) does it: ````cs action.Should().Throw() .And.ParamName.Should().Be(nameof(foo)) .And.Message.Should().Be("Something crashed.") ```` Ignore the verbose syntax, the underlying idea is what matters. Would be very useful to have something...

On jsdelivr the file 'dist/leaflet.css' is 558.5KiB :open_mouth: (It's possible to use jsdelivr's "Auto-optimization" feature, but then one doesn't have SRI.)

@mourner Yes, you're right. The [values here](https://www.jsdelivr.com/package/npm/leaflet?tab=files&path=dist) are misleading... that is the **download count**, not the **file size**! :laughing: :laughing: JsDelivr's unminified file is 3,814 and its auto-minified file is...

> It is really a pain to add the comment. +1 My use case: I always forget the syntax, even though it's as simple as `# shellcheck disable=SCxxxx`. So I...

Or which is the latest version, with a link to the binaries.

Same issue here. We publish a single-file self-contained executable in a docker image, alongside the playwright stuff. When dealing with docker images that is significantly more convenient and eliminates many...

Another reason: the current approach is extremely complicated (and downright weird) when used in a docker container, and especially in a CI environment. One needs to restore and build in...

I also have this issue, I thought it was "just me".