-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
944 lines (882 loc) · 55.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Christian Pecson</title>
<link rel="preload" href="https://cdn.jsdelivr.net">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<!-- Primary Meta Tags -->
<meta name="title" content="Christian Pecson">
<meta name="description" content="Hi I'm Christian. I'm a Front End Developer, and I bet on Javascript.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://chpecson.dev/">
<meta property="og:title" content="Christian Pecson">
<meta property="og:description" content="Hi I'm Christian. I'm a Front End Developer, and I bet on Javascript.">
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/chpecson/chpecson.github.io/images/meta-preview.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://chpecson.dev/">
<meta property="twitter:title" content="Christian Pecson">
<meta property="twitter:description" content="Hi I'm Christian. I'm a Front End Developer, and I bet on Javascript.">
<meta property="twitter:image" content="https://cdn.jsdelivr.net/gh/chpecson/chpecson.github.io/images/meta-preview.png">
<!-- Custom css -->
<link rel="stylesheet" type="text/css" href="css/style.min.css" />
</head>
<body>
<!--Navbar Start-->
<nav class="navbar navbar-expand-lg fixed-top navbar-custom sticky sticky-dark">
<section class="container">
<!-- LOGO -->
<a class="logo text-uppercase text-primary" href="#home">
Christian Pecson
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<ion-icon name="menu"></ion-icon>
</button>
<section class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto navbar-center" id="mySidenav">
<li class="nav-item active">
<a href="#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#experience" class="nav-link">Experience</a>
</li>
<li class="nav-item">
<a href="#skills" class="nav-link">Skills</a>
</li>
<li class="nav-item">
<a href="#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="#certificates" class="nav-link">Certificates</a>
</li>
</ul>
</section>
</section>
</nav>
<!-- Navbar End -->
<!-- Hero section Start -->
<header class="hero-section" id="home">
<section class="container">
<section class="row align-items-center justify-content-between">
<section class="col-lg-4 col-sm-12">
<section class="home-img shadow-lg mx-auto mt-4"></section>
</section>
<section class="col-lg-8 col-sm-12 text-xs-center text-sm-center text-lg-left d-flex justify-content-center">
<section class="hero-wrapper mt-4 mb-4">
<h1 class="hero-title mb-4">
Hi, I'm <span class="text-primary">Christian!</span>
</h1>
<h3 class="hero-title mb-4">
<span class="profession"></span>
</h3>
</section>
</section>
</section>
<!-- end row -->
</section>
<!-- end container -->
</header>
<!-- Hero section End -->
<!-- Experience start -->
<section class="section bg-light" id="experience">
<section class="container">
<!-- row -->
<section class="row justify-content-center">
<section class="col-lg-8">
<section class="text-center mb-5">
<h4 class="mb-3">Experience</h4>
<p>Where I work, role and duration</p>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-12 mb-4">
<section>
<h5>Tawk.to</h5>
<p class="mb-0 text-dark">Hybrid Mobile App Developer</p>
<p class="mb-4 text-dark">Mar 2022 – Present</p>
<section class="row">
<section class="col-sm-12 mx-auto text-justify">
<ul>
<li>Collaborate with the development team to design, code, test, and implement new features and bug fixes for the hybrid mobile app.</li>
<li>Picking up new tasks assigned by the lead developer and communicating freely to ensure the requirements are clearly understood.</li>
<li>Code and test solutions that comply with project coding standards.</li>
<li>Commit code to project repositories and create pull requests when tasks are complete.</li>
<li>Respond promptly to pull request reviews and change requests.</li>
<li>Keep project task tracking software up to date with progress.</li>
</ul>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-12 mb-4">
<section>
<h5>Ahsay</h5>
<p class="mb-0 text-dark">Hybrid Mobile App Developer</p>
<p class="mb-4 text-dark">Sep 2021 – Feb 2022 (6 months)</p>
<section class="row">
<section class="col-sm-12 mx-auto text-justify">
<ul>
<li>Involve throughout mobile application development lifecycle, from design, develop testing and release</li>
<li>Maintain, add new features, debug and keep application up-to-date</li>
<li>Update development documents</li>
<li>Work closely with programmers and designer to constantly innovate app functionality and design</li>
</ul>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-12 mb-4">
<section>
<h5>Corebridge</h5>
<p class="mb-0 text-dark">Frontend Developer</p>
<p class="mb-4 text-dark">Jan 2021 – Dec 2021 (1 year)</p>
<section class="row">
<section class="col-sm-12 mx-auto text-justify">
<ul>
<li class="pb-1">Create highly interactive web applications using Angular, JavaScript (and TypeScript), HTML5, etc.</li>
<li class="pb-1">Work in a team with other developers, UX designers, and QA to create user interfaces for web and mobile applications.</li>
<li class="pb-1">Utilize ticket tracking, repository, and GIT-based source code synchronization.</li>
<li class="pb-1">Check and follow up with daily updates and tasks.</li>
<li class="pb-1">Assist the support team with problem identification and bug fixes.</li>
<li class="pb-1">Research and learn new technologies to aid and assist the development team.</li>
</ul>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-12 mb-4">
<section>
<h5>Upwork</h5>
<p class="mb-0 text-dark">Freelance Hybrid Mobile App Developer</p>
<p class="mb-4 text-dark">Jan 2020 – Dec 2021 (1 year)</p>
<section class="row">
<section class="col-sm-12 mx-auto text-justify">
<ul>
<li class="pb-1">Support the entire application life-cycle (concept, design, test, release and support)</li>
<li class="pb-1">Produce fully functional mobile applications by writing clean code</li>
<li class="pb-1">Gather specific requirements and suggest solutions</li>
<li class="pb-1">Troubleshoot and debug to optimize performance</li>
<li class="pb-1">Design interfaces to improve user experience</li>
<li class="pb-1">Ensure mobile applications meet quality standards</li>
</ul>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-12 mb-4">
<section>
<h5>ProximaX</h5>
<p class="mb-0 text-dark">Software developer</p>
<p class="mb-4 text-dark">Oct 2018 – Jan 2020 (1 year and 4 months)</p>
<section class="row">
<section class="col-sm-12 mx-auto text-justify">
<ul>
<li class="pb-1">Develop software solutions by studying information needs; conferring with users; studying systems flow, data usage and work processes; investigating problem areas; following the software development lifecycle</li>
<li class="pb-1">Determine operational feasibility by evaluating analysis, problem definition, requirements, solution development and proposed solutions</li>
<li class="pb-1">Document and demonstrate solutions by developing documentation, flowcharts, layouts, diagrams, charts, code comments and clear code</li>
<li class="pb-1">Prepare and install solutions by determining and designing system specifications, standards and programming</li>
<li class="pb-1">Improve operations by conducting systems analysis; recommending changes in policies and procedures</li>
<li class="pb-1">Protect operations by keeping information confidential</li>
<li class="pb-1">Provide information by collecting, analyzing and summarizing development and service issues</li>
<li class="pb-1">Support and develop software engineers by providing advice, coaching and educational opportunities</li>
<li class="pb-1">Mentor junior and mid-level engineers</li>
<li class="pb-1">Collaborate with team to brainstorm and create new products</li>
<li class="pb-1">Make informed decisions quickly and taking ownership of services and applications at scale</li>
<li class="pb-1">Work collaboratively with others to achieve goals</li>
<li class="pb-1">Be a persistent, creative problem solver</li>
<li class="pb-1">Remain cool and effective in a crisis</li>
<li class="pb-1">Stay on the leading edge of development practices</li>
<li class="pb-1">Passionate about great technologies, especially open source</li>
<li class="pb-1">Understand business needs and know how to create the tools to manage them</li>
<li class="pb-1">Comply with company instructions to use the required daily timesheet recording application</li>
</ul>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-12 mb-4">
<section>
<h5>Dragonfly Fintech</h5>
<p class="mb-0 text-dark">Software developer</p>
<p class="mb-4 text-dark">Jun 2018 – Sep 2018 (4 months)</p>
<section class="row">
<section class="col-sm-12 mx-auto text-justify">
<ul>
<li class="pb-1">Write and maintain features of mobile wallet with Angular and Ionic Framework</li>
<li class="pb-1">Converting flowchart into code in the mobile wallet</li>
<li class="pb-1">Write and maintain code for OTP server</li>
<li class="pb-1">Stay on the leading edge of development practices</li>
<li class="pb-1">Passionate about great technologies, especially open source</li>
<li class="pb-1">Understand business needs and know how to create the tools to manage them</li>
<li class="pb-1">Comply with company instructions to use the required daily timesheet recording application</li>
</ul>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
</section>
<!-- end container -->
</section>
<!-- Experience end -->
<!-- Skills start -->
<section class="section" id="skills">
<section class="container">
<section class="row justify-content-center">
<section class="col-lg-8">
<section class="text-center mb-5">
<h4 class="mb-3">Skills</h4>
<p>Skills, level of proficiency and application</p>
</section>
</section>
</section>
<section class="row">
<!-- git -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-git-plain text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">Git</h5>
<ul class="text-left">
<li>Track and review changes</li>
<li>Push and pull in the repo</li>
</ul>
</section>
</section>
<!-- ebd git -->
<!-- html -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-html5-plain text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">HTML</h5>
<ul class="text-left">
<li>Document creation</li>
<li>Usage of semantic tags for clarity</li>
</ul>
</section>
</section>
<!-- end html -->
<!-- css -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-html5-plain text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">CSS</h5>
<ul class="text-left">
<li>Multiple device compatibility</li>
<li>Manage styles of a page</li>
</ul>
</section>
</section>
<!-- end css -->
<!-- sass -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-sass-original text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">Sass</h5>
<ul class="text-left">
<li>Variables for theme customization</li>
<li>Functions for utility</li>
</ul>
</section>
</section>
<!-- end sass -->
<!-- javascript -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-javascript-plain text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">Javacript</h5>
<ul class="text-left">
<li>Make a page interactive</li>
<li>Usage of AJAX for http requests</li>
</ul>
</section>
</section>
<!-- end javascript -->
<!-- angular -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<ion-icon name="logo-angular" class="text-primary font-24"></ion-icon>
</span>
</section>
<h5 class="font-18">Angular</h5>
<ul class="text-left">
<li>MVC for better maintenance</li>
<li>Used in web development</li>
</ul>
</section>
</section>
<!-- end angular -->
<!-- ionic -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<ion-icon name="logo-ionic" class="text-primary font-24"></ion-icon>
</span>
</section>
<h5 class="font-18">Ionic</h5>
<ul class="text-left">
<li>Mobile development for iOS and Android</li>
<li>Usage of cordova to access device APIs</li>
</ul>
</section>
</section>
<!-- end ionic -->
<!-- nodejs -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-nodejs-plain text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">Node JS</h5>
<ul class="text-left">
<li>Used for creating microservices</li>
<li>Used for creating authentication and APIs</li>
</ul>
<section class="text-left ml-4">
<h6 class="font-16">Frameworks</h6>
<ul>
<li>Strapi</li>
<li>Nest js</li>
<li>Sails.js</li>
</ul>
</section>
</section>
</section>
<!-- end nodejs -->
<!-- docker -->
<section class="col-xl-4 col-sm-6">
<section class="text-center p-4 mt-3">
<section class="avatar-md mx-auto mb-4">
<span class="avatar-title rounded-circle bg-soft-primary">
<i class="devicon-docker-plain text-primary font-24"></i>
</span>
</section>
<h5 class="font-18">Docker</h5>
<ul class="text-left">
<li>Used for deployment of nodejs apps with containers</li>
<li>Used for management of containers</li>
</ul>
</section>
</section>
<!-- end docker -->
</section>
<!-- end container -->
</section>
</section>
<!-- Services end -->
<!-- Projects start -->
<section class="section bg-light" id="projects">
<section class="container">
<!-- Projects title -->
<section class="row justify-content-center">
<section class="col-lg-8">
<section class="text-center mb-5">
<h4 class="mb-3">Projects</h4>
</section>
</section>
</section>
<!-- end Projects title -->
<!-- PayLuy wallet -->
<div class="row my-5 flex-lg-row flex-sm-column-reverse flex-column-reverse">
<div class="col-lg-6 col-sm-12">
<div>
<h5>PayLuy Wallet</h5>
<p class="mb-0">Sept 2018 – Jun 2020</p>
<p class="mb-2">Payluy is the next generation mobile wallet system, built using blockchain technology. Send money to anyone in Cambodia, pay anywhere & to anyone, pay your bills on-time, top up your mobile number, and shop online, just using your phone. Now, you can perform any payments, anywhere, anytime, and it is safe & convenient.
</p>
<h6>Features</h6>
<ul class="mb-2">
<li>Send money to other Payluy user with zero fee charge, anywhere in Cambodia.</li>
<li>Send money from Payluy user to non-Payluy user</li>
<li>Receive money from other Payluy user</li>
<li>Top-up phone easily with any amount using Payluy. Never run out of credits anymore.</li>
<li>Make bill payments directly using phone via Payluy, with just a click of button.</li>
<li>Pay easily using QR Code Payment with Payluy’s partner merchants using the app. No physical cash or cards required.</li>
<li>Buy credits/diamonds for games like PUBG, Mobile Legends, Rules of Survival and many more using Payluy. You don’t even need a credit card anymore!</li>
</ul>
<h6 class="mt-2">Individual Contributions</h6>
<ul class="mb-2">
<li>Worked as a mid-level dev in a team of 15 that consists of a tech lead, junior devs, and QA testers.</li>
<li>Implemented Register and Login UI into functional Ionic app.</li>
<li>Implemented transaction history with offline support.</li>
<li>Implemented transfer transaction.</li>
<li>Deployed in Google Play Store with 100k+ downloads.</li>
</ul>
<h6>Technologies Used</h6>
<ul>
<li>Git</li>
<li>Angular 9</li>
<li>CSS</li>
<li>Sass</li>
<li>Typescript</li>
<li>Firebase</li>
<li>NestJS</li>
<li>Docker</li>
<li>Blockchain</li>
</ul>
<p>
<a class="text-primary" href="https://play.google.com/store/apps/details?id=app.payluy.wallet" target="_blank" rel="noreferrer">
See Project
<ion-icon name="open-outline" class="icon-dual-primary"></ion-icon>
</a>
</p>
</div>
</div>
<div class="col-lg-4 ml-lg-auto col-sm-8 offset-sm-2">
<div class="card border border-light shadow-sm mt-lg-0">
<div class="card-header border-0 bg-transparent">
<div>
<ion-icon name="ellipse" class="text-danger mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-warning mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-success mr-1""></ion-icon>
</div>
</div>
<div class="card-body bg-light text-center">
<img class="lazyload rounded img-fluid mx-auto d-block" alt="PayLuy Wallet" data-src="https://play-lh.googleusercontent.com/bbqc0cglWN9XAa7SsCWHWl04cE2tyPNd21vJRPeNXO2KQdRVOg-tZFcp3Ozxqdo-P1s">
</div>
</div>
</div>
</div>
<!-- end: PayLuy wallet -->
<!-- Proximax wallet -->
<div class="row my-5 flex-lg-row flex-sm-column-reverse flex-column-reverse">
<div class="col-lg-6 col-sm-12">
<div>
<h5>ProximaX Wallet V1</h5>
<p class="mb-0">Oct 2018 – Jan 2020</p>
<p class="mb-2">The ProximaX Wallet app enables to manage multiple ProximaX accounts on your phone. Send and receive XPX and messages. Using QR codes, it is even faster and easier than with a desktop client.</p>
<h6>Features</h6>
<ul class="mb-2">
<li>All private keys and other important data stored locally and encrypted.</li>
<li>Generate, import and export ProximaX accounts</li>
<li>Multisignature contract edits and account management</li>
<li>Managing multiple accounts and local address books</li>
<li>Displaying account information</li>
<li>Displaying recent transactions on an interactive messaging interface</li>
<li>Encrypted and plain text messaging</li>
<li>Signing multisignature transactions</li>
<li>No blockchain download. The ProximaX app is a lite client using NEM’s APIs.</li>
<li>Reading and making NEM addresses with QR codes</li>
<li>Shows XEM Harvesting status and details.</li>
<li>No in-app purchases, advertisements, or sharing of data. Your privacy is fully respected.</li>
</ul>
<h6 class="mt-2">Individual Contributions</h6>
<ul class="mb-2">
<li>Worked as a mid-level dev in a team of 10 that consists of a tech lead, junior devs, and QA testers.</li>
<li>Implemented the verification of a one-time password with phone number and email in 1 month.</li>
<li>Implemented the sending crypto assets in 2 weeks.</li>
<li>Deployment in Google Play and Apple Store in 3 weeks.</li>
</ul>
<h6>Technologies Used</h6>
<ul>
<li>Git</li>
<li>Angular 9</li>
<li>CSS</li>
<li>Sass</li>
<li>Typescript</li>
<li>Sails.js</li>
<li>Nodejs v10</li>
<li>Firebase</li>
<li>Blockchain</li>
</ul>
<p>
<a class="text-primary" href="https://play.google.com/store/apps/details?id=io.proxima.wallet" target="_blank" rel="noreferrer">
See Project
<ion-icon name="open-outline" class="icon-dual-primary"></ion-icon>
</a>
</p>
</div>
</div>
<div class="col-lg-4 ml-lg-auto col-sm-8 offset-sm-2">
<div class="card border border-light shadow-sm mt-lg-0">
<div class="card-header border-0 bg-transparent">
<div>
<ion-icon name="ellipse" class="text-danger mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-warning mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-success mr-1""></ion-icon>
</div>
</div>
<div class="card-body bg-light text-center">
<img class="lazyload rounded img-fluid mx-auto d-block" alt="ProximaX Wallet V1" data-src="https://lh3.googleusercontent.com/A5WqLhRkwrk1id0i_3YgtvTRKxKfqh1E3xnG0Gw_G72ThsyohqexKMcdCFNrsDSHpUl2">
</div>
</div>
</div>
</div>
<!-- end: Proximax wallet -->
<!-- Proximax Forensics -->
<div class="row my-5 flex-lg-row flex-sm-column-reverse flex-column-reverse">
<div class="col-lg-6 col-sm-12">
<div>
<h5>ProximaX Forensics</h5>
<p class="mb-0">Sept 2018 – Dec 2018</p>
<p class="mb-2">ProximaX Forensics is designed to bring about greater efficiencies and data security, thus enabling investigators and scientists to access digital evidence easily, quickly and also store digital evidence securely.</p>
<h6 class="mt-2">Individual Contributions</h6>
<ul class="mb-2">
<li>Worked as a mid-level dev in a team of 8 that consists of a tech lead, junior devs, and QA testers.</li>
<li>Implemented UI from scratch into functional Ionic app.</li>
<li>Implemented saving of data in MongoDB.</li>
<li>Deployed in Google Play Store with 100k+ downloads.</li>
</ul>
<h6>Technologies Used</h6>
<ul>
<li>Git</li>
<li>Angular 9</li>
<li>CSS</li>
<li>Sass</li>
<li>Typescript</li>
<li>MongoDB</li>
</ul>
<p>
<a class="text-primary" href="https://www.proximax.ltd/en/products#Applications" target="_blank" rel="noreferrer">
See Project
<ion-icon name="open-outline" class="icon-dual-primary"></ion-icon>
</a>
</p>
</div>
</div>
<div class="col-lg-4 ml-lg-auto col-sm-8 offset-sm-2">
<div class="card border border-light shadow-sm mt-lg-0">
<div class="card-header border-0 bg-transparent">
<div>
<ion-icon name="ellipse" class="text-danger mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-warning mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-success mr-1""></ion-icon>
</div>
</div>
<div class="card-body bg-light text-center">
<img class="lazyload rounded img-fluid mx-auto d-block" alt="ProximaX Forensics" data-src="https://www.proximax.ltd/en/images/apps-proximax-forensics.png">
</div>
</div>
</div>
</div>
<!-- end: Proximax Forensics -->
<!-- MECO PH -->
<div class="row my-5 flex-lg-row flex-sm-column-reverse flex-column-reverse">
<div class="col-lg-6 col-sm-12">
<div>
<h5>Meco PH</h5>
<p class="mb-0">Sept 2018 – Oct 2018</p>
<p class="mb-2">
MECO Ph is the official mobile application of the Manila Economic and Cultural Office, the Philippine Representative Office in Taiwan. Subscribe to receive news updates and official announcements, book appointments for passport transactions, apply for travel authority and check passport release schedule.
</p>
<h6 class="mt-2">Individual Contributions</h6>
<ul class="mb-2">
<li>Worked in a team of 4 that consists of a product owner, 2 devs, and 1 QA tester.</li>
<li>Implemented mockup from scratch into a functional Ionic app.</li>
<li>Preparation of assets for Google Play Store deployment.</li>
<li>Deployed in Google Play Store with 100k+ downloads.</li>
</ul>
<h6>Technologies Used</h6>
<ul>
<li>Git</li>
<li>Angular 5</li>
<li>CSS</li>
<li>Sass</li>
<li>Typescript</li>
</ul>
<p>
<a class="text-primary" href="https://play.google.com/store/apps/details?id=com.tw_meco" target="_blank" rel="noreferrer">
See Project
<ion-icon name="open-outline" class="icon-dual-primary"></ion-icon>
</a>
</p>
</div>
</div>
<div class="col-lg-4 ml-lg-auto col-sm-8 offset-sm-2">
<div class="card border border-light shadow-sm mt-lg-0">
<div class="card-header border-0 bg-transparent">
<div>
<ion-icon name="ellipse" class="text-danger mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-warning mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-success mr-1""></ion-icon>
</div>
</div>
<div class="card-body bg-light text-center">
<img class="lazyload rounded img-fluid mx-auto d-block" alt="ProximaX Wallet V1" data-src="https://lh3.googleusercontent.com/gonPpSICh9rUgCQexlPlaqpJ_kvvo3pwyW_RyqnBIwVwV62adZflnIUg-zTVWamqBAc">
</div>
</div>
</div>
</div>
<!-- end: MECO PH -->
<!-- EON Travel -->
<section class="row">
<section class="col-lg-6 col-sm-12">
<section>
<h5>EON Travel App</h5>
<p class="mb-0">Feb 2018 – Mar 2018</p>
<p class="mb-0">EON Travel App is a marketplace where you can get travel packages & holiday deals by your one and only trusted travel agency – AEON Travel & Tours across the world. You may enquire about a trip package or search for the perfect travel vacation deals at the best prices. Detailed itineraries will help you find out best places to visit.</p>
<h6 class="mt-2">Individual Contributions</h6>
<ul class="mb-2">
<li>Worked in a team of 4 that consists of a product owner, 2 devs, and 1 QA tester.</li>
<li>Implemented mockup from scratch into functional Ionic app.</li>
<li>Implemented dashboard from scratch to handle payment and bookings.</li>
<li>Prepared assets for deployment in Google Play Store.</li>
</ul>
<h6>Technologies Used</h6>
<ul>
<li>Git</li>
<li>Angular 5</li>
<li>CSS</li>
<li>Sass</li>
<li>Typescript</li>
<li>Firebase</li>
</ul>
</section>
</section>
<div class="col-lg-4 ml-lg-auto col-sm-8 offset-sm-2">
<div class="card border border-light shadow-sm mt-lg-0">
<div class="card-header border-0 bg-transparent">
<div>
<ion-icon name="ellipse" class="text-danger mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-warning mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-success mr-1""></ion-icon>
</div>
</div>
<div class="card-body bg-light text-center">
<img class="lazyload rounded img-fluid mx-auto d-block" alt="EON Travel App" data-src="https://res.cloudinary.com/chpecson/image/upload/q_70/v1645408884/chpecson.dev/eon.jpg">
</div>
</div>
</div>
</section>
<!-- end EON Travel -->
<!-- Heineken -->
<div class="row my-5 flex-lg-row flex-sm-column-reverse flex-column-reverse">
<div class="col-lg-6 col-sm-12">
<div>
<h5>The Heineken Draught Challenge</h5>
<p class="mb-0">Aug 2017 – Nov 2017</p>
<p class="mb-0">The Heineken Star Serve Draught Challenge is a gamified training tool to help bartenders serve Heineken draught according to the 5 Heineken Star Serve Steps. The app contains training movies and a competition/judging tool and is a fun and interactive competition where bartenders battle head to head to find the best bartender in town. Ask your Heineken representative when this tool comes available for your bar.</p>
<h6 class="mt-2">Individual Contributions</h6>
<ul class="mb-2">
<li>Worked in a team of 4 that consists of a product owner, 2 devs, and 1 QA tester.</li>
<li>Implemented mockup from scratch into a functional Ionic app in 2 weeks.</li>
<li>Preparation of assets for Google Play Store deployment in 2 days.</li>
<li>Deployed in Google Play Store with 1000+ downloads.</li>
</ul>
<h6>Technologies Used</h6>
<ul>
<li>Git</li>
<li>Angular 5</li>
<li>CSS</li>
<li>Sass</li>
<li>Typescript</li>
<li>Firebase</li>
</ul>
<p>
<a class="text-primary" href="https://play.google.com/store/apps/details?id=com.p4d.app" target="_blank" rel="noreferrer">
See Project
<ion-icon name="open-outline" class="icon-dual-primary"></ion-icon>
</a>
</p>
</div>
</div>
<div class="col-lg-4 col-sm-8 offset-sm-2">
<div class="card border border-light shadow-sm mt-lg-0">
<div class="card-header border-0 bg-transparent">
<div>
<ion-icon name="ellipse" class="text-danger mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-warning mr-1""></ion-icon>
<ion-icon name="ellipse" class="text-success mr-1""></ion-icon>
</div>
</div>
<div class="card-body bg-light text-center">
<img class="lazyload rounded img-fluid mx-auto d-block" alt="The Heineken Draught Challenge" data-src="https://lh3.googleusercontent.com/nbjZlO_jCgVI3wjut_Aizl1kbWovzw_aPd-rp15gfACYkGB9pCBs5J1Y66-5by2lpZMW">
</div>
</div>
</div>
</div>
<!-- end Heineken -->
</section>
<!-- end container -->
</section>
<!-- Projects end -->
<!-- Certificates start -->
<section class="section" id="certificates">
<section class="container">
<!-- row -->
<section class="row justify-content-center">
<section class="col-lg-8">
<section class="text-center mb-5">
<h4 class="mb-3">Certificates</h4>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-6 col-12 mb-4">
<section>
<h5>Certificate of Completion: Angular Bootcamp</h5>
<p class="mb-0">Issued February 2021</p>
<p>
<a class="text-primary" href="http://bit.ly/chris-abc-cert" target="_blank" rel="noreferrer">
See Credential
<ion-icon name="open-outline" class="icon-dual-primary font-20"></ion-icon>
</a>
</p>
</section>
</section>
<section class="col-lg-6 col-12 mb-4">
<section>
<h5>JavaScript Algorithms and Data Structures Developer Certification - freeCodeCamp</h5>
<p class="mb-0">Issued July 2018</p>
<p>
<a class="text-primary" href="https://www.freecodecamp.org/certification/chpecson/javascript-algorithms-and-data-structures" target="_blank" rel="noreferrer">
See Credential
<ion-icon name="open-outline" class="icon-dual-primary font-20"></ion-icon>
</a>
</p>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-6 col-12 mb-4">
<section>
<h5>Certificate of Completion: HTML Fundamentals - SoloLearn</h5>
<p class="mb-0">Issued March 2016</p>
<p class="mb-0">Credential ID 1014-911252</p>
<p>
<a class="text-primary" href="https://www.sololearn.com/Certificate/1014-911252/jpg" target="_blank" rel="noreferrer">
See Credential
<ion-icon name="open-outline" class="icon-dual-primary font-20"></ion-icon>
</a>
</p>
</section>
</section>
<section class="col-lg-6 col-12 mb-4">
<section>
<h5>Certificate of Completion: CSS Fundamentals - SoloLearn</h5>
<p class="mb-0">Issued March 2016</p>
<p class="mb-0">Credential ID 1023-911252</p>
<p>
<a class="text-primary" href="https://www.sololearn.com/Certificate/1023-911252/jpg" target="_blank" rel="noreferrer">
See Credential
<ion-icon name="open-outline" class="icon-dual-primary font-20"></ion-icon>
</a>
</p>
</section>
</section>
</section>
<!-- end row -->
<!-- row -->
<section class="row">
<section class="col-lg-6 col-12 mb-4">
<section>
<h5>Certificate of Completion: JavaScript Fundamentals - SoloLearn</h5>
<p class="mb-0">Issued March 2016</p>
<p class="mb-0">Credential ID 1024-911252</p>
<p>
<a class="text-primary" href="https://www.sololearn.com/Certificate/1024-911252/jpg" target="_blank" rel="noreferrer">
See Credential
<ion-icon name="open-outline" class="icon-dual-primary font-20"></ion-icon>
</a>
</p>
</section>
</section>
</section>
<!-- end row -->
</section>
<!-- end container -->
</section>
<!-- Certificates end -->
<!-- Footer start -->
<footer class="footer">
<section class="container">
<section class="row">
<section class="col-12">
<section>
<h5 class="mb-4 footer-list-title">Contact</h5>
<section>
<section class="media">
<i data-feather="github" class="icon-dual-light mt-1 mr-2"></i>
<section class="media-body">
<p>
<a href="https://github.com/chpecson" target="_blank" rel="noreferrer" class="text-light">Github</a>
</p>
</section>
</section>
<section class="media">
<i data-feather="linkedin" class="icon-dual-light mt-1 mr-2"></i>
<section class="media-body">
<p>
<a href="https://www.linkedin.com/in/chpecson" target="_blank" rel="noreferrer" class="text-light">LinkedIn</a>
</p>
</section>
</section>
</section>
</section>
</section>
</section>
<!-- end row -->
</section>
<!-- end container -->
</footer>
<!-- Footer end -->
<!-- Javascript -->
<!-- Global site tag - Umami Analytics -->
<script defer src="https://analytics.eu.umami.is/script.js" data-website-id="3f3c3344-b207-448e-b554-5d256d7179db"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lazysizes.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jquery.easing.min.js"></script>
<script src="js/scrollspy.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/typed.min.js"></script>
<!-- app js -->
<script src="js/app.js"></script>
</body>
</html>