Martin Tournoij
Martin Tournoij
I'm okay with just not having `go install zgo.at/goatcounter/v2/cmd/goatcounter@latest`. It's not ideal, but `git clone [..] && go install ./cmd/goatcounter` isn't that big of a deal, and I'd rather spend...
Should be fixed after bd93d39 and 37ffa94, FYI
How are you recording pageviews for your RSS feed? Via server logs?
I detached this to a new issue @amarchen. > You certainly know your crowd better, @arp242. Yet from what I can see the CSV exported by goatcounter has column names,...
I want to move GoatCounter towards storing aggregate data only, and deprecating the CSV export. So that would make this issue obsolete.
There are also quite a few other issues by the way; you can see the full test run output at: https://toml-lang.github.io/toml-test-matrix/output/js-deno-toml.html The integration with [toml-test](https://github.com/toml-lang/toml-test) is at https://github.com/toml-lang/toml-test-matrix/blob/main/scripts/deno-toml-decoder.ts and https://github.com/toml-lang/toml-test-matrix/blob/main/scripts/deno-toml-encoder.ts...
I think the other JS implementations either subclass Date or provide their own classes. e.g. https://github.com/squirrelchat/smol-toml/blob/mistress/src/date.ts#L36 I don't really have an opinion myself on how to best fix it one...
Personally I wouldn't say that slices.Concat() is strictly better for just two slices: concat := slices.Concat(slice1, slice2) concat := append(slice1, slice2...) Both are easy to read, and both will have...
Well, maybe, but that seems mostly a stylistic preference than anything else. And also: % rg -g '*.go' -F 'append(' ~/code | grep -F '...' | wc -l 528 And...
Another way to address the issue is to allow "converting" a TypedClient to a Client. You can kind-of already do this, and it works, but gives a go vet error....