-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedin.rdf
2330 lines (2329 loc) · 181 KB
/
linkedin.rdf
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"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:linkedin="http://www.semanticweb.org/computer/ontologies/2021/7/linkedin#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xml:base="http://www.semanticweb.org/computer/ontologies/2021/7/linkedin">
<owl:Ontology rdf:about=""/>
<owl:Class rdf:ID="EducationExperience">
<rdfs:label xml:lang="it">EsperienzaFormativa</rdfs:label>
<rdfs:label xml:lang="en">EducationExperience</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Experience"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="School">
<rdfs:label xml:lang="en">School</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Place"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Place">
<rdfs:label xml:lang="it">Struttura</rdfs:label>
<rdfs:label xml:lang="en">Place</rdfs:label>
<rdfs:subClassOf>
<owl:Class rdf:ID="Member"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="Company">
<rdfs:label xml:lang="en">Company</rdfs:label>
<rdfs:label xml:lang="it">Azienda</rdfs:label>
<rdfs:subClassOf rdf:resource="#Place"/>
</owl:Class>
<owl:Class rdf:ID="Skill"/>
<owl:Class rdf:about="#Experience">
<rdfs:label xml:lang="en">Experience</rdfs:label>
<rdfs:label xml:lang="it">Esperienza</rdfs:label>
</owl:Class>
<owl:Class rdf:ID="Person">
<rdfs:label xml:lang="it">Persona</rdfs:label>
<rdfs:label xml:lang="en">Person</rdfs:label>
<rdfs:subClassOf rdf:resource="#Member"/>
</owl:Class>
<owl:Class rdf:ID="WorkingExperience">
<rdfs:subClassOf rdf:resource="#Experience"/>
</owl:Class>
<owl:ObjectProperty rdf:ID="hasSkill">
<rdfs:range rdf:resource="#Skill"/>
<rdfs:domain rdf:resource="#Person"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasInterest">
<rdfs:range rdf:resource="#Place"/>
<rdfs:domain rdf:resource="#Person"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasExperience">
<rdfs:range rdf:resource="#Experience"/>
<rdfs:domain rdf:resource="#Person"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasEducationExperience">
<rdfs:range rdf:resource="#EducationExperience"/>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:subPropertyOf rdf:resource="#hasExperience"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasWorkingExperience">
<rdfs:range rdf:resource="#WorkingExperience"/>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:subPropertyOf rdf:resource="#hasExperience"/>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:ID="phone">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="URL">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Member"/>
</owl:DatatypeProperty>
<owl:FunctionalProperty rdf:ID="founded">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="role">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#WorkingExperience"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="location">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:domain rdf:resource="#Experience"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="companySize">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="headquarter">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="website">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="speciality">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="performedIn">
<rdfs:range rdf:resource="#Place"/>
<rdfs:domain rdf:resource="#Experience"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="firstName">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="endDate">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#WorkingExperience"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="secondName">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="startDate">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#WorkingExperience"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="industry">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="type">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="placeName">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Place"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="skillName">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Skill"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<owl:FunctionalProperty rdf:ID="about">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:domain rdf:resource="#Member"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</owl:FunctionalProperty>
<linkedin:Person rdf:ID="person9">
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill188">
<linkedin:skillName>Matlab</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill185">
<linkedin:skillName>Machine learning</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp17">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school17">
<linkedin:placeName>Summer school on Optimization, Big Data and Applications</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill192">
<linkedin:skillName>TensorFlow</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill5">
<linkedin:skillName>Microsoft Office</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill183">
<linkedin:skillName>PostgreSQL</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp18">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school0">
<linkedin:about>The University of Florence is one of the largest and most productive public research systems in Italy. This result is related to the number of permanent and temporary researchers working in a wide range of disciplinary and scientific fields, and the numerous junior scientists in training. It is also due to an intensive participation in research programmes of national and international relevance, the significant scientific results achieved, and the financial flow from outside supporting activities of research and knowledge transfer. This combination of factors qualifies the Florentine institution as a modern research university, and accounts for its excellent ranking in national and international classifications.</linkedin:about>
<linkedin:placeName>Università degli Studi di Firenze</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
<linkedin:role>Laurea Magistrale LM</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill186">
<linkedin:skillName>GIS</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp43">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company5">
<linkedin:companySize>5.001-10.000 dipendenti</linkedin:companySize>
<linkedin:speciality>University</linkedin:speciality>
<linkedin:placeName>Università degli Studi di Firenze</linkedin:placeName>
<linkedin:founded>1321</linkedin:founded>
<linkedin:website>http://www.unifi.it/</linkedin:website>
<linkedin:phone>3905527571 Il numero di telefono è 3905527571</linkedin:phone>
<linkedin:type>Istruzione</linkedin:type>
<linkedin:about>The University of Florence is one of the largest and most productive public research systems in Italy. This result is related to the number of permanent and temporary researchers working in a wide range of disciplinary and scientific fields, and the numerous junior scientists in training. It is also due to an intensive participation in research programmes of national and international relevance, the significant scientific results achieved, and the financial flow from outside supporting activities of research and knowledge transfer. This combination of factors qualifies the Florentine institution as a modern research university, and accounts for its excellent ranking in national and international classifications.</linkedin:about>
<linkedin:headquarter>Florence, Tuscany</linkedin:headquarter>
<linkedin:industry>Istruzione superiore</linkedin:industry>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Firenze, Italia</linkedin:location>
<linkedin:endDate>dic 2017</linkedin:endDate>
<linkedin:startDate>nov 2017</linkedin:startDate>
<linkedin:role>Tutor accademico</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:firstName>Alessia</linkedin:firstName>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company85">
<linkedin:type>Istruzione</linkedin:type>
<linkedin:headquarter>Pasadena, CA</linkedin:headquarter>
<linkedin:placeName>NASA Jet Propulsion Laboratory</linkedin:placeName>
<linkedin:founded>1936</linkedin:founded>
<linkedin:website>http://www.jpl.nasa.gov</linkedin:website>
<linkedin:about>Formed in 1936, the NASA Jet Propulsion Laboratory is a federally funded research and development center managed for NASA by the California Institute of Technology (Caltech.) JPL joined NASA as an FFRDC when the agency was founded in 1958. JPL helped open the Space Age by developing America's first Earth-orbiting science satellite, creating the first successful interplanetary spacecraft, and sending robotic missions to the solar system. Today JPL continues its world-leading innovation, implementing programs in planetary exploration, Earth science, space-based astronomy and technology development while applying its capabilities to technical and scientific problems of national significance. Above all, we are explorers. At JPL we promote collaboration, innovation, integrity, and excellence in distinct academic areas. We turn ideas for science investigation into the reality of groundbreaking space missions, partnering with our strategic business teams to guide JPL into the future. Explorers wanted.</linkedin:about>
<linkedin:companySize>5.001-10.000 dipendenti</linkedin:companySize>
<linkedin:speciality>robotic spacecraft, mars missions, deep space network, planetary science, earth science, solar system exploration, exoplanets, Asteroid watch and tracking, Juno Mission to Jupiter, unmanned spaceflight, Curiosity Rover, engineering, science, technology e software development</linkedin:speciality>
<linkedin:industry>Difesa e spazio</linkedin:industry>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:secondName>Tricomi</linkedin:secondName>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company82">
<linkedin:speciality>Space, Science, Navigation, Earth Observation, Communications, Manned Space Flight, System Engineering, Innovative, Inspirational, Aspirational, Rockets, Materials, Astronomy, Simulation, System Engineering, Concurrent Engineering, Testing, Hardware, Software, Training, Information Technology, GNSS, Galileo, IT and Security e Cyber</linkedin:speciality>
<linkedin:about>The European Space Agency (ESA) is Europe’s gateway to space. Its mission is to shape the development of Europe’s space capability and ensure that investment in space continues to deliver benefits to the citizens of Europe and the world. ESA is an international organisation with 22 Member States. By coordinating the financial and intellectual resources of its members, it can undertake programmes and activities far beyond the scope of any single European country. ESA's 22 Member States are Austria, Belgium, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Ireland, Italy, Luxembourg, the Netherlands, Norway, Poland, Portugal, Romania, Spain, Sweden, Switzerland and the United Kingdom. Slovenia, Latvia and Lithuania are Associate Members. Canada takes part in some projects under a cooperation agreement. Five other EU states have Cooperation Agreements with ESA: Bulgaria, Croatia, Cyprus, Malta and Slovakia.</linkedin:about>
<linkedin:placeName>European Space Agency - ESA</linkedin:placeName>
<linkedin:companySize>1.001-5.000 dipendenti</linkedin:companySize>
<linkedin:type>Ente governativo</linkedin:type>
<linkedin:industry>Aviazione e aerospazio</linkedin:industry>
<linkedin:founded>1975</linkedin:founded>
<linkedin:website>http://www.esa.int</linkedin:website>
<linkedin:headquarter>Paris, Île-de-France</linkedin:headquarter>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill128">
<linkedin:skillName>LaTeX</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:URL>https://www.linkedin.com/in/alessia-tricomi-9387b1129/</linkedin:URL>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill16">
<linkedin:skillName>Linux</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill193">
<linkedin:skillName>Swagger API</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp42">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company80">
<linkedin:speciality>SAR DATA (Cosmo SkyMed, Radarsat, Envisat), GIS (SDI, GDWH, Google Earth Enterprise), Environmental Monitoring, Cartography, VHR Optical Data (GeoEye, DigitalGlobe, Spot...More) e big data analytics</linkedin:speciality>
<linkedin:placeName>e-geos</linkedin:placeName>
<linkedin:type>Società privata non quotata</linkedin:type>
<linkedin:industry>Difesa e spazio</linkedin:industry>
<linkedin:website>http://www.e-geos.it/</linkedin:website>
<linkedin:about>e-GEOS, a Telespazio (80%) / ASI (20%) company, is a leading international player in the geo-spatial business. e-GEOS offers a complete range of products and services in the Earth Observation and in the geo-spatial application domains, based on both optical and radar satellites as well as on aerial surveys. The Rome-based company employs more than 300 people and operates through the Earth Observation centers in Matera (Italy) and Neustrelitz (Germany). As the European hub for VHR (Very High Resolution) data, e-GEOS grants unique access to the COSMO-SkyMed data, and to the major optical missions. In particular, COSMO-SkyMed represents a tremendous competitive advantage as it opens up a new era of operational applications. The COSMO-SkyMed earth observation programme of the Italian Space Agency and the Italian Ministry of Defence, based on a constellation of four VHR SAR satellites, provides all-weather, day and night, world-wide radar data acquisitions. e-GEOS exploits COSMO-SkyMed data to offer near-real-time monitoring services and large-area mapping capabilities for customers such as NGA (National Geospatial-Intelligence Agency of the US Government), in combination with its existing product and services portfolio, which comprises solutions for key vertical markets including emergency management, maritime surveillance, agriculture & forestry, cadastre, environmental protection, oil & gas, utilities and industries.</linkedin:about>
<linkedin:founded>2010</linkedin:founded>
<linkedin:headquarter>Roma, Lazio</linkedin:headquarter>
<linkedin:companySize>201-500 dipendenti</linkedin:companySize>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Roma, Italia</linkedin:location>
<linkedin:role>Remote Sensing Data Scientist Stagista</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill0">
<linkedin:skillName>Python</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company84">
<linkedin:speciality>International Organisation, european union e Governmental Organisation</linkedin:speciality>
<linkedin:founded>1958</linkedin:founded>
<linkedin:type>Ente governativo</linkedin:type>
<linkedin:industry>Amministrazione governativa</linkedin:industry>
<linkedin:about>The Commission represents and upholds the interests of the EU as a whole, and is independent of national governments. The European Commission prepares legislation for adoption by the Council (representing the member countries) and the Parliament (representing the citizens). It administers the budget and the policy programmes (agriculture, fisheries, research etc.) in cooperation with authorities in the member countries. Visit http://www.europa.eu/ if you want to learn more about the EU, or call the free service number 00 800 6789 10 11 from anywhere in the EU, they speak all 24 official languages. Disclaimer: The European Commission is working to ensure that social networks respect the highest standards of data protection. All users of social networks should be particularly careful about how they disclose their personal information and about how it may be used by third parties and the social network themselves. The presence of the European Commission on LinkedIn does not mean that we endorse or in any way agree with the privacy policy or practices of this professional social media network. Read more about our social media policy: https://ec.europa.eu/info/social-media-use</linkedin:about>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:website>https://ec.europa.eu/</linkedin:website>
<linkedin:placeName>European Commission</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company71">
<linkedin:speciality>e-Commerce, Retail, Operations e Internet</linkedin:speciality>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:headquarter>Seattle, WA</linkedin:headquarter>
<linkedin:industry>Internet</linkedin:industry>
<linkedin:about>Amazon punta a diventare l’azienda più incentrata sul cliente al mondo, un luogo dove sia possibile trovare praticamente qualsiasi articolo e acquistarlo online. Focalizzando l’attenzione su ciò che sta maggiormente a cuore ai clienti - prezzi contenuti, ampia selezione e convenienza, Amazon continua a crescere ed a evolversi come sito internazionale di commercio online. Fondato da Jeff Bezos nel 1995, il sito web Amazon.com era il luogo dove acquistare libri, proprio per l’esperienza unica che il web poteva offrire agli amanti della lettura. Bezos, infatti, era convinto che solo Internet potesse permettere ai clienti di scoprire comodamente milioni di titoli in un solo colpo. Nei primi 30 giorni d’attività, Amazon ricevette ordini da clienti in 50 Stati degli USA e 45 Paesi esteri, inviando i prodotti venduti da un garage di Seattle. L’evoluzione di Amazon da semplice sito web a partner per il commercio online, fino a piattaforma di sviluppo, si basa sullo spirito d’innovazione insito nel DNA dell’azienda. Le menti più brillanti e i migliori talenti del mondo scelgono di lavorare per Amazon allo scopo di sviluppare tecnologie che migliorino la vita di clienti e rivenditori in tutto il mondo.</linkedin:about>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:website>http://www.amazon.com</linkedin:website>
<linkedin:placeName>Amazon</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill191">
<linkedin:skillName>Keras</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill194">
<linkedin:skillName>Problem Solving</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company6">
<linkedin:speciality>search, ads, mobile, android, online video, apps, machine learning, virtual reality, cloud, hardware, artificial intelligence, youtube e software</linkedin:speciality>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:headquarter>Mountain View, CA</linkedin:headquarter>
<linkedin:industry>Internet</linkedin:industry>
<linkedin:about>A problem isn't truly solved until it's solved for all. Googlers build products that help create opportunities for everyone, whether down the street or across the globe. Bring your insight, imagination and a healthy disregard for the impossible. Bring everything that makes you unique. Together, we can build for everyone. Check out our career opportunities at careers.google.com.</linkedin:about>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:website>https://goo.gle/3m1IN7m</linkedin:website>
<linkedin:placeName>Google</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp16">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school16">
<linkedin:about>L’Università degli Studi di Roma “Tor Vergata” ha iniziato l’attività didattica nel 1982. Progettata sul modello dei campus anglosassoni, occupa un territorio di circa 600 ettari. Questa particolare estensione ha permesso di sviluppare in strutture separate, edificate in ampi spazi dedicati, ognuna delle sei Macroaree presenti: Economia, Giurisprudenza, Ingegneria, Lettere e Filosofia, Medicina e Chirurgia, Scienze matematiche, fisiche e naturali.</linkedin:about>
<linkedin:placeName>Università di Roma Tor Vergata</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
<linkedin:role>Corso di Master Universitario di 2° livello-CMU2</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:location>Rufina, Toscana, Italia</linkedin:location>
<linkedin:about>Matematica con Master di II livello in Scienza e Tecnologia Spaziale. Attualmente Data Analyst presso e-Geos (società ASI/Telespazio).</linkedin:about>
</linkedin:Person>
<linkedin:Person rdf:ID="person7">
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp33">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company63">
<linkedin:founded>2001</linkedin:founded>
<linkedin:speciality>Open Source, Linux, Qt, Python, Django, BeRTOS, Embedded Linux, PyQt, Linux Kernel, Linux Internals, OpenGL, Free Software, Progettazione Elettronica, Produzione, Golang, React, QtFramework, GUI e IOT</linkedin:speciality>
<linkedin:about>Siamo un’azienda, ma soprattutto un insieme di persone che hanno in comune una grandissima passione per le nuove tecnologie e le loro applicazioni. Proponiamo ai nostri clienti soluzioni efficaci e corrette, con la spinta innovativa e le forti competenze che ci contraddistinguono, fin da quando eravamo una realtà piccola, ma piena di sogni ed entusiasmo. Crediamo realmente che la tecnologia possa essere utilizzata per migliorare il benessere delle persone. Che si tratti di innovare un macchinario industriale, realizzare un dispositivo medicale o uno skateboard elettrico: lavoriamo per renderlo efficiente, semplice e sicuro per chi deve usarlo. Eventi di grande rilevanza formativa, le conferenze di Develer sono da anni il punto di riferimento per chi lavora nel settore informatico: - https://www.golab.io - https://www.qtday.it - https://www.rustlab.it/ - https://linux-lab.it</linkedin:about>
<linkedin:phone>+39 055 3984627 Il numero di telefono è +39 055 3984627</linkedin:phone>
<linkedin:type>Società privata non quotata</linkedin:type>
<linkedin:companySize>51-200 dipendenti</linkedin:companySize>
<linkedin:website>https://www.develer.com</linkedin:website>
<linkedin:placeName>Develer</linkedin:placeName>
<linkedin:industry>Software</linkedin:industry>
<linkedin:headquarter>Campi Bisenzio, FI</linkedin:headquarter>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Firenze</linkedin:location>
<linkedin:endDate>Sep 2021</linkedin:endDate>
<linkedin:startDate>mar 2020</linkedin:startDate>
<linkedin:role>Firmware Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company64">
<linkedin:website>http://www.semibyte.it</linkedin:website>
<linkedin:companySize>2-10 dipendenti</linkedin:companySize>
<linkedin:type>Società privata non quotata</linkedin:type>
<linkedin:headquarter>Prato, Toscana</linkedin:headquarter>
<linkedin:about>Dall'esperienza di professionisti che lavorano dal 1995 nella progettazione software e firmware nel campo dell'automazione industriale e della biomedica, nasce nel 2018 Semibyte Srls. Siamo un'azienda che vuole far crescere, assieme alle competenze tecnologiche, un gruppo di persone con la passione di fare insieme qualcosa di bello e utile per migliorare la vita reale delle persone. Da qui il nostro motto aziendale: Tecnologia e ricerca al servizio dell'uomo </linkedin:about>
<linkedin:phone>0574 966711 Il numero di telefono è 0574 966711</linkedin:phone>
<linkedin:speciality>Software, Firmware, Progettazione hardware e Apparati biomedicali</linkedin:speciality>
<linkedin:founded>2018</linkedin:founded>
<linkedin:placeName>Semibyte Srls</linkedin:placeName>
<linkedin:industry>Automazione industriale</linkedin:industry>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp36">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company66">
<linkedin:placeName>Develer srl</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Firenze</linkedin:location>
<linkedin:endDate>set 2016</linkedin:endDate>
<linkedin:startDate>giu 2016</linkedin:startDate>
<linkedin:role>Software developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill153">
<linkedin:skillName>C++</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasInterest rdf:resource="#company63"/>
<linkedin:secondName>Nistri</linkedin:secondName>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp12">
<linkedin:happenedAt rdf:resource="#school0"/>
<linkedin:role>In corso</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasSkill rdf:resource="#skill16"/>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp34">
<linkedin:happenedAt rdf:resource="#company64"/>
<linkedin:location>Prato</linkedin:location>
<linkedin:endDate>feb 2020</linkedin:endDate>
<linkedin:startDate>apr 2018</linkedin:startDate>
<linkedin:role>Software Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill155">
<linkedin:skillName>Bash</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill15">
<linkedin:skillName>Java</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasInterest rdf:resource="#company5"/>
<linkedin:location>Firenze, Toscana, Italia</linkedin:location>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill26">
<linkedin:skillName>Django</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill rdf:resource="#skill0"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill156">
<linkedin:skillName>Golang</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill115">
<linkedin:skillName>C</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp11">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school11">
<linkedin:placeName>ITS T. Buzzi</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
<linkedin:role>Diploma</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company69">
<linkedin:headquarter>Dortmund, North Rhine-Westphalia</linkedin:headquarter>
<linkedin:about>Semibyte is a company based out of 1 Am Heiligen Busch, Dortmund, North Rhine-Westphalia, Germany.</linkedin:about>
<linkedin:website>http://www.semibyte.de</linkedin:website>
<linkedin:placeName>Semibyte</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:URL>https://www.linkedin.com/in/matteo-nistri-28b807168/</linkedin:URL>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp35">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company65">
<linkedin:speciality>Distributori di carburante, Soluzioni di pagamento, Sistemi per il controllo automatico delle cisterne, Terminali di pagamento da piazzale, Pompe sommerse, Soluzioni per flotte e aziende, Ricambi e Servizi avanzati per la manutenzione ed installazione.</linkedin:speciality>
<linkedin:founded>1865</linkedin:founded>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:industry>Petrolio ed energia</linkedin:industry>
<linkedin:about>Gilbarco Veeder-Root è leader di mercato a livello mondiale di sistemi di automazione e pagamento per le stazioni di servizio carburante. Con una presenza in moltissime aree geografice, una competenza radicata e un servizio clienti di qualità superiore, Gilbarco Veeder-Root è impegnata a costruire un business migliore per i propri clienti. Consapevoli delle sfide che devono affrontare i nostri clienti, siamo in grado di soddisfare le loro esigenze con soluzioni personalizzate e scalabili. La nostra gamma di soluzioni è progettata per massimizzare i tempi di attività delle stazioni di rifornimento e quindi la redditività dei nostri clienti. Queste includono: > Pompe e Dispensers - Una impareggiabile gamma dalla tecnologia robusta, affidabile, precisa e sicura. > Wetstock Management - Soluzioni intelligenti per consentire il controllo totale delle cisterne: monitoraggio, reportistica e riconciliazione. > Retail Solutions - Una vasta offerta di Point of Sale (POS), sistemi di Back Office (BOS) e dei Sistemi Centrali (HOS) per piazzali di vendita al dettaglio. > Business Support - Assistenza e supporto sia in loco che da remoto, pensati per salvaguardare il valore dei beni e guidare l'efficienza operativa. Il gruppo Gilbarco Veeder-Root ha stabilimenti di produzione, vendita, distribuzione e centri di assistenza in Nord e Sud America, Europa, Asia e nel Pacifico. La sede centrale è a Greensboro, NC (USA). Gilbarco Veeder-Root ha centri di ricerca, sviluppo e produzione in Germania, Italia, Regno Unito, Danimarca, Stati Uniti, India, Argentina, Brasile, Cina, Australia e Messico. La sede centrale EMENA (Europa, Medio Oriente e Africa del nord) è a Basildon, Regno Unito.</linkedin:about>
<linkedin:companySize>1.001-5.000 dipendenti</linkedin:companySize>
<linkedin:website>http://www.gilbarco.com/eu/iteu</linkedin:website>
<linkedin:placeName>Gilbarco Veeder-Root Italia</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Firenze</linkedin:location>
<linkedin:endDate>feb 2020</linkedin:endDate>
<linkedin:startDate>apr 2018</linkedin:startDate>
<linkedin:role>Python Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:firstName>Matteo</linkedin:firstName>
</linkedin:Person>
<linkedin:Person rdf:ID="person8">
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp15">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school8">
<linkedin:placeName>I.T.S. - Tullio Buzzi</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
<linkedin:role>Diploma</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:location>Firenze</linkedin:location>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company76">
<linkedin:headquarter>Redmond, Washington</linkedin:headquarter>
<linkedin:placeName>Microsoft</linkedin:placeName>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:about>At Microsoft, our mission is to empower every person and every organization on the planet to achieve more. Microsoft enables digital transformation for the era of an intelligent cloud and an intelligent edge. Microsoft operates in 190 countries and is made up of 181,000 passionate employees worldwide.</linkedin:about>
<linkedin:speciality>Business Software, Developer Tools, Home & Educational Software, Tablets, Search, Advertising, Servers, Windows Operating System, Windows Applications & Platforms, Smartphones, Cloud Computing, Quantum Computing, Future of Work, Productivity, AI, Artificial Intelligence, Machine Learning, Laptops, Mixed Reality, Virtual Reality, Gaming, Developers e IT Professional</linkedin:speciality>
<linkedin:website>https://news.microsoft.com/</linkedin:website>
<linkedin:founded>1975</linkedin:founded>
<linkedin:industry>Software</linkedin:industry>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company78">
<linkedin:speciality>Online Professional Network, Jobs, People Search, Company Search, Address Book, Advertising, Professional Identity e Group Collaboration</linkedin:speciality>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:headquarter>Sunnyvale, CA</linkedin:headquarter>
<linkedin:industry>Internet</linkedin:industry>
<linkedin:about>With millions of jobs on LinkedIn, find one meant for you. #InItTogether Founded in 2003, LinkedIn connects the world's professionals to make them more productive and successful. With more than 756 million members worldwide, including executives from every Fortune 500 company, LinkedIn is the world's largest professional network. The company has a diversified business model with revenue coming from Talent Solutions, Marketing Solutions, Sales Solutions and Premium Subscriptions products. Headquartered in Silicon Valley, LinkedIn has offices across the globe.</linkedin:about>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:website>https://careers.linkedin.com</linkedin:website>
<linkedin:placeName>LinkedIn</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill rdf:resource="#skill115"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill159">
<linkedin:skillName>Natural Language Processing (NLP)</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp39">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company72">
<linkedin:founded>1987</linkedin:founded>
<linkedin:speciality>IT per Banche e Assicurazioni, Datawarehouse e Business Intelligence, Microsoft Dynamics, IT Management, Sistemi Dipartimentali e iSeries-AS400</linkedin:speciality>
<linkedin:industry>Informatica e servizi</linkedin:industry>
<linkedin:placeName>Quid Informatica spa</linkedin:placeName>
<linkedin:about>QUID Informatica dal 1987 offre servizi e soluzioni nell'area dell'Information & Communication Technology (ICT). Rivolgiamo costantemente la nostra attenzione alle nuove frontiere della tecnologia e ai veloci cambiamenti richiesti dai diversi settori industriali e di mercato. Supportiamo i nostri clienti nella gestione dei processi core legati alle loro attività. Le competenze sviluppate negli anni ci consentono di conoscere e proporre servizi e piattaforme tecnologiche appropriate che modelliamo per la realizzazione di soluzioni personalizzate. Dal 2016 proponiamo ai clienti del settore Consumer Finance Qinetic, la nostra piattaforma proprietaria per la gestione end to end dei processi del credito. Lo sviluppo delle competenze, la crescita professionale e la motivazione sono i valori fondamentali con cui, sin dall'avvio della nostra avventura imprenditoriale, abbiamo costruito un team di successo altamente professionale, in cui ciascuno condivide la metodologia e gli standard operativi. I nostri mercati di riferimento sono: * Finance: banche - assicurazioni - in particolare credito al consumo; * Industry e PMI Con QI-Lab aggreghiamo competenze accademiche ed esperienze di mercato per realizzare progetti ad alto valore aggiunto, con focus su tecnologie di Machine Learning, text Analysis e information retrieval, UX design, Big Data e Data Mining.</linkedin:about>
<linkedin:companySize>201-500 dipendenti</linkedin:companySize>
<linkedin:phone>055323444 Il numero di telefono è 055323444</linkedin:phone>
<linkedin:headquarter>Firenze, FI</linkedin:headquarter>
<linkedin:website>http://www.quidinfo.it</linkedin:website>
<linkedin:type>Società privata non quotata</linkedin:type>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Florence, Tuscany, Italy</linkedin:location>
<linkedin:endDate>giu 2020</linkedin:endDate>
<linkedin:startDate>feb 2020</linkedin:startDate>
<linkedin:role>Python Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill174">
<linkedin:skillName>Wordpress</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:URL>https://www.linkedin.com/in/alessio-falai/</linkedin:URL>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill180">
<linkedin:skillName>Constraint Programming</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill48">
<linkedin:skillName>Git</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill158">
<linkedin:skillName>Computer Vision</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:secondName>Falai</linkedin:secondName>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp40">
<linkedin:happenedAt rdf:resource="#company72"/>
<linkedin:location>Florence, Tuscany, Italy</linkedin:location>
<linkedin:role>Python Developer Python Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill28">
<linkedin:skillName>Leadership</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp13">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school13">
<linkedin:about>L’Alma Mater Studiorum, la più antica università del mondo occidentale, percorre e promuove la strada dell’innovazione attraverso una didattica sempre più ricca, una ricerca sempre più all'avanguardia, un’apertura internazionale ampia e costante. Fin dal 1088, la centralità dello studente è il principio guida dell’Alma Mater. Nei secoli ha ospitato personalità di rilievo nei campi delle scienze e delle arti e oggi nelle sue 5 sedi (Bologna, Cesena, Forlì, Ravenna e Rimini), così come nella sede di Buenos Aires, propone un’ offerta didattica ampia, diversificata, attenta alle esigenze della società: un patrimonio formativo distribuito tra oltre 200 corsi di laurea, 32 Dipartimenti, 5 Scuole, per oltre 81.000 studenti e 5.000 studenti post lauream. L’Alma Mater da sempre promuove il confronto tra discipline e culture, investendo nell'inseparabile connessione tra ricerca e didattica. Tra le più attive e principali università nella ricerca Europea e nel campo della cooperazione accademica internazionale, ha stretto alleanze con l’industria, organizzazioni pubbliche e private. Bologna è al centro di molti network internazionali. Oltre ai suoi legami con l’Europa, l’Università conta partnerships in America, Africa, Asia e Australia.</linkedin:about>
<linkedin:placeName>Alma Mater Studiorum – Università di Bologna</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
<linkedin:role>Laurea magistrale</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill161">
<linkedin:skillName>Machine Learning</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill rdf:resource="#skill16"/>
<linkedin:hasSkill rdf:resource="#skill153"/>
<linkedin:hasSkill rdf:resource="#skill15"/>
<linkedin:about>Hello there, I am Alessio Falai 👋 .</linkedin:about>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill72">
<linkedin:skillName>Project Planning</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill182">
<linkedin:skillName>OpenCV</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill rdf:resource="#skill26"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill27">
<linkedin:skillName>Management</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp37">
<linkedin:happenedAt rdf:resource="#company71"/>
<linkedin:location>Virtual</linkedin:location>
<linkedin:endDate>ago 2021</linkedin:endDate>
<linkedin:startDate>feb 2021</linkedin:startDate>
<linkedin:role>Data Science Intern</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill176">
<linkedin:skillName>Teamwork</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill11">
<linkedin:skillName>Qt</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp41">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company75">
<linkedin:speciality>Global Automotive Supplier, Tires, Software Development, Automated Driving, Driver Assistance Systems, Global Industrial Supplier, Internet of Things, Blockchain, Connectivity, continental engineering services, continental business consulting, vehicle networking and information e autonomous mobility and safety</linkedin:speciality>
<linkedin:founded>1871</linkedin:founded>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:industry>Settore automobilistico</linkedin:industry>
<linkedin:about>Continental develops pioneering technologies and services for sustainable and connected mobility of people and their goods. Founded in 1871, the technology company offers safe, efficient, intelligent and affordable solutions for vehicles, machines, traffic and transportation. In 2020, Continental generated sales of €37.7 billion and currently employs around 233,000 people in 58 countries and markets. In 2021, the company celebrates its 150th anniversary. This is Continental's official LinkedIn account. The purpose of our page is to offer information about career opportunities at Continental AG, about our technologies, company culture and about our actions and initiatives. We emphasize the importance of an appropriate and respectful style when communicating on our page and therefore we reserve the right to delete comments that are offensive or suggestive, personal attacks, anonymous, wildly off-topic, spam or advertisements. Imprint: http://bit.ly/imprint_Continental_int https://www.continental.com/en/data-protection</linkedin:about>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:website>http://www.continental-careers.com</linkedin:website>
<linkedin:placeName>Continental</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Fauglia, Tuscany, Italy</linkedin:location>
<linkedin:endDate>set 2019</linkedin:endDate>
<linkedin:startDate>gen 2019</linkedin:startDate>
<linkedin:role>Python Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill rdf:resource="#skill0"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill160">
<linkedin:skillName>Image Processing</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp14">
<linkedin:happenedAt rdf:resource="#school0"/>
<linkedin:role>Laurea triennale</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill164">
<linkedin:skillName>Deep Learning</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:firstName>Alessio</linkedin:firstName>
<linkedin:hasSkill rdf:resource="#skill155"/>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company77">
<linkedin:headquarter>Burbank, CA</linkedin:headquarter>
<linkedin:placeName>The Walt Disney Company</linkedin:placeName>
<linkedin:about>From classic animated features and exhilarating theme park attractions to cutting edge sports coverage, and the hottest shows on television, The Walt Disney Company has been making magic since 1923, creating unforgettable stories that connect with audiences around the world. And we’re just getting started! The key to our success…. The Cast, Crew, Imagineers and Employees who honor Disney’s rich legacy by stretching the bounds of imagination to create the never-before-seen, bringing unparalleled entertainment experiences to people of all ages. Begin a career that delivers unparalleled creative content and experiences to audiences around the world and just imagine the stories you could be part of… What is #LifeAtDisney like? It’s a series of magical moments with cast members and employees developing and telling our stories in the most innovative ways. Whether it’s a day spent as a Disney VoluntEAR, or celebrating the release of a new interactive experience, retail product or movie, our days are filled with the knowledge that we are creating entertainment experiences the whole family can enjoy. Follow @DisneyCareers on Facebook, Twitter and Instagram for a peek behind-the-curtain, and discover how you could connect to a world of stories with Disney!</linkedin:about>
<linkedin:industry>Intrattenimento</linkedin:industry>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:speciality>Entertainment, Technology, Media, Movies, Television, Consumer Products, Theme Parks, Resorts, Interactive Media, Publishing, Radio, Live Entertainment, Music, Stage Plays, Animation, Studios, Apparel, Apps, Gaming e Toys</linkedin:speciality>
<linkedin:founded>1923</linkedin:founded>
<linkedin:website>http://www.disneycareers.com</linkedin:website>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill rdf:resource="#skill128"/>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company79">
<linkedin:speciality>Networking, Wireless, Security, Unified Communication, Cloud, Collaboration, Data Center, Virtualization e Unified Computing Systems</linkedin:speciality>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:headquarter>San Jose, CA</linkedin:headquarter>
<linkedin:industry>Reti informatiche</linkedin:industry>
<linkedin:about>Cisco è leader mondiale nelle tecnologie che trasformano il modo con cui le persone si connettono, comunicano e collaborano, attraverso reti intelligenti e architetture che integrano prodotti, servizi e piattaforme software. L’azienda, fondata nel 1984, ha sede a San Josè, in California; da sempre guida l’evoluzione delle tecnologie di Rete grazie alla capacità di individuare e anticipare scenari e transizioni di mercato, sviluppando soluzioni innovative grazie al costante investimento in R&S e in personale altamente qualificato; una scelta supportata da una articolata politica di acquisizioni e dal dialogo continuo con i clienti e con il suo ecosistema globale di partner. Cisco oggi accompagna imprese, governi e persone nel nuovo scenario dell’Internet of Everything: le connessioni fra persone, processi, dati e oggetti aprono possibilità inesplorate di innovazione e trasformazione in ogni settore, nell’educazione, nel confronto con le sfide economiche, sociali ed ambientali. In Italia dal 1994, Cisco partecipa attivamente allo sviluppo del Paese, valorizza i talenti e le eccellenze italiane, supporta attivamente la realizzazione dell’Agenda Digitale promuovendo sviluppo infrastrutturale, diffusione della cultura digitale e accesso alla Rete.</linkedin:about>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:website>http://www.cisco.com</linkedin:website>
<linkedin:placeName>Cisco</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp38">
<linkedin:happenedAt rdf:resource="#company72"/>
<linkedin:location>Florence, Tuscany, Italy</linkedin:location>
<linkedin:endDate>set 2020</linkedin:endDate>
<linkedin:startDate>ago 2020</linkedin:startDate>
<linkedin:role>Python Developer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill175">
<linkedin:skillName>Docker</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill29">
<linkedin:skillName>Team leadership</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill2">
<linkedin:skillName>PHP</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill17">
<linkedin:skillName>Project management</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
</linkedin:Person>
<linkedin:Person rdf:ID="person5">
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp6">
<linkedin:happenedAt>
<linkedin:School rdf:ID="school6">
<linkedin:placeName>PIN Polo Universitario Città di Prato - Servizi didattici e scientifici per l'Università di Firenze</linkedin:placeName>
</linkedin:School>
</linkedin:happenedAt>
<linkedin:role>CYBER SECURITY SPECIALIST</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill98">
<linkedin:skillName>Growth Hacking</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill116">
<linkedin:skillName>MySQL</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill126">
<linkedin:skillName>Hacking etico</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill125">
<linkedin:skillName>Audio Processing</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:about>Industrial Automation, controlling Kuka Robot with KRL. Integration with FlexVision and SMC's grippers.</linkedin:about>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill102">
<linkedin:skillName>Program Management</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill119">
<linkedin:skillName>Solidity</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill1">
<linkedin:skillName>HTML</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill rdf:resource="#skill0"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill122">
<linkedin:skillName>Customer Service</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill rdf:resource="#skill16"/>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp25">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company38">
<linkedin:placeName>Freelance</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Prato</linkedin:location>
<linkedin:endDate>Sep 2021</linkedin:endDate>
<linkedin:startDate>nov 2020</linkedin:startDate>
<linkedin:role>Sviluppatore Python</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company52">
<linkedin:speciality>Software development, DBA, System Management, Network Management, Mobile Applications, Mobile Certification & Testing, Project&Service Management, Big Data, System integration, Machine Learning, Realtà aumentata, CMS, IoT, Virtualization, Predictive analysis, Machine to Machine, NoSQL, Innovation e Industry 4.0</linkedin:speciality>
<linkedin:placeName>SOGETEL srl</linkedin:placeName>
<linkedin:type>Società privata non quotata</linkedin:type>
<linkedin:founded>1981</linkedin:founded>
<linkedin:industry>Informatica e servizi</linkedin:industry>
<linkedin:companySize>51-200 dipendenti</linkedin:companySize>
<linkedin:website>http://www.sogetel.it</linkedin:website>
<linkedin:about>Siamo un’azienda italiana con sedi a Roma e Milano. Operiamo nel campo digitale, progettando e sviluppando soluzioni in grado di soddisfare le esigenze dei clienti e di superare le sfide del mercato. Le nostre aree di competenza sono: - Innovation - Digital Development - Data Development Partendo da una solida esperienza sui database relazionali abbiamo completato la nostra offerta proponendoci come partner ideale per soluzioni Big Data basate su tecnologie Open source. Ci dedichiamo con passione e costanza alla ricerca e alla sperimentazione nel campo dell’innovazione digitale. Questo ci permette di andare oltre alla semplice risoluzione del problema e di diventare una vera e propria guida all'interno del progresso digitale.</linkedin:about>
<linkedin:headquarter>Roma, Roma</linkedin:headquarter>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill121">
<linkedin:skillName>Kali</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company55">
<linkedin:industry>Informatica e servizi</linkedin:industry>
<linkedin:founded>1977</linkedin:founded>
<linkedin:website>http://www.oracle.com</linkedin:website>
<linkedin:about>We’re a cloud technology company that provides organizations around the world with computing infrastructure and software to help them innovate, unlock efficiencies and become more effective. We also created the world’s first – and only – autonomous database to help organize and secure our customers’ data. Oracle Cloud Infrastructure offers higher performance, security, and cost savings. It is designed so businesses can move workloads easily from on-premises systems to the cloud, and between cloud and on-premises and other clouds. Oracle Cloud applications provide business leaders with modern applications that help them innovate, attain sustainable growth, and become more resilient. The work we do is not only transforming the world of business--it's helping defend governments, and advance scientific and medical research. From nonprofits to companies of all sizes, millions of people use our tools to streamline supply chains, make HR more human, quickly pivot to a new financial plan, and connect data and people around the world. At work, we embrace diversity, encourage personal and professional growth, and celebrate a global team of passionate people developing innovative technologies that help people and companies tackle real-world problems head-on. If you’d like to join us, please visit our Careers page: https://www.oracle.com/corporate/careers/ For investor news, SEC filings, and financial information about Oracle (NYSE:ORCL), please visit https://investor.oracle.com/home/. Follow us on Twitter: https://twitter.com/oracle Like our page on Facebook: https://www.facebook.com/Oracle/ Follow us on Instagram: https://www.instagram.com/oracle/</linkedin:about>
<linkedin:headquarter>Austin, Texas</linkedin:headquarter>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:placeName>Oracle</linkedin:placeName>
<linkedin:speciality>enterprise, software, applications, database, middleware, fusion, business intelligence, Primavera, PeopleSoft, EPM, BEA, Hyperion, Retek, Utilities, On-Demand, server & storage systems, BPM, solutions for communications industry, ERP, CRM, CRM On Demand, JDE e Siebel</linkedin:speciality>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill127">
<linkedin:skillName>Gestione della vulnerabilità</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:location>Prato, Toscana, Italia</linkedin:location>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill84">
<linkedin:skillName>Windows</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:secondName>Ferrini</linkedin:secondName>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill104">
<linkedin:skillName>Sviluppo di software</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill103">
<linkedin:skillName>Streaming Media</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp28">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company48">
<linkedin:speciality>webdesign, siti internet, agenzia di comunicazione e stampa</linkedin:speciality>
<linkedin:founded>2011</linkedin:founded>
<linkedin:type>Società privata non quotata</linkedin:type>
<linkedin:industry>Internet</linkedin:industry>
<linkedin:about>La società Next Duepuntozero S.r.l. è una nuova agenzia di comunicazione che propone un “web chiavi in mano”, ovvero offre servizi di progettazione, consulenza, formazione, manutenzione e content management ad aziende ed enti pubblici che intendono utilizzare in maniera intensiva ed efficace lo strumento Internet per comunicare con i propri stakeholders. Next nasce da un'idea di Marco Marcellini, che si occupa dal 1995 di Internet e nuove tecnologie ed ha compiuto studi specifici (laurea presso l'Università Bocconi di Milano con una tesi sul commercio elettronico) su nuovi media, web, sicurezza e consulenza aziendale. Ha partecipato a numerosi progetti che hanno Internet come protagonista, tra le collaborazioni più importanti quella con Lorenzo Cherubini. E' stato docente di “Editoria Multimediale” (2006-2010) e “Linguaggi di Marcatura dei Testi” (2009-2010) presso l'Università di Siena, Facoltà di Lettere e Filosofia di Arezzo e docente presso il Master in Informatica del Testo ed Edizione Elettronica. E' membro, presso la Biblioteca di Siena, del comitato scientifico per la World Digital Library, la biblioteca digitale promossa dalla Library of Congress e dall’Unesco. Lo staff di Next è costituito esclusivamente da giovani laureati in discipline scientifiche o umanistiche, con preparazione specifica nei settori grafico-editoriale, editing di testi per il web e i social-network, architettura e infrastrutture di rete e internet advertising.</linkedin:about>
<linkedin:companySize>2-10 dipendenti</linkedin:companySize>
<linkedin:website>http://www.next20.it</linkedin:website>
<linkedin:placeName>Next Duepuntozero S.r.l.</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Camucia</linkedin:location>
<linkedin:endDate>giu 2019</linkedin:endDate>
<linkedin:startDate>mag 2019</linkedin:startDate>
<linkedin:role>Penetration Tester</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill113">
<linkedin:skillName>XML</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill rdf:resource="#skill2"/>
<linkedin:hasSkill rdf:resource="#skill17"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill105">
<linkedin:skillName>Marketing</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasEducationExperience>
<linkedin:EducationExperience rdf:ID="eduExp8">
<linkedin:happenedAt rdf:resource="#school8"/>
<linkedin:role>Diploma Istituto Tecnico e Professionale</linkedin:role>
</linkedin:EducationExperience>
</linkedin:hasEducationExperience>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company51">
<linkedin:type>Società quotata</linkedin:type>
<linkedin:founded>2004</linkedin:founded>
<linkedin:about>Founded in 2004, Facebook’s mission is to give people the power to build community and bring the world closer together. Over 2 billion people use Facebook, Instagram, WhatsApp, or Messenger every month to stay connected with friends and family, to discover what’s going on in the world, and to share and express what matters to them. Facebook is defined by our unique culture – one that rewards impact. We encourage people to be bold and solve the problems they care most about. We work in small teams and move fast to develop new products, constantly iterating. The phrase “this journey is 1% finished” reminds us that we’ve only begun to fulfill our mission. As we evolve our journey to bring the world closer together, we stay true to the same core values to guide the way we work and the decisions we make every step of the way: be open, be bold, move fast, focus on impact, and build social value. For a full listing of our jobs, visit http://www.facebook.com/careers We created this space on LinkedIn to share information about careers at Facebook. This includes employee stories, current openings, and inside looks at particular teams and initiatives. We welcome relevant comments and discussion, so please be respectful. We reserve the right to moderate content, including off-topic, inaccurate, spam comments and posts. If you are seeking support for issues related to your Facebook account, please reference our Help Center (https://www.facebook.com/help) or Help Community (https://www.facebook.com/help/community).</linkedin:about>
<linkedin:headquarter>Menlo Park, CA</linkedin:headquarter>
<linkedin:placeName>Facebook</linkedin:placeName>
<linkedin:companySize>Più di 10.001 dipendenti</linkedin:companySize>
<linkedin:speciality>Connectivity, Artificial Intelligence, Virtual Reality, Machine Learning, Social Media, Augmented Reality, Marketing Science, Mobile Connectivity e Open Compute</linkedin:speciality>
<linkedin:website>http://www.facebook.com/careers</linkedin:website>
<linkedin:industry>Internet</linkedin:industry>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill106">
<linkedin:skillName>Test di penetrazione</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill123">
<linkedin:skillName>Lingua inglese</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasInterest>
<linkedin:Company rdf:ID="company53">
<linkedin:speciality>Recruitment, Staffing solutions, Resourcing, Career transition, Recruitment Process Outsourcing (RPO), Digital & Creative Services, Onboarding, contract recruitment e Contracting jobs</linkedin:speciality>
<linkedin:type>Società quotata</linkedin:type>
<linkedin:headquarter>London, England</linkedin:headquarter>
<linkedin:industry>Selezione e ricerca di personale</linkedin:industry>
<linkedin:about>Coronavirus update: We will continue to deliver our services to the high standards you would expect of us. We have adapted our way of working and have robust and flexible plans in place so we can continue to support you during this uncertain and difficult time. POWERING THE WORLD OF WORK, HELPING PEOPLE AND ORGANISATIONS ACHIEVE LASTING IMPACT. Hays is a leading global professional recruiting group, the expert at recruiting qualified, professional and skilled people worldwide, being the market leader in the UK and Asia Pacific and one of the market leaders in Continental Europe and Latin America. The c.11,000 people we employ around the world partner with clients and candidates to power the world of work. Every day our expert consultants help thousands of candidates find their next role, and they also help clients reshape workforces and deal with talent shortages. Last year we placed 77,000 people in permanent jobs and 244,000 people into temporary roles. For more information about our global network, strategy and Group financial results, visit http://haysplc.com.</linkedin:about>
<linkedin:companySize>5.001-10.000 dipendenti</linkedin:companySize>
<linkedin:website>http://www.haysplc.com</linkedin:website>
<linkedin:placeName>Hays</linkedin:placeName>
</linkedin:Company>
</linkedin:hasInterest>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill38">
<linkedin:skillName>Applicazioni Web</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp29">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company49">
<linkedin:founded>2007</linkedin:founded>
<linkedin:type>Società di persone</linkedin:type>
<linkedin:industry>Software</linkedin:industry>
<linkedin:about>Magenta was established in 2007 as a software company based in Florence, Italy; the company grows on a solid base of competence and experience that the founders acquired during several years of activity both in the industrial and in the academic context. Our core activity is to work together with other companies from various sectors to provide them consult on the most appropriate and innovative IT technologies for the application at hand. Magenta main specialties are: * Enterprise web applications based on the Java/JEE platform; * Image and video analysis applications: automatic surveillance and monitoring, smart cameras, digital recording, media databases, machine vision, object detection and recognition; * Software integration and middleware; * Security-related applications: cryptography, smart card, eToken, digital signature, secure authentication, security in computer networks; * Mobile applications for the Android and iOS platforms; * Verification and Validation (V&V) process in the automotive context (IEC dS61508 SIL0/4), software certification according to the main international standard (CENELEC EN50128) * We provide support and training for all the technologies used to develop our products. Magenta is member of POLIS and ICT-ROBOTICA, networks of IT companies based in Tuscany.</linkedin:about>
<linkedin:companySize>11-50 dipendenti</linkedin:companySize>
<linkedin:website>http://www.magentalab.it/</linkedin:website>
<linkedin:placeName>Magenta srl</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Firenze, Italia</linkedin:location>
<linkedin:endDate>mag 2012</linkedin:endDate>
<linkedin:startDate>mag 2011</linkedin:startDate>
<linkedin:role>Technical Writer</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:hasSkill rdf:resource="#skill115"/>
<linkedin:hasSkill>
<linkedin:Skill rdf:ID="skill124">
<linkedin:skillName>Multithreaded application development</linkedin:skillName>
</linkedin:Skill>
</linkedin:hasSkill>
<linkedin:hasWorkingExperience>
<linkedin:WorkingExperience rdf:ID="wrkExp26">
<linkedin:happenedAt>
<linkedin:Company rdf:ID="company46">
<linkedin:speciality>Alta Formazione, Università, Ricerca applicata allo sviluppo, Trasferimento tecnologico, Corsi di studio universitari, Master, Corsi di Formazioni, Consulenza aziendale, Servizi per le imprese, Laboratori universitari, Polo universitario, Comunicazione, Campus, Innovazione, Laboratori, Progetti europei e Istruzione</linkedin:speciality>
<linkedin:founded>1992</linkedin:founded>
<linkedin:type>Istruzione</linkedin:type>
<linkedin:industry>Ricerca</linkedin:industry>
<linkedin:about>Il Polo Universitario Città di Prato è uno strumento innovativo nel rapporto tra sapere universitario e tessuto economico locale. Dove il sapere dell'Università degli Studi di Firenze entra in simbiosi con il fare, della vocazione imprenditoriale pratese, per dare vita a stimoli, ricerche, scambi, risorse culturali nuove ed importanti.</linkedin:about>
<linkedin:companySize>11-50 dipendenti</linkedin:companySize>
<linkedin:website>https://www.pin.unifi.it</linkedin:website>
<linkedin:placeName>PIN Polo Universitario Città di Prato - Servizi didattici e scientifici per l'Università di Firenze</linkedin:placeName>
</linkedin:Company>
</linkedin:happenedAt>
<linkedin:location>Prato, Italia</linkedin:location>
<linkedin:endDate>Sep 2021</linkedin:endDate>
<linkedin:startDate>set 2015</linkedin:startDate>
<linkedin:role>Sviluppatore Web</linkedin:role>
</linkedin:WorkingExperience>
</linkedin:hasWorkingExperience>
<linkedin:URL>https://www.linkedin.com/in/alessandro-ferrini-it86/</linkedin:URL>
<linkedin:hasWorkingExperience>