コース | 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 |
費用 | PMI会員 | 一般 |
---|---|---|
PMI会員年会費 | $129 | --- |
PMP資格試験 | $405 | $555 |
PMP資格更新 | $60 | $150 |
ACP資格試験 | $435 | $495 |
ACP資格更新 | $60 | $150 |
This file contains 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 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 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 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 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 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 |
This file contains 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
# Brewfile | |
cask_args appdir: "/Applications" | |
tap "caskroom/cask" | |
tap "homebrew/bundle" | |
tap "homebrew/core" | |
cask "google-chrome" | |
cask "slack" | |
cask "github" | |
brew "git" |
This file contains 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
# rubocop v0.51 の変換結果、正しい | |
if user&.group&.admin? | |
puts 'userが管理者です' | |
else | |
puts 'userがnilか、管理者ではないです' | |
end | |
# rubocop v0.51は以下の様に間違って変換 | |
if !user&.group&.admin? | |
puts 'userが普通ユーザです' |