サクサク読めて、アプリ限定の機能も多数!
トップへ戻る
プライムデーセール
gist.github.com/lestrrat
lestrrat looking for work2024.md I unexpectedly had to quit my previous job and am now in search of a new one. If you are interested in hiring me or have leads, I would very much appreciate it if you could contact me at my ID + gmail. Past experiences https://lestrrat.github.io/ During 2000-2019, I worked as a backend software engineer, writing anything from small tools to servers handling billion
wc.go �� �� package main import ( "flag" "fmt" "io" "log" "os" "runtime/pprof" "sync" "unicode" "unicode/utf8" ) type result struct { err error filename string bytes int lines int words int } var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file") var showbytes = flag.Bool("c", false, "print bytes") var showlines = flag.Bool("l", false, "print lines") var showwords = flag.Bool
worker.go �{W>gU Zd>gU package main import ( "context" "fmt" "log" "math/rand" "os" "os/signal" "sync" "syscall" "time" ) func main() { ctx, cancel := context.WithCancel(context.Background()) defer cancel() sigCh := make(chan os.Signal, 1) defer close(sigCh) signal.Notify(sigCh, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGINT) go func() { <-sigCh cancel() }() d := NewDispatcher(3) for i := 0; i <
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
このページを最初にブックマークしてみませんか?
『lestrrat’s gists』の新着エントリーを見る
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く