-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
111 lines (106 loc) · 4.9 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Edoardo's webpage</title>
<link href="custom.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-primary">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="my_logo_primary.png" alt="My Logo" height="40">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="research.html">Research</a>
</li>
<li class="nav-item">
<a class="nav-link" href="teaching.html">Teaching</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- About Me Section -->
<section id="about" class="py-5" style="background-color: var(--bg-color);">
<div class="container">
<h2 class="mb-4 text-center">About Me</h2>
<div class="container py-5">
<!-- Education Section -->
<h2>Education</h2>
<ul class="list-group mt-3">
<li class="list-group-item">
PhD student in Computational Mathematics and Decision Sciences at University of Pavia (MICROCARD scolarship)
<br>Supervisor: Prof. Luca Franco Pavarino
<br>Co-Supervisor: Prof. Simone Scacchi
<span class="float-end">October 2021 - Present</span>
</li>
<li class="list-group-item">
Master Degree in Physical Sciences (Quantum Technologies curriculum) at University of Pavia - Pavia (PV)
<br>Final mark: 110/110 cum laude
<br>Thesis title: Local Isotropic Number Preserving Interaction in Discrete Time Dirac Quantum Cellular Automata
<br>Thesis supervisor: Prof. Paolo Perinotti
<br>Thesis co-supervisor: Dr. Alessandro Bisio
<span class="float-end">October 2019 - September 2021</span>
</li>
<li class="list-group-item">
Bachelor Degree in Physics at University of Pavia - Pavia (PV)
<br>Final mark: 109/110
<br>Thesis title: Quantum State Discrimination by Local Operations and Classical Communication
<br>Thesis supervisor: Prof. Paolo Perinotti
<span class="float-end">October 2016 - September 2019</span>
</li>
<li class="list-group-item">
Scientific Diploma at Liceo Scientifico Antonelli- Novara (NO)
<br>Final mark: 100/100 cum laude
<span class="float-end">September 2011 - June 2016</span>
</li>
</ul>
<!-- Technology Skills Section -->
<h2 class="mt-5">Technical Skills</h2>
<p class="mt-3">
<strong>Programming Languages:</strong> C, C++, Python (modules: sympy, numpy, scipy, Qiskit, tensorflow, pytorch, JAX), MATLAB, Julia, Bash, LaTeX, VHDL.
<br><strong>Operative systems:</strong> Linux, Windows, OsX.
<br><strong>Other skills:</strong> Parallel computing (MPI), GPU (CUDA), HPC on clusters, Arduino, HTML and basic web design (as you can see from this webpage :)), basic knowledge of FPGA and electronic devices.
</p>
</div>
<div class="row">
<div class="col-md-5">
<figure>
<img src="me_board.jpg" alt="My Picture" style="max-width: 100%;">
<figcaption>How to recognize me.</figcaption>
</figure>
</div>
<div class="col-md-2"></div> <!-- This empty column adds horizontal spacing -->
<div class="col-md-5">
<figure>
<img src="me_1.jpeg" alt="My Picture" style="max-width: 100%;">
<figcaption>Sometimes I happen to work.</figcaption>
</figure>
</div>
</div>
<!-- Modified button with an external link -->
<div class="text-center">
<a class="btn btn-primary my-4" href="https://www.youtube.com/watch?v=1MVw4dMq8Bk" target="_blank" style="background-color: var(--primary-color); border-color: var(--primary-color);">Click here to see me in action</a>
</div>
</div>
</section>
<!-- Bootstrap JavaScript and Popper.js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>