-
Notifications
You must be signed in to change notification settings - Fork 129
/
servicios.html
171 lines (147 loc) · 6.9 KB
/
servicios.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Desarrollo ágil: servicios avanzados</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/agil.css" id="theme">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section><h2>Desarrollo ágil</h2>
<h1>Qué se programa</h1>
<h3><a href="https://jj.github.io/curso-tdd/temas/servicios"><code>jj.github.io/curso-tdd/temas/servicios</code></a></h3>
</section>
<section><h1><em>Refinement</em></h1>
<h2>El README tiene que incluir la palabra
"Solución" en el segundo hito</h2>
<aside class="notes">Todas las actividades
están especificadas en el material de clase,
pero se recordarán también de vivo a voz...</aside>
</section>
<section><h1>✓ TODO</h1>
<h2 class="fragment">□ ¿Se ha subido ya el
proyecto con sus componentes?</h2>
<h2 class="fragment">□ ¿Se ha formulado
correctamente el problema y se ha entendido quién lo va a usar? </h2>
<h2 class="fragment">□ ¿Se ha propuesto una
solución informática? </h2>
<h3 class="fragment">□ Posiblemente en
diferentes etapas.
</section>
<section><h1>Hay servicios imprescindibles en una
aplicación</h1>
</section>
<section>
<section><h1>💘 logs</h1>
<aside class="notes">Los logs son
imprescindibles en todo el ciclo de vida de
las aplicaciones, pero especialmente cuando se
están desarrollando. Saber qué está haciendo
la aplicación y sobre todo cuando falla es
imprescindible. Es algo que se puede añadir
desde el principio.</aside>
</section>
<section><h1>Arquitectura κ</h1>
</section>
<section><h1>Librerías básicas o externas</h1>
</section>
<section><h1>Servicios externos (logz.io) o
libres (logstash)</h1>
</section>
<section><pre><code data-line-numbers="1|18">use simple_logger::SimpleLogger;
#[derive(Debug)]
pub enum IssueState {
Open,
Closed,
}
#[derive(Debug)]
pub struct Issue {
state: IssueState,
project_name: String,
issue_id: u64,
}
pub fn issue_factory( project_name: String,
issue_id: u64) -> Issue {
log::debug!( "Creating closed issue for project {} with id {}", project_name, issue_id );
return Issue { state: IssueState::Closed,
project_name: project_name,
issue_id: issue_id }
}</code></pre>
<aside class="notes">Primer código del
curso. Yupiii! ¡Y en Rust!</aside>
</section>
<section>
<h1>Usando los logs siempre</h1>
<pre><code data-line-numbers="2|6">fn main() {
SimpleLogger::new().init().unwrap();
let this_issue = issue_factory(String::from("CoolProject"), 1 );
let mut that_issue = issue_factory( String::from("CoolProject"), this_issue.issue_id + 1 );
that_issue.state = IssueState::Open; // Avoid warning
log::debug!("Changed state to Open");
}</code></pre>
</section>
</section>
<section><h1>Configuración remota</h1>
<h2 class="fragment">Parte de los 12
pasos</h2>
<h2 class="fragment">Configuración en el
entorno</h2>
<aside class="notes">El manifiesto de los 12
pasos es una de las metodologías que conforman la
constelación ágil; lo veremos más adelante.</aside>
</section>
<section>
<section><h1>Hay muchas formas de almacenar
los datos</h1>
</section>
<section><h1>SGBD con SQL</h1>
<h2 class="fragment">Documentales</h2>
<h2 class="fragment">Clave-valor</h2>
<h2 class="fragment">Tiempo real</h2>
<h2 class="fragment">Grafos
</section>
<section><h1>Los sistemas de ficheros son
excelentes</h1>
<h2 class="fragment">Y hay sistemas de
ficheros comerciales</h2>
</section>
</section>
<section><h1>No nos olvidemos</h1>
<h1 class="fragment">Servidores web: <code>nginx</code></h1>
<h1 class="fragment">RabbitMQ y otros de
mensajería</h1>
</section>
<section> <h1>✓ TODO</h1>
<h1>¿Qué servicios vas a usar y por qué es un
logger?</h1>
<h2>Considerar el resto de los servicios para
más adelante...</h2>
<aside class="notes">Se tiene que mencionar la
palabra log en el README</aside>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
width: "95%",
slideNumber: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>