Skip to content

Instantly share code, notes, and snippets.

@bilzard
bilzard / deep_learning_goodfellow_chap02.md
Last active May 17, 2019 00:06
数式を読むにはMathJaxに対応したブラウザのプラグインが必要です. https://chrome.google.com/webstore/detail/mathjax-plugin-for-github/ioemnmodlmafdkllaclgeombjnmnbima

『深層学習』本の落ち穂拾い的なやつ - 第2章 線形代数

はじめに

この本を読んで理解しずらかった部分を掘り下げています. ページ数を記載してあるものは、「原文」の方を指します.

行列の固有値分解

行列の固有値分解

$$ A={a_{i,j}},\\ v^{(j)}={v_i},\\ V={v^{(1)},...,v^{(n)}}$$

@bilzard
bilzard / terraform_switcher_config.fish
Created May 25, 2019 02:31
Terraform Switcher config for fish
# Terraform Switcher
function cdtfswitch
builtin cd $argv
set cdir $PWD
if test -f "$cdir/.tfswitchrc"
tfswitch
end
end
alias cd='cdtfswitch'
@bilzard
bilzard / embed_youtube_video_to_markdown.md
Last active May 31, 2019 00:54
Markdown に Youtube の動画リンクを画像付きで埋め込む

Youtube のサムネイルを markdown に埋め込む

画像にリンクを張る

[![alt text](http://example.com/exampl.png)](http://example.com/link "title")

YouTube の動画のサムネイル画像を取得する

@bilzard
bilzard / node_aws_blackbelt_online_seminar_aws_lambda_part3.md
Created May 31, 2019 04:11
Anti-patterns & Best Practices in AWS Lambda

Note: AWS blackbelt online seminar - part3

Anti-patterns & Best Practices in AWS Lambda

Speaker: 西谷 圭介, AWS Japan

  • The only tunable parameter is MEMORY, but, in fact, it affects all computing resources ex. CPU usage
  • Reduce package size
@bilzard
bilzard / node_aws_blackbelt_online_seminar_aws_lambda_part4.md
Created May 31, 2019 04:13
Security consideration for your Lambda Functions

Note: AWS blackbelt online seminar - part4

Security consideration for your Lambda Functions

Speaker: 西谷 圭介, AWS Japan

Security assured by AWS

@bilzard
bilzard / .xonshrc
Last active July 7, 2019 11:30
xonshrc
# vi風の操作
$VI_MODE = True
# Ctrl + D で終了しない
$IGNOREEOF = True
# tabではなく空白4つ
$INDENT = " "
# 補完時に大小区別しない
$CASE_SENSITIVE_COMPLETIONS = False
# 補完選択Enterで即実行しない
$COMPLETIONS_CONFIRM = True
# 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
"
" Plug
"
call plug#begin('~/.vim/plugged')
Plug 'leafgarland/typescript-vim'
call plug#end()
"
@bilzard
bilzard / about_gatling.md
Last active November 7, 2019 03:42
Gatling について

Gatlingについて

  • 環境構築
    • Open JDK 8
    • Scala 2.12
      • 2.11, 2.13 では動作しない
      • Open JDK でも動作するの?
        • => 動作した
    • sdkman というツールを使うとバージョン指定してインストールするのが簡単
  • Gatling 使ってみる