Skip to content

Instantly share code, notes, and snippets.

View keokent's full-sized avatar

kenta takeo keokent

  • GMO Pepabo, Inc.
View GitHub Profile
@keokent
keokent / YAPC::Asia Tokyo 2013 9-21.md
Last active December 23, 2015 14:49
YAPC::Asia Tokyo 2013 9-21

YAPC::Asia Tokyo 2013 9-21

特別座談会 「Rubyの良いところ語ってください 〜そんなPerlで大丈夫か?〜」

言語比較

  • そもそもなぜRuby Perl
  • RubyとPerlは似ているところのほうが多い * ここが好き、嫌い
  • Perlは覚えることが多い
  • 自分がやりたいことをコードに落としやすかった
  • 言語を変えて生産性は変わるのか
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
set-option -g default-shell "/bin/zsh"
set-option -g default-command "reattach-to-user-namespace -l zsh"
bind-key C-c run "tmux save-buffer - | reattach-to-user-namespace pbcopy"
bind-key C-v run "reattach-to-user-namespace pbpaste | tmux load-buffer - && tmux paste-buffer"
set-option -g prefix C-t
bind C-t next-window
set -g mode-mouse on
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on