Ali Sunjaya
Ali Sunjaya
Any idea for designing good db structure with i18n? Like user input product name that available in english, chinese, etc. This question is for anyone :) I already did some...
A simple PR, maybe a good thing to declare the return type to `nats.MsgHandler` same as the comment?
method `Reverse` is mutating the original collection, is this expected? ```go collection := []int64{1, 2, 3, 4, 5} fmt.Println(lo.Reverse(collection)) fmt.Println(collection) ``` output: ```bash [5 4 3 2 1] [5 4...
whats the different?
```go server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.WriteHeader(500) })) defer server.Close() retryCalled := 0 httpclient := httpclient.NewClient( httpclient.WithRetrier(heimdall.NewRetrierFunc(func(_ int) time.Duration { retryCalled++ return 1 * time.Second })), httpclient.WithRetryCount(0), )...
You mean generator.
Any chance to make like https://github.com/golang-migrate/migrate/blob/master/Dockerfile ?
Fixed outdated (wrong parameter order) for FromSlicePtrOr.