レガシー業界・システムに奮闘!プロダクト改善事例LT【開発PM勉強会vol.9】 - connpass https://peer-quest.connpass.com/event/239171/
- 株式会社PR TIMES執行役員CTO 金子達哉
- @catatsuyというアカウントで各種SNS登録しています
- ピクシブ・メルカリを経て2021/04にPR TIMESに入社しました
| package main | |
| import ( | |
| "fmt" | |
| "unicode/utf8" | |
| ) | |
| const ( | |
| t1 = 0b00000000 | |
| tx = 0b10000000 |
| package bench | |
| import ( | |
| "encoding/base64" | |
| "math/rand" | |
| "testing" | |
| "time" | |
| "unsafe" | |
| ) |
レガシー業界・システムに奮闘!プロダクト改善事例LT【開発PM勉強会vol.9】 - connpass https://peer-quest.connpass.com/event/239171/
See Tiny Spec Tokyo at Slack Platform Community Tokyo https://slackcommunity.com/events/details/slack-tokyo-presents-tiny-spec-tokyo/
2019/11/12 #TinySpec2019
catatsuy メルカリSRE
mercari.go #11 - connpass https://mercari.connpass.com/event/148913/
mercari.go #4 https://mercari.connpass.com/event/105640/
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "encoding/xml" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" |
| var programBinary string | |
| func setup(dir string) { | |
| program := `package main | |
| .... | |
| }` | |
| goFileName := dir + "/main.go" | |
| err := ioutil.WriteFile(goFileName, []byte(program), 0644) |