Faizan Khalid
Faizan Khalid
``` panic: runtime error: slice bounds out of range [:-1] -> github.com/hetiansu5/urlquery.(*encoder).Marshal -> /Users/faizan/go/pkg/mod/github.com/hetiansu5/[email protected]/encoder.go:201 github.com/hetiansu5/urlquery.Marshal /Users/faizan/go/pkg/mod/github.com/hetiansu5/[email protected]/encoder.go:208 ```
Fixed the following issue: > assignment mismatch: 2 variables but uuid.NewV4 returns 1 value Fixed issues with `go test` and ran `go fmt`.
Added Golang code for https://postgresapp.com.
`timestamp=2023-09-05T07:24:22Z` becomes `0001-01-01T00:00:00Z` after decoding.
- Performing division on non-zero divisor only. - Simplified code by removing unnecessary conversions.
This can be used when the files data is read from some remote storage service like GCS, AWS S3. Writing to a file and then reading it again will add...
`id=4e6e68e2-f555-41ac-9b18-8c448427186b` becomes `00000000-0000-0000-0000-000000000000` after decoding to *uuid.UUID.
Fixed the issue where data was not assignable to the underlying type. For example: ```go type CustomType int type MyStruct struct { Value CustomType `query:"val"` } ``` Unmarshalling to this...