David E. Wheeler

Results 436 comments of David E. Wheeler

[Playground](https://go.dev/play/p/GgFkX7Aa6js)

Interesting. I was just super surprised to see it be so uniform and long.

I found a couple more: * `transunion.com` returns a 403. Also does in Curl but changes to a 301 if I give it a valid user agent * `https://bookshop.org/books/project-hail-mary/9780593135204` returns...

Also added ``` IgnoreURLs: - mailto:[email protected] ``` To my config and `htmltest` still reports it. http URls on the list are properly ignored.

I fixed this by adding this hack: ``` /* WTF Chrome? Hack: http://stackoverflow.com/a/13587388/79202 */ @media screen and (-webkit-min-device-pixel-ratio:0) { h1 { left: 0.9em; } } ``` Probably not the correct...

Better fix: 1. Reverse the `h1` and `h2` lines in `header.html`. 2. Delete the `position`, `display`, and `top` rules from the `h1` CSS.

I guess it's because `cmd/jv` isn't versioned like the library is.

Oh! Just need to put the v5 in the right place I guess. This stuff is so opaque.

> For the standalone example, see [#320 (comment)](/coreos/go-systemd/issues/320#issuecomment-552499085) which explains the Go module switch. Yes, I was aware of the switch, to Go Modules in v22.0.0, which is great. I...

Looks like [capnslog](https://github.com/coreos/pkg/) does not pin a version of go-systemd, [etcd does](https://github.com/etcd-io/etcd/blob/63dd73c1869f1784f907b922f61571176a2802e8/go.mod#L7), so presumably if I copy that line it will continue to work. Would be nice to have a...