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
それ_山田哲人何人分よ.pdf
Search
taichiw
December 10, 2019
Programming
310
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
それ_山田哲人何人分よ.pdf
taichiw
December 10, 2019
More Decks by taichiw
See All by taichiw
場内アナウンス @ 2009年10月24日 8回裏二死 札幌ドーム
taichiw
0
370
How did we success “GoTo Travel Campaign” under Work-From-Home?
taichiw
0
340
2番ペゲーロをみんなでやってみよう
taichiw
0
920
Encouragement foryour White board
taichiw
0
560
2番ペゲーロとは何だったのか
taichiw
0
1.4k
Retrospective with KPT method - Do not mix “Problem phase” and “Try phase” -
taichiw
0
1.8k
Other Decks in Programming
See All in Programming
Building an Out-of-Order CPU
latte72
1
710
ALB ログから Trace を気合で繋げる技術
fohte
7
880
Go × SIMDで高速化するベクトル検索 ~ルーフラインモデルでSIMDが効く境界を探れ! ~
po3rin
1
140
Go を使い始めて 2 ヶ月の学び / My first two months with Go
contour_gara
0
420
【DroidKaigi 2026】「アクセシビリティを利用するとき、 アクセシビリティもまたこちらを利用している」 〜マルウェアによる攻撃と防衛について〜
halunoyo
0
410
不幸な GC
chencmd
0
890
FastAPI の並行処理モデルを完全に理解する
hoto17296
9
3.8k
Webエンジニアなのにブラウザの仕組みがわからないので、Pythonで自作してみた
tatsuki12
4
1.7k
What We Talk About When We Talk About XP
m_seki
2
390
信頼性の目標を誰も求めてない
shubox
0
490
AIに既存システムを理解させる技術 ~レガシーを見捨てないハーネスエンジニアリング入門~
ochtum
0
210
AWS Step Functions 大規模並列の壁を越える / jaws-sonic-2026-niigata-step-functions
kasacchiful
PRO
0
390
Featured
See All Featured
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
600
The SEO identity crisis: Don't let AI make you average
varn
0
550
Statistics for Hackers
jakevdp
799
230k
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
Leading Effective Engineering Teams in the AI Era
addyosmani
9
2.5k
What’s in a name? Adding method to the madness
productmarketing
PRO
24
4.2k
Embracing the Ebb and Flow
colly
88
5.2k
HDC tutorial
michielstock
2
850
Music & Morning Musume
bryan
47
7.4k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.8k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
2
270
[RailsConf 2023] Rails as a piece of cake
palkan
59
7k
Transcript
z 数字に弱い私ですが 野球を使えば どうにかなりそう
z 渡邉太一 taichiw0424 「Webサービスの会社」で開発の マネージャやってます
z なやみ 数字に弱い。 会社の売上が… 33万4千円? 334万円?
33億4千万円?
z ある日のこと
z ある日のこと
z 世紀の大発見 200億円 → イメージしづらい 山田哲人46人 → とりあえず すごいってことは イメージできる
z つくってみた <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> function calc(target) {
var yamada = 4.3; var result = Math.round(target / yamada * 100) / 100; return result; } function convert() { var yamada = "山田哲人"; var target = parseFloat($("#target").val()); var result = calc(target); var text1 = target + "億円は、" + yamada + result + "人分です。"; var text2 = ""; var intResult = Math.floor(result); if (intResult < 1) { text2 = "残念ながら" + yamada + "選手退団です…"; } else if (intResult < 9) { text2 = "スタメン野手" + intResult + "人 を" + yamada + "選手にできます!"; } else if (intResult < 13) { text2 = "スタメン野手8人に加えて、" + (intResult - 8) + "人の" + yamada + "選手をベンチメンバーとして控えさせられます!"; } else { text2 = "一軍野手全員を" + yamada + "選手にできる上、まだ" + (intResult - 12) + "人の" + yamada + "選手が存在します。"; } $("#result").html(""); $("#result").append($("<p>").text(text1)); $("#result").append($("<p>").text(text2)); } </script> </head> <body> 金額:<input type="text" length="10" id="target" />億円 <input type="button" value="換算する" onClick="convert()" /> <div id="result" /> </body> </html>
z デモ
z おまけ