Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
入社後1ヶ月の振返り #Techlunch
Search
Livesense Inc.
PRO
May 07, 2014
Technology
0
120
入社後1ヶ月の振返り #Techlunch
入社後1ヶ月の振返り
2014/5/7 (水) @ Livesense TechLunch
発表者:松原 慧
Livesense Inc.
PRO
May 07, 2014
Tweet
Share
More Decks by Livesense Inc.
See All by Livesense Inc.
株式会社リブセンス 会社説明資料(報道関係者様向け)
livesense
PRO
0
1k
データ基盤の負債解消のためのリプレイス
livesense
PRO
0
250
26新卒_総合職採用_会社説明資料
livesense
PRO
0
4.5k
株式会社リブセンス会社紹介資料 / Invent the next common.
livesense
PRO
1
13k
26新卒_Webエンジニア職採用_会社説明資料
livesense
PRO
1
8.1k
中途セールス職_会社説明資料
livesense
PRO
0
200
EM候補者向け転職会議説明資料
livesense
PRO
0
86
コロナで失われたノベルティ作成ノウハウを復活させた話
livesense
PRO
0
210
転職会議でGPT-3を活用した企業口コミ要約機能をリリースした話
livesense
PRO
0
1.3k
Other Decks in Technology
See All in Technology
Visualize, Visualize, Visualize and rclone
tomoaki0705
9
82k
Snowflakeの開発・運用コストをApache Icebergで効率化しよう!~機能と活用例のご紹介~
sagara
1
430
設計を積み重ねてシステムを刷新する
sansantech
PRO
0
160
AWSを活用したIoTにおけるセキュリティ対策のご紹介
kwskyk
0
340
OSS構成管理ツールCMDBuildを使ったAWSリソース管理の自動化
satorufunai
0
630
1行のコードから社会課題の解決へ: EMの探究、事業・技術・組織を紡ぐ実践知 / EM Conf 2025
9ma3r
10
3.7k
Ruby on Railsで持続可能な開発を行うために取り組んでいること
am1157154
3
140
サイト信頼性エンジニアリングとAmazon Web Services / SRE and AWS
ymotongpoo
7
1.5k
わたしがEMとして入社した「最初の100日」の過ごし方 / EMConfJp2025
daiksy
14
4.9k
Pwned Labsのすゝめ
ken5scal
1
390
脳波を用いた嗜好マッチングシステム
hokkey621
0
280
Raycast AI APIを使ってちょっと便利な拡張機能を作ってみた / created-a-handy-extension-using-the-raycast-ai-api
kawamataryo
0
210
Featured
See All Featured
The Art of Programming - Codeland 2020
erikaheidi
53
13k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
21
2.5k
For a Future-Friendly Web
brad_frost
176
9.6k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
27
1.6k
GraphQLの誤解/rethinking-graphql
sonatard
68
10k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.4k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Building Flexible Design Systems
yeseniaperezcruz
328
38k
Building an army of robots
kneath
303
45k
Build The Right Thing And Hit Your Dates
maggiecrowley
34
2.5k
BBQ
matthewcrist
87
9.5k
Transcript
入社後1ヶ月の振返り (4/1〜4/28) ジョブセンスユニット プロダクトグループ 松原 慧
改めまして自己紹介 • 松原 慧 • 職歴 – 1社目(約6年半) コンサルティング会社SE
– 2社目(約1年) 小規模ベンチャー – 3社目(今ここ)
現在の仕事 • 所属 – ジョブセンスユニット プロダクトグループ • 役割 – ジョブセンス・サイトリニューアルチーム、
ジョブセンスフリーチームと平行して、 現行サイト改善チームを担当
メンタリング期間の勤務 • 勤務日数 20日 • 勤務時間
205時間39分 • 平均時間 10時間16分/日 • デプロイ回数 7回
メンタリング期間の勤務(グラフ) 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 ゆるやかに 増加傾向
色々とピボット • 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 → ユニットテスト
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
まだまだ自分自身の 改善、効率化の道半 ばですが、 よろしくお願いします
ご清聴ありがとうございました