- DeNA
- 大規模Perl初心者研修を支える技術 - (2013)
- 新人エンジニア研修ですべきことできることを聞いてきた! - (2014/02)
- Developers Summit 2014 で新卒エンジニア研修についてお話してきました
- DMM.com ラボ
- DMM.comラボ16新卒エンジニア研修 - (2016/08/24)
- GREE
- GMOペパボ
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
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/core" | |
tap "neovim/neovim" | |
tap "rogual/neovim-dot-app" | |
tap "sanemat/font" | |
tap "wata727/tflint" | |
brew "amazon-ecs-cli" | |
brew "openssl" | |
brew "readline" |
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
# Required: | |
[[plugins]] | |
repo = 'Shougo/dein.vim' | |
[[plugins]] | |
repo = 'leico/autodate.vim' | |
# deoplete------------------ | |
[[plugins]] |
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
if has('gui_running') | |
set showtabline=2 | |
set imdisable | |
"set transparency=4 | |
map <silent> gw :macaction selectNextWindow: | |
map <silent> gW :macaction selectPreviousWindow: | |
set wildchar=<TAB> | |
set background=dark | |
set lines=80 columns=220 | |
"set guifontwide=Osaka:h12 |
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
#----------------------------------------------- | |
# Common | |
#----------------------------------------------- | |
#UTF-8 | |
#set-window-option -g utf8 on | |
#set -g status-utf8 on | |
# ESCキーのdelayを0にする(vim用) | |
set -s escape-time 0 | |
# window内の選ばれたプロセスにリネームするのを無効にする | |
set-window-option -g automatic-rename off |
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
#!/usr/bin/env ruby | |
require 'net/http' | |
require 'uri' | |
require 'json' | |
require 'pp' | |
country = ARGV[0] # jp | |
location = ARGV[1] # Tokyo |
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
## | |
## Gernal | |
## | |
#export LANG=C | |
HISTFILE=~/.zsh_history | |
HISTSIZE=10000 | |
SAVEHIST=10000 | |
## include | |
source ~/.zshrc_local |
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
vbell off | |
autodetach on | |
startup_message off | |
defscrollback 5000 | |
escape ^e^e | |
shelltitle '$ |zsh' | |
#shell -$SHELL | |
shell /bin/bash |
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
" Basic Settings {{{1 | |
"”非互換 | |
set nocompatible | |
"" swap作らない | |
set noswapfile | |
"" ランタイムのパス | |
set runtimepath+=$HOME/.vim | |
"" dein | |
" プラグインが実際にインストールされるディレクトリ |