El Dilema de la Simplicidad - RubyConf Argentina
by
Pablo Astigarraga
Link
Embed
Share
Beginning
This slide
Copy link URL
Copy link URL
Copy iframe embed code
Copy iframe embed code
Copy javascript embed code
Copy javascript embed code
Share
Tweet
Share
Tweet
Slide 1
Slide 1 text
Dilema Simplicidad El de la
Slide 2
Slide 2 text
@poteland ! "
Slide 3
Slide 3 text
No content
Slide 4
Slide 4 text
2013
Slide 5
Slide 5 text
2012
Slide 6
Slide 6 text
No content
Slide 7
Slide 7 text
No content
Slide 8
Slide 8 text
No content
Slide 9
Slide 9 text
No content
Slide 10
Slide 10 text
No content
Slide 11
Slide 11 text
No content
Slide 12
Slide 12 text
No content
Slide 13
Slide 13 text
No content
Slide 14
Slide 14 text
KEYNOTE
Slide 15
Slide 15 text
ánico Felicidad Inseguridad Orgullo =D Ham bre (? Emoción M ás Pánico \o/ D=
Slide 16
Slide 16 text
Simplicidad
Slide 17
Slide 17 text
Acto I obsesiones y caminos
Slide 18
Slide 18 text
Calidad
Slide 19
Slide 19 text
Experiencia de Usuario
Slide 20
Slide 20 text
Robustez
Slide 21
Slide 21 text
Seguridad
Slide 22
Slide 22 text
Mantenibilidad
Slide 23
Slide 23 text
Performance
Slide 24
Slide 24 text
Son Importantes
Slide 25
Slide 25 text
Acto II trampas y definiciones
Slide 26
Slide 26 text
Buzzword
Slide 27
Slide 27 text
Definición
Slide 28
Slide 28 text
No es trivial :\
Slide 29
Slide 29 text
Percepción
Slide 30
Slide 30 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 31
Slide 31 text
No content
Slide 32
Slide 32 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 33
Slide 33 text
No content
Slide 34
Slide 34 text
Percepción (de nuevo)
Slide 35
Slide 35 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 36
Slide 36 text
Programación
Slide 37
Slide 37 text
Ruby
Slide 38
Slide 38 text
Rails
Slide 39
Slide 39 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 40
Slide 40 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 41
Slide 41 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 42
Slide 42 text
class FictionalModelsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 43
Slide 43 text
`rake middleware`
Slide 44
Slide 44 text
No content
Slide 45
Slide 45 text
No content
Slide 46
Slide 46 text
No content
Slide 47
Slide 47 text
No content
Slide 48
Slide 48 text
No content
Slide 49
Slide 49 text
No content
Slide 50
Slide 50 text
class SessionsController! < ApplicationController! def new! ! ! ! render :new! end! end! @model = FictionalModel.last
Slide 51
Slide 51 text
No content
Slide 52
Slide 52 text
Complejidad escondida.
Slide 53
Slide 53 text
Que pasa si se rompe?
Slide 54
Slide 54 text
No content
Slide 55
Slide 55 text
(╯°□°)╯︵ sʃıɐᴚ
Slide 56
Slide 56 text
Reescribirlo en Node!
Slide 57
Slide 57 text
No content
Slide 58
Slide 58 text
Seguimos sin una definición :(
Slide 59
Slide 59 text
TRAMPA.
Slide 60
Slide 60 text
Cuando importa la complejidad?
Slide 61
Slide 61 text
enfrentarla Cuando hay que
Slide 62
Slide 62 text
entenderla. Cuando hay que
Slide 63
Slide 63 text
“Algo que podes entender rapidamente”
Slide 64
Slide 64 text
Un stack más chico.
Slide 65
Slide 65 text
Microservicios
Slide 66
Slide 66 text
Acto III pelear con los ojos vendados
Slide 67
Slide 67 text
Que cambia siendo simple?
Slide 68
Slide 68 text
Que pasa con la calidad?
Slide 69
Slide 69 text
Simple != Bueno
Slide 70
Slide 70 text
Bueno == Bueno
Slide 71
Slide 71 text
La simplicidad facilita la calidad
Slide 72
Slide 72 text
uri = URI('http://example.com/index.html')! payload = { limit: 10, page: 3 }! uri.query = URI.encode_www_form(payload)! ! res = Net::HTTP.get_response(uri)! ! puts res.body if res.is_a (Net::HTTPSuccess) Experiencia de Usuario
Slide 73
Slide 73 text
uri = URI('http://example.com/index.html')! payload = { limit: 10, page: 3 }! uri.query = URI.encode_www_form(payload)! ! res = Net::HTTP.get_response(uri)! ! puts res.body if res.is_a (Net::HTTPSuccess) Experiencia de Usuario
Slide 74
Slide 74 text
uri = URI('http://example.com/index.html')! payload = { limit: 10, page: 3 }! uri.query = URI.encode_www_form(payload)! ! res = Net::HTTP.get_response(uri)! ! puts res.body if res.is_a (Net::HTTPSuccess) Experiencia de Usuario
Slide 75
Slide 75 text
uri = URI('http://example.com/index.html')! payload = { limit: 10, page: 3 }! uri.query = URI.encode_www_form(payload)! ! res = Net::HTTP.get_response(uri)! ! puts res.body if res.is_a (Net::HTTPSuccess) Experiencia de Usuario
Slide 76
Slide 76 text
uri = URI('http://example.com/index.html')! payload = { limit: 10, page: 3 }! uri.query = URI.encode_www_form(payload)! ! res = Net::HTTP.get_response(uri)! ! puts res.body if res.is_a (Net::HTTPSuccess) Experiencia de Usuario
Slide 77
Slide 77 text
uri = URI('http://example.com/index.html')! payload = { limit: 10, page: 3 }! uri.query = URI.encode_www_form(payload)! ! res = Net::HTTP.get_response(uri)! ! puts res.body if res.is_a (Net::HTTPSuccess) Experiencia de Usuario
Slide 78
Slide 78 text
Total: URI()! URI.encode_www_form() ! Net::HTTP.get_response()! Net::HTTPSuccess
Slide 79
Slide 79 text
\
Slide 80
Slide 80 text
Python
Slide 81
Slide 81 text
Experiencia de Usuario payload = {'key1': 'value1', 'key2': 'value2'}! ! r = requests.get(! “http://httpbin.org/get",! params=payload! )! ! r.status_code #=> 200
Slide 82
Slide 82 text
Experiencia de Usuario payload = {'key1': 'value1', 'key2': 'value2'}! ! r = requests.get(! “http://httpbin.org/get",! params=payload! )! ! r.status_code #=> 200
Slide 83
Slide 83 text
Experiencia de Usuario payload = {'key1': 'value1', 'key2': 'value2'}! ! r = requests.get(! “http://httpbin.org/get",! params=payload! )! ! r.status_code #=> 200
Slide 84
Slide 84 text
Experiencia de Usuario payload = {'key1': 'value1', 'key2': 'value2'}! ! r = requests.get(! “http://httpbin.org/get",! params=payload! )! ! r.status_code #=> 200
Slide 85
Slide 85 text
Total: requests.get()! http
Slide 86
Slide 86 text
Intuitivo
Slide 87
Slide 87 text
Entendible rápidamente.
Slide 88
Slide 88 text
Robustez
Slide 89
Slide 89 text
100 funcionalidades = 1 bug
Slide 90
Slide 90 text
Más funcionalidad = Más bugs
Slide 91
Slide 91 text
Menos funcionalidad = menos bugs
Slide 92
Slide 92 text
Los bugs son inevitables.
Slide 93
Slide 93 text
Más fácil de arreglar.
Slide 94
Slide 94 text
Simple = (más) robusto.
Slide 95
Slide 95 text
Seguridad
Slide 96
Slide 96 text
Más funcionaidad = Más bugs
Slide 97
Slide 97 text
Más funcionalidad = más vulnerabilidades
Slide 98
Slide 98 text
Rails.
Slide 99
Slide 99 text
Mantenibilidad
Slide 100
Slide 100 text
Entendimiento Reescritura
Slide 101
Slide 101 text
Facil de entender?
Slide 102
Slide 102 text
Facil de arreglar.
Slide 103
Slide 103 text
Performance
Slide 104
Slide 104 text
Cosas = Tiempo
Slide 105
Slide 105 text
Más cosas = más tiempo
Slide 106
Slide 106 text
Encontrar cuellos de botella.
Slide 107
Slide 107 text
Síntomas de Complejidad
Slide 108
Slide 108 text
Relational vs Graph
Slide 109
Slide 109 text
No se enfoquen en los síntomas.
Slide 110
Slide 110 text
Reduzcan la complejidad.
Slide 111
Slide 111 text
Lo demás viene gratis.
Slide 112
Slide 112 text
Epilogo ganar batallas perdidas
Slide 113
Slide 113 text
Funcionalidad = Complejidad
Slide 114
Slide 114 text
Big O
Slide 115
Slide 115 text
Tradeoffs
Slide 116
Slide 116 text
Michel Martens
Slide 117
Slide 117 text
github.com/soveran
Slide 118
Slide 118 text
Tomar decisiones conscientes
Slide 119
Slide 119 text
Gracias!
Slide 120
Slide 120 text
No content
Slide 121
Slide 121 text
Preguntas? @poteland
Slide 122
Slide 122 text
Resources @poteland