Josh's intro slides for a live panel discussion by the Ruby Rogues.
æsthetics
View Slide
sense of beauty orthe appreciation ofbeauty
a set of principlesunderlying and guidingthe work of an artist orartistic movement
"It just looks better."
principles <=> gut feel
in Ruby on Rails::symbols >= "strings"
class Conference < AR::Basehas_many "sessions"has_many "speakers"end
class Conference < AR::Basehas_many :sessionshas_many :speakersend
create_table :users, :force => true do |t|t.string :email, :default => "", :null => falset.string :password, :default => "", :null => falset.integer :sign_in_count, :default => 0t.datetime :created_att.datetime :updated_atend
create_table "users", :force => true do |t|t.string "email", :default => "", :null => falset.string "password", :default => "", :null => falset.integer "sign_in_count", :default => 0t.datetime "created_at"t.datetime "updated_at"end
class SurpriseController < AC::Baselayout "expected"end
class SurpriseController < AC::Baselayout :expectedend
class SurpriseController < AC::Baselayout :expecteddef expected"surprise"endend