Speaker: 西谷 圭介, AWS Japan
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
# collored less | |
set -xU LESS_TERMCAP_md (printf "\e[01;31m") | |
set -xU LESS_TERMCAP_me (printf "\e[0m") | |
set -xU LESS_TERMCAP_se (printf "\e[0m") | |
set -xU LESS_TERMCAP_so (printf "\e[01;44;33m") | |
set -xU LESS_TERMCAP_ue (printf "\e[0m") | |
set -xU LESS_TERMCAP_us (printf "\e[01;32m") | |
# go | |
set -x GOPATH $HOME/.go |
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
# vi風の操作 | |
$VI_MODE = True | |
# Ctrl + D で終了しない | |
$IGNOREEOF = True | |
# tabではなく空白4つ | |
$INDENT = " " | |
# 補完時に大小区別しない | |
$CASE_SENSITIVE_COMPLETIONS = False | |
# 補完選択Enterで即実行しない | |
$COMPLETIONS_CONFIRM = True |
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
# Terraform Switcher | |
function cdtfswitch | |
builtin cd $argv | |
set cdir $PWD | |
if test -f "$cdir/.tfswitchrc" | |
tfswitch | |
end | |
end | |
alias cd='cdtfswitch' |
- 本: 『深層学習』, Ian Goodfellow (著), Yoshua Bengio (著), Aaron Courville (著), 岩澤 有祐 (監修), 鈴木 雅大 (監修), 中山 浩太郎 (監修), 松尾 豊 (監修), 味曽野 雅史 (翻訳), & その他
- 原文: "Deep Learning", Ian Goodfellow and Yoshua Bengio and Aaron Courville, An MIT Press book
この本を読んで理解しずらかった部分を掘り下げています. ページ数を記載してあるものは、「原文」の方を指します.
GitHub や Gist で数式のレンダリングはできない。
以下の Issue で議論されているが、Issue は close されているので、当面 Github で実装される見込みはなさそう。 github/markup#897
以下のように、ブラウザ拡張でレンダリングすることができる。
[MathJax Plugin for Github]