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
range over funcの使い道と非同期N+1リゾルバーの夢 / about a range over func
mackee
0
110
SymfonyCon Vienna 2025: Twig, still relevant in 2025?
fabpot
3
1.2k
Effective Signals in Angular 19+: Rules and Helpers @ngbe2024
manfredsteyer
PRO
0
130
ドメインイベント増えすぎ問題
h0r15h0
1
220
短期間での新規プロダクト開発における「コスパの良い」Goのテスト戦略」 / kamakura.go
n3xem
2
170
Итераторы в Go 1.23: зачем они нужны, как использовать, и насколько они быстрые?
lamodatech
0
710
開発者とQAの越境で自動テストが増える開発プロセスを実現する
92thunder
1
180
Scalaから始めるOpenFeature入門 / Scalaわいわい勉強会 #4
arthur1
1
300
CSC305 Lecture 25
javiergs
PRO
0
130
わたしの星のままで一番星になる ~ 出産を機にSIerからEC事業会社に転職した話 ~
kimura_m_29
0
180
create_tableをしただけなのに〜囚われのuuid編〜
daisukeshinoku
0
240
menu基盤チームによるGoogle Cloudの活用事例~Application Integration, Cloud Tasks編~
yoshifumi_ishikura
0
110
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
Building an army of robots
kneath
302
44k
The Cult of Friendly URLs
andyhume
78
6.1k
The Power of CSS Pseudo Elements
geoffreycrofte
73
5.4k
Automating Front-end Workflow
addyosmani
1366
200k
Designing Experiences People Love
moore
138
23k
Typedesign – Prime Four
hannesfritz
40
2.4k
For a Future-Friendly Web
brad_frost
175
9.4k
Optimizing for Happiness
mojombo
376
70k
Designing on Purpose - Digital PM Summit 2013
jponch
116
7k
Building Applications with DynamoDB
mza
91
6.1k
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