Peiming Wu

Results 6 issues of Peiming Wu

Hi folks, when started using grpc-web, I found that some types are always required in `AsObject`, but I'm wondering shouldn't they be optional? ## Problem Here's the repo I created...

typescript
codegen

Hi, thanks for introducing the raw socket, it's a very cool feature! :) I'm now trying to use the raw socket but having a problem that I couldn't find a...

Revised the translation to align with the English version for consistency.

Here is the sample code to reproduce: ```go package main import ( "net/http" ) func getResponse(url string) *http.Response { res, _ := http.Get(url) return res } func main() { resp...

現在是我們自行處理 HTTP route,但是或許可以考慮使用: 1. https://github.com/gorilla/mux 2. https://github.com/bmizerany/pat 3. https://github.com/go-chi/chi 4. https://github.com/gin-gonic/gin

看起來 logger 的部分有兩種做法: * 一種是在每個需要的檔案都 import 一次。 * 另外一種是在每個 package 裡面都 new 一次。 以記憶體使用而言,在 Logger 裡面沒有存放東西的前提下應該是相等(都是零)。 以維護的複雜度而言,其實後面修改 internal logger 裡的東西就行了。 日後如果確定將 #16 的 layout 作法合併進來後還感覺到有不足的地方時再繼續進行討論。 _Originally posted by @PichuChen in...