-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1303 lines (1261 loc) · 69 KB
/
index.html
File metadata and controls
1303 lines (1261 loc) · 69 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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/favicon.ico">
<link rel="icon" type="image/png" href="./assets/img/favicon.ico">
<title>
Victor Urquides
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
<!-- Nucleo Icons -->
<link href="./assets/css/nucleo-icons.css" rel="stylesheet" />
<link href="./assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
<link href="./assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- CSS Files -->
<link href="https://unpkg.com/webkul-micron@1.1.6/dist/css/micron.min.css" type="text/css" rel="stylesheet">
<link id="pagestyle" href="./assets/css/soft-ui-dashboard.css?v=1.0.2" rel="stylesheet" />
</head>
<body class="g-sidenav-show bg-gray-100">
<aside class="sidenav navbar navbar-vertical navbar-expand-xs border-0 border-radius-xl my-3 fixed-left ms-3" id="sidenav-main">
<div class="sidenav-header">
<i class="fas fa-times p-3 cursor-pointer text-secondary opacity-5 position-absolute right-0 top-0 d-none d-xl-none" aria-hidden="true" id="iconSidenav"></i>
<a class="navbar-brand m-0">
<img src="./assets/img/cv.png" class="navbar-brand-img h-100" alt="...">
<span class="ms-1 font-weight-bold">CV</span>
</a>
</div>
<hr class="horizontal dark mt-0">
<div class="collapse navbar-collapse w-auto" id="sidenav-collapse-main">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#whoami" id="menu_0" onclick="menu_f(this)" data-micron="groove">
<div class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="12px" viewBox="0 0 46 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>customer-support</title>
<g id="Basic-Elements" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Rounded-Icons" transform="translate(-1717.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="Icons-with-opacity" transform="translate(1716.000000, 291.000000)">
<g id="customer-support" transform="translate(1.000000, 0.000000)">
<path class="color-background" d="M45,0 L26,0 C25.447,0 25,0.447 25,1 L25,20 C25,20.379 25.214,20.725 25.553,20.895 C25.694,20.965 25.848,21 26,21 C26.212,21 26.424,20.933 26.6,20.8 L34.333,15 L45,15 C45.553,15 46,14.553 46,14 L46,1 C46,0.447 45.553,0 45,0 Z" id="Path" opacity="0.59858631"></path>
<path class="color-foreground" d="M22.883,32.86 C20.761,32.012 17.324,31 13,31 C8.676,31 5.239,32.012 3.116,32.86 C1.224,33.619 0,35.438 0,37.494 L0,41 C0,41.553 0.447,42 1,42 L25,42 C25.553,42 26,41.553 26,41 L26,37.494 C26,35.438 24.776,33.619 22.883,32.86 Z" id="Path"></path>
<path class="color-foreground" d="M13,28 C17.432,28 21,22.529 21,18 C21,13.589 17.411,10 13,10 C8.589,10 5,13.589 5,18 C5,22.529 8.568,28 13,28 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</svg>
</div>
<span class="nav-link-text ms-1">Quién soy</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#skills" id="menu_1" onclick="menu_f(this)" data-micron="groove">
<div class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="12px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>settings</title>
<g id="Basic-Elements" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Rounded-Icons" transform="translate(-2020.000000, -442.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="Icons-with-opacity" transform="translate(1716.000000, 291.000000)">
<g id="settings" transform="translate(304.000000, 151.000000)">
<polygon class="color-background" id="Path" opacity="0.596981957" points="18.0883333 15.7316667 11.1783333 8.82166667 13.3333333 6.66666667 6.66666667 0 0 6.66666667 6.66666667 13.3333333 8.82166667 11.1783333 15.315 17.6716667"></polygon>
<path class="color-background" d="M31.5666667,23.2333333 C31.0516667,23.2933333 30.53,23.3333333 30,23.3333333 C29.4916667,23.3333333 28.9866667,23.3033333 28.48,23.245 L22.4116667,30.7433333 L29.9416667,38.2733333 C32.2433333,40.575 35.9733333,40.575 38.275,38.2733333 L38.275,38.2733333 C40.5766667,35.9716667 40.5766667,32.2416667 38.275,29.94 L31.5666667,23.2333333 Z" id="Path" opacity="0.596981957"></path>
<path class="color-background" d="M33.785,11.285 L28.715,6.215 L34.0616667,0.868333333 C32.82,0.315 31.4483333,0 30,0 C24.4766667,0 20,4.47666667 20,10 C20,10.99 20.1483333,11.9433333 20.4166667,12.8466667 L2.435,27.3966667 C0.95,28.7083333 0.0633333333,30.595 0.00333333333,32.5733333 C-0.0583333333,34.5533333 0.71,36.4916667 2.11,37.89 C3.47,39.2516667 5.27833333,40 7.20166667,40 C9.26666667,40 11.2366667,39.1133333 12.6033333,37.565 L27.1533333,19.5833333 C28.0566667,19.8516667 29.01,20 30,20 C35.5233333,20 40,15.5233333 40,10 C40,8.55166667 39.685,7.18 39.1316667,5.93666667 L33.785,11.285 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</svg>
</div>
<span class="nav-link-text ms-1">Habilidades</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#education" id="menu_2" onclick="menu_f(this)" data-micron="groove">
<div class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="12px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>office</title>
<g id="Basic-Elements" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Rounded-Icons" transform="translate(-1869.000000, -293.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="Icons-with-opacity" transform="translate(1716.000000, 291.000000)">
<g id="office" transform="translate(153.000000, 2.000000)">
<path class="color-background" d="M12.25,17.5 L8.75,17.5 L8.75,1.75 C8.75,0.78225 9.53225,0 10.5,0 L31.5,0 C32.46775,0 33.25,0.78225 33.25,1.75 L33.25,12.25 L29.75,12.25 L29.75,3.5 L12.25,3.5 L12.25,17.5 Z" id="Path" opacity="0.6"></path>
<path class="color-background" d="M40.25,14 L24.5,14 C23.53225,14 22.75,14.78225 22.75,15.75 L22.75,38.5 L19.25,38.5 L19.25,22.75 C19.25,21.78225 18.46775,21 17.5,21 L1.75,21 C0.78225,21 0,21.78225 0,22.75 L0,40.25 C0,41.21775 0.78225,42 1.75,42 L40.25,42 C41.21775,42 42,41.21775 42,40.25 L42,15.75 C42,14.78225 41.21775,14 40.25,14 Z M12.25,36.75 L7,36.75 L7,33.25 L12.25,33.25 L12.25,36.75 Z M12.25,29.75 L7,29.75 L7,26.25 L12.25,26.25 L12.25,29.75 Z M35,36.75 L29.75,36.75 L29.75,33.25 L35,33.25 L35,36.75 Z M35,29.75 L29.75,29.75 L29.75,26.25 L35,26.25 L35,29.75 Z M35,22.75 L29.75,22.75 L29.75,19.25 L35,19.25 L35,22.75 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
</div>
<span class="nav-link-text ms-1">Educación</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#employment" id="menu_3" onclick="menu_f(this)" data-micron="groove">
<div class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg width="12px" height="20px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>spaceship</title>
<g id="Basic-Elements" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Rounded-Icons" transform="translate(-1720.000000, -592.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="Icons-with-opacity" transform="translate(1716.000000, 291.000000)">
<g id="spaceship" transform="translate(4.000000, 301.000000)">
<path class="color-background" d="M39.3,0.706666667 C38.9660984,0.370464027 38.5048767,0.192278529 38.0316667,0.216666667 C14.6516667,1.43666667 6.015,22.2633333 5.93166667,22.4733333 C5.68236407,23.0926189 5.82664679,23.8009159 6.29833333,24.2733333 L15.7266667,33.7016667 C16.2013871,34.1756798 16.9140329,34.3188658 17.535,34.065 C17.7433333,33.98 38.4583333,25.2466667 39.7816667,1.97666667 C39.8087196,1.50414529 39.6335979,1.04240574 39.3,0.706666667 Z M25.69,19.0233333 C24.7367525,19.9768687 23.3029475,20.2622391 22.0572426,19.7463614 C20.8115377,19.2304837 19.9992882,18.0149658 19.9992882,16.6666667 C19.9992882,15.3183676 20.8115377,14.1028496 22.0572426,13.5869719 C23.3029475,13.0710943 24.7367525,13.3564646 25.69,14.31 C26.9912731,15.6116662 26.9912731,17.7216672 25.69,19.0233333 L25.69,19.0233333 Z" id="Shape"></path>
<path class="color-background" d="M1.855,31.4066667 C3.05106558,30.2024182 4.79973884,29.7296005 6.43969145,30.1670277 C8.07964407,30.6044549 9.36054508,31.8853559 9.7979723,33.5253085 C10.2353995,35.1652612 9.76258177,36.9139344 8.55833333,38.11 C6.70666667,39.9616667 0,40 0,40 C0,40 0,33.2566667 1.855,31.4066667 Z" id="Path"></path>
<path class="color-background" d="M17.2616667,3.90166667 C12.4943643,3.07192755 7.62174065,4.61673894 4.20333333,8.04166667 C3.31200265,8.94126033 2.53706177,9.94913142 1.89666667,11.0416667 C1.5109569,11.6966059 1.61721591,12.5295394 2.155,13.0666667 L5.47,16.3833333 C8.55036617,11.4946947 12.5559074,7.25476565 17.2616667,3.90166667 L17.2616667,3.90166667 Z" id="color-2" opacity="0.598539807"></path>
<path class="color-background" d="M36.0983333,22.7383333 C36.9280725,27.5056357 35.3832611,32.3782594 31.9583333,35.7966667 C31.0587397,36.6879974 30.0508686,37.4629382 28.9583333,38.1033333 C28.3033941,38.4890431 27.4704606,38.3827841 26.9333333,37.845 L23.6166667,34.53 C28.5053053,31.4496338 32.7452344,27.4440926 36.0983333,22.7383333 L36.0983333,22.7383333 Z" id="color-3" opacity="0.598539807"></path>
</g>
</g>
</g>
</g>
</svg>
</div>
<span class="nav-link-text ms-1">Empleo</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link " target="_blank" href="./cv_victor_urquides.pdf" id="menu_4" >
<div class="icon icon-shape icon-sm shadow border-radius-md bg-white text-center me-2 d-flex align-items-center justify-content-center">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 482.14 482.14" style="enable-background:new 0 0 482.14 482.14;" xml:space="preserve">
<g>
<path d="M142.024,310.194c0-8.007-5.556-12.782-15.359-12.782c-4.003,0-6.714,0.395-8.132,0.773v25.69
c1.679,0.378,3.743,0.504,6.588,0.504C135.57,324.379,142.024,319.1,142.024,310.194z"/>
<path d="M202.709,297.681c-4.39,0-7.227,0.379-8.905,0.772v56.896c1.679,0.394,4.39,0.394,6.841,0.394
c17.809,0.126,29.424-9.677,29.424-30.449C230.195,307.231,219.611,297.681,202.709,297.681z"/>
<path d="M315.458,0H121.811c-28.29,0-51.315,23.041-51.315,51.315v189.754h-5.012c-11.418,0-20.678,9.251-20.678,20.679v125.404
c0,11.427,9.259,20.677,20.678,20.677h5.012v22.995c0,28.305,23.025,51.315,51.315,51.315h264.223
c28.272,0,51.3-23.011,51.3-51.315V121.449L315.458,0z M99.053,284.379c6.06-1.024,14.578-1.796,26.579-1.796
c12.128,0,20.772,2.315,26.58,6.965c5.548,4.382,9.292,11.615,9.292,20.127c0,8.51-2.837,15.745-7.999,20.646
c-6.714,6.32-16.643,9.157-28.258,9.157c-2.585,0-4.902-0.128-6.714-0.379v31.096H99.053V284.379z M386.034,450.713H121.811
c-10.954,0-19.874-8.92-19.874-19.889v-22.995h246.31c11.42,0,20.679-9.25,20.679-20.677V261.748
c0-11.428-9.259-20.679-20.679-20.679h-246.31V51.315c0-10.938,8.921-19.858,19.874-19.858l181.89-0.19v67.233
c0,19.638,15.934,35.587,35.587,35.587l65.862-0.189l0.741,296.925C405.891,441.793,396.987,450.713,386.034,450.713z
M174.065,369.801v-85.422c7.225-1.15,16.642-1.796,26.58-1.796c16.516,0,27.226,2.963,35.618,9.282
c9.031,6.714,14.704,17.416,14.704,32.781c0,16.643-6.06,28.133-14.453,35.224c-9.157,7.612-23.096,11.222-40.125,11.222
C186.191,371.092,178.966,370.446,174.065,369.801z M314.892,319.226v15.996h-31.23v34.973h-19.74v-86.966h53.16v16.122h-33.42
v19.875H314.892z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
</div>
<span class="nav-link-text ms-1">Descargar PDF</span>
</a>
</li>
</ul>
</div>
</aside>
<div class="main-content position-relative bg-gray-100">
<section id="whoami"></section>
<div class="page-header min-height-300 border-radius-xl mt-4" style="background-image: url('./assets/img/curved-images/history.jpeg'); background-position-y: 50%;">
</div>
<div class="animated fadeInUp ease-out-circ d2 a-1 f2 fw3 card card-body blur shadow-blur mx-4 mt-n6">
<div class="row gx-4">
<div class="col-auto">
<div class="avatar avatar-xl position-relative">
<img src="./assets/img/IMG_20210620_093019.jpg" alt="..." class="w-100 border-radius-lg shadow-sm">
</div>
</div>
<div class="col-auto my-auto animated zoomInDown">
<div class="h-100">
<h1 class="hero-title mb-1">Victor H. Urquides Puentes</h1>
<p class="hero-sub mb-2">Full‑Stack Developer (Ruby on Rails · JS) · DevOps · Productos con IA</p>
<ul class="list-inline text-sm mb-0">
<li class="list-inline-item"><i class="far fa-envelope me-1"></i><a href="mailto:vh.urquides@gmail.com">vh.urquides@gmail.com</a></li>
<li class="list-inline-item"><i class="fas fa-phone me-1"></i><a href="tel:+525520840226">+52 55 2084 0226</a></li>
<li class="list-inline-item"><i class="fab fa-github me-1"></i><a href="https://github.com/torvick" target="_blank" rel="noopener">torvick</a></li>
<li class="list-inline-item"><i class="fas fa-location-dot me-1"></i>México</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid py-4">
<div class="row">
<div class="col-12 col-xl-12">
<div class="card h-100">
<div class="card-header pb-0 p-3">
<div class="row">
<div class="col-md-8 d-flex align-items-center">
<h6 class="mb-0">Quién soy</h6>
</div>
</div>
</div>
<div class="card-body p-3">
<p>Soy ingeniero en sistemas computacionales con <strong><span id="years"></span> años</strong> desarrollando productos end‑to‑end: desde el <strong>diseño de dominio</strong> y APIs en Rails, hasta la <strong>observabilidad, seguridad</strong> y despliegues en AWS. Me especializo en convertir requisitos complejos en software mantenible, documentado y listo para escalar.</p>
<ul class="text-sm mb-3 ps-4">
<li><strong>Arquitecturas y reglas dinámicas:</strong> creé <em>gemas</em> como <code>PiThreePls</code> y motores de reglas (JSON) para transformar payloads de terceros, mapear estatus y construir respuestas/notifications totalmente configurables por compañía.</li>
<li><strong>Integraciones y automatización:</strong> webhooks bidireccionales, jobs con reintentos, notificaciones HTTP (HTTParty), e <strong>integración con WhatsApp/ManyChat</strong> para flujos interactivos (búsqueda/edición de bookings, selección guiada, multi‑idioma).</li>
<li><strong>SaaS multi‑rol y monetización:</strong> referidos de dos niveles, licencias, bonos de igualación, distribución de puntos, <em>wiki</em> interna con workflows y búsqueda (pg_trgm/unaccent), y plantillas de email (SES).</li>
<li><strong>Calidad y seguridad:</strong> RSpec (POROs, servicios, controladores), RuboCop, rate limiting con Rack::Attack, <em>blacklists</em> de IP/usuarios, confirmaciones con IP (Devise), reCAPTCHA/WAF y políticas con Pundit.</li>
<li><strong>DevOps & Data:</strong> AWS (EC2, S3, SES, ALB, Route 53), NGINX, Docker, CI/CD, autoscaling; Postgres + índices/búsquedas, MongoDB (pipelines/aggregations), Redis (colas, caching).</li>
</ul>
<div class="section-header"><h6 class="text-xs text-uppercase text-secondary mb-2">Lo más representativo</h6></div>
<p class="text-sm mb-2"><strong>Pibox (Logística B2B):</strong> plataforma de bookings corporativos con <em>reglas por compañía</em>, notificaciones de <em>status</em>/posición en tiempo real y anti‑abuso (Rack::Attack). Resultados: menor fricción de integraciones, mejor trazabilidad y time‑to‑market.</p>
<p class="text-sm mb-2"><strong>FeriaPay (SaaS multi‑rol):</strong> referidos de dos niveles, licencias y comisiones dinámicas; <em>wiki</em> con workflows estilo Tango y buscador; onboarding y comunicaciones con SES. Resultados: operación más predecible y habilitación más rápida de equipo.</p>
<p class="text-sm mb-0"><strong>Bodorrio (Eventos):</strong> gestión integral (invitados, proveedores, transacciones, media S3) con autenticación/autorización y secciones visuales optimizadas. Resultados: flujo operativo claro y UX consistente.</p>
<hr class="horizontal gray-light my-4">
</div>
</div>
</div>
</div>
<hr class="horizontal dark mt-0">
<section id="skills"></section>
<div class="row">
<div class="col-12">
<div class="card mb-4">
<div class="card-header pb-0">
<h6>Habilidades</h6>
</div>
<div class="card-body px-0 pt-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center justify-content-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Nombre</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">%</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Ruby_On_Rails_Logo.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Ruby on Rails</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">90%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="90" style="width: 90%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/javascript-seeklogo.com.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">JS</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">90%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="90" style="width: 90%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/JQuery-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">JQuery</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">90%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="90" style="width: 90%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/angular-seeklogo.com.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">AngularJS</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">60%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="60" style="width: 60%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/python-icon.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Phyton</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">80%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="80" style="width: 80%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Node.js-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">NodeJs</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">70%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="70" style="width: 70%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/React_(web_framework)-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">ReactJS</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">60%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="60" style="width: 60%;"></div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="card mb-4">
<div class="card-header pb-0">
<h6>SO's</h6>
</div>
<div class="card-body px-0 pt-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center justify-content-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Nombre</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">%</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/MacOS-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">MacOs</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">99%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="99" aria-valuemin="0" aria-valuemax="99" style="width: 99%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Linux-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Linux</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">99%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="99" aria-valuemin="0" aria-valuemax="99" style="width: 99%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Microsoft_Windows-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Windows</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Expert</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">99%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="99" aria-valuemin="0" aria-valuemax="99" style="width: 99%;"></div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="card mb-4">
<div class="card-header pb-0">
<h6>Mobile</h6>
</div>
<div class="card-body px-0 pt-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center justify-content-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Nombre</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">%</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/React_(web_framework)-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">React Native</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">60%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="60" style="width: 60%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Appcelerator-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">AppCelerator</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/phonegap-seeklogo.com.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">PhoneGap</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="card mb-4">
<div class="card-header pb-0">
<h6>DevOps</h6>
</div>
<div class="card-body px-0 pt-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center justify-content-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Nombre</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">%</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Amazon_Web_Services-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">AWS</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Docker_(software)-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Docker</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/heroku-icon.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Heroku</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">65%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="65" style="width: 65%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/DigitalOcean-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">DigitalOcean</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Linux-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Linux Servers</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="card mb-4">
<div class="card-header pb-0">
<h6>DataBase (SQL/NoSQL)</h6>
</div>
<div class="card-body px-0 pt-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center justify-content-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Nombre</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">%</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/PostgreSQL-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Postgres</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">80%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="80" style="width: 80%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/MySQL-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">MySQL</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">80%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="80" style="width: 80%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/microsoft-sql-server-seeklogo.com.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">SqlServer</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">50%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="50" style="width: 50%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/MongoDB-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">MongoDb</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">75%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="75" style="width: 75%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Redis-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">Redis</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">70%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="70" style="width: 70%;"></div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="card mb-4">
<div class="card-header pb-0">
<h6>Webservers & Otras Herramientas</h6>
</div>
<div class="card-body px-0 pt-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center justify-content-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Nombre</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">%</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="d-flex px-2">
<div>
<img src="./assets/img/small-logos/Nginx-Logo.wine.svg" class="avatar avatar-sm rounded-circle me-2">
</div>
<div class="my-auto">
<h6 class="mb-0 text-sm">NGINX</h6>
</div>
</div>
</td>
<td>
<span class="text-xs font-weight-bold">Medium</span>
</td>
<td class="align-middle text-center">
<div class="d-flex align-items-center justify-content-center">
<span class="me-2 text-xs font-weight-bold">80%</span>
<div>
<div class="progress">
<div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="80" style="width: 80%;"></div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div class="d-flex px-2">
<div>