aws-cliを使用する
インストール $ pip3 install awscli --upgrade --user $ echo 'export PATH="~/Library/Python/3.7/bin:$PATH"' >> ~/.bash_profile ※PATHに追加しているパスは、インストール時のログを確認してください。 AWS CLI をインストールする - Qiita C...
インストール $ pip3 install awscli --upgrade --user $ echo 'export PATH="~/Library/Python/3.7/bin:$PATH"' >> ~/.bash_profile ※PATHに追加しているパスは、インストール時のログを確認してください。 AWS CLI をインストールする - Qiita C...
Command+Shift+.(Dot) How to show hidden files on Mac
staticメソッド describe "comment" do context "サービスがHOGEの場合" do before do allow(Global.application).to receive(:service).and_return("HOGE") #<= キモ ... end it 'hoge' do ...
e.g. RSpec.describe Hoge, type: :model do describe "model validation" do subject { new_comment.validate! } let(:new_comment) { build :comment } describe "comment" do context "...
解決 $ export LDFLAGS="-L/usr/local/opt/openssl/lib" $ export CPPFLAGS="-I/usr/local/opt/openssl/include" $ bundle config --local build.mysql2 "--with-cppflags=-I/usr/local/opt/openssl/include" $ bun...
$ gem uninstall -axI `gem list --no-versions | egrep -v 'rdoc|psych|json|io-console|bigdecimal'` $ rbenv exec gem install bundler ※Bundlerまで消去されてしまため gemを間違えてグローバルにインストールしてしまった場合
rbenvインストール $ brew update $ brew install rbenv ruby-build $ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile $ source ~/.bash_profile $ rbenv --version rubyインストール $ rbenv install --list...
解決 $ yarn add file:hogehoge.tgz --update-checksums yarn install sporadically fails with integrity check failure · Issue #6407 · yarnpkg/yarn · GitHub npm - Yarn: is it possible to ignore ...
シェルスクリプトのbashの箇所にオプションを指定してデバッグなどをし易くする方法 #!/bin/bash -xe # -x シェルスクリプト内で実際に実行されたコマンドを表示 # -e 実行したコマンドが0でないステータスで終了した場合、即座に終了 ls . set +x # コマンドを表示しない echo 'This command wont display.' set -x # ...
動作 キー すぐに画面をロック control + command + Q Mac のキーボードショートカット - Apple サポート
/** * Encrypts plaintext using AES-GCM with supplied password, for decryption with aesGcmDecrypt(). * (c) Chris Veness MIT Lic...
gulp.watch('./**/*', {interval: 1000, usePolling: true}, gulp.series('superTask')); node.js - Within Docker VM, Gulp-Watch Seems to not work well on volumes hosted from the host OS - Stack Ove...
Add user for development RUN groupadd -g 1000 developer && \ useradd -g developer -G sudo -m -s /bin/bash developer && \ echo 'developer:hogehoge' | chpasswd RUN echo...
read を使用する。 $ cat list.txt line 1 line 2 line 3 END $ while read LINE; do echo ${LINE}; done < ./list.txt line 1 line 2 line 3 END
deltam/go-lsd-parametrized: Weighted Leveshtein Distance and its extended interfaces written in Go. カスタマイズしやすい重み付きレーベンシュタイン距離ライブラリをGoで書きました : サルノオボエガキ