Carlana

Results 153 comments of Carlana

Not sure if this is a common enough need or not.

Update: ga-lite compatible Google Analytics is now planned to be sunset. https://blog.google/products/marketingplatform/analytics/prepare-for-future-with-google-analytics-4/ I would rather just drop Google than figure out how to change to their new thing.

A related issue is if you have absolute URLs like `https://example.com/page.html` and page.html exists in your project folder, but not yet on the site (because it hasn't been uploaded yet,...

Seems like a textbook usecase for [`os.UserCacheDir`](https://godoc.org/os#UserCacheDir).

I literally wrote a commit last night and thought, I should propose `url.MustParse` because I was wrapping so many can't fail package level URLs: https://github.com/spotlightpa/almanack/commit/40fcde98ffa3c9327800e8da68e8750780325d29

`must.Get` and `must.Do` are better names than `try.To` and `try.Must`. I will borrow your names. :-) I'm not sure if this should be in the standard library or not. We've...

Issue is still mistitled. Should be "io: ReadAll buffer resizing is inefficient."

[`bytes.Buffer.grow(int)`](https://cs.opensource.google/go/go/+/refs/tags/go1.17.6:src/bytes/buffer.go;l=142) uses a different algorithm, where it grows by 2*currentCap + requested n. It looks like this ends up being more efficient in certain cases.

I have had a good experience with piptools so far. It's the least disruptive to current practices.

What if the API were `func HTTP(baseurl string, options ...HTTPOptions) *Pipe`? `HTTPOptions` could default to GET, reject non-2XX, no special headers, no body, but let users provide those by passing...