Japanese translation of Eric Ries Keynote at Startup Lessons Learned sllconf 2011 - Japanese Translation
http://www.slideshare.net/startuplessonslearned/eric-ries-sllconf-keynote-state-of-the-lean-startup-movement
Translated by Yuki Sekiguchi and Kenji Hiranabe
1 of 57
More Related Content
Eric Ries at Startup Lessons Learned sllconf 2011 - Japanese Translation
1. #sllconf
ようこそリーンスタートアップ
「ムーブメント」へ
#leanstartup
Eric Ries (@ericries) エリック・リース
http://StartupLessonsLearned.com
翻訳: 関口有紀+平鍋健児(Japanese Translation by Yuki Sekiguchi + Kenji Hiranabe)
54. 素早いスプリットテスト
Learn Faster Code Faster
Five Whys Root Continuous Deployment
Cause Analysis
Measure Faster
Rapid Split Tests
55. いつでもスプリットテスト
• 仮説を検証するには、A/B テスティングが鍵
• 全員が理解できるくらいにシンプルにする
• スプリットテストは、コード1行で実現する。
if( setup_experiment(...) == "control" ) {
// do it the old way
} else {
// do it the new way
}