Upgrade to Pro — share decks privately, control downloads, hide ads and more …

入社後1ヶ月の振返り #Techlunch

入社後1ヶ月の振返り #Techlunch

入社後1ヶ月の振返り
2014/5/7 (水) @ Livesense TechLunch
発表者:松原 慧

Livesense Inc.

May 07, 2014
Tweet

More Decks by Livesense Inc.

Other Decks in Technology

Transcript

  1. 改めまして自己紹介 •  松原 慧   •  職歴   – 1社目(約6年半)   コンサルティング会社SE

      – 2社目(約1年)   小規模ベンチャー   – 3社目(今ここ)  
  2. メンタリング期間の勤務 •  勤務日数      20日   •  勤務時間  

       205時間39分   •  平均時間      10時間16分/日   •  デプロイ回数  7回  
  3. メンタリング期間の勤務(グラフ) 0:00   1:00   2:00   3:00   4:00

      5:00   6:00   7:00   8:00   9:00   10:00   11:00   12:00   13:00   ゆるやかに   増加傾向
  4. 色々とピボット •  Sier              →

       Web   •  HP-­‐UX、Microso?  IIS  →    Linux   •  C#、PL/SQL        →    PHP、Ruby   •  Windows          →    Mac   •  Visual  Studio、秀丸    →    Vim/Emacs   •  Oracle            →    MySQL   •  Subversion、VSS      →    Stash  (Git)   •  IP  Messenger      →    HipChat   •  Lotus  Notes        →    Confluence   •  会計/固定資産      →    求人メディア   •  ひたすらPrintScreen  →    ユニットテスト  
  5. VimをBashキーバインドに (.vimrc) "  cursor   inoremap  <C-­‐n>  <Down>   inoremap

     <C-­‐p>  <Up>   inoremap  <C-­‐b>  <Le?>   inoremap  <C-­‐f>  <Right>   inoremap  <silent>  <C-­‐d>  <Del>   inoremap  <C-­‐a>  <Esc>0<Insert>   inoremap  <silent>  <C-­‐e>  <Esc>$a   inoremap  <C-­‐v>  <C-­‐o><C-­‐f>   inoremap  <C-­‐c>  <C-­‐o><C-­‐b>     "  kill-­‐line   funcdon!  EmacsKillLine()          let  l:current      =  col('.')          let  l:endofline  =  col('$')          if  l:endofline  ==  1                  join!                  normal!  0          else                  normal!  d$                  normal!  $          endif   endfuncdon   inoremap  <C-­‐k>  <C-­‐o>:call  EmacsKillLine()<CR>     "  yank   inoremap  <C-­‐y>  <C-­‐o>p