Results 50 comments of mathew

Would also like. Active Directory tends to issue SAML assertions with NotBefore times with millisecond precision and no margin for error or clock drift.

Stdlib now has an [http.FS adaptor](https://pkg.go.dev/net/http#FS) to convert an `fs.FS` into an `http.FileSystem`, but unfortunately `fs.FS` doesn't support the file existence check `gzipped.Dir` does. There's `fs.StatFS` which adds `Stat` to...

Aha, I didn't know about `fs.Stat()`. That makes things much easier. Yes, in that case a general purpose wrapper should be fairly easy. I'm thinking that rather than change the...

Note that you can [set accept-encoding using curl](https://davidwalsh.name/check-gzip).

I don't understand why the minifier is lowercasing `.Type` in the original example. Surely that's a bug? If the file is an XML flavor of HTML, attributes are case-sensitive; if...

> I don't think my cloud provider does automated MySQL yet Same problem here. The reliance on MariaDB is really making it a pain to deploy.

With two actual machines (my Mac and a Synology box), the peerdiscovery ipv6 example works for me and finds 6 link-local addresses. The Synology box even finds both link-local addresses...

My tests were with globally routable IPv6 addresses, but I didn't actually make sure the systems were on separate networks. Other than firewalls, it shouldn't make a difference that they...

You'll have a link-local IPv6 address (fe80:) by default, whether or not you have an IPv6 Internet connection, as long as IPv6 isn't explicitly disabled. The address will be allocated...

Trying again with debug enabled: ``` [debug] 18:06:56 croc.go:284: banner: [debug] 18:06:56 croc.go:287: could not connect to localhost:: dial tcp [::1]:0: connect: can't assign requested address ``` I think that's...