-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresume.json
1609 lines (1609 loc) · 57.6 KB
/
resume.json
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
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"meta": {
"lang": "en"
},
"basics": {
"name": "João Cercal",
"label": "Senior Software Engineer",
"picture": "https://avatars.githubusercontent.com/u/366345",
"email": "[email protected]",
"phone": "+351 910 958 555",
"website": "https://jpcercal.com/en/",
"summary": "I am passionate about creating innovative, scalable solutions that empower people to do what they love. I've become a PHP specialist with expertise in Golang and other languages, working with talented individuals worldwide. Since 2009, I've been a dedicated web developer and a certified Senior Software Engineer.",
"location": {
"address": "Coimbra, Portugal"
},
"profiles": [
{
"network": "linkedin",
"username": "jpcercal",
"url": "https://linkedin.com/in/jpcercal"
},
{
"network": "github",
"username": "jpcercal",
"url": "https://github.com/jpcercal"
}
]
},
"work": [
{
"company": "Emma",
"position": "Senior Software Engineer",
"website": "",
"startDate": "2024-03",
"summary": "",
"highlights": [
"Architected, designed, improved, and implemented Emma’s technology components, boosting e-commerce performance by developing features in Golang and Java. This led to fast order processing with an event-driven architecture, enhancing the end-to-end purchase process, fewer bugs from better test coverage using testing containers, and streamlined service dependencies, reducing team conflicts",
"Mentored junior developers, conducted code reviews, and fostered continuous learning, resulting in improved code quality, team cohesion, and development efficiency"
]
},
{
"company": "Turbine Kreuzberg",
"position": "Senior PHP Developer",
"website": "",
"startDate": "2022-07",
"endDate": "2024-02",
"summary": "",
"highlights": [
"Making the most of PHP and the Spryker framework/ecosystem to design, develop, and maintain robust e-commerce solutions, ensuring efficient operation of digital platforms",
"Optimizing e-commerce performance through meticulous coding skills and a comprehensive understanding of the Spryker framework, which directly leads to enhanced user experiences, faster page load times, and increased conversion rates for our clients",
"Collaboratively solving complex challenges within our agile development environment, actively collaborating with cross-functional teams to tackle intricate challenges, utilizing problem-solving skills and technical expertise to create innovative solutions that drive the success of our large-scale e-commerce projects"
]
},
{
"company": "Spectrm",
"position": "Senior Software Engineer",
"website": "",
"startDate": "2020-08",
"endDate": "2022-06",
"summary": "",
"highlights": [
"Making a significant impact on the market by helping top-tier companies engage consumers effectively through innovative chatbots on major messaging platforms. This resulted in substantial sales growth and strengthened brand loyalty",
"By designing, developing, and launching scalable solutions to tackle intricate business challenges, with a lasting focus on scalability, I significantly improved operational efficiency, expanded the company's market presence, and ensured long-term adaptability, driving the business to new heights",
"Led backend chapter meetings, mentored junior developers, and played a crucial role in defining migration strategies for essential platform changes",
"Introduced architectural decision records (ADRs), conducted post-mortems, and facilitated lightning talks to promote a culture of continuous improvement within the engineering team"
]
},
{
"company": "GetYourGuide",
"position": "Senior PHP Developer",
"website": "",
"startDate": "2018-12",
"endDate": "2020-07",
"summary": "",
"highlights": [
"Impacting and changing the way how millions of travelers connect to the places they visit, using weekends, building relationships, visiting relatives, and discovering the world",
"Aligning the product with technical decisions while having the customer at first, but also considering data over guessing have guided me to influence in a killer feature to contact us through WhatsApp in which our travelers can get support from their smartphones. It increased the second customer purchase metric considerably and helped us to retain customers",
"Test-driven oriented, impacting the way that engineers see unit test bringing then, the quality of the product to the next level"
]
}
],
"education": [
{
"institution": "UNISOCIESC",
"area": "Information Systems",
"studyType": "BSc",
"startDate": "2011-01",
"endDate": "2014-12",
"gpa": "",
"courses": []
},
{
"institution": "UNISOCIESC",
"area": "Information Systems",
"studyType": "Technical Course",
"startDate": "2009-01",
"endDate": "2010-12",
"gpa": "",
"courses": []
},
{
"institution": "TOTVS",
"area": "Computer Programming",
"studyType": "Training Course",
"startDate": "2009-08",
"endDate": "2010-07",
"courses": [
"268 hours of Basic concepts of Progress database, UML, XML, Java, Flex, Subversion, Jira, Confluence, and best practices in computer programming",
"8 hours of Business Writing",
"250 hours of How to program in C and Java (structural paradigm only)"
]
}
],
"volunteer": [
{
"organization": "SOCIESC - Sociedade Educacional de Santa Catarina",
"position": "Web Developer",
"startDate": "2009-05",
"endDate": "2009-05",
"summary": "Development of a web application to the campus, managing classroom reservation and resources using PHP 5.2, MySQL, HTML, CSS, and Javascript."
},
{
"organization": "SOCIESC - Sociedade Educacional de Santa Catarina",
"position": "Speaker - PHP the right way",
"startDate": "2013-10",
"endDate": "2013-10",
"summary": "Speaker at 'Semana Acadêmica,' speaking about PHP programming language to the local community."
},
{
"organization": "SOCIESC - Sociedade Educacional de Santa Catarina",
"position": "Teacher Assistant",
"startDate": "2013-10",
"endDate": "2013-10",
"summary": "Assisted in giving classes to the local community on using tools like Microsoft Office Word, Powerpoint, and Excel."
},
{
"organization": "SOCIESC - Sociedade Educacional de Santa Catarina",
"position": "Projeto Programar",
"startDate": "2013-11",
"endDate": "2013-11",
"summary": "Teaching students how to program in C++ covering topics like primitive data types, control structures, and loop statements."
},
{
"organization": "Agência A2C",
"position": "Speaker - The basic principles of Symfony2",
"startDate": "2014-07",
"endDate": "2014-07",
"summary": "Speaker in the internal event promoting web and console app development in PHP with Symfony version 2.4."
},
{
"organization": "SOCIESC - Sociedade Educacional de Santa Catarina",
"position": "Member of the Examining Evaluation Board",
"startDate": "2014-11",
"endDate": "2014-11",
"summary": "Member of the Examining Evaluation Board responsible for evaluating student projects."
}
],
"languages": [
{
"language": "English",
"fluency": "Professional working proficiency"
},
{
"language": "Portuguese",
"fluency": "Native"
},
{
"language": "Spanish",
"fluency": "Elementary proficiency"
},
{
"language": "German",
"fluency": "Elementary proficiency"
}
],
"skills": [
{
"name": "PHP",
"level": "100",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "GO",
"level": "100",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Rust",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "Java",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "Scala",
"level": "40",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "C",
"level": "40",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "C#",
"level": "45",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Ruby",
"level": "45",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Python",
"level": "85",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "Bash Script",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "Node.js",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "Typescript",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "JS",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": true
}
},
{
"name": "HTML",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "CSS (SASS, LESS)",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "MySQL",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "PostgreSQL",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "SQLite",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "SQL Server",
"level": "60",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "MongoDB",
"level": "50",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Redis",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Memcached",
"level": "85",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Elastic Search",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "RabbitMQ",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Kafka",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Symfony",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Zend",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Laravel",
"level": "85",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Wordpress",
"level": "85",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Spryker",
"level": "85",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Magento",
"level": "60",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Kohana",
"level": "40",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "CakePHP",
"level": "60",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Silex",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Slim",
"level": "80",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Yii",
"level": "55",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "jQuery",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Angular JS",
"level": "80",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Vue.js",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Spring Boot",
"level": "40",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Tests",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Linux/Unix",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Git",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Docker",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Vagrant",
"level": "80",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Kubernetes",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Terraform",
"level": "50",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "CI/CD",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Prometheus",
"level": "75",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Grafana",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Kibana",
"level": "70",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Blackfire",
"level": "80",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Bugsnag",
"level": "80",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Sentry",
"level": "85",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "AWS",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Serverless",
"level": "80",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "XML",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "JSON",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "YAML",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "TOML",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "ADR",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "SOLID",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "KISS",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "DRY",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Design Patterns",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Pair-Programming",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Distributed teams",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Remote first",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Agile",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": true,
"highlighted": false
}
},
{
"name": "Scrum",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Kanban",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "Post-mortem",
"level": "90",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
},
{
"name": "REST",
"level": "95",
"keywords": [],
"meta": {
"icon": "",
"display": false,
"highlighted": false
}
}
],
"awards": [
{
"title": "Honor Student - The best graduating student",
"issued_by": "UNISOCIESC",
"date": "2015-03",
"associated_with": "UNISOCIESC - Universidade Sociedade Educacional de Santa Catarina",
"description": "\"To accomplish great things, we must not only act but also dream; not only plan but also believe.\" - Anatole France.\n\nWe congratulate you, considered the best graduating student UNISOCIESC."
}
],
"projects": [
{
"startDate": "2015-09",
"type": "software",
"name": "Onboarding",
"endDate": "2015-09",
"description": "archived",
"members": [
{
"name": "João Paulo Cercal",
"profile": "https://br.linkedin.com/in/jpcercal"
},
{
"name": "Lucas Alfredo Cercal",
"profile": "https://www.linkedin.com/in/lucascercal"
},
{
"name": "Diogo Andrei Schroeder",
"profile": "https://www.linkedin.com/in/diogoandrei"
},
{
"name": "Larissa Mühlbauer",
"profile": "https://www.linkedin.com/in/larissa-m%C3%BChlbauer-a96b8278"
},
{
"name": "George Luiz Bittencourt",
"profile": "https://www.linkedin.com/in/georgeluizbittencourt"
},
{
"name": "Claudia Silva",
"profile": "https://www.linkedin.com/in/claudia-silva-96924a12"
}
]
},
{
"startDate": "2015-09",
"type": "software",
"name": "Tuper RH",
"endDate": "2015-09",
"description": "A single page application to the TuperRH company manage resumes and jobs. The project was developed in PHP using the Laravel 5.1 framework and AngularJS.",
"members": [
{
"name": "João Paulo Cercal",
"profile": "https://br.linkedin.com/in/jpcercal"
},
{
"name": "Ricardo Lüders",
"profile": "https://www.linkedin.com/in/ricardoluders"
},
{
"name": "Rafael César Neves",
"profile": "https://www.linkedin.com/in/rafaelcneves"
},
{
"name": "Ana Carolina da Luz",
"profile": "https://www.linkedin.com/in/anacarolinaluz"
},
{
"name": "Adoni Eder",
"profile": "https://www.linkedin.com/in/adoni-eder-07627942"
},
{
"name": "Celso Ricardo Salazar Valentim",
"profile": "https://www.linkedin.com/in/celsoricardo"
}
]
},
{
"startDate": "2015-06",
"type": "software",
"name": "Quanta Gamification",
"endDate": "2015-06",
"description": "An internal project that aims to develop a solution to a local business, the differential of this software was the implementation of the gamification engine.",
"members": [
{
"name": "João Paulo Cercal",
"profile": "https://br.linkedin.com/in/jpcercal"
},
{
"name": "Ricardo Lüders",
"profile": "https://www.linkedin.com/in/ricardoluders"
},
{