| コース | PDU | 受講費 |
|---|---|---|
| PMI-ACP Exam Prep for PMBOK 6 by Joseph Phillips on Udemy |
21 | ¥1,800 |
| Project Management for Business Professionals by Peter von Stackelberg on Canvas (PMP) | 45 | $99 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git clone -b release --recurse-submodules \ | |
| https://github.com/LeelaChessZero/lc0.git | |
| $ cd lc0 | |
| $ brew install python3 meson ninja | |
| $ ./build.sh # ビルド | |
| $ ./build/release/lc0 # 軽く動作確認 | |
| v0.19.0-rc4 built Nov 14 2018 | |
| Ctr^C で終了 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir -p ~/tmp; cd ~/tmp | |
| curl -s \ | |
| https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh | |
| sh ~/tmp/Miniconda3-latest-Linux-x86_64.sh -b -p ~/miniconda3/ | |
| echo 'export PATH="~/miniconda3/bin:$PATH"' >> ~/.bashrc | |
| export PATH="~/miniconda3/bin:$PATH" | |
| conda create -n bitmex python=3 |
| 費用 | PMI会員 | 一般 |
|---|---|---|
| PMI会員年会費 | $129 | --- |
| PMP資格試験 | $405 | $555 |
| PMP資格更新 | $60 | $150 |
| ACP資格試験 | $435 | $495 |
| ACP資格更新 | $60 | $150 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Oh My Zshでstatusを表示しない | |
| git config --add oh-my-zsh.hide-status 1 | |
| # Oh My Zshでstatusを表示する | |
| git config --add oh-my-zsh.hide-status 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PreCommit: | |
| CustomScript: | |
| enabled: true | |
| command: ['bin/precommit.sh'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CI_PULL_REQUESTSから関連PRのIDを(複数)取り出す | |
| def pr_ids(pr_id = nil) | |
| ids = ENV.fetch('CI_PULL_REQUESTS', '').split(',').map { |url| pr_id url } | |
| ids.push pr_id if pr_id | |
| ids | |
| end | |
| # PRのURLから、最後の数値列を取り出しPRのIDとする | |
| def pr_id(pr_url) | |
| pr_url[/\d+$/].to_i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ProntoのチェッカーをGemfileに指定してインストール | |
| group :development, :test do | |
| # Pronto: auto code review | |
| gem 'pronto-rubocop', require: false | |
| gem 'pronto-reek', require: false | |
| gem 'pronto-flay', require: false | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .ebextensions/25_nginx.config | |
| # By default, Webpacker/Rails will compile assets into public/packs, | |
| # but nginx by EB default settings doesn't look at that folder. | |
| files: | |
| "/etc/nginx/conf.d/rails-webpack.conf" : | |
| # Modified from /etc/nginx/conf.d/webapp_healthd.conf | |
| mode: "000644" | |
| owner: root | |
| group: root | |
| content: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| brew cask install google-cloud-sdk | |
| gcloud components install datalab |