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
2025 年のコーディングエージェントの現在地とエンジニアの仕事の変化について
azukiazusa1
24
12k
旅行プランAIエージェント開発の裏側
ippo012
2
900
Amazon RDS 向けに提供されている MCP Server と仕組みを調べてみた/jawsug-okayama-2025-aurora-mcp
takahashiikki
1
110
OSS開発者という働き方
andpad
5
1.7k
rage against annotate_predecessor
junk0612
0
170
Zendeskのチケットを Amazon Bedrockで 解析した
ryokosuge
3
300
The Past, Present, and Future of Enterprise Java with ASF in the Middle
ivargrimstad
0
100
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
370
「手軽で便利」に潜む罠。 Popover API を WCAG 2.2の視点で安全に使うには
taitotnk
0
850
意外と簡単!?フロントエンドでパスキー認証を実現する WebAuthn
teamlab
PRO
2
740
Android端末で実現するオンデバイスLLM 2025
masayukisuda
1
150
パッケージ設計の黒魔術/Kyoto.go#63
lufia
3
430
Featured
See All Featured
Being A Developer After 40
akosma
90
590k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3k
The Pragmatic Product Professional
lauravandoore
36
6.9k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
4 Signs Your Business is Dying
shpigford
184
22k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Mobile First: as difficult as doing things right
swwweet
224
9.9k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
We Have a Design System, Now What?
morganepeng
53
7.8k
A designer walks into a library…
pauljervisheath
207
24k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
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