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
The Road To Code: Ruby
Search
Brooks Swinnerton
May 25, 2016
Programming
0
100
The Road To Code: Ruby
Brooks Swinnerton
May 25, 2016
Tweet
Share
More Decks by Brooks Swinnerton
See All by Brooks Swinnerton
Building GitHub Integrations with Webhooks and REST
bswinnerton
1
160
Launching GitHub's GraphQL API
bswinnerton
4
520
Optimizing APIs for Consumers with GraphQL
bswinnerton
2
430
Launching GitHub's Public GraphQL API
bswinnerton
2
560
GitHub GraphQL API
bswinnerton
4
130
GraphQL for Rubyists
bswinnerton
0
300
The history of Vim
bswinnerton
0
130
Other Decks in Programming
See All in Programming
2026年は Rust 置き換えが流行る! / 20260220-niigata-5min-tech
girigiribauer
0
200
2026/02/04 AIキャラクター人格の実装論 口 調の模倣から、コンテキスト制御による 『思想』と『行動』の創発へ
sr2mg4
0
610
「ブロックテーマでは再現できない」は本当か?
inc2734
0
1.1k
Metaprogramming isn't real, it can't hurt you
okuramasafumi
0
130
NOT A HOTEL - 建築や人と融合し、自由を創り出すソフトウェア
not_a_hokuts
2
460
Claude Code、ちょっとした工夫で開発体験が変わる
tigertora7571
0
170
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
220
AIプロダクト時代のQAエンジニアに求められること
imtnd
1
480
生成AIを使ったコードレビューで定性的に品質カバー
chiilog
1
310
Claude Codeと2つの巻き戻し戦略 / Two Rewind Strategies with Claude Code
fruitriin
0
190
並行開発のためのコードレビュー
miyukiw
2
2k
AWS Infrastructure as Code の新機能 2025 総まとめ~ SA 4人による怒涛のデモ祭り ~
konokenj
8
1.7k
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
Prompt Engineering for Job Search
mfonobong
0
180
The SEO Collaboration Effect
kristinabergwall1
0
370
Stewardship and Sustainability of Urban and Community Forests
pwiseman
0
130
Amusing Abliteration
ianozsvald
0
120
Technical Leadership for Architectural Decision Making
baasie
2
270
Art, The Web, and Tiny UX
lynnandtonic
304
21k
Docker and Python
trallard
47
3.7k
A better future with KSS
kneath
240
18k
エンジニアに許された特別な時間の終わり
watany
106
230k
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Transcript
None
Hi, I’m Brooks
I work for !
We use Ruby
and so can you
What is it?
Ruby is friendly
Ruby is approachable
require 'net/http' require 'json' uri = URI('https://www.reddit.com/r/CatsStandingUp.json') response = Net::HTTP.get(uri)
parsed_response = JSON.parse(response) posts = parsed_response['data']['children'] html = "" posts.each do |post| thumbnail = post['data']['thumbnail'] html << "<img src='#{thumbnail}' />" end File.write('cats_standing_up.html', html)
None
What are its use cases?
Automation
The web (Rails)
APIs
Should it be my first language?
Yes.
Where does it shine?
Readability
Prototyping
Where does it not?
“at scale”* * Not really
How can you get started?
http://tryruby.org
The Ruby style guide
Thanks Follow me on twitter / github: @bswinnerton