Martin Rauscher

Results 56 issues of Martin Rauscher

Thanks for this fantastic piece of software! I found a minor issue. When triggering preloading (by hovering) of some element, some other elements on my page suddenly got a new...

`htmx.config.inlineScriptNonce` is missing from the type definitions although it clearly exists in the code

### Summary The underlying issue will be fixed in Go 1.22 and is available in Go 1.21 with the `GOEXPERIMENT=loopvar` flag enabled ### Steps to reproduce the behavior ```Go for...

enhancement

```Go ctx, cancel := context.WithTimeout(cctx, 2*time.Second) defer cancel() wf := tClient.GetWorkflow(ctx, wfID, "") err := wf.Get(ctx, &res) if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) { fmt.Println("timeout") } else { fmt.Println("no timeout")...

potential-bug

See https://github.com/zalando/postgres-operator/blame/06947eed28b72061ea82b1257f42940b50d20e8a/README.md#L96 This only leads to a empty Heroku page

I had to write this myself and then use `SearchRaw`. ```Go type searchResult[THits any] struct { Hits []THits `json:"hits"` EstimatedTotalHits int64 `json:"estimatedTotalHits,omitempty"` Offset int64 `json:"offset,omitempty"` Limit int64 `json:"limit,omitempty"` ProcessingTimeMs int64...

help wanted
needs more info
maintenance

every network operation in Go should take a context, so it can be cancelled and proper deadlines applied. This is only available in the task waiting api and even there...

enhancement
help wanted
needs more info
maintenance

It seems like you changed from using the Temporal version in your git tags to chart-version tags. So is an issue for us as we automate the DB setup etc...

bug

Search results are untyped (`map[string]any`) which makes this very unergonomic to use Currently we're working around it with a custom search method ```go func searchCollection[TDoc any](ctx context.Context, collection string, params...

When using `Windows.Web.Http.HttpClient` you can do stuff like this: ``` private HttpClient CreateClient() { var filter = new HttpBaseProtocolFilter(); if (_env.IgnoreSslProblems) { filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.IncompleteChain); filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.Expired); filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.Untrusted); filter.IgnorableServerCertificateErrors.Add(ChainValidationResult.InvalidName); } return new HttpClient(filter);...