歌をうまくなる
- 月1くらいのペースで主に都内でカラオケする(人数次第ではあるが、大体2~3時間)
- 候補日で、一番ひとが集まれる日にする
- 曲は各々好きに(ジャンルを気にしなくてOK)
| package main | |
| import ( | |
| "context" | |
| "log" | |
| "os" | |
| "github.com/docker/docker/api/types" | |
| "github.com/docker/docker/client" | |
| "github.com/docker/docker/pkg/stdcopy" |
| package main | |
| import ( | |
| "os" | |
| "os/exec" | |
| "syscall" | |
| ) | |
| func must(err error) { | |
| if err != nil { |
| if !exists('g:loaded_select') | |
| let g:loaded_select = 1 | |
| call prop_type_add('select', {'highlight': 'PmenuSel'}) | |
| endif | |
| function! s:get_files(path) abort | |
| let l:entries = [] | |
| for l:entry in readdir(a:path) | |
| if l:entry[0] ==# '.' |
| function! s:get_win_info() abort | |
| let l:win_info_list = [] | |
| for win in getwininfo() | |
| let l:tmp_file = split(win.variables.netrw_prvfile, '/') | |
| if empty(tmp_file) | |
| let l:file = '[No Name]' | |
| else | |
| let l:file = l:tmp_file[len(tmp_file)-1:][0] | |
| endif | |
| call add(l:win_info_list, {'winid':win.winid, 'file': l:file}) |
| " session | |
| " Author: skanehira | |
| " License: MIT | |
| let s:save_cpo = &cpo | |
| set cpo&vim | |
| " buffer name | |
| let s:session_list_buffer = 'SESSIONS' | |
| " path separator |
daemon.createが実際の処理オプション情報をもとにコンテナを作成 https://sourcegraph.com/github.com/moby/moby@063bd4c96ae633a1aa830b7f8a646b689c14e5c8/-/blob/daemon/create.go#L107 https://sourcegraph.com/github.com/moby/moby@063bd4c96ae633a1aa830b7f8a646b689c14e5c8/-/blob/daemon/create.go#L156
コンテナを作成したら、レイヤーのファイルシステムを作成(Overlayfs?) https://sourcegraph.com/github.com/moby/moby@063bd4c96ae633a1aa830b7f8a646b689c14e5c8/-/blob/daemon/create.go#L191
/containers/{name} or {id}/startGoで書かれたOSSのソースコードを読むmeetupです。 発起人はゴリラです。
複数人でGoのソースコードを読みつつ、 会話しつつ、わからないことや気づいたことを共有して、 Goの知識を深めていくことを目的とする。