Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Sign up for free
Menu
Search
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Pricing
Search
Sign in
Sign up for free
それ_山田哲人何人分よ.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
wkhtmltopdfの次どうするか問題2026
willnet
1
110
手動確認はもう限界 〜XCUITestでCustom URL Schemeの遷移を起動種別ごとに自動テストする〜 / Testing Custom URL Schemes with XCUITest
otouto
0
290
XP祭りでしか伝わらないフリップネタ #xpjug
murabayashi
0
150
iOSDC Japan 2026 - Swiftで作って学ぼう!データベース自作入門
kaseken
2
170
Streamlitで実現する自然言語データアプリ開発
ayumu_yamaguchi
0
280
一参加者から『中の人』へ 〜全通PHPerがブースに立って学んだ、カンファレンスを100倍楽しむコツ〜
wp_daisuke
0
150
AI Agent時代のリアーキテクチャ戦略と実践
hokaccha
9
4.6k
{ Android | Kotlin } Gradle Plugin in 2026
ryunen344
1
320
AI が書く Go コードの品質を劇的に向上させる Linter: “declscope”
mpyw
0
330
The Good Stuff, Not the Slop: Engineering High-Quality Android Apps with Modern AI Tooling
danybony
1
250
Java 27新機能 / Java 27 new features
kishida
2
140
スマートフォンでモールス信号を送受信する 〜スマートフォンのLEDとカメラで作る光通信の設計と実装〜
atsuki_seo
0
120
Featured
See All Featured
WCS-LA-2024
lcolladotor
0
830
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
3
4.3k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.6k
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
67
58k
Fireside Chat
paigeccino
43
4k
Unsuck your backbone
ammeep
672
58k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
990
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
2
430
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
2.2k
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
230
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.7k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.4k
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 おまけ