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
The Future is Dead: Long live the Past
Search
elcuervo
June 02, 2012
Programming
4
1.1k
The Future is Dead: Long live the Past
The Future is Dead: Long live the Past
elcuervo
June 02, 2012
Tweet
Share
More Decks by elcuervo
See All by elcuervo
Airplay
elcuervo
0
380
Quince Primaveras
elcuervo
0
250
Apocalipsis
elcuervo
0
130
RadioFrequencia
elcuervo
0
110
TED: Cronicas de un hacker
elcuervo
0
110
Hackeando el STM
elcuervo
1
360
Teo y los contenedores
elcuervo
0
110
Objetos Encantados
elcuervo
0
150
Skynet son los padres
elcuervo
2
430
Other Decks in Programming
See All in Programming
testingを眺める
matumoto
1
130
レガシープロジェクトで最大限AIの恩恵を受けられるようClaude Codeを利用する
tk1351
4
1.5k
The state patternの実践 個人開発で培ったpractice集
miyanokomiya
0
160
複雑なドメインに挑む.pdf
yukisakai1225
4
890
Honoアップデート 2025年夏
yusukebe
1
890
2025 年のコーディングエージェントの現在地とエンジニアの仕事の変化について
azukiazusa1
3
1.2k
LLMOpsのパフォーマンスを支える技術と現場で実践した改善
po3rin
8
1k
Processing Gem ベースの、2D レトロゲームエンジンの開発
tokujiros
2
120
Claude Codeで実装以外の開発フロー、どこまで自動化できるか?失敗と成功
ndadayo
3
1.8k
AIを活用し、今後に備えるための技術知識 / Basic Knowledge to Utilize AI
kishida
17
3.8k
Ruby Parser progress report 2025
yui_knk
1
260
Langfuseと歩む生成AI活用推進
licux
3
320
Featured
See All Featured
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.8k
What's in a price? How to price your products and services
michaelherold
246
12k
A better future with KSS
kneath
239
17k
Building an army of robots
kneath
306
46k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
185
54k
We Have a Design System, Now What?
morganepeng
53
7.8k
It's Worth the Effort
3n
187
28k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.5k
Fireside Chat
paigeccino
39
3.6k
Done Done
chrislema
185
16k
Transcript
The Future is Dead long live the past
Hi!
Bruno Aguirre
Bruno Aguirre github: elcuervo
Bruno Aguirre @cuerbot github: elcuervo
cuervo
None
None
None
None
None
None
None
None
None
None
None
disclaimer
None
relax
it’s not about this future
None
nor this past
None
None
UNIX
UNIX DB
UNIX DB WEB
UNIX
than an MORE OPERATING system
than MORE SOFTWARE
Philosophy
The ART of Unix programming Eric Raymond
Write SIMPLE parts connected by CLEAN interfaces
CLARITY is better than cleverness
Design programs to be CONNECTED to other programs
ps uax | grep ruby | sort | uniq
Design for SIMPLICITY; add complexity ONLY where you must
S R P
S R P ingle
S R P ingle esponsability
S R P ingle esponsability rinciple
PROTOTYPE before polishing. GET IT WORKING before you OPTIMIZE it
DISTRUST all claims for “ONE TRUE WAY”
Design for the FUTURE, because it will be here SOONER
than you think
KISS
KEEP
IT
SIMPLE
SWEETIE
None
“Simplicity is the ultimate sophistication” Leonardo Da Vinci 1452-1519
“Everything should be made as simple as possible, but no
simpler” Albert Einstein 1879-1955
“Unix is simple. It just takes a genius to understand
its simplicity” Dennis Ritchie 1941-2011
DB
once upon a time
RDB
ROFLSCALE
ROFLSCALE
None
POSTGRESQL
POSTGRESQL MYSQL
CONSTRAINS
None
PRIMARY KEY
PRIMARY KEY UNIQUE
PRIMARY KEY UNIQUE NOT NULL
PRIMARY KEY UNIQUE NOT NULL FOREIGN KEY
PRIMARY KEY UNIQUE NOT NULL FOREIGN KEY CHECK
PREPARED STATEMENTS
SELECT * FROM fruits WHERE id = 42;
PREPARE fruit_seeker (int) AS SELECT * FROM fruits WHERE id
= $1;
PREPARE fruit_seeker (int) AS SELECT * FROM fruits WHERE id
= $1; EXECUTE fruit_seeker(42);
~2003
QUERIES PER SECOND BOOST
~2011
STORED PROCEDURES
Execution within the database
Complex data handling
Column operations
We want to use Ruby everywhere
DON’T
WITHOUT ORM
WEB
HTTP 1.0 RFC 1945 (1996)
None
None
None
MOST WEB of the
client server request response open open close close
HTTP 1.1 RFC 2616 (1999)
None
None
None
None
Persistent connections
client server request response open close Re use open sockets
close open
client server request response open close Re use open sockets
Enabled by default
Pipelining
client server request response open close
Disabled by default
Get ready for the PAST
Firefox: can be enabled
Firefox: can be enabled Chrome: can be enabled
Firefox: can be enabled Chrome v20: enabled by default Chrome:
can be enabled
Upgrade header
GET /mychat HTTP/1.1 Host: server.example.com Upgrade: websocket Connection: Upgrade Sec-WebSocket-Key:
x3JJHMbDL1EzLkh9GBhXDw== Sec-WebSocket-Protocol: chat Sec-WebSocket-Version: 13 Origin: http://example.com request
GET /mychat HTTP/1.1 Host: server.example.com Upgrade: websocket Connection: Upgrade Sec-WebSocket-Key:
x3JJHMbDL1EzLkh9GBhXDw== Sec-WebSocket-Protocol: chat Sec-WebSocket-Version: 13 Origin: http://example.com request
HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade Sec-WebSocket-Accept: HSmrc0sMlYUkAGmm5OPpG2HaGWk=
Sec-WebSocket-Protocol: chat response
HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade Sec-WebSocket-Accept: HSmrc0sMlYUkAGmm5OPpG2HaGWk=
Sec-WebSocket-Protocol: chat response
That’s IT?
12 years
None
HTTP PTTH
HTTP R e v e rs e
client server
POST /reverse HTTP/1.1 Host: server.example.com Upgrade: PTTH/0.9 Connection: Upgrade Origin:
http://example.com request
POST /reverse HTTP/1.1 Host: server.example.com Upgrade: PTTH/0.9 Connection: Upgrade Origin:
http://example.com request
client server
HTTP/1.1 101 Switching Protocols Upgrade: PTTH/0.9 Connection: Upgrade response
client server
client server
server client
REAL life
None
The Future is not Dead
The Past is not Dead
None
LEARN from the past
LEARN from the past WATCH the present
LEARN from the past WATCH the present CREATE the future
Thank you!
Thank you! twitter: @cuerbot github: elcuervo
None