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
110
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
790
Other Decks in Programming
See All in Programming
なぜアジャイルがうまくいかないのか?
yum3
2
140
Go製CLIツールGatling Commanderによる負荷試験実施の自動化
okmtz
3
600
DjangoNinjaで高速なAPI開発を実現する
masaya00
0
400
Modernisation Progressive d’Applications PHP
hhamon
0
160
Micro Frontends for Java Microservices - dev2next 2024
mraible
PRO
0
150
Beyond the RuboCop Defaults
koic
2
460
GraphQLとGigaViewer for Apps
numeroanddev
4
850
ポケモンで考えるコミュニケーション / Communication Lessons from Pokémon
mackey0225
3
120
CDKを活用した 大規模コンテナ移行 プロジェクトの紹介
yoyoyopg
0
220
sqlcを利用してsqlに型付けを
kamiyam
0
210
AWS認定資格を受験するにあたり、気づいたこと・実践していたことのまとめ
satoshi256kbyte
1
120
CSC509 Lecture 03
javiergs
PRO
0
120
Featured
See All Featured
Faster Mobile Websites
deanohume
304
30k
Optimising Largest Contentful Paint
csswizardry
31
2.8k
Into the Great Unknown - MozCon
thekraken
29
1.4k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
5
170
Building a Scalable Design System with Sketch
lauravandoore
458
32k
The Invisible Customer
myddelton
119
13k
Why Our Code Smells
bkeepers
PRO
334
57k
Creatively Recalculating Your Daily Design Routine
revolveconf
216
12k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
248
21k
The Pragmatic Product Professional
lauravandoore
31
6.2k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
26
2k
What's new in Ruby 2.0
geeforr
340
31k
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