-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1345 lines (1294 loc) · 81.3 KB
/
index.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
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="zxx">
<head>
<!-- metas -->
<meta charset="utf-8">
<meta name="author" content="themepaa">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="Martin - Portfolio Template">
<meta name="description" content="Martin - Portfolio Template">
<!-- title -->
<title>Luis Cabrera</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- plugin CSS -->
<link href="static/plugin/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="static/plugin/font-awesome/css/all.min.css" rel="stylesheet">
<link href="static/plugin/et-line/style.css" rel="stylesheet">
<link href="static/plugin/themify-icons/themify-icons.css" rel="stylesheet">
<link href="static/plugin/owl-carousel/css/owl.carousel.min.css" rel="stylesheet">
<link href="static/plugin/magnific/magnific-popup.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- theme css -->
<link href="static/style/master.css" rel="stylesheet">
</head>
<!-- Body Start -->
<body data-spy="scroll" data-target="#navbar-collapse-toggle" data-offset="90">
<!-- page loading -->
<div id="loading">
<div class="load-circle"><span class="one"></span></div>
</div>
<!-- end page loading -->
<!-- Header -->
<header class="header-nav header-nav-white">
<!-- Header Middle -->
<div class="navbar navbar-default navbar-expand-lg main-navbar main-navbar">
<div class="container">
<div class="navbar-brand">
<a class="" href="#">
<img id="gclogo" src="static/img/LuisCabreraLogoWhite.svg" title="Luis Cabrera"
alt="LuisCabrera">
</a>
</div>
<div class="navbar-collapse collapse" id="navbar-collapse-toggle">
<ul class="nav navbar-nav ml-auto">
<li><a class="nav-link" href="#home">Home</a></li>
<li><a class="nav-link" href="#profile">Profile</a></li>
<li><a class="nav-link" href="#resume">Resume</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#contactus">Contact</a></li>
</ul>
</div>
<button type="button" class="navbar-toggler collapsed" data-toggle="collapse"
data-target="#navbar-collapse-toggle" aria-expanded="false">
<span class="icon-bar"></span>
</button>
</div>
</div>
<!-- End Header Middle -->
</header>
<!-- Header End -->
<!-- Main -->
<main>
<!-- Home Banner -->
<section id="home" class="home-banner-01 bg-cover bg-center bg-no-repeat"
style="background-image: url(static/img/bg1.png);">
<div class="container">
<div class="row full-screen align-items-center justify-content-center">
<div class="col-lg-12">
<div class="ht-box text-center">
<h1 class="white-color">Business is now Digital</h1>
<h4 class="white-color">Is your business ready to compete?</h4>
<p class="white-color p-75px-t uppercase">I specialize in building custom software solutions
for small businesses</p>
<div class="p-30px-t go-to">
<a class="m-btn m-btn-lg m-btn-radius m-btn-theme" href="#contactus">Let's Connect</a>
<a class="m-btn m-btn-lg m-btn-radius m-btn-theme" href="#work">See my Work</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Home Banner -->
<!-- available for hire -->
<section id="profile" class="p-60px-tb theme-bg">
<div class="container text-center">
<h3 class="font-w-600 white-color">I AM AVAILABLE FOR FREELANCE</h3>
<div class="p-15px-t go-to">
<a class="m-btn m-btn-white" href="#contactus">How can I help?</a>
</div>
</div>
</section>
<!-- end available for hire -->
<!-- personal quote -->
<section class="section p-15px-tb">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7 md-m-40px-t">
<div class="p-30px-l md-p-0px-l">
<blockquote>
<p class="font-gc">Luis brings exceptional competencies to any company, most
notably a deep expertise in software architecture and design. He is a Software
Architect with over 25 solid
years of experience designing and implementing large scale enterprise solutions for
the insurance, financial,
banking and healthcare industries. Strong background in native, hybrid and
progressive web app development
and contributor to open source software.
</p>
</blockquote>
</div>
</div>
<div class="col-lg-5">
<div class="p-10px white-bg">
<img src="static/img/services_01.svg" title="" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- end personal quote -->
<!-- careersummary -->
<section id="careersummary" class="section gray-bg">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 md-m-40px-t">
<div class="p-30px-l md-p-0px-l">
<div class="section-title left p-30px-b">
<h2 class="dark-color"><span class="theme-color">Career</span> Summary</h2>
</div>
<p class="font-gc">In my 25+ years of experience I've come across many technologies. Here's
a brief summary of my background...
</p>
<div class="row p-30px-b p-25px-l">
<div class="col-12">
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 6 years of experience in hybrid app
development using <span class="theme-color-red">ionic framework</span>.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 5 years of experience using <span
class="theme-color-red">Angular</span>.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 5 years of experience in <span
class="theme-color-red">Firebase</span> as a cloud, non-SQL database
backend.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 6 years of experience using <span
class="theme-color-red">nodejs</span>, <span
class="theme-color-red">npm</span>, <span
class="theme-color-red">cordova</span>.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 4 years of experience using <span
class="theme-color-red">.NET Core API</span>.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 4 years of experience using <span
class="theme-color-red">TypeScrypt</span>.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 25 years of experience in all phases of the software development lifecycle.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Extensive enterprise architecture and implementation experience.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Over 20 solid years as a hands-on developer using
<span class="theme-color-red">C#, VB.Net</span>.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Extensive experience in Web Services - SOAP (XML, JSON, HTML).</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Extensive experience in object oriented programming.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Extensive experience in SQL Server 2019, Db2, Oracle, Microsoft Access.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Extensive experience in writing Stored Procedures, Triggers, Functions.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Strong analytical and problem solving skills.</div>
</div>
<div class="d-flex align-items-center p-5px-tb">
<div><i
class="fas fa-check icon icon-sm blue-color blue-bg-alt border-radius-50"></i>
</div>
<div class="p-10px-l font-gc">Extensive experience working independently and as
part of large teams.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end careersummary -->
<!-- personal objective -->
<section id="careersummary" class="section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 md-m-40px-t">
<div class="p-30px-l md-p-0px-l">
<div class="section-title left p-30px-b">
<h2 class="dark-color"><span class="theme-color">Personal</span> Objective</h2>
</div>
<p class="font-gc">I am looking for an opportunity where I can utilize my current skills
while increasing exposure to new and improved technologies: most importantly developing
native, hybrid and progressive web apps. I want to be able to continue my education and
training and face new challenges and responsibilities. Overall, I want to work for a
company where there is a potential for growth and opportunities.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- end careersummary -->
<!-- Feature Box -->
<section id="serviceareas" class="section gray-bg">
<div class="container">
<div class="row">
<div class="col-sm-6 col-lg-4 m-15px-tb">
<div
class="feature-box-1 text-center p-40px-tb p-20px-lr hover-top transition box-shadow-hover">
<div class="f-icon theme-color m-10px-b">
<i class="fas fa-server"></i>
</div>
<div class="feature-content">
<h6 class="dark-color font-w-700 m-15px-b">Backend Web <br>Development</h6>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 m-15px-tb">
<div
class="feature-box-1 text-center p-40px-tb p-20px-lr hover-top transition box-shadow-hover">
<div class="f-icon theme-color m-10px-b">
<i class="fas fa-desktop"></i>
</div>
<div class="feature-content">
<h6 class="dark-color font-w-700 m-15px-b">Frontend Web <br>Development</h6>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 m-15px-tb">
<div
class="feature-box-1 text-center p-40px-tb p-20px-lr hover-top transition box-shadow-hover">
<div class="f-icon theme-color m-10px-b">
<i class="fas fa-mobile-alt"></i>
</div>
<div class="feature-content">
<h6 class="dark-color font-w-700 m-15px-b">Mobile <br>Development</h6>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 m-15px-tb">
<div
class="feature-box-1 text-center p-40px-tb p-20px-lr hover-top transition box-shadow-hover">
<div class="f-icon theme-color m-10px-b">
<i class="fas fa-drafting-compass"></i>
</div>
<div class="feature-content">
<h6 class="dark-color font-w-700 m-15px-b">Product Design</h6>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 m-15px-tb">
<div
class="feature-box-1 text-center p-40px-tb p-20px-lr hover-top transition box-shadow-hover">
<div class="f-icon theme-color m-10px-b">
<i class="fas fa-tools"></i>
</div>
<div class="feature-content">
<h6 class="dark-color font-w-700 m-15px-b">Task Automation</h6>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 m-15px-tb">
<div
class="feature-box-1 text-center p-40px-tb p-20px-lr hover-top transition box-shadow-hover">
<div class="f-icon theme-color m-10px-b">
<i class="fas fa-layer-group"></i>
</div>
<div class="feature-content">
<h6 class="dark-color font-w-700 m-15px-b">Reporting</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Feature Box -->
<!-- technologies -->
<section class="p-60px-tb white-bg">
<div class="container">
<div class="row logo-box-1 justify-content-md-center">
<div class="col-sm-4 col-md-2 m-15px-tb text-center">
<div class="svg-icon theme-color m-10px-b">
<img src="static/img/angular_gray.svg" title="" alt="">
</div>
</div>
<div class="col-sm-4 col-md-2 m-15px-tb text-center">
<div class="svg-icon theme-color m-10px-b">
<img src="static/img/ionic_gray.svg" title="" alt="">
</div>
</div>
<div class="col-sm-4 col-md-2 m-15px-tb text-center">
<div class="svg-icon theme-color m-10px-b">
<img src="static/img/netcore_gray.svg" title="" alt="">
</div>
</div>
<div class="col-sm-4 col-md-2 m-15px-tb text-center">
<div class="svg-icon theme-color m-10px-b">
<img src="static/img/firebase_gray.svg" title="" alt="">
</div>
</div>
<div class="col-sm-4 col-md-2 m-15px-tb text-center">
<div class="svg-icon theme-color m-10px-b">
<img src="static/img/sqlserver_gray.svg" title="" alt="">
</div>
</div>
<div class="col-sm-4 col-md-2 m-15px-tb text-center">
<div class="svg-icon theme-color m-10px-b">
<img src="static/img/github_gray.svg" title="" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- end technologies -->
<!-- big banner : RESUME -->
<header id="resume" class="header-section has-img">
<div class="big-img intro-header" style="background-image: url('./static/img/me-02.png');">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="page-heading">
<h1>Resume</h1>
</div>
</div>
</div>
</div>
<span class="img-desc" style="display: inline;">Brooksville, Florida (2014)</span>
</div>
</header>
<!-- end big banner -->
<!-- resume -->
<section class="section p-5px-t">
<div class="container">
<!-- resume starts here -->
<div class="row">
<div class="col-md-12">
<div class="section-content">
<!-- WORK EXPERIENCE -->
<section class="contentbox" id="data_box3">
<!-- The Auto Club Group -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2006
<small>Dec</small>
</span> -
<span>Present</span>
</h1>
<h3>The Auto Club Group</h3>
<p>Applications Architect</p>
<a href="https://aaa.com" target="_blank"><img alt="" src="static/img/experience/aaa-vector.png"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h4 class="dark-color font-w-700 m-15px-b">JOB DESCRIPTION</h4>
<p class="font-gc">Project Lead responsible to support southern region
insurance agency operations</p>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<ul id="resumesection">
<li>Project Lead involved in project planning and delivery of
large-scale, strategic projects</li>
<li>Responsible for deployment activities realated to scheduled
releases and hotfixes</li>
<li>Responsible for TFS activities including code reviews, Work
Items and Sprints</li>
<li>Responsible to coordinate efforts to improve reliability by
reducing defects and inefficiencies in core insurance systems
used in both internal and consumer channels</li>
<li>Liaison in charge to assist the Insurance Agency Department in
the execution of their functions by enhancing
supporting systems and procedures</li>
<li>Liaison in charge to assist the Quality Assurance department in
the execution of their functions by enhancing
supporting systems and procedures</li>
<li>Applications Architect in charge of enhancing usability in
consumer facing quoting and purchasing applications</li>
<li>Team Lead and collaborator working on improving response time
and application performance</li>
<li>Support Insurance agency areas on operational issues and
resolution</li>
<li>Support Agency management as needed</li>
<li>Work with third party carriers on integration, maintenance,
enhancements of vendor products</li>
</ul>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Environment / Technologies
Used</h6>
<p>
VS2012, TFS2012, DB2, ASP.NET, VB.NET, JavaScript, jQuery, JSON,
LINQ, XML, XSD (XML Schema Definition), HTML, CSS, WebServices,
SOAP, SSL, IIS 7.5, RLPolk (vehicle lookup provider), VinLookup,
LexisNexis (customer lookup provider), Web
Services, ASP.NET, VB.NET, JavaScript, jQuery, HTML, CSS, HP Test
Director/Quality Center, Sagitta, Docusign,
ACORD (insurance industry's XML standards)
</p>
</div>
<div class="cv-block">
<h4 class="dark-color font-w-700 m-15px-b">JOB DESCRIPTION</h4>
<p>
Support NR and SR integration efforts in rollout of POC+ (Point of
Contact - internal CRM platform)
</p>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<p>Luis was involved in three strategic projects with the Northern
Region in 2014:</p>
<p>
For POC+ Luis did a great job with his efforts on the rollout to the
7 states. He worked on the modifications to our Insurance
Systems that were needed for integration to the Sales & Service
Portal (S&S), northern region insurance platform.
Additionally he built web service interfaces that were used between
S&S and POC+ that would synchronize customer
information.
</p>
<p>
Luis also played a major role in the Common Auto Quoter (CAQ) effort
that consolidated Auto Insurance Quoting to a common
platform in 11 states. In addition to executing his team lead duties
on this effort, he was also responsible
for the development and delivery of key components of the project.
He was able to meaningfully contribute to
all aspects of the project and was instrumental in the successful
delivery of the project.
</p>
<p>
Luis again played an important role in the 6-State Auto Project.
Toward the end of the year we experienced some attrition
which resulted in additional workload being placed on Luis. He faced
the challenge with a can do attitude and
stepped up his efforts to get the job done.
</p>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Environment / Technologies
Used</h6>
<p>
VS2012, TFS2012, DB2, ASP.NET, VB.NET, JavaScript, jQuery, JSON,
LINQ, XML, XSD (XML Schema Definition), HTML, CSS, WebServices,
SOAP, SSL, IIS 7.5, RLPolk (vehicle lookup provider), VinLookup,
LexisNexis (customer lookup provider), Web
Services, ASP.NET, VB.NET, JavaScript, jQuery, HTML, CSS, HP Test
Director/Quality Center, Sagitta, Docusign,
ACORD (insurance industry's XML standards)
</p>
</div>
</div>
</div>
</div>
<!-- ACENTUS LLC -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2018
<small>Aug</small>
</span> -
<span>Present</span>
</h1>
<h3>Acentus LLC</h3>
<a href="https://acentus365.com/" target="_blank"><img alt="" src="static/img/experience/acentus.png"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Consultant for acentus365.com</h6>
<ul id="resumesection">
<li>
Provide IT consulting services
</li>
<li>
Custom software development in Angular, Firebase, .NET CORE, SQL Server
</li>
<li>
Custom APP development in Ionic Framework
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- PBE LLC -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2021
<small>Aug</small>
</span> -
<span>Present</span>
</h1>
<h3>Principle Business Enterprises</h3>
<a href="https://principlebusinessenterprises.com/" target="_blank"><img alt="" src="static/img/experience/pbe.jpg" width="100" height="100"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Consultant for principlebusinessenterprises.com</h6>
<ul id="resumesection">
<li>
Provide IT consulting services
</li>
<li>
Custom software development in Angular, Firebase, .NET CORE, SQL Server
</li>
<li>
Build automation between BigCommerce, Amazon, and QuickBooks Online
</li>
<li>
Build automation for dropshipping with Cardinal Health and Boxout (Milliken)
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- ionic framework -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2015
<small>April</small>
</span> -
<span>Present</span>
</h1>
<h3>Ionic Framework</h3>
<a href="https://ionicframework.com/" target="_blank"><img alt="" src="static/img/experience/ionic.png"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Community Member / Evangelist
/ Open Source Contributor</h6>
<ul id="resumesection">
<li>
I discovered the Ionic Framework back in April 2015 and I became
addicted almost immediately. I am a community member
actively participating in the ionic framework open source
project and spreading the word to anybody who wants to listen!
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- DNN Software -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2014
<small>Jan</small>
</span> -
<span>Present</span>
</h1>
<h3>DNN</h3>
<a href="https://www.dnnsoftware.com/" target="_blank"><img alt="" src="static/img/experience/dotnetnuke-vector.png"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Coordinator for the Official DNN Blog Module</h6>
<ul id="resumesection">
<li>
Community member, DNN Blog expert, helping bring the module to
the next level while assisting the community in the process
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- ally247.com -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2007
<small>Jan</small>
</span> -
<span>
2014
<small>Dec</small>
</span>
</h1>
<h3>Ally Medical Services</h3>
<img alt="" src="static/img/experience/ally247-vector.png">
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Consultant for ally247.com</h6>
<ul id="resumesection">
<li>
Provide DNN consulting services
</li>
<li>
Custom DNN Module development
</li>
<li>
Custom DNN Skin design
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Citigroup -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2004
<small>Jul</small>
</span> -
<span>
2006
<small>Sept</small>
</span>
</h1>
<h3>Citigroup</h3>
<p>Senior Software Engineer</p>
<a href="https://citi.com/" target="_blank"><img alt="" src="static/img/experience/citi-vector.png"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h4 class="dark-color font-w-700 m-15px-b">JOB DESCRIPTION</h4>
<p>
Provide support to the company's Global AML Risk Management system
</p>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<ul id="resumesection">
<li>
Directly responsible for the architecture and full-cycle
development of a fully-secured Web application for tracking
certifications
regarding correspondent accounts for foreign banks in accordance
to the Patriot Act passed by Congress in
2001. This globally-used web application was engineered as a
hybrid application with ASP, ASP.NET and C#
.NET with Oracle backend support, due to the interfacing with
other systems
</li>
<li>
Team member in charge of the support and maintenance of the
company's AML Risk Management system, a global application used
by the corporate AML compliance officers to report suspicious
activities to the federal regulatory organizations
</li>
</ul>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Environment / Technologies
Used</h6>
<p>
VS2005, VSS, Oracle, ASP.NET, C#, Classic ASP, JavaScript, HTML, CSS
</p>
</div>
</div>
</div>
</div>
<!-- Kronos -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2000
<small>Nov</small>
</span> -
<span>
2004
<small>Jun</small>
</span>
</h1>
<h3>Kronos</h3>
<p>Lead Software Engineer</p>
<a href="https://www.kronos.com/" target="_blank"><img alt="" src="static/img/experience/kronos-vector.png"></a>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h4 class="dark-color font-w-700 m-15px-b">JOB DESCRIPTION</h4>
<p>
Provide support to the Labor Management Suite that plans, tracks,
and analyzes healthcare labor data
</p>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<ul id="resumesection">
<li>
Responsible for the migration of two of the company’s main core
Windows applications from VB6 and C++ to Visual C# .NET.
</li>
<li>
Team leader and hands-on developer responsible for the
development of a labor management application to plan, track,
and
analyze labor data, and deliver said data to frontline
decision-makers.
</li>
<li>
Team leader and hands-on developer in charge of the full-cycle
development of an interactive ASP report generation application
based upon user input and filtered criteria.
</li>
<li>
Responsible for all InstallShield installation scripts for the
company’s entire application suite.
</li>
<li>
Team member in charge of the architecture and development of
server-side COM objects that handled generation, batching and
scheduling of reports for Web distribution.
</li>
<li>
Team member in charge of developing proprietary COM and ActiveX
Controls for both Client/Server and Web applications.
</li>
</ul>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Environment / Technologies
Used</h6>
<p>
VS2003, VSS, ASP.NET, C#, C++, VB6, COM+, ActiveX, Classic ASP,
JavaScript, HTML, DHTML, Behaviours, CSS, Crystal Reports.NET,
InstallShield, Oracle 8i, SQL Server 2000
</p>
</div>
</div>
</div>
</div>
<!-- Virtual MT Networks, INC. -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
2000
<small>Jul</small>
</span> -
<span>
2000
<small>Oct</small>
</span>
</h1>
<h3>Virtual MT Networks, INC.</h3>
<p>Lead Software Engineer</p>
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h4 class="dark-color font-w-700 m-15px-b">JOB DESCRIPTION</h4>
<p>
Collaborate in the architecture of the Medical Transcriptionists
Suite of applications
</p>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<ul id="resumesection">
<li>
Project Leader in charge for the development of Business
Requirements Specifications and the fullcycle development of a
distributed
3-tier web-based software application used in the Medical
Transcriptions Industry. Computer skills utilized
include, but were not limited to, VB6, COM, ADO, ADOX, RDS,
TCP/IP, SQL Server and Stored Procedures
</li>
<li>
Developed the company’s first automated web-enabled software
update service for our user base, capable of determining the
frequency of the updates and the type of updates we needed to
deploy
</li>
<li>
Developed an administrator’s “Control Panel” in Visual Basic and
Active Server Pages to monitor user activity, performance,
cost, software versioning, and error logging
</li>
<li>
Developed and maintained the company’s web site
</li>
</ul>
</div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Environment / Technologies
Used</h6>
<p>
VS2003, VSS, ASP.NET, C#, C++, VB6, COM+, ActiveX, Classic ASP,
JavaScript, HTML, DHTML, Behaviours, CSS, Crystal Reports.NET,
InstallShield, Oracle 8i, SQL Server 2000
</p>
</div>
</div>
</div>
</div>
<!-- Business Software Alliance -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
1998
<small>Jul</small>
</span> -
<span>
2000
<small>Jun</small>
</span>
</h1>
<h3>Business Software Alliance</h3>
<p>Software Auditing Director</p>
<p>Guatemala City</p>
<img alt="" src="static/img/experience/bsa-vector.png">
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<ul id="resumesection">
<li>
Corporate speaker on proper business software licensing
practices
</li>
<li>
Trainer for IT managers on auditing techniques and software
usage policies and laws
</li>
<li>
Chief auditor participating in anti-piracy raids
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Microsoft Corporation -->
<div class="row cv-section">
<div class="col-md-3">
<div class="cv-section-title">
<h1>
<span>
1998
<small>Jul</small>
</span> -
<span>
2000
<small>Jun</small>
</span>
</h1>
<h3>Microsoft Corporation</h3>
<p>Software Licensing Specialist (contract)</p>
<p>Guatemala City</p>
<img alt="" src="static/img/experience/microsoft-vector.png">
</div>
</div>
<div class="col-md-9 cv-item">
<div>
<div class="cv-block">
<h6 class="dark-color font-w-700 m-15px-b">Roles / Responsibilities</h6>
<ul id="resumesection">
<li>
Provide assistance to corporations on software licensing
standards, policies, planning and procedures
</li>
<li>
Provided assistance to corporations to ensure compliance with
all appropriate software licensing rules, laws and contracts
</li>
</ul>
</div>
</div>