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
800
Other Decks in Programming
See All in Programming
Ça bouge du côté des animations CSS !
goetter
2
150
CSS Linter による Baseline サポートの仕組み
ryo_manba
1
150
苦しいTiDBへの移行を乗り越えて快適な運用を目指す
leveragestech
0
1k
自力でTTSモデルを作った話
zgock999
0
100
ML.NETで始める機械学習
ymd65536
0
230
AIの力でお手軽Chrome拡張機能作り
taiseiue
0
190
Boos Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
350
なぜイベント駆動が必要なのか - CQRS/ESで解く複雑系システムの課題 -
j5ik2o
14
4.7k
React 19アップデートのために必要なこと
uhyo
8
1.5k
dbt Pythonモデルで実現するSnowflake活用術
trsnium
0
260
PRレビューのお供にDanger
stoticdev
1
230
CloudNativePGを布教したい
nnaka2992
0
110
Featured
See All Featured
4 Signs Your Business is Dying
shpigford
182
22k
A Tale of Four Properties
chriscoyier
158
23k
Building Applications with DynamoDB
mza
93
6.2k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
Code Review Best Practice
trishagee
67
18k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.4k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
Unsuck your backbone
ammeep
669
57k
Designing on Purpose - Digital PM Summit 2013
jponch
117
7.1k
GraphQLの誤解/rethinking-graphql
sonatard
68
10k
Speed Design
sergeychernyshev
27
810
Typedesign – Prime Four
hannesfritz
40
2.5k
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