-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheuropass_cv.xml
More file actions
1103 lines (1103 loc) · 61.2 KB
/
europass_cv.xml
File metadata and controls
1103 lines (1103 loc) · 61.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Candidate xsi:schemaLocation="http://www.europass.eu/1.0 Candidate.xsd"
xmlns="http://www.europass.eu/1.0"
xmlns:oa="http://www.openapplications.org/oagis/9"
xmlns:eures="http://www.europass_eures.eu/1.0"
xmlns:hr="http://www.hr-xml.org/3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<hr:DocumentID schemeID="Test-0001" schemeName="DocumentIdentifier" schemeAgencyName="EUROPASS" schemeVersionID="4.0"/>
<CandidateSupplier>
<hr:PartyID schemeID="Test-0001" schemeName="PartyID" schemeAgencyName="EUROPASS" schemeVersionID="1.0"/>
<hr:PartyName>Owner</hr:PartyName>
<PersonContact>
<PersonName>
<oa:GivenName>Francesco</oa:GivenName>
<hr:FamilyName>Belacca</hr:FamilyName>
</PersonName>
<Communication>
<ChannelCode>Email</ChannelCode>
<oa:URI>francesco.belacca@hotmail.it</oa:URI>
</Communication>
</PersonContact>
<hr:PrecedenceCode>1</hr:PrecedenceCode>
</CandidateSupplier>
<CandidatePerson>
<PersonName>
<oa:GivenName>Francesco</oa:GivenName>
<hr:FamilyName>Belacca</hr:FamilyName>
</PersonName>
<Communication>
<ChannelCode>Email</ChannelCode>
<oa:URI>francesco.belacca@hotmail.it</oa:URI>
</Communication>
<Communication>
<ChannelCode>Web</ChannelCode>
<oa:URI>https://www.linkedin.com/in/francesco-belacca-dev/</oa:URI>
</Communication>
<Communication>
<ChannelCode>Web</ChannelCode>
<oa:URI>https://github.com/MACEL94</oa:URI>
</Communication>
<Communication>
<UseCode>home</UseCode>
<Address type="home">
<oa:AddressLine>Viale la Grola 29</oa:AddressLine>
<oa:CityName>Parma</oa:CityName>
<CountryCode>it</CountryCode>
<oa:PostalCode>43126</oa:PostalCode>
</Address>
</Communication>
<NationalityCode>it</NationalityCode>
<hr:BirthDate>1994-10-09</hr:BirthDate>
<GenderCode>male</GenderCode>
<PrimaryLanguageCode name="NORMAL">ita</PrimaryLanguageCode>
</CandidatePerson>
<CandidateProfile languageCode="en">
<hr:ID schemeID="Test-0001" schemeName="CandidateProfileID" schemeAgencyName="EUROPASS" schemeVersionID="1.0">5f327b3f7a5af5347b0c995f</hr:ID>
<EmploymentHistory>
<EmployerHistory>
<hr:OrganizationName>Würth IT Italy</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Parma</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Site Reliability Engineer</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2024-09-01</hr:FormattedDateTime>
</eures:StartDate>
<hr:CurrentIndicator>true</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>I’ve been the force-multiplier behind Würth-Phoenix’s Microsoft stack. Built and maintained complex, dynamic CI/CD in Azure DevOps and GitHub Enterprise for CRM/ERP and Business Central workloads. Wrote production PowerShell automation and .NET backend APIs or background services to remove manual toil and harden processes. Rolling out Bicep for repeatable, reviewable IaC across environments. Lead admin/governance for tenants and repos (Azure, Entra ID, Business Central, Fabric, GitHub Enterprise), enforcing DevSecOps guardrails, RBAC, and compliance by default. Partner with developers to shift-left security, codify best practices, and unlock delivery at scale. Speaker at Microsoft-centric events and internal Würth forums to share patterns and uplift teams. Focus areas Azure | Azure DevOps | GitHub Enterprise | CI/CD | PowerShell | .NET | Bicep (IaC) | Dynamics 365 / Business Central / Power Platform | Microsoft Fabric | Entra ID | DevSecOps | Governance | Automation</p></oa:Description>
<City>Parma</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>Agic Cloud</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Parma</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Presales Solutions Architect</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2023-07-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2024-07-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>Designed Azure landing zones, application architectures, and migration plans for enterprise clients, focusing on scalability, security, and cost control. Led technical presales: shaped solutions, produced estimations, and supported bids for complex multi-service Azure projects. Drove DevOps adoption using Bicep, GitHub Actions/Azure DevOps YAML, and CI/CD patterns; standardized IaC and deployment practices across teams. Engaged with Dynamics teams as an enabler, defining integration patterns, securing workloads with Key Vault/Managed Identity, and improving delivery workflows. Collaborated with engineering teams to troubleshoot distributed systems, resolve reliability issues, and streamline cloud operations.</p></oa:Description>
<City>Parma</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>Agic Cloud</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Parma</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Backend Team Leader & Cloud Developer</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2022-02-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2023-07-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>Continued within AGIC Cloud following the acquisition of Vetrya Cloud by AGIC Technology Group, contributing to the growth of the cloud division as both a senior technical consultant and backend team lead. Delivered end-to-end cloud-native and full-stack solutions for large enterprise customers, including Enel, in collaboration with Microsoft Consulting Services, covering frontend, backend, databases, and Infrastructure as Code. Designed and managed multiple multi-region Azure projects from the ground up in fully remote environments, applying best practices for security, automation, scalability, and operational excellence. Built proof of concepts and technical demonstrations to showcase Azure capabilities, using modern technologies such as Bicep, Blazor, .NET, Azure DevOps, and GitHub Actions. Developed and deployed a custom three-tier containerized application on Azure Kubernetes Service using GitHub Actions, Bicep, Helm, Chaos Mesh, and Azure Load Testing, with Prometheus and Grafana for monitoring and observability. Performed end-to-end load testing for multiple applications using Azure Load Testing and JMeter. Leveraged Azure AI services, including Azure OpenAI Service, Azure AI Services, Azure AI Video Indexer, and Azure AI Document Intelligence, within customer solutions. Led and mentored the AGIC Cloud backend team, helping drive technical growth and delivery success. Contributed to open-source projects for both AGIC Cloud and personal initiatives on GitHub. Delivered technical training in Italian on Power BI Embedded and Azure Automation, with a focus on resource optimization and efficient cloud operations.</p></oa:Description>
<City>Parma</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>Vetrya</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Parma</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Backend Team Leader & Cloud Developer</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2021-06-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2022-01-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>As a Team Leader I helped my Team succeed and grow. We used Azure PaaS services to build multiple environments using the following technologies: Bot framework PBI Dashboard embedded in Azure Static Web Apps .NET 6 Web APIs Azure MSSQL dbs using EFCore Code First Approach Azure Search Logic Apps yaml pipelines for CI/CD on Azure DevOps Bicep for IAC xUnit + Moq for Unit Tests React & Blazor for FE Used managed identities and RBAC whenever possible to secure and manage secrets.</p></oa:Description>
<City>Parma</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>Credemtel SpA</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Reggio nell'Emilia</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Backend Developer/ Analyst</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2020-04-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2021-05-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>Worked as backend developer for multiple core application using various types of dbs(sql/ElasticSearch) developing microservices of a SAGA in the backend and APIs for the frontend. Used both .net Framework(spanning from 2 to 4.8) and .net Core. Always worked in team, using TFS for planning, CI/CD and repository.</p></oa:Description>
<City>Reggio nell'Emilia</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>Credemtel SpA</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Reggio Emilia</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Backend Developer</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2019-09-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2020-03-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>Worked as backend developer for multiple core application using various types of dbs(sql/ElasticSearch) developing microservices of a SAGA in the backend and APIs for the frontend. Used both .net Framework(spanning from 2 to 4.8) and .net Core. Always worked in team, using TFS for planning, CI/CD and repository. Worked part time and finished my University with my thesis on Blazor.</p></oa:Description>
<City>Reggio Emilia</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>Amaris</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Reggio Emilia</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Consultant - Backend Developer</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2018-09-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2019-08-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>Worked as consultant for Credemtel</p></oa:Description>
<City>Reggio Emilia</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
<EmployerHistory>
<hr:OrganizationName>ericsoft srl</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address>
<oa:CityName>Misano Adriatico</oa:CityName>
<CountryCode>it</CountryCode>
</Address>
</Communication>
</OrganizationContact>
<PositionHistory>
<PositionTitle typeCode="FREETEXT">Junior Backend Developer</PositionTitle>
<eures:EmploymentPeriod>
<eures:StartDate>
<hr:FormattedDateTime>2016-05-01</hr:FormattedDateTime>
</eures:StartDate>
<eures:EndDate>
<hr:FormattedDateTime>2018-08-01</hr:FormattedDateTime>
</eures:EndDate>
<hr:CurrentIndicator>false</hr:CurrentIndicator>
</eures:EmploymentPeriod>
<oa:Description><p>Developed various APIs integrations from Booking to expedia and Agoda for Ericsoft's Channel Manager. Started working with C#, EF, and basic SQL. Tested everything i developed with MSTests & learned to use Visual Studio.</p></oa:Description>
<City>Misano Adriatico</City>
<Country>it</Country>
</PositionHistory>
</EmployerHistory>
</EmploymentHistory>
<EducationHistory>
<EducationOrganizationAttendance>
<hr:OrganizationName>Università degli Studi di Urbino 'Carlo Bo'</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2013-09-01</hr:FormattedDateTime>
</StartDate>
<EndDate>
<hr:FormattedDateTime>2020-06-01</hr:FormattedDateTime>
</EndDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Informatica Applicata(CS)</hr:DegreeName>
<OccupationalSkillsCovered>Bachelor’s Degree in Applied Computer Science (L-31), with a strong focus on software development, algorithms, databases, computer networks, operating systems, and software engineering. The programme combined theoretical foundations with practical application, developing skills in programming, system design, and ICT solutions for real-world business and technology contexts.</OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Liceo Scientifico A.Volta Riccione - Corso Sperimentale Brocca</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<Ongoing>true</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>High School</hr:DegreeName>
<OccupationalSkillsCovered>Focus on advanced mathematics and natural sciences within an extended‑hours experimental curriculum.</OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>http://www.mensa.it/</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2014-02-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>MENSA ITALIA</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.cloud32.it/GES/stampa?Ybrx%253hhjZog2Ynyqt1H58OUdkEJG6Re1y%3Fnbeu%2B26hcatWk%2B%3Fu%3F%2FFn6B%3DQQgJLJ9HBcNVWTqAVmobqbDy%2Bn%2F%25p30Jz6%3D%2FGIWckfomplKYPdUjy330</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Udemy</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2017-09-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Getting Started with Angular 2+</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.udemy.com/certificate/UC-KKN29TB2/</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Udemy</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2018-01-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>The Web Developer Bootcamp (40+ hours)</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.udemy.com/certificate/UC-SQ4MQOK7/</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Speexx</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2020-09-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Speexx English CEFR Level C1.1</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://portal.speexx.com/certificate/MWVhOTEwZTctYzAxMy00NjY0LTk3MjItZmJiNDc5ZGFiMjJl</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Microsoft</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2021-05-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Microsoft Certified Azure Developer Associate</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://learn.microsoft.com/api/credentials/share/en-us/francesco-belacca-dev/B0B6390715280944?sharingId=DBB6C71362CD4CB4</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Udemy</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2021-03-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>AZ-204 Developing for Microsoft Azure Exam Prep</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.udemy.com/certificate/UC-5957c389-228f-4488-aa31-c8cdd755f9af/</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Microsoft</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2021-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Microsoft Certified DevOps Engineer Expert</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://learn.microsoft.com/api/credentials/share/en-us/francesco-belacca-dev/8D2BB8D5E8687F2B?sharingId=DBB6C71362CD4CB4</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2021-12-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Managing Projects with Microsoft Teams</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/dec857b1866d560cc08e3a2456cd7d7f79485f05167dd1b75ceb7bb374590106</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2022-01-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Agile Foundations</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/9c25484c3e47fe357dc8ab6719addfdcbb14030906aa029457037580f1abfd39</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2022-01-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Scrum: The Basics</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/f5cec7d2cb199430912201ca06b48e477d818a6f17502b99c32c78cc3044fa58</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2022-01-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Scrum: Advanced</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/afbaf17a86736bcd0387cb7c65271d51ce71bc34c381502b791da65bbf2fa824</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2022-01-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Agile Project Leadership</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/7b7e3e8dae60f6791caaf538144030fe6cab6cc110e6adf89d35824b4b58e4eb</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2022-05-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Advanced Azure Microservices with .NET for Developers</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/160a722984c87c54489f6881e7e6b5ad299b09a0d4e2df8241467c18c5305b68</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Udemy</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-04-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Kubernetes for developers</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.udemy.com/certificate/UC-67714a89-6f40-4717-93a7-cded4b75d711/</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-09-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Introducing Semantic Kernel: Building AI-Based Apps</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/7d260cc6b9a0550507158d58a059c4dca7e8469ad56b64b4b543c24c9b517bd9</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Generative AI: The Evolution of Thoughtful Online Search</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/1552de3b7e9de56676146d25554b15b00e5c173d96081737c85789b7ae498543</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>What Is Generative AI?</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/6f4f2a01f0d040292460e09c6fa385ebdd22ff6e4fbc91b8b456aadfd6ccd82a</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Streamlining Your Work with Microsoft Bing Chat</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/fccb09bb98c04c31b8554ed1ffd4b2ae67afebe4d228946a293ee6a704d6c05d</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Microsoft 365 Copilot First Look</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/56d2fde3a6529f9ca1e4b529f4b5a8f75c66588edca2be8560271c1a1c24f28a</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Ethics in the Age of Generative AI</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/494ade7cfad1cb24525faf2d511658a89e2fe3ce1a6f4969419d65e7193dcac7</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>LinkedIn</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Introduction to Artificial Intelligence</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/44fa0685cbf275d19b25f5f7c3a0365e0b26227dd31e9c9545147e737e671c70</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Microsoft</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2023-10-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Career Essentials in Generative AI by Microsoft and LinkedIn</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://www.linkedin.com/learning/certificates/16067e03e960ef0144dc31920fcaf387d7873ef227c5738cb99ff362ede92a8a</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
<EducationOrganizationAttendance>
<hr:OrganizationName>Microsoft</hr:OrganizationName>
<OrganizationContact>
<Communication>
<Address/>
</Communication>
</OrganizationContact>
<AttendancePeriod>
<StartDate>
<hr:FormattedDateTime>2024-01-01</hr:FormattedDateTime>
</StartDate>
<Ongoing>false</Ongoing>
</AttendancePeriod>
<EducationDegree>
<hr:DegreeName>Microsoft Certified: Azure Administrator Associate</hr:DegreeName>
<OccupationalSkillsCovered><p>Certificate:</p><p>https://learn.microsoft.com/api/credentials/share/en-us/francesco-belacca-dev/45B731060917D54E?sharingId</p></OccupationalSkillsCovered>
</EducationDegree>
</EducationOrganizationAttendance>
</EducationHistory>
<eures:Licenses>
<eures:License>
<hr:LicenseTypeCode>B</hr:LicenseTypeCode>
</eures:License>
</eures:Licenses>
<Certifications/>
<PublicationHistory/>
<PersonQualifications>
<PersonCompetency>
<CompetencyID schemeName="NORMAL">eng</CompetencyID>
<hr:TaxonomyID>language</hr:TaxonomyID>
<eures:CompetencyDimension>
<hr:CompetencyDimensionTypeCode>CEF-Understanding-Listening</hr:CompetencyDimensionTypeCode>
<eures:Score>
<hr:ScoreText>C1</hr:ScoreText>
</eures:Score>
</eures:CompetencyDimension>
<eures:CompetencyDimension>
<hr:CompetencyDimensionTypeCode>CEF-Understanding-Reading</hr:CompetencyDimensionTypeCode>
<eures:Score>
<hr:ScoreText>C1</hr:ScoreText>
</eures:Score>
</eures:CompetencyDimension>
<eures:CompetencyDimension>
<hr:CompetencyDimensionTypeCode>CEF-Speaking-Interaction</hr:CompetencyDimensionTypeCode>
<eures:Score>
<hr:ScoreText>B2</hr:ScoreText>
</eures:Score>
</eures:CompetencyDimension>
<eures:CompetencyDimension>
<hr:CompetencyDimensionTypeCode>CEF-Speaking-Production</hr:CompetencyDimensionTypeCode>
<eures:Score>
<hr:ScoreText>B2</hr:ScoreText>
</eures:Score>
</eures:CompetencyDimension>
<eures:CompetencyDimension>
<hr:CompetencyDimensionTypeCode>CEF-Writing-Production</hr:CompetencyDimensionTypeCode>
<eures:Score>
<hr:ScoreText>C1</hr:ScoreText>
</eures:Score>
</eures:CompetencyDimension>
</PersonCompetency>
</PersonQualifications>
<EmploymentReferences/>
<CreativeWorks/>
<Projects/>
<SocialAndPoliticalActivities/>
<Skills>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>English</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Stakeholder Management</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Security Administration</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Identity management</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Pianificazione delle capacità</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Public speaking</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Microsoft Fabric</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>JIRA</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Github Enterprise</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>wsl</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Powershell Core</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Bash</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>DSC</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Business Central</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Software Infrastructure</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Azure</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Microsoft Entra ID</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Automation</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Microsoft Dynamics 365</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Microsoft Power Platform</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Cost Optimization</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Cloud Security</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Customer Requirements</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Communication</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Windows Azure</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>C#</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>DevOps</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Containerization</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Distributed Systems</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Version Control</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Cloud Infrastructure</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Attention to Detail</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Analytical Skills</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>SQL</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Lingua inglese</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Project management</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>OOP</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Analisi dei dati</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Sviluppo di prodotto</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>ETL</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Infrastrutture</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Troubleshooting</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Applicazioni Web</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Sviluppo di software</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Continuous improvement</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Integrazione continua</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Social media</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Agile Methodologies</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Agile Project Management</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>.NET</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Git</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>JavaScript</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>LINQ</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Visual Studio</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Microsoft Office</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>HTML</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Database</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Server Microsoft SQL</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>
<hr:TaxonomyID>Digital_Skill</hr:TaxonomyID>
<hr:CompetencyName>Windows PowerShell</hr:CompetencyName>
</PersonCompetency>
<PersonCompetency>