basebank / gophers-code-reading-party

Gophers Code Reading Party records
18 stars 1 forks source link

[20220423 & 20220427] Gophers Code Reading Party on Go Conference 2022 Spring Online!! #27

Closed budougumi0617 closed 1 year ago

budougumi0617 commented 2 years ago

10:00~17:00 @ Remo https://gocon.jp/2022spring/schedule/

参加者

お題

GoConセッション内容やゲストの興味がある内容をざっくばらんに。 https://gocon.jp/2022spring/schedule/#day_2022-04-23

ネタ

ネタがなかったら proposal: review meeting minutes をみてみよう!
https://github.com/golang/go/issues/33502

budougumi0617 commented 2 years ago

GoでドキュメントDBスクラッチしてみようって記事。500行くらい https://notes.eatonphil.com/documentdb.html

budougumi0617 commented 2 years ago

Ian Lance Taylorさんのトークの書き起こし When To Use Generics https://go.dev/blog/when-generics

budougumi0617 commented 2 years ago

Go/Rust用のエディタ(買取型だったのでまだ試していない https://www.zeditor.app/

budougumi0617 commented 2 years ago

Go101のGenericsに関する本 https://go101.org/generics/101.html

budougumi0617 commented 2 years ago

あ、ってかGoCon前に実用Goも届くかな

budougumi0617 commented 2 years ago

daggerもGoだった。 https://github.com/dagger/dagger https://www.publickey1.jp/blog/22/dockerdaggergithubcircleci.html

budougumi0617 commented 2 years ago

golangで作るTLS1.2プロトコル https://zenn.dev/satoken/articles/golang-tls1_2

budougumi0617 commented 2 years ago

4/14できなかったのでその時のストック

https://github.com/basebank/gophers-code-reading-party/issues/26#issuecomment-1086654343

サーバなのでmain関数こうやって書くんだ、とか結構コードリーディングおもしろそう。 https://github.com/basemachina/bridge

budougumi0617 commented 2 years ago

まだ読んでないはずなのでこのissueのストックとか実用Go言語などの話題かなと!

budougumi0617 commented 2 years ago

10分ほど遅れます…

budougumi0617 commented 2 years ago

今日もこちらです https://zoom.us/j/98968207509?pwd=Y1B3dDJMQS9UdEdpUGxEd1J2UEdmdz09

budougumi0617 commented 2 years ago

今夜! \非公式/ Go Conference 2022 Spring スポンサー企業4社 アフタートーク https://andpad.connpass.com/event/243953/

budougumi0617 commented 2 years ago

https://www.publickey1.jp/blog/22/dockerdaggergithubcircleci.html

みたいなことを考えていてすぐ使う気にはなっていない…

budougumi0617 commented 2 years ago

xerrorsに最近deprecatedタグがついた。 https://cs.opensource.google/go/x/xerrors/+/cd4e9df8ec86741d9a6ceaa2da097cea8e06cc3e

budougumi0617 commented 2 years ago

たまにある実装ミス

resp, err := cli.Do(req)
if err != nil {}

if resp.StatusCode  != http.StatusOK {
  return errors.Wrapf(err, "...") // err == nilなので return nil
}

https://pkg.go.dev/github.com/pkg/errors#Wrapf

budougumi0617 commented 2 years ago

AWS SDKと比べてGCP SDKは使いやすい https://pkg.go.dev/cloud.google.com/go

budougumi0617 commented 2 years ago

aws-lambda-goは自動生成じゃないんだよな。 https://github.com/aws/aws-lambda-go/pull/410

budougumi0617 commented 2 years ago

spritしないでメモリ節約 https://github.com/basemachina/bridge/blob/e23806224880a5677087045e7bd6ede4ee404955/internal/auth/auth.go#L22-L26

JWTとかも!