n9te9
n9te9
testify is very useful testing library. But, testify can't support test description. test description is test code explanation. I think if I read code that was written 1 month ago,...
I implemented Natural Cubic Interpolator. liked to issue #1469 . This change modified Gonum to interp/cubic.go, interp_example_test.go. Please confirm changed points.
### Issue Description Different handlers can be executed for the same end point without problems. example: ```go func main() { router := echo.New() group := router.Group("/api") group.GET("/:user", handler1) router.GET("/api/:user", handler2)...
Hi! Does authn-server provide Twitter OAuth? If it dosen't, do you have plan to be compatible with Twitter OAuth?
### Issue Description Echo support English Document like below URL. https://echo.labstack.com/ Will not echo support Japanese like above Document? I often saw most of developer in Japan can't good use...
## What replaced `interface{}` to `any`. ## Why golang 1.18 support any as type alias for interafce{}. If echo follow golang support policy, the smarter using any than using interface{}....
### Feature Proposal Description ## Background It seems Fiber is often used in micro-service architecture, the concern is network convergence in micro-service architecture. The current Fiber proxy middleware lacks built-in...
### What happened? The `transport.Post` implementation in the `Do` method has potential for optimization. Specifically, two areas could improve performance: 1. The `Do` method frequently converts `[]byte` to `string`, which...
### Description See related: - #2757 - #3372 - #2842 - #3161 This PR optimizes JSON decoding. Specifically: These changes aim to improve the performance of the gqlgen server, especially...