牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

2016-08-01から1ヶ月間の記事一覧

vagrant の不要な仮想マシンを削除するメモ

忘れそうなのでメモ この記事参照 dqn.sakusakutto.jp 消したはずの仮想マシンが vagrant global-status で表示されてしまう場合、--pruneオプションをつければゴミ掃除してくれます。 $ vagrant global-status --prune HD容量が10Gくらい空いた。助かりまし…

.screenrc のメモ

Etc

escape ^Zz startup_message off defencoding utf-8 encoding utf-8 utf-8 setenv LANG ja_JP.UTF-8 caption always "%{= wb} %-w%{=bu dr}%n %t%{-}%+w" bind ^r source $HOME/.screenrc 起動(セッションが存在したら自動接続) $ screen -xRR 参考 GNU Sc…

es2015 のクラスで継承しつつ静的メソッドの中でインスタンス作成したりのメモ

(node v4.4.7) 'use strict'; class Hoge { constructor() { this.price = 50; } static getInstance(object) { const instanse = new this(); Object.keys(object).map(key => { instanse[key] = object[key]; }); return instanse; } } class Fuga extends…