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
Rails and the future of the open web
Search
Florian Plank
April 01, 2014
Programming
3
110
Rails and the future of the open web
Slides (without notes) for a guest lecture at the University of Applied Sciences in Oulu.
Florian Plank
April 01, 2014
Tweet
Share
More Decks by Florian Plank
See All by Florian Plank
Ready, set, immersion!
polarblau
0
160
Prototyping all the things
polarblau
2
150
CoffeeScript vs. ECMAScript 6
polarblau
5
3.3k
Design for a complex Reality — Siili Breakfast Edition
polarblau
0
110
Enabling Design for a Complex Reality
polarblau
2
110
A primer on Content Security Policy
polarblau
1
340
Brief Ruby/Ruby on Rails intro
polarblau
3
150
Ruby Idioms
polarblau
3
540
How to ask questions and find the right answers
polarblau
2
320
Other Decks in Programming
See All in Programming
ピラミッド、アイスクリームコーン、SMURF: 自動テストの最適バランスを求めて / Pyramid Ice-Cream-Cone and SMURF
twada
PRO
9
1k
[PyCon Korea 2024 Keynote] 커뮤니티와 파이썬, 그리고 우리
beomi
0
110
カスタムしながら理解するGraphQL Connection
yanagii
1
1.3k
Amazon Neptuneで始めてみるグラフDB-OpenSearchによるグラフの全文検索-
satoshi256kbyte
4
340
GitHub Actionsのキャッシュと手を挙げることの大切さとそれに必要なこと
satoshi256kbyte
5
390
とにかくAWS GameDay!AWSは世界の共通言語! / Anyway, AWS GameDay! AWS is the world's lingua franca!
seike460
PRO
1
570
【Kaigi on Rails 2024】YOUTRUST スポンサーLT
krpk1900
1
250
Sidekiqで実現する 長時間非同期処理の中断と再開 / Pausing and Resuming Long-Running Asynchronous Jobs with Sidekiq
hypermkt
6
2.7k
Content Security Policy入門 セキュリティ設定と 違反レポートのはじめ方 / Introduction to Content Security Policy Getting Started with Security Configuration and Violation Reporting
uskey512
1
440
cXML という電子商取引の トランザクションを支える プロトコルと向きあっている話
phigasui
3
2.3k
What’s New in Compose Multiplatform - A Live Tour (droidcon London 2024)
zsmb
1
350
Vue.js学習の振り返り
hiro_xre
2
130
Featured
See All Featured
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
4
290
Visualization
eitanlees
145
15k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
RailsConf 2023
tenderlove
29
880
Navigating Team Friction
lara
183
14k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
31
2.7k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
The Language of Interfaces
destraynor
154
24k
4 Signs Your Business is Dying
shpigford
180
21k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Optimising Largest Contentful Paint
csswizardry
33
2.9k
A Philosophy of Restraint
colly
203
16k
Transcript
& RUBY ON RAILS The Future of the Open Web
THE OPEN WEB RUBY RUBY ON RAILS 1 2
1 2 3
nicolasrapp.com THE OPEN WEB
Knowledge Communication Work Social connections News Tool for political change
RICHARD DARELL — bitrebels.com
“The Internet’s great promise is to make the world’s information
universally accessible and useful.” (GARY WOLF)
“OPENNESS”
OPEN STANDARDS Non-proprietary Content, implementation and access
vs. EXAMPLE
PHILOSOPHY Decentralization Transparency Hackability Openness From Gift Economies to Free
Markets Third-Party Innovation Civil Society and Discourse End-User Usability and Integration BRAD NEUBERG — codinginparadise.org
STATE OF THE UNION
None
THE WEB IN 2014 Threats and Opportunities
“I love the Internet, and I love that you can
say whatever you want.” (JOAN RIVERS)
SURVEILLANCE
None
“The NSA’s surveillance programme is prompting many US writers to
abandon topics that could be deemed too sensitive” (DAVE EGGERS, theguardian.com)
CENSORSHIP
None
None
GOVERNMENT ONLINE
None
None
NET NEUTRALITY
None
CYBER ACTIVISM
None
SECURITY
None
“TECHNOMONOPOLIES”
None
POST–INDUSTRIAL SOCIETIES
CROWD SOURCING & FUNDING
THE WEB AS SOCIAL NORMALIZER
THE WEB IN 2014 Design and Technology
MOBILE & OFFLINE FIRST
ASYNCHRONOUS WEB
THE INTERNET OF THINGS
BIG (SOCIAL) DATA
MONETIZATION IN A MULTISCREEN PARADIGM
RUBY & RUBY ON RAILS
Yukihiro “Matz” Matsumoto
“I hope to see Ruby help every programmer in the
world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of Ruby language.” (MATZ)
PRINCIPLES Programmer happiness Principle of least astonishment Human readable Beautiful
syntax
ECOSYSTEM RubyGems, Bundler & Rake Multiple implementations (MRI, JRuby, Rubinius,
mruby, MacRuby, Topaz, …) Solid Standard Library
COMMUNITY MINASWAN Self reflective Open Quirky
None
OBJECT–ORIENTED
5.times { print "We love Ruby" }
class Animal def eat(food) puts "Animal eating" end end my_animal
= Animal.new animal.eat # => "Animal eating"
class Dog < Animal def eat(food) puts "Dog eating" super
end end
module Stomach def digest(food) # ... end end
class Dog < Animal include Stomach end my_dog = Dog.new
dog.digest
-199.abs # => 199 "Foobar".split("").uniq.sort.join # => "abFor" nil.class #
=> "NilClass"
DYNAMICALLY TYPED (DUCK–TYPING)
if dog.is_a? Animal dog.eat end dog.eat if dog.respond_to?(:eat)
MONKEY–PATCHING (DUCK–PUNCHING)
“… if it walks like a duck and talks like
a duck, it’s a duck, right? So if this duck is not giving you the noise that you want, you’ve got to just punch that duck until it returns what you expect.”
class String def yell "#{self.upcase}!" end end "hello".yell # =>
"HELLO!"
META–PROGRAMMING
class Greeter def method_missing(name, *args) name = name.to_s if name
=~ /^hello_/ puts "Hello, #{name.gsub(/^hello_/, '')}!" else super end end end Greeter.new.hello_john # => "Hello, john!"
BLOCKS & LAMBDAS
[1, 2, 3].map { |i| i ** 2 } #
=> [1, 4, 9]
def greet(&block) # ... greeting = yield("John") # ... end
greet do |name| "Hello, #{name}!" end
None
PRINCIPLES Open Source MVC CoC DRY Opinionated
CONTROLLER MODEL VIEW
FEATURES Generators ORM Restful routing Included web server
ROUTES CONTROLLER ACTION
$ gem install rails $ rails new blog $ cd
blog $ rails generate scaffold post title content:text $ rake db:migrate $ rails server
[CODE TOUR]
RUBY ON RAILS AND THE OPEN WEB
THREATS AND OPPORTUNITIES
EMPOWERMENT
“The solution is open source. By building together open, free,
secure systems, we can go around such surveillance, and then one country doesn't have to solve the problem by itself.” (MIKKO HYPPÖNEN)
Open Source A strong, independent community Well developed ecosystem
DECENTRALIZATION
Availability Deployment Development speed
SECURITY
Convention over configuration Open Source Ecosystem
DESIGN AND TECHNOLOGY
OPENNESS
Rails API RESTful by default Database agnosticism
SHIFTING TOWARDS THE CLIENT
Sass CoffeeScript Asset Pipeline Turbolinks
ASYNCHRONOUS WEB
SSE JRuby Threadsafe by default Celluloid Live streaming
@polarblau