-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
898 lines (868 loc) · 49.5 KB
/
index.html
File metadata and controls
898 lines (868 loc) · 49.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Personal Website of Alan Quintero - Software Engineer">
<meta name="author" content="Alan Quintero">
<!-- Canonical -->
<link rel="canonical" href="https://alanquintero.github.io/">
<!-- Open Graph for social sharing -->
<meta property="og:type" content="profile" />
<meta property="og:title" content="Alan Quintero - Software Engineer" />
<meta property="og:description"
content="Personal website of Alan Quintero, Software Engineer passionate about Android and backend development." />
<meta property="og:url" content="https://alanquintero.github.io/" />
<meta property="og:image" content="https://alanquintero.github.io/img/share/share.jpg" />
<meta property="og:locale" content="en_US" />
<meta property="profile:first_name" content="Alan" />
<meta property="profile:last_name" content="Quintero" />
<!-- Twitter cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Alan Quintero - Software Engineer" />
<meta name="twitter:description"
content="Personal website of Alan Quintero, Software Engineer focused on backend systems and high-scale infrastructure." />
<meta name="twitter:image" content="https://alanquintero.github.io/img/share/share.jpg" />
<!-- Title -->
<title>Alan Quintero</title>
<!-- Favicon -->
<link rel="icon" href="img/AlanQuintero.ico">
<!-- CSS -->
<link href="vendor/bootstrap-3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css?ver=1.7.4" rel="stylesheet">
<!-- Fonts -->
<link href="fonts/fontawesome-7.0.1-web/css/all.min.css" rel="stylesheet">
<link href="fonts/fonts.googleapis.css" rel="stylesheet">
</head>
<body>
<a class="sr-only sr-only-focusable" href="#main">Skip to main content</a>
<!-- ===================================== -->
<!-- ========= NAVIGATION ================ -->
<!-- ===================================== -->
<nav class="navbar navbar-default navbar-fixed-top" id="navbar">
<div class="container">
<!-- Brand and toggle grouped for mobile -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse" aria-controls="navbar-collapse" aria-expanded="false"
aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#home">Home</a>
</div>
<!-- Dark/Light mode switch -->
<div class="navbar-right">
<label class="switch">
<input id="dark-mode-switch" type="checkbox" checked aria-label="Toggle dark mode">
<span class="slider round">
<span class="icon sun">☀</span>
<span class="icon moon">☾</span>
</span>
</label>
</div>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About Me</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#awards">Awards</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#moreabout">More About Me</a></li>
</ul>
</div>
</div>
</nav>
<!-- ================================= -->
<!-- ========= HOME ================== -->
<!-- ================================= -->
<a id="home"></a>
<main id="main" role="main">
<h1 class="sr-only">Alan Quintero - Software Engineer</h1>
<div class="intro-header" id="intro-header">
<div class="container text-center">
<div class="row">
<div class="col-lg-12">
<div class="intro-message">
<ul class="list-inline intro-social-buttons" id="headList">
<!-- LinkedIn -->
<li class="list-inline" id="headElement1">
<a href="https://www.linkedin.com/in/alan-quintero" title="LinkedIn" target="_blank"
rel="noopener noreferrer" class="btn btn-default btn-lg">
<i class="fa-brands fa-linkedin fa-fw"></i>
<span class="network-name"></span>
</a>
</li>
<!-- Github -->
<li class="list-inline" id="headElement3">
<a href="https://github.com/alanquintero" title="Github" target="_blank"
rel="noopener noreferrer" class="btn btn-default btn-lg">
<i class="fa-brands fa-github fa-fw"></i>
<span class="network-name"></span>
</a>
</li>
<!-- StackOverflow -->
<li class="list-inline" id="headElement4">
<a href="https://stackoverflow.com/users/7845497/alan-quintero"
title="StackOverflow" target="_blank" rel="noopener noreferrer"
class="btn btn-default btn-lg">
<i class="fa-brands fa-stack-overflow fa-fw"></i>
<span class="network-name"></span>
</a>
</li>
<!-- Android Apps -->
<li class="list-inline" id="headElement2">
<a href="https://play.google.com/store/apps/developer?id=aquintero"
title="Android Apps" target="_blank" rel="noopener noreferrer"
class="btn btn-default btn-lg">
<i class="fa-brands fa-android fa-fw"></i>
<span class="network-name"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- ================================= -->
<!-- ========= ABOUT ME ============== -->
<!-- ================================= -->
<a id="about"></a>
<div class="content-section-a light-mode">
<div class="container">
<div class="row">
<!-- Profile Image -->
<div class="col-lg-5 col-lg-offset-2 col-sm-6 text-center">
<img id="profileImg" class="img-responsive img-circle" src="img/aboutMe/profile-light.jpg"
alt="Portrait photo of Alan Quintero" style="width:400px;height:420px;">
</div>
<!-- About Me -->
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer custom-line">
<div class="clearfix"></div>
<h2 class="section-heading title">About Me</h2>
<p class="lead">
Hi! I’m Alan Quintero, a Senior Software Engineer focused on backend systems and high-scale
infrastructure. Experienced in Java, building scalable services, reliable integrations, and
performance-critical systems. <br />Focused on clean architecture, reliability, and
measurable
improvements in production systems.
</p>
<p class="lead"><u>Work authorization</u>: U.S. citizenship</p>
<div class="col-lg-5 col-sm-6 p-0">
<a href="resources/AlanQuintero.pdf" download="Alan Quintero.pdf"
class="btn btn-info btn-lg">
<i class="fa-solid fa-download"></i> Download Resume
</a>
</div>
</div>
</div>
<br />
<!-- Contact Details (below photo & About Me) -->
<div class="row mt-5 contact-details">
<div class="col-lg-12 text-center">
<u>Contact Details</u>
<ul class="list-inline mt-2">
<li>
<span class="fa-brands fa-square-linkedin fa-fw"></span>
<a href="https://www.linkedin.com/in/alan-quintero" target="_blank"
rel="noopener noreferrer">in/alan-quintero</a>
</li>
<li>
| <i class="fa-solid fa-map-marker"></i> San Diego, CA, USA |
</li>
<li>
<i class="fa-solid fa-envelope fa-fw"></i>
<a id="email-link" href="mailto:alanq.swe@outlook.com">alanq.swe@outlook.com</a>
<button type="button" id="copy" class="btn btn-primary btn-xs ml-2"
onclick="copyToClipboard();">Copy email
</button>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- ========================================== -->
<!-- ========= SECTION: RESUME ================ -->
<!-- ========================================== -->
<a id="resume"></a>
<div class="content-section-b">
<div class="container">
<div class="page-header">
<h1 class="title" id="timeline">Resume</h1>
<a href="resources/AlanQuintero.pdf" download="Alan Quintero.pdf" class="btn btn-info btn-lg">
<i class="fa-solid fa-download"></i> Download Resume
</a>
</div>
<ul class="timeline">
<li>
<img class="timeline-badge info img-responsive" src="img/resume/meta.png" alt="Meta logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title title">Meta</h4>
<h5 class="subtitle">Remote (Menlo Park, CA)</h5>
<h6 class="subtitle timeline-title">November 2020 to April 2025</h6>
</div>
<div class="timeline-body">
<img class="timeline-content-images-top-right info img-responsive"
src="img/resume/meta-projects.png" alt="Meta products">
<p class="subtitle"><u>Role</u>: Senior Software Engineer</p>
<ul>
<li>
Led integration of Facebook Memories into
<a href="https://www.threads.com/@theahmedghanem/post/DF0bV0st1IG?hl=en"
target="_blank" rel="noopener noreferrer">
the Messenger’s Friends tab
</a>,
by extending existing backend services and implementing client-side changes
(Android), contributing to a ~10% increase in time spent.
</li>
<li>
Extended WhatsApp messaging workflows to support
<a href="https://youtu.be/0MA9TXm3d1A" target="_blank"
rel="noopener noreferrer">
Meta AI
</a>
features, introducing new encryption/decryption paths and ensuring backward
compatibility and reliability; changes implemented on the Android client.
</li>
<li>
Improved WhatsApp message send latency by ~20% through batching, caching, and
parallelization in large group messaging; optimizations implemented on the
Android
client to enhance end-to-end delivery and enable scaling
<a href="https://wabetainfo.com/whatsapp-is-releasing-larger-groups-up-to-1024-participants/"
target="_blank" rel="noopener noreferrer">
from 256 to 1024 participants
</a>.
</li>
<br />
<li>
<u>Skills</u>: Java 10 | Kotlin | JUnit | Espresso | Git |
Jetpack Compose | Android | Hack
</li>
</ul>
</div>
</div>
</li>
<li class="timeline-inverted">
<img class="timeline-badge info img-responsive" src="img/resume/bind.png" alt="Bind logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title title">Bind On-Demand Health Insurance</h4>
<h5 class="subtitle">Remote (San Francisco, CA)</h5>
<h6 class="timeline-title subtitle">May 2020 to October 2020</h6>
</div>
<div class="timeline-body">
<p class="subtitle"><u>Role</u>: Software Engineer</p>
<ul>
<li>
Built and improved backend services for healthcare claims processing using Java,
Spring Boot, and AWS.
</li>
<li>
Reduced SonarQube issues by 85% through refactoring and code quality
improvements.
</li>
<li>
Automated third-party integration workflows, reducing manual deployment effort.
</li>
<br>
<li>
<u>Skills</u>: Java 11 | Spring Boot | Kafka | Gradle | AWS | JUnit 4 | Jenkins
|
Sumo Logic | Git | SonarQube
</li>
</ul>
</div>
</div>
</li>
<li>
<img class="timeline-badge info img-responsive" src="img/resume/zume.png" alt="Zume logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title title">Zume</h4>
<h5 class="subtitle">Mountain View, CA</h5>
<h6 class="timeline-title subtitle">September 2019 to March 2020</h6>
</div>
<div class="timeline-body">
<p class="subtitle"><u>Role</u>: Software Engineer</p>
<ul>
<li>
Built backend microservices supporting a delivery platform’s pickup experience.
</li>
<li>
Developed internal tools to support product demos and workflows.
</li>
<br>
<li>
<u>Skills</u>: TypeScript / JavaScript | Express.js | Vue.js | Jest |
Redis | Git | JSON
</li>
</ul>
</div>
</div>
</li>
</ul>
<div id="show-resume">
<ul class="timeline">
<li class="timeline-inverted">
<img class="timeline-badge info img-responsive" src="img/resume/talix.png" alt="Talix logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title title">Talix</h4>
<h5 class="subtitle">San Francisco, CA</h5>
<h6 class="timeline-title subtitle">September 2018 to August 2019</h6>
</div>
<div class="timeline-body">
<p class="subtitle"><u>Role</u>: Software Engineer</p>
<ul>
<li>
Improved medical NLP engine mapping clinical records to ICD-10 codes.
</li>
<li>
Increased concept recognition 5% by optimizing Trie structures and phrase
matching.
</li>
<li>
Improved precision 3% by enhancing parsing of clinical note formatting.
</li>
<br>
<li>
<u>Skills</u>: Java 7 | JUnit | Apache OpenNLP | CVS | Oracle SQL |
Tomcat
</li>
</ul>
</div>
</div>
</li>
<li>
<img class="timeline-badge info img-responsive" src="img/resume/infosys.png"
alt="Infosys logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title title">Infosys</h4>
<h5 class="subtitle">Sunnyvale, CA</h5>
<h6 class="timeline-title subtitle">June 2017 to September 2018</h6>
</div>
<div class="timeline-body">
<img class="timeline-content-single-image-top-right info img-responsive"
src="img/resume/apple.png" alt="Apple logo">
<p class="subtitle"><u>Role</u>: Software Engineer - Consultant (Apple)</p>
<ul>
<li>
Built Java REST service supporting Oracle to NoSQL migration and ETL
workflows.
</li>
<li>
Improved API latency by optimizing data transformations and introducing
caching,
reducing response times for downstream systems.
</li>
<br>
<li>
<u>Skills</u>: Java 8 | REST | Maven | JSON | JUnit 4 | Mockito | Git
| Tomcat
</li>
</ul>
</div>
</div>
</li>
<li class="timeline-inverted">
<img class="timeline-badge info img-responsive" src="img/resume/mexico.png"
alt="Mexico logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title title">TCS / Accenture</h4>
<h5 class="subtitle">Mexico</h5>
<h6 class="timeline-title subtitle">January 2015 to May 2017</h6>
</div>
<div class="timeline-body">
<p class="subtitle"><u>Role</u>: Software Engineer - Consultant (USAA, Charter)</p>
<ul>
<li>
Built Java / Spring backend services and REST APIs.
</li>
<li>
Improved system reliability and reduced incidents through automated testing
and
CI pipelines.
</li>
<li>
Worked with relational databases to design and optimize data access
patterns.
</li>
<br>
<li>
<u>Skills</u>: Java | Spring MVC | Spring Boot | REST | Hibernate |
Maven | JUnit | Mockito | Selenium | Git | Oracle SQL | MySQL | SonarQube |
Jenkins
</li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<div class="container-center ">
<h5 class="mb-0">
<button class="btn btn-link" id="show-button" type="button" onclick="showHideResume()">
Show more...
</button>
</h5>
</div>
</div>
</div>
<!-- ========================================== -->
<!-- ========= SECTION: SKILLS ================ -->
<!-- ========================================== -->
<a id="skills"></a>
<div class="content-section-a light-mode">
<div class="container">
<h1 class="title">Skills</h1>
<div class="row">
<div class="col-md-4">
<div class="skill-card">
<h3>Backend & Architecture</h3>
<ul>
<li>Microservices, REST APIs, Distributed Systems</li>
<li>Event-Driven Systems, Asynchronous Processing</li>
<li>API Design, Service-Oriented Architecture</li>
<li>Data Processing Pipelines, Middleware Systems</li>
</ul>
</div>
<div class="skill-card">
<h3>Performance & Scalability</h3>
<ul>
<li>Performance Optimization, Latency Reduction</li>
<li>Caching Strategies, Concurrency, Parallelization</li>
<li>A/B Testing, Experimentation</li>
<li>Bottleneck Analysis, Profiling, System Tuning</li>
</ul>
</div>
<div class="skill-card">
<h3>Messaging & Systems</h3>
<ul>
<li>Messaging Systems, Message Delivery Optimization</li>
<li>Encryption/Decryption Flows</li>
<li>Reliability & Fault Handling</li>
<li>Logging, Monitoring, Debugging</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="skill-card">
<h3>Languages</h3>
<ul>
<li>Java</li>
<li>Kotlin</li>
<li>SQL</li>
<li>TypeScript</li>
</ul>
</div>
<div class="skill-card">
<h3>Tools & Libraries</h3>
<ul>
<li>Spring Boot, Spring MVC, Hibernate</li>
<li>Apache OpenNLP</li>
<li>Kafka</li>
<li>Selenium</li>
</ul>
</div>
<div class="skill-card">
<h3>Databases & Storage</h3>
<ul>
<li>MySQL, Oracle, Cassandra, Redis</li>
<li>Data Modeling, Query Optimization</li>
<li>Relational & NoSQL Databases</li>
<li>NoSQL</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="skill-card">
<h3>Cloud & DevOps</h3>
<ul>
<li>AWS</li>
<li>CI/CD, Jenkins</li>
<li>Maven, Gradle, Git</li>
<li>Tomcat, Sumo Logic</li>
</ul>
</div>
<div class="skill-card">
<h3>Testing & Quality</h3>
<ul>
<li>JUnit, Mockito, Jest, Espresso</li>
<li>Unit Testing, Integration Testing</li>
<li>Test Automation</li>
<li>Code Quality (SonarQube)</li>
</ul>
</div>
<div class="skill-card">
<h3>AI & Developer Tools</h3>
<ul>
<li>AI-assisted Development, Prompt Engineering</li>
<li>Anthropic Claude</li>
<li>GitHub Copilot</li>
<li>Ollama, OpenAI Whisper</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- ============================================= -->
<!-- ========= SECTION: EDUCATION ================ -->
<!-- ============================================= -->
<a id="education"></a>
<div class="content-section-b">
<div class="container">
<div class="page-header">
<h1 class="title">Education</h1>
</div>
<div class="container">
<ul class="timeline">
<li>
<img class="timeline-badge info img-responsive" src="img/education/uaa.png" alt="UAA logo">
<div class="timeline-panel">
<div class="timeline-heading">
<h3 class="timeline-title">Bachelor's Degree</h3>
<h4>Universidad Autonoma de Aguascalientes</h4>
<h5>Aguascalientes, Mexico</h5>
<h6 class="timeline-title">August 2010 to December 2014</h6>
</div>
<div class="timeline-body">
<h3>B.S. in Computer Systems Engineering</h3>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Certifications -->
<a id="certifications"></a>
<div class="content-section-a light-mode">
<div class="container">
<div>
<h1 class="title">Certifications</h1>
</div>
<div class="container">
<div class="row g-3">
<div class="col-6 col-md-4 mb-3 spacing-mobile">
<img src="img/certifications/android.jpg"
class="img-fluid img-rounded rounded clickable-img" alt="Android certification"
loading="lazy" decoding="async">
</div>
<div class="col-6 col-md-4 mb-3 spacing-mobile">
<img src="img/certifications/java6.jpg" class="img-fluid img-rounded rounded clickable-img"
alt="Java 6 certification" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
</div>
<!-- =========================================== -->
<!-- ========= SECTION: AWARDS ================ -->
<!-- =========================================== -->
<a id="awards"></a>
<div class="content-section-b">
<div class="container">
<div>
<h1 class="title">Awards</h1>
</div>
<div class="container">
<div class="row g-3">
<div class="col-6 col-md-4 mb-3 spacing-mobile">
<img src="img/awards/award3.jpg" class="img-fluid img-rounded rounded clickable-img"
alt="Award image" loading="lazy" decoding="async">
</div>
<div class="col-6 col-md-4 mb-3 spacing-mobile">
<img src="img/awards/award2.jpg" class="img-fluid img-rounded rounded clickable-img"
alt="Award image" loading="lazy" decoding="async">
</div>
<div class="col-6 col-md-4 mb-3 spacing-mobile">
<img src="img/awards/award1.jpg" class="img-fluid img-rounded rounded clickable-img"
alt="Award image" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
</div>
<!-- Modal to expand the image when click on it -->
<div id="imageModalContainer">
<img id="imageModal" src="" alt="Expanded image">
</div>
<!-- ============================================ -->
<!-- ========= SECTION: PROJECTS ================ -->
<!-- ============================================ -->
<a id="projects"></a>
<div class="content-section-a light-mode">
<div class="container">
<div>
<h1 class="title">Projects</h1>
</div>
<div id="projectsCarousel" class="carousel slide" data-ride="carousel" data-interval="8000">
<ol class="carousel-indicators">
<li data-target="#projectsCarousel" data-slide-to="0" class="active"></li>
<li data-target="#projectsCarousel" data-slide-to="1"></li>
<li data-target="#projectsCarousel" data-slide-to="2"></li>
<li data-target="#projectsCarousel" data-slide-to="3"></li>
<li data-target="#projectsCarousel" data-slide-to="4"></li>
</ol>
<div class="carousel-inner">
<!-- Project 1 -->
<div class="item active">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<div class="clearfix"></div>
<h2 class="section-heading">Movie Reviews</h2>
<p class="lead">IMDb-inspired movie browsing and search backend built with Java
17 and Spring Boot 3. Developed using AI-assisted tools to accelerate
implementation, testing, and iteration. Uses a Trie data structure for
efficient prefix-based search over the IMDb Top 1000 dataset, exposed via a
REST API with Spring Web and Spring Data.</p>
<a href="https://github.com/alanquintero/movie-reviews" target="_blank"
rel="noopener noreferrer" class="btn btn-default btn-lg"><i
class="fa-brands fa-github fa-fw"></i> <span class="network-name">Source
Code</span></a>
</div>
<br />
<div class="col-lg-5 col-sm-6">
<img class="img-responsive img-rounded" src="img/projects/movie-reviews.png"
alt="Movie Reviews project" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="item">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<div class="clearfix"></div>
<h2 class="section-heading">Read Mode - Android App</h2>
<p class="lead">Developed an Android application to control screen brightness on
older
devices lacking built-in support for this functionality.</p>
<p class="lead">Helped over 10000+ users improve their reading experience on
older
Android devices.</p>
<a href="https://play.google.com/store/apps/details?id=autonightmode.mx.com.alanquintero.autonightmode"
class="btn btn-success btn-lg" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-android"></i> Android App
</a>
<br /><br />
<a href="https://github.com/alanquintero/readmode" target="_blank"
rel="noopener noreferrer" class="btn btn-default btn-lg"><i
class="fa-brands fa-github fa-fw"></i> <span class="network-name">Source
Code</span></a>
</div>
<br />
<div class="col-lg-5 col-sm-6">
<img class="img-responsive img-rounded" src="img/projects/read-mode.jpg"
alt="Read Mode project" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="item">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<div class="clearfix"></div>
<h2 class="section-heading">Oscar's Expert Tree Service</h2>
<p class="lead">Designed and developed a static website for a small business,
improving
their online presence and supporting business growth.</p>
<a href="http://oscarsexperttreeservice.com/" class="btn btn-primary btn-lg"
target="_blank" rel="noopener noreferrer">
<i class="fa-solid fa-globe"></i> Client Website
</a>
</div>
<br />
<div class="col-lg-5 col-sm-6">
<img class="img-responsive img-rounded" src="img/projects/oscar.jpg"
alt="Oscar project" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="item">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<div class="clearfix"></div>
<h2 class="section-heading">Google GeoChart</h2>
<p class="lead">Built a web app with Google GeoChart library to highlight U.S.
regions
and generate printable maps.</p>
<a href="https://google-geochart.pages.dev/" class="btn btn-info btn-lg"
target="_blank" rel="noopener noreferrer">
<i class="fa-solid fa-map"></i> Interactive Map
</a>
<br /><br />
<a href="https://github.com/alanquintero/google-geochart" target="_blank"
rel="noopener noreferrer" class="btn btn-default btn-lg"><i
class="fa-brands fa-github fa-fw"></i> <span class="network-name">Source
Code</span></a>
</div>
<br />
<div class="col-lg-5 col-sm-6">
<img class="img-responsive img-rounded" src="img/projects/geochart.jpg"
alt="GeoChart project" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
<!-- More Projects -->
<div class="item">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<div class="clearfix"></div>
<h2 class="section-heading">More Projects...</h2>
<a href="https://github.com/alanquintero?tab=repositories" target="_blank"
rel="noopener noreferrer" class="btn btn-default btn-lg"><i
class="fa-brands fa-github fa-fw"></i> <span
class="network-name">Github</span></a>
</div>
<br />
<div class="col-lg-5 col-sm-6">
<img class="img-responsive img-rounded" src="img/projects/more-projects.jpg"
alt="More GitHub projects" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
</div>
<!-- Carousel controls -->
<a class="left carousel-control" href="#projectsCarousel" data-slide="prev">
<i class="fa-solid fa-chevron-left"></i>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#projectsCarousel" data-slide="next">
<i class="fa-solid fa-chevron-right"></i>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!-- ================================================= -->
<!-- ========= SECTION: MORE ABOUT ME ================ -->
<!-- ================================================= -->
<a id="moreabout"></a>
<div class="content-section-b">
<div class="container">
<div class="row">
<div class="col-lg-6 col-sm-6">
<hr class="section-heading-spacer custom-line">
<div class="clearfix"></div>
<h2 class="section-heading title">More About Me</h2>
<p class="lead">I am a responsible, disciplined, and dedicated person who believes the key to
success is
to never stop learning. I love discovering something new every day and continue working step
by
step
toward turning my dreams into reality.</p>
<p class="lead">In my free time, I enjoy reading books, exercising, watching movies/series, and
traveling whenever I get the chance.</p>
<p class="lead"><u>My favorite quote:</u> <i>"Success is not about speed, but about steady and
consistent effort."</i></p>
<!-- Links are not available
<a href="https://www.duolingo.com/profile/alan.quintero?via=share_profile_link" title="Duolingo"
target="_blank" rel="noopener noreferrer">
<img class="more-about-logo info img-responsive" src="img/moreAboutMe/duolingo.png"
alt="Duolingo logo">
</a>
<a href="https://fable.co/fabler/alan-226170356372" title="Fable" target="_blank"
rel="noopener noreferrer">
<img class="more-about-logo info img-responsive" src="img/moreAboutMe/fable.jpg"
alt="Fable logo">
</a>
<a href="https://www.goodreads.com/user/show/75090774-alan-quintero" title="Goodreads" target="_blank"
rel="noopener noreferrer">
<img class="more-about-logo info img-responsive" src="img/moreAboutMe/goodreads.png"
alt="Goodreads logo">
</a>
-->
</div>
<br />
<div class="col-lg-6 col-sm-6">
<img class="photo-desktop img-responsive img-rounded" src="img/moreAboutMe/desktop.jpg"
alt="desktop version" style="width:600px;height:320px;" loading="lazy" decoding="async">
<img class="photo-mobile img-responsive img-rounded" src="img/moreAboutMe/mobile.jpg"
alt="mobile version" loading="lazy" decoding="async">
</div>
</div>
</div>
</div>
</main>
<!-- ========================================== -->
<!-- ========= SECTION: FOOTER ================ -->
<!-- ========================================== -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-lg-12">
<ul class="list-inline">
<li>
<a href="#">Home</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#about">About Me</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#resume">Resume</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#skills">Skills</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#education">Education</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#certifications">Certifications</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#awards">Awards</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#projects">Projects</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#moreabout">More About Me</a>
</li>
<li class="footer-menu-divider">⋅</li>
</ul>
<p class="copyright text-muted small">Copyright © Alan Quintero. All Rights Reserved</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="vendor/jquery-3.7.1.min.js" defer></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap-3.3.7/js/bootstrap.min.js" defer></script>
<script src="js/script.js?ver=1.8.2" defer></script>
</body>
</html>