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
RubyRogues at LoneStarRuby
Search
Josh Susser
July 20, 2013
Programming
1
120
RubyRogues at LoneStarRuby
Josh's intro slides for a live panel discussion by the Ruby Rogues.
Josh Susser
July 20, 2013
Tweet
Share
More Decks by Josh Susser
See All by Josh Susser
Thinking in Objects RubyConf 2012
joshsusser
18
4.6k
Ruby Rogues Live
joshsusser
2
810
Other Decks in Programming
See All in Programming
CursorはMCPを使った方が良いぞ
taigakono
1
170
deno-redisの紹介とJSRパッケージの運用について (toranoana.deno #21)
uki00a
0
150
なぜ適用するか、移行して理解するClean Architecture 〜構造を超えて設計を継承する〜 / Why Apply, Migrate and Understand Clean Architecture - Inherit Design Beyond Structure
seike460
PRO
1
690
AWS CDKの推しポイント 〜CloudFormationと比較してみた〜
akihisaikeda
3
310
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
240
都市をデータで見るってこういうこと PLATEAU属性情報入門
nokonoko1203
1
570
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
520
Systèmes distribués, pour le meilleur et pour le pire - BreizhCamp 2025 - Conférence
slecache
0
100
設計やレビューに悩んでいるPHPerに贈る、クリーンなオブジェクト設計の指針たち
panda_program
6
1.4k
Kotlin エンジニアへ送る:Swift 案件に参加させられる日に備えて~似てるけど色々違う Swift の仕様 / from Kotlin to Swift
lovee
1
250
生成AIで日々のエラー調査を進めたい
yuyaabo
0
650
WindowInsetsだってテストしたい
ryunen344
1
190
Featured
See All Featured
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
5
210
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
GraphQLとの向き合い方2022年版
quramy
48
14k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
Adopting Sorbet at Scale
ufuk
77
9.4k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
53k
Bash Introduction
62gerente
614
210k
Building Applications with DynamoDB
mza
95
6.5k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.5k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Transcript
æsthetics
sense of beauty or the appreciation of beauty
a set of principles underlying and guiding the work of
an artist or artistic movement
"It just looks better."
principles <=> gut feel
in Ruby on Rails: :symbols >= "strings"
class Conference < AR::Base has_many "sessions" has_many "speakers" end
class Conference < AR::Base has_many :sessions has_many :speakers end
create_table :users, :force => true do |t| t.string :email, :default
=> "", :null => false t.string :password, :default => "", :null => false t.integer :sign_in_count, :default => 0 t.datetime :created_at t.datetime :updated_at end
create_table "users", :force => true do |t| t.string "email", :default
=> "", :null => false t.string "password", :default => "", :null => false t.integer "sign_in_count", :default => 0 t.datetime "created_at" t.datetime "updated_at" end
class SurpriseController < AC::Base layout "expected" end
class SurpriseController < AC::Base layout :expected end
class SurpriseController < AC::Base layout :expected def expected "surprise" end
end