-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcv-galactic-cleantech.html
More file actions
618 lines (609 loc) · 32.2 KB
/
Copy pathcv-galactic-cleantech.html
File metadata and controls
618 lines (609 loc) · 32.2 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<title>CV Manfred Export</title>
<style>
/* css vars */
:root {
/* spacing */
--spacing_base: 4px;
--spacing_2: calc(var(--spacing_base) / 2);
--spacing_8: calc(var(--spacing_base) * 2);
--spacing_12: calc(var(--spacing_base) * 3);
--spacing_16: calc(var(--spacing_base) * 4);
--spacing_24: calc(var(--spacing_base) * 6);
--spacing_32: calc(var(--spacing_base) * 8);
--spacing_48: calc(var(--spacing_base) * 12);
--spacing_64: calc(var(--spacing_base) * 16);
/* colors */
--primary_color: #247a7e; /* only this color can be changed */
--light_color: #f0f8f9;
--white_color: #fbfbfa;
--black_color_800: #111a1f;
--black_color_900: #0d1418;
--gray_color_900: #5c5a58;
--gray_color_50: #e9eaeb;
}
/* General styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: Poppins, sans-serif;
min-width: 390px;
font-size: 16px;
font-style: normal;
}
body {
display: flex;
justify-content: center;
min-height: 100vh;
}
ul,
ul ul {
padding-left: var(--spacing_16);
}
p br {
margin-bottom: var(--spacing_12);
}
p span {
margin: 0 var(--spacing_8);
}
.container {
max-width: 1200px;
background-color: var(--white_color);
display: grid;
grid-template-areas:
'aside'
'main';
}
.divider {
border-radius: var(--spacing_base);
border: var(--spacing_2) solid var(--primary_color);
width: 50%;
}
/* header styles */
header {
display: flex;
flex-direction: column;
gap: var(--spacing_16);
}
h1 {
display: flex;
flex-direction: column;
color: var(--white_color);
font-size: 48px;
font-weight: 600;
line-height: 28px;
text-transform: uppercase;
gap: var(--spacing_16);
}
h1 > span {
font-size: 36px;
}
.job-title {
color: var(--gray_color_50);
font-size: 20px;
font-weight: 500;
letter-spacing: 0.4px;
}
header > hr {
border: 1px solid var(--light_color);
width: 100%;
}
@media (min-width: 1024px) {
h1 {
gap: var(--spacing_8);
}
.job-title {
font-size: 16px;
}
.container {
grid-template-areas: 'aside main';
grid-template-columns: 333px auto;
align-self: center;
}
}
/* aside styles */
aside {
grid-area: aside;
background-color: var(--primary_color);
display: flex;
flex-direction: column;
padding: var(--spacing_64) var(--spacing_32);
gap: var(--spacing_32);
}
.aside__section {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--spacing_8);
}
.aside__section > h3 {
color: var(--white_color);
font-size: 16px;
font-weight: 600;
}
.aside__section__link-items {
display: flex;
padding: 0px var(--spacing_8);
justify-content: space-between;
row-gap: var(--spacing_32);
column-gap: var(--spacing_8);
font-size: 14px;
flex-wrap: wrap;
}
.aside__section__list-items {
color: var(--white_color);
font-size: 14px;
font-weight: 400;
line-height: 28px;
display: flex;
flex-direction: column;
gap: var(--spacing_8);
padding-left: var(--spacing_32);
}
.aside__section__item {
display: flex;
align-items: center;
gap: var(--spacing_8);
}
.aside__section__item > a {
color: var(--white_color);
font-size: 14px;
text-decoration: none;
text-transform: capitalize;
}
.aside__section__item > a:hover {
color: var(--black_color);
}
@media (min-width: 728px) {
aside {
padding: var(--spacing_64) var(--spacing_32) var(--spacing_32) var(--spacing_32);
}
.aside__section__link-items {
flex-wrap: nowrap;
}
}
@media (min-width: 1024px) {
aside {
grid-area: aside;
padding: var(--spacing_64) var(--spacing_32);
width: 100%;
}
h1 {
font-size: 36px;
}
h1 > span {
font-size: 24px;
}
.aside__section__link-items {
flex-direction: column;
gap: var(--spacing_16);
}
}
/* main section styles */
main {
grid-area: main;
display: flex;
padding: var(--spacing_32) var(--spacing_16);
flex-direction: column;
gap: var(--spacing_32);
}
.main__section {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--spacing_16);
}
.main__section__header {
display: flex;
flex-direction: column;
}
.main__section__header > h2 {
color: var(--primary_color);
text-align: center;
font-size: 24px;
font-weight: 600;
line-height: normal;
}
.main__section__item {
color: var(--black_color_900);
font-size: 12px;
font-weight: 400;
display: flex;
gap: var(--spacing_8);
flex-grow: 1;
}
.section__content {
flex-direction: column;
gap: var(--spacing_8);
display: flex;
}
.section__content > h3 {
color: var(--black_color_900);
font-size: 20px;
font-weight: 600;
line-height: 20px;
}
.section__content > h4 {
color: var(--black_color_900);
font-size: 16px;
font-weight: 400;
}
.section__content__date {
display: flex;
gap: var(--spacing_8);
}
.section__content__data {
color: var(--gray_color_900);
line-height: 24px;
}
.section__content__data b {
font-weight: 600;
}
.section__content__data__ul {
font-weight: 300;
}
.data {
color: var(--gray_color_900);
font-weight: 400;
}
.data b {
font-weight: 700;
}
.dot-icon {
display: flex;
padding: var(--spacing_base);
}
@media (min-width: 728px) {
main {
padding: var(--spacing_32) var(--spacing_64);
}
}
@media (min-width: 1024px) {
main {
grid-area: main;
padding: var(--spacing_64);
}
}
</style>
</head>
<body>
<div class="container">
<aside>
<header>
<h1>David <br /><span>bonilla fuertes</span></h1>
<hr />
<p class="job-title">Fundador en Manfred / C-Level Executive</p>
</header>
<div class="aside__section">
<h3>Mis enlaces</h3>
<div class="aside__section__link-items">
<div class="aside__section__item">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="15" viewBox="0 0 14 15" fill="none">
<g clip-path="url(#clip0_1324_769)">
<path
d="M11.9274 12.4303H9.85425V9.18175C9.85425 8.40708 9.8385 7.41017 8.77392 7.41017C7.693 7.41017 7.52792 8.25308 7.52792 9.12458V12.4303H5.45475V5.75H7.44625V6.66058H7.47308C7.75133 6.13558 8.428 5.58142 9.43892 5.58142C11.5395 5.58142 11.928 6.96392 11.928 8.7635V12.4303H11.9274ZM3.11325 4.83592C2.9551 4.83599 2.79848 4.80488 2.65236 4.74436C2.50625 4.68383 2.3735 4.59509 2.26172 4.4832C2.14994 4.37132 2.06133 4.23848 2.00095 4.09231C1.94056 3.94614 1.9096 3.78949 1.90983 3.63133C1.90995 3.3932 1.98067 3.16046 2.11307 2.96253C2.24546 2.76459 2.43357 2.61036 2.65362 2.51934C2.87367 2.42832 3.11576 2.4046 3.34929 2.45117C3.58282 2.49774 3.7973 2.61251 3.9656 2.78097C4.1339 2.94944 4.24847 3.16402 4.29481 3.3976C4.34116 3.63118 4.3172 3.87325 4.22596 4.09321C4.13473 4.31316 3.98032 4.50113 3.78225 4.63333C3.58419 4.76553 3.35138 4.83603 3.11325 4.83592ZM4.15275 12.4303H2.07375V5.75H4.15275V12.4303ZM12.9646 0.5H1.03308C0.462 0.5 0 0.9515 0 1.50858V13.4914C0 14.0491 0.462 14.5 1.03308 14.5H12.9628C13.5333 14.5 14 14.0491 14 13.4914V1.50858C14 0.9515 13.5333 0.5 12.9628 0.5H12.9646Z"
fill="#FBFBFA"
/>
</g>
<defs>
<clipPath id="clip0_1324_769">
<rect width="14" height="14" fill="white" transform="translate(0 0.5)" />
</clipPath>
</defs>
</svg>
<a href="#" target="_blank">Linkedin</a>
</div>
<div class="aside__section__item">
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.701126 0.948242L6.10637 8.17556L0.666992 14.0517H1.89118L6.65334 8.90705L10.501 14.0517H14.667L8.95763 6.41784L14.0206 0.948242H12.7964L8.41065 5.68635L4.86708 0.948242H0.701126ZM2.50138 1.84998H4.41523L12.8665 13.1498H10.9526L2.50138 1.84998Z"
fill="#FBFBFA"
/>
</svg>
<a href="#" target="_blank">Twitter</a>
</div>
<div class="aside__section__item">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="15" viewBox="0 0 14 15" fill="none">
<g clip-path="url(#clip0_1324_773)">
<path
d="M7 0.672852C3.1325 0.672852 0 3.8071 0 7.67285C0 10.7663 2.0055 13.3895 4.78625 14.3141C5.13625 14.38 5.26458 14.1636 5.26458 13.9775C5.26458 13.8113 5.25875 13.3709 5.25583 12.7875C3.30867 13.2099 2.898 11.8484 2.898 11.8484C2.5795 11.0404 2.11925 10.8246 2.11925 10.8246C1.48517 10.3906 2.16825 10.3994 2.16825 10.3994C2.87117 10.4484 3.24042 11.1204 3.24042 11.1204C3.86458 12.1908 4.879 11.8816 5.27917 11.7025C5.34217 11.2499 5.52242 10.9413 5.7225 10.7663C4.16792 10.5913 2.534 9.98927 2.534 7.3071C2.534 6.54294 2.80525 5.91877 3.25442 5.42877C3.17567 5.25202 2.93942 4.54035 3.31567 3.5761C3.31567 3.5761 3.90192 3.38827 5.24067 4.2936C5.80067 4.13785 6.39567 4.06085 6.99067 4.05735C7.58567 4.06085 8.18067 4.13785 8.74067 4.2936C10.0707 3.38827 10.6569 3.5761 10.6569 3.5761C11.0332 4.54035 10.7969 5.25202 10.7269 5.42877C11.1732 5.91877 11.4444 6.54294 11.4444 7.3071C11.4444 9.99627 9.80817 10.5884 8.25067 10.7604C8.49567 10.9704 8.72317 11.3998 8.72317 12.0554C8.72317 12.9923 8.71442 13.7448 8.71442 13.9723C8.71442 14.156 8.83692 14.3748 9.19567 14.3048C11.9962 13.3866 14 10.7616 14 7.67285C14 3.8071 10.8657 0.672852 7 0.672852Z"
fill="#FBFBFA"
/>
</g>
<defs>
<clipPath id="clip0_1324_773">
<rect width="14" height="14" fill="white" transform="translate(0 0.5)" />
</clipPath>
</defs>
</svg>
<a href="#" target="_blank">GitHub</a>
</div>
<div class="aside__section__item">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="15" viewBox="0 0 14 15" fill="none">
<path
d="M13.6104 9.80334C13.8625 9.08178 14 8.30655 14 7.50015C14 6.69365 13.8625 5.91883 13.6104 5.19727C13.6044 5.17568 13.597 5.15449 13.5882 5.13421C12.6161 2.43514 10.03 0.5 7.00005 0.5C3.97007 0.5 1.38399 2.43504 0.411926 5.13421C0.403047 5.15439 0.395481 5.17568 0.38973 5.19727C0.13761 5.91883 0 6.69365 0 7.50015C0 8.30655 0.13761 9.08178 0.38973 9.80334C0.395884 9.82493 0.403148 9.84611 0.411926 9.86639C1.38439 12.5655 3.97007 14.5006 7.00005 14.5006C10.03 14.5006 12.6161 12.5656 13.5882 9.86639C13.597 9.84611 13.6044 9.82493 13.6104 9.80334ZM6.99995 13.4971C6.7334 13.4971 6.30351 13.0145 5.94425 11.9367C5.77082 11.4166 5.6323 10.8186 5.53111 10.1683H8.46889C8.368 10.8187 8.22917 11.4164 8.05575 11.9367C7.69638 13.0145 7.2665 13.4971 6.99995 13.4971ZM5.40924 9.16471C5.36081 8.6297 5.33539 8.07148 5.33539 7.50015C5.33539 6.92882 5.36081 6.37091 5.40924 5.83589H8.59076C8.63888 6.37091 8.66431 6.92882 8.66431 7.50015C8.66431 8.07148 8.63888 8.6297 8.59076 9.16471H5.40924ZM1.00333 7.50015C1.00333 6.92297 1.08526 6.36445 1.23851 5.83589H4.40277C4.35576 6.382 4.33195 6.94153 4.33195 7.50015C4.33195 8.05907 4.35576 8.6186 4.40277 9.16471H1.23851C1.08526 8.63585 1.00333 8.07764 1.00333 7.50015ZM6.99995 1.50354C7.2665 1.50354 7.69638 1.98609 8.05565 3.06388C8.22907 3.58396 8.3679 4.18203 8.46878 4.83236H5.53101C5.6319 4.18162 5.77072 3.58386 5.94415 3.06388C6.30352 1.98599 6.7334 1.50354 6.99995 1.50354ZM9.59712 5.83589H12.7613C12.9142 6.36435 12.9966 6.92297 12.9966 7.50015C12.9966 8.07764 12.9142 8.63626 12.7613 9.16471H9.59712C9.64414 8.6186 9.66764 8.05907 9.66764 7.50015C9.66764 6.94153 9.64414 6.382 9.59712 5.83589ZM12.3694 4.83246H9.48221C9.30354 3.60162 8.99744 2.49759 8.56786 1.71197C10.2331 2.16335 11.6129 3.3161 12.3694 4.83246ZM5.43204 1.71187C5.00246 2.49749 4.69646 3.60152 4.51769 4.83236H1.63046C2.38702 3.3161 3.76677 2.16335 5.43204 1.71187ZM1.63056 10.1681H4.51779C4.69646 11.399 5.00256 12.503 5.43214 13.2886C3.76677 12.8369 2.38702 11.6845 1.63056 10.1681ZM8.56786 13.2886C8.99744 12.503 9.30344 11.399 9.48221 10.1681H12.3694C11.6129 11.6845 10.2331 12.8369 8.56786 13.2886Z"
fill="#FBFBFA"
/>
</svg>
<a href="#" target="_blank">Web</a>
</div>
<div class="aside__section__item">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="15" viewBox="0 0 14 15" fill="none">
<path
d="M4.75781 7.0625H1.80469C0.809566 7.0625 0 6.25293 0 5.25781V2.30469C0 1.30957 0.809566 0.5 1.80469 0.5H4.75781C5.75293 0.5 6.5625 1.30957 6.5625 2.30469V5.25781C6.5625 6.25293 5.75293 7.0625 4.75781 7.0625ZM1.80469 1.375C1.29205 1.375 0.875 1.79205 0.875 2.30469V5.25781C0.875 5.77045 1.29205 6.1875 1.80469 6.1875H4.75781C5.27045 6.1875 5.6875 5.77045 5.6875 5.25781V2.30469C5.6875 1.79205 5.27045 1.375 4.75781 1.375H1.80469Z"
fill="#FBFBFA"
/>
<path
d="M12.1953 7.0625H9.24219C8.24707 7.0625 7.4375 6.25293 7.4375 5.25781V2.30469C7.4375 1.30957 8.24707 0.5 9.24219 0.5H12.1953C13.1904 0.5 14 1.30957 14 2.30469V5.25781C14 6.25293 13.1904 7.0625 12.1953 7.0625ZM9.24219 1.375C8.72955 1.375 8.3125 1.79205 8.3125 2.30469V5.25781C8.3125 5.77045 8.72955 6.1875 9.24219 6.1875H12.1953C12.708 6.1875 13.125 5.77045 13.125 5.25781V2.30469C13.125 1.79205 12.708 1.375 12.1953 1.375H9.24219Z"
fill="#FBFBFA"
/>
<path
d="M10.7188 14.5C8.90947 14.5 7.4375 13.028 7.4375 11.2188C7.4375 9.40947 8.90947 7.9375 10.7188 7.9375C12.528 7.9375 14 9.40947 14 11.2188C14 13.028 12.528 14.5 10.7188 14.5ZM10.7188 8.8125C9.39195 8.8125 8.3125 9.89195 8.3125 11.2188C8.3125 12.5456 9.39195 13.625 10.7188 13.625C12.0456 13.625 13.125 12.5456 13.125 11.2188C13.125 9.89195 12.0456 8.8125 10.7188 8.8125Z"
fill="#FBFBFA"
/>
<path
d="M4.75781 14.5H1.80469C0.809566 14.5 0 13.6904 0 12.6953V9.74219C0 8.74707 0.809566 7.9375 1.80469 7.9375H4.75781C5.75293 7.9375 6.5625 8.74707 6.5625 9.74219V12.6953C6.5625 13.6904 5.75293 14.5 4.75781 14.5ZM1.80469 8.8125C1.29205 8.8125 0.875 9.22955 0.875 9.74219V12.6953C0.875 13.208 1.29205 13.625 1.80469 13.625H4.75781C5.27045 13.625 5.6875 13.208 5.6875 12.6953V9.74219C5.6875 9.22955 5.27045 8.8125 4.75781 8.8125H1.80469Z"
fill="#FBFBFA"
/>
</svg>
<a href="#" target="_blank">Otros</a>
</div>
</div>
</div>
<div class="aside__section">
<h3>Idiomas / Nivel</h3>
<ul class="aside__section__list-items">
<li>Español (Habilidad navito o bilingüe)</li>
<li>Inglés (Habilidad profesional completo)</li>
<li>Gallego (Habilidad básica)</li>
</ul>
</div>
<div class="aside__section">
<h3>Habilidades Técnicas</h3>
<ul class="aside__section__list-items">
<li>JIRA</li>
<li>JAVA</li>
</ul>
</div>
<div class="aside__section">
<h3>Habilidades interpersonales</h3>
<ul class="aside__section__list-items">
<li>Liderazgo</li>
<li>Atraer talento y retenerlo</li>
<li>Orientado a resultados</li>
<li>Comunicación</li>
<li>Logística</li>
</ul>
</div>
</aside>
<main>
<section class="main__section">
<div class="main__section__header">
<h2>Sobre mi</h2>
<hr class="divider" />
</div>
<p class="main__section__item">
Llevo casi dos décadas desarrollando software, ocupando puestos a lo largo de toda la cadena de valor
-programacion, diseño de producto, marketing, ventas y gestión de equipos, departamentos y empresas- pero
creo que el rol donde se cruzan mi vocación, mis habilidades y las necesidades de la mayoría de las empresas
es en la gestión de equipos y proyectos de construcción de activos digitales.<br />
Me apasiona contribuir en todo el ciclo de vida de un producto o servicio informático, desde la definición
hasta el mantenimiento o soporte a clientes, y también involucrarme en la comercialización del mismo.<br />
Me gusta trabajar con gente y para la gente. Como responsable de equipos, mi principal prioridad siempre es
eliminar cualquier problema que les impida alcanzar todo su potencial. También procuro devolver a la
Comunidad informática parte del valor y el conocimiento que me han aportado a lo largo de mi carrera
profesional, dando charlas o colaborando con grupos de usuarios y conferencias técnicas; y, a veces,
organizándolos.
</p>
</section>
<section class="main__section">
<div class="main__section__header">
<h2>Experiencia</h2>
<hr class="divider" />
</div>
<div class="main__section__item">
<div class="dot-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none">
<circle opacity="0.33" cx="4" cy="4" r="4" fill="#247A7E" />
</svg>
</div>
<div class="section__content">
<h3>Manfred</h3>
<h4>Plataforma de Talento y agencia de recruiting técnico</h4>
<div class="section__content__date">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">
<path
opacity="0.75"
d="M4.33333 1V3M13.6667 1V3M1 15V5C1 4.46957 1.21071 3.96086 1.58579 3.58579C1.96086 3.21071 2.46957 3 3 3H15C15.5304 3 16.0391 3.21071 16.4142 3.58579C16.7893 3.96086 17 4.46957 17 5V15M1 15C1 15.5304 1.21071 16.0391 1.58579 16.4142C1.96086 16.7893 2.46957 17 3 17H15C15.5304 17 16.0391 16.7893 16.4142 16.4142C16.7893 16.0391 17 15.5304 17 15M1 15V8.33333C1 7.8029 1.21071 7.29419 1.58579 6.91912C1.96086 6.54405 2.46957 6.33333 3 6.33333H15C15.5304 6.33333 16.0391 6.54405 16.4142 6.91912C16.7893 7.29419 17 7.8029 17 8.33333V15M9 9.66667H9.00711V9.67378H9V9.66667ZM9 11.6667H9.00711V11.6738H9V11.6667ZM9 13.6667H9.00711V13.6738H9V13.6667ZM7 11.6667H7.00711V11.6738H7V11.6667ZM7 13.6667H7.00711V13.6738H7V13.6667ZM5 11.6667H5.00711V11.6738H5V11.6667ZM5 13.6667H5.00711V13.6738H5V13.6667ZM11 9.66667H11.0071V9.67378H11V9.66667ZM11 11.6667H11.0071V11.6738H11V11.6667ZM11 13.6667H11.0071V13.6738H11V13.6667ZM13 9.66667H13.0071V9.67378H13V9.66667ZM13 11.6667H13.0071V11.6738H13V11.6667Z"
stroke="#0D1418"
stroke-width="0.75"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Jun 2018 - Actualidad</p>
</div>
<p class="section__content__data"><b>CEO</b></p>
<div class="section__content__data section__content__data__ul">
<p>Adaptación de la organización y procesos de la empresa para escalar las operaciones de la misma.</p>
<p>
Desarrollo de producto propio para escalar las operaciones de la compañía, especialmente la aportación
de valor a candidatos.
</p>
<p>
Culminación del [proceso de compraventa](https://bonillaware.com/manfred-sngular) de la compañía por
parte de Sngular, manteniendo el núcleo de empleados de la compañía y sin que la productividad o las
ventas se resintieran antes, durante y después del mismo.
</p>
<p>
Creación y publicación de contratos open source (candidatos y empresas) para construir un marco legal
para una empresa de recruiting.
</p>
<p>
Definición del modelo de datos y los procesos necesarios para identificar, clasificar y gestionar
perfiles de profesionales técnicos.
</p>
<p>Definición de formato CV extendido.</p>
<p>Definición e implementación de la web de la compañía.</p>
<p>Apertura de nueva filial en Bilbao.</p>
</div>
</div>
</div>
<div class="main__section__item">
<div class="dot-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none">
<circle opacity="0.33" cx="4" cy="4" r="4" fill="#247A7E" />
</svg>
</div>
<div class="section__content">
<h3>Comalatech</h3>
<h4>Herramientas para facilitar el trabajo colaborativo en el ecosistema de Atlassian Confluence.</h4>
<div class="section__content__date">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">
<path
opacity="0.75"
d="M4.33333 1V3M13.6667 1V3M1 15V5C1 4.46957 1.21071 3.96086 1.58579 3.58579C1.96086 3.21071 2.46957 3 3 3H15C15.5304 3 16.0391 3.21071 16.4142 3.58579C16.7893 3.96086 17 4.46957 17 5V15M1 15C1 15.5304 1.21071 16.0391 1.58579 16.4142C1.96086 16.7893 2.46957 17 3 17H15C15.5304 17 16.0391 16.7893 16.4142 16.4142C16.7893 16.0391 17 15.5304 17 15M1 15V8.33333C1 7.8029 1.21071 7.29419 1.58579 6.91912C1.96086 6.54405 2.46957 6.33333 3 6.33333H15C15.5304 6.33333 16.0391 6.54405 16.4142 6.91912C16.7893 7.29419 17 7.8029 17 8.33333V15M9 9.66667H9.00711V9.67378H9V9.66667ZM9 11.6667H9.00711V11.6738H9V11.6667ZM9 13.6667H9.00711V13.6738H9V13.6667ZM7 11.6667H7.00711V11.6738H7V11.6667ZM7 13.6667H7.00711V13.6738H7V13.6667ZM5 11.6667H5.00711V11.6738H5V11.6667ZM5 13.6667H5.00711V13.6738H5V13.6667ZM11 9.66667H11.0071V9.67378H11V9.66667ZM11 11.6667H11.0071V11.6738H11V11.6667ZM11 13.6667H11.0071V13.6738H11V13.6667ZM13 9.66667H13.0071V9.67378H13V9.66667ZM13 11.6667H13.0071V11.6738H13V11.6667Z"
stroke="#0D1418"
stroke-width="0.75"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Feb 2017 - Jun 2018</p>
</div>
<p class="section__content__data"><b>Fundador</b></p>
<div class="section__content__data section__content__data__ul">
<p>Adaptación de todos los procesos de la compañía al nuevo RGPD</p>
<p>Apertura de nueva filial en Bilbao</p>
<p>Coordinación de actividades en Europa</p>
<p>Estandarización de contratos</p>
<p>Soporte</p>
<p>Lanzamiento de Comala Agile Ranking</p>
</div>
</div>
</div>
<div class="main__section__item">
<div class="dot-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none">
<circle opacity="0.33" cx="4" cy="4" r="4" fill="#247A7E" />
</svg>
</div>
<div class="section__content">
<h3>Instituto de Empresa</h3>
<p class="data">Tipo de organización: <b>Institución académica</b></p>
<p class="data">
<b>Profesor asociado de productividad y metodologías ágiles</b>
</p>
</div>
</div>
</section>
<section class="main__section">
<div class="main__section__header">
<h2>Educación</h2>
<hr class="divider" />
</div>
<div class="main__section__item">
<div class="dot-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none">
<circle opacity="0.33" cx="4" cy="4" r="4" fill="#247A7E" />
</svg>
</div>
<div class="section__content">
<h3>Ingeniería Técnica Informática</h3>
<h4>Computer Science Grade</h4>
<div class="section__content__date">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">
<path
opacity="0.75"
d="M4.33333 1V3M13.6667 1V3M1 15V5C1 4.46957 1.21071 3.96086 1.58579 3.58579C1.96086 3.21071 2.46957 3 3 3H15C15.5304 3 16.0391 3.21071 16.4142 3.58579C16.7893 3.96086 17 4.46957 17 5V15M1 15C1 15.5304 1.21071 16.0391 1.58579 16.4142C1.96086 16.7893 2.46957 17 3 17H15C15.5304 17 16.0391 16.7893 16.4142 16.4142C16.7893 16.0391 17 15.5304 17 15M1 15V8.33333C1 7.8029 1.21071 7.29419 1.58579 6.91912C1.96086 6.54405 2.46957 6.33333 3 6.33333H15C15.5304 6.33333 16.0391 6.54405 16.4142 6.91912C16.7893 7.29419 17 7.8029 17 8.33333V15M9 9.66667H9.00711V9.67378H9V9.66667ZM9 11.6667H9.00711V11.6738H9V11.6667ZM9 13.6667H9.00711V13.6738H9V13.6667ZM7 11.6667H7.00711V11.6738H7V11.6667ZM7 13.6667H7.00711V13.6738H7V13.6667ZM5 11.6667H5.00711V11.6738H5V11.6667ZM5 13.6667H5.00711V13.6738H5V13.6667ZM11 9.66667H11.0071V9.67378H11V9.66667ZM11 11.6667H11.0071V11.6738H11V11.6667ZM11 13.6667H11.0071V13.6738H11V13.6667ZM13 9.66667H13.0071V9.67378H13V9.66667ZM13 11.6667H13.0071V11.6738H13V11.6667Z"
stroke="#0D1418"
stroke-width="0.75"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Sep 2002 - Jun 2006</p>
</div>
<p class="data"><b>OUC</b></p>
<p>
.NET <span>|</span> .htaccess <span>|</span> ActiveCampaign <span>|</span> Adobe Analytics
<span>|</span> Linux <span>|</span> Metasploit
</p>
</div>
</div>
<div class="main__section__item">
<div class="dot-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none">
<circle opacity="0.33" cx="4" cy="4" r="4" fill="#247A7E" />
</svg>
</div>
<div class="section__content">
<h3>Master en Desarrollo de Aplicaciones Web</h3>
<h4>Computer Science Grade</h4>
<div class="section__content__date">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">
<path
opacity="0.75"
d="M4.33333 1V3M13.6667 1V3M1 15V5C1 4.46957 1.21071 3.96086 1.58579 3.58579C1.96086 3.21071 2.46957 3 3 3H15C15.5304 3 16.0391 3.21071 16.4142 3.58579C16.7893 3.96086 17 4.46957 17 5V15M1 15C1 15.5304 1.21071 16.0391 1.58579 16.4142C1.96086 16.7893 2.46957 17 3 17H15C15.5304 17 16.0391 16.7893 16.4142 16.4142C16.7893 16.0391 17 15.5304 17 15M1 15V8.33333C1 7.8029 1.21071 7.29419 1.58579 6.91912C1.96086 6.54405 2.46957 6.33333 3 6.33333H15C15.5304 6.33333 16.0391 6.54405 16.4142 6.91912C16.7893 7.29419 17 7.8029 17 8.33333V15M9 9.66667H9.00711V9.67378H9V9.66667ZM9 11.6667H9.00711V11.6738H9V11.6667ZM9 13.6667H9.00711V13.6738H9V13.6667ZM7 11.6667H7.00711V11.6738H7V11.6667ZM7 13.6667H7.00711V13.6738H7V13.6667ZM5 11.6667H5.00711V11.6738H5V11.6667ZM5 13.6667H5.00711V13.6738H5V13.6667ZM11 9.66667H11.0071V9.67378H11V9.66667ZM11 11.6667H11.0071V11.6738H11V11.6667ZM11 13.6667H11.0071V13.6738H11V13.6667ZM13 9.66667H13.0071V9.67378H13V9.66667ZM13 11.6667H13.0071V11.6738H13V11.6667Z"
stroke="#0D1418"
stroke-width="0.75"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Sep 2002 - Jun 2006</p>
</div>
<p class="data"><b>CFDTI IBM/La Caixa</b></p>
<p>
.NET <span>|</span> .htaccess <span>|</span> ActiveCampaign <span>|</span> Adobe Analytics
<span>|</span> Linux <span>|</span> Metasploit
</p>
</div>
</div>
<div class="main__section__item">
<div class="dot-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none">
<circle opacity="0.33" cx="4" cy="4" r="4" fill="#247A7E" />
</svg>
</div>
<div class="section__content">
<h3>Certified Scrum Master</h3>
<h4>Scrum Master certificado por la Scrum Alliance</h4>
<div class="section__content__date">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">
<path
opacity="0.75"
d="M4.33333 1V3M13.6667 1V3M1 15V5C1 4.46957 1.21071 3.96086 1.58579 3.58579C1.96086 3.21071 2.46957 3 3 3H15C15.5304 3 16.0391 3.21071 16.4142 3.58579C16.7893 3.96086 17 4.46957 17 5V15M1 15C1 15.5304 1.21071 16.0391 1.58579 16.4142C1.96086 16.7893 2.46957 17 3 17H15C15.5304 17 16.0391 16.7893 16.4142 16.4142C16.7893 16.0391 17 15.5304 17 15M1 15V8.33333C1 7.8029 1.21071 7.29419 1.58579 6.91912C1.96086 6.54405 2.46957 6.33333 3 6.33333H15C15.5304 6.33333 16.0391 6.54405 16.4142 6.91912C16.7893 7.29419 17 7.8029 17 8.33333V15M9 9.66667H9.00711V9.67378H9V9.66667ZM9 11.6667H9.00711V11.6738H9V11.6667ZM9 13.6667H9.00711V13.6738H9V13.6667ZM7 11.6667H7.00711V11.6738H7V11.6667ZM7 13.6667H7.00711V13.6738H7V13.6667ZM5 11.6667H5.00711V11.6738H5V11.6667ZM5 13.6667H5.00711V13.6738H5V13.6667ZM11 9.66667H11.0071V9.67378H11V9.66667ZM11 11.6667H11.0071V11.6738H11V11.6667ZM11 13.6667H11.0071V13.6738H11V13.6667ZM13 9.66667H13.0071V9.67378H13V9.66667ZM13 11.6667H13.0071V11.6738H13V11.6667Z"
stroke="#0D1418"
stroke-width="0.75"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Sep 2002 - Jun 2006</p>
</div>
<p class="data"><b>Scrum Alliance</b></p>
<p>
.NET <span>|</span> .htaccess <span>|</span> ActiveCampaign <span>|</span> Adobe Analytics
<span>|</span> Linux <span>|</span> Metasploit
</p>
</div>
</div>
</section>
</main>
</div>
</body>
</html>