basebank / gophers-code-reading-party

Gophers Code Reading Party records
18 stars 1 forks source link

20230209 Gophers Code Reading Party #41

Closed budougumi0617 closed 1 year ago

budougumi0617 commented 1 year ago

15:00~16:00 @ Zoom, BASE BANK, Inc.

参加者

お題

ネタ

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

budougumi0617 commented 1 year ago

ライブラリとして公開したGoのinterfaceを変更するのは難しいと言う話

budougumi0617 commented 1 year ago

https://twitter.com/golangjp/status/1622914917643976705

2023年2月25日に書籍「キャリアアップのためのGo言語入門」が発刊される模様です https://www.kohgakusha.co.jp/books/detail/978-4-7775-2239-2

https://www.amazon.co.jp/%25E6%25B8%2585%25E6%25B0%25B4%25E7%25BE%258E%25E6%25A8%25B9/e/B004LUIGZG?ref=sr_ntt_srch_lnk_3&qid=1675870897&sr=8-3

Goに限らずいろいろ書いている方っぽい

budougumi0617 commented 1 year ago

https://twitter.com/golang/status/1620875197569187840

:tada: Go 1.20 is released! :memo: Release notes: https://go.dev/doc/go1.20 :arrow_down: Download: https://go.dev/dl/#go1.20

mattnさんの説明 https://mobile.twitter.com/mattn_jp/status/1620938800561283072

budougumi0617 commented 1 year ago

2023/03/10(金)18:00 〜 20:00 CA.go 〜ABEMAのGoを活用したFIFA ワールドカップ生中継の舞台裏〜 https://cyberagent.connpass.com/event/271708/

budougumi0617 commented 1 year ago

Go Conference 2023に応募された(公開OKな)プロポーザル一覧 https://github.com/GoCon/2023/issues

budougumi0617 commented 1 year ago

Go 1.20 Experiment: Memory Arenas vs Traditional Memory Management https://pyroscope.io/blog/go-1-20-memory-arenas/

budougumi0617 commented 1 year ago

Entは周辺ツールも結構固めていてすごいな Quickly visualize your Ent schemas with entviz https://entgo.io/blog/2023/01/26/visualizing-with-entviz/

budougumi0617 commented 1 year ago

Reduce Boilerplate in Go Http Handlers with Go Generics https://haykot.dev/blog/reduce-boilerplate-in-go-http-handlers-with-go-generics/

どうなのかなって思うけれどgenericsの活用例を読むという意味でも

budougumi0617 commented 1 year ago

A Comprehensive Guide to Generics in Go https://itnext.io/a-comprehensive-guide-to-generics-in-go-5a9dcda5669c

budougumi0617 commented 1 year ago

Mocktail: The Mock Generator for Strongly-Typed Mocks You’ve Been Looking For https://traefik.io/blog/mocktail-the-mock-generator-for-strongly-typed-mocks/

budougumi0617 commented 1 year ago

https://twitter.com/ymotongpoo/status/1623317866039898113 rscの新作のブログポストシリーズ

budougumi0617 commented 1 year ago

こちらです! https://zoom.us/j/92179216825?pwd=Q3hjUlB6bkZtZUhZbzVhSk5Cc2lYQT09

budougumi0617 commented 1 year ago

errors.Joinは呼ばれるたびに新しいオブジェクトを作っていく https://cs.opensource.google/go/go/+/refs/tags/go1.20:src/errors/join.go

budougumi0617 commented 1 year ago

それはそうって感じの実装だった https://cs.opensource.google/go/go/+/master:src/strings/strings.go;l=1278?q=CutPrefix&sq=&ss=go%2Fgo

// CutPrefix returns s without the provided leading prefix string
// and reports whether it found the prefix.
// If s doesn't start with prefix, CutPrefix returns s, false.
// If prefix is the empty string, CutPrefix returns s, true.
func CutPrefix(s, prefix string) (after string, found bool) {
    if !HasPrefix(s, prefix) {
        return s, false
    }
    return s[len(prefix):], true
}
budougumi0617 commented 1 year ago

PGO https://go.dev/doc/pgo

budougumi0617 commented 1 year ago

ちょっと気になっている面白そうなコーディング勉強サービス https://app.codecrafters.io/tracks

budougumi0617 commented 1 year ago

A Comprehensive Guide to Generics in Go https://itnext.io/a-comprehensive-guide-to-generics-in-go-5a9dcda5669c

結構しっかり書いてあるんでちゃんと読もうと思った。

budougumi0617 commented 1 year ago

telemetry in the Go toolchain #58409 https://github.com/golang/go/discussions/58409

budougumi0617 commented 1 year ago

@daisuzu 私としても寂しいのですが、口頭でお伝えした事情でしばらく休止となります 🙇

daisuzu commented 1 year ago

了解です

satorunooshie commented 1 year ago

ここ2回出れてなかったですが、とても勉強になりました:pray: 再開を楽しみに待っています:cry:

budougumi0617 commented 1 year ago

@satorunooshie こちらこそトピックの提供や補足情報のシェアなどいろいろありがとうございました!!参加していただけてよかったです 😄