-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (101 loc) · 4.4 KB
/
index.html
File metadata and controls
104 lines (101 loc) · 4.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Francesco Maccarini</title>
<meta
name="description"
content="Personal website of Francesco, researcher in computer science for music applications."
/>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<div class="brand">
<a href="#top" class="brand-link">
<span class="brand-name">Francesco Maccarini</span>
<span class="brand-tagline">Researcher in Music Informatics and Digital Musicology</span>
</a>
</div>
<button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false">
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
</button>
<nav class="nav" aria-label="Main navigation">
<ul class="nav-list">
<li><a href="#about">About</a></li>
</ul>
</nav>
</div>
</header>
<main id="top">
<section id="about" class="section section-hero">
<div class="container hero-inner">
<div class="hero-text">
<p class="eyebrow">Computer Science for Music</p>
<h1>Francesco Maccarini</h1>
<p class="lead">
I am a researcher in Music Informatics and Digital Musicology, with a background in Applied Mathematics, Computer Science and
Statistics.
</p>
<p>
My research interests revolve around Digital Musicology, Music Information Retrieval (MIR), Computational Music Analysis, and
Generative Music AI for human-machine co-creativity. I am interested in using technology to respond to musicological problems, and
in analyzing complex music data with Artificial Intelligence (AI) and Machine Learning (ML) techniques, adopting a Digital Humanities
approach. I am also interested in studying Artificial Intelligence (AI) as an entity integrated in a human creative process, acting either as
a creativity-enhancement tool or as an interactive co-creative partner.
</p>
<div class="hero-actions">
<a
class="button button-icon primary"
href="https://www.linkedin.com/in/francesco-maccarini"
target="_blank"
rel="noreferrer"
>
<i class="fa-brands fa-linkedin-in button-icon-symbol" aria-hidden="true"></i>
<span>LinkedIn</span>
</a>
<a class="button button-icon ghost" href="https://github.com/fmacca" target="_blank" rel="noreferrer">
<i class="fa-brands fa-github button-icon-symbol" aria-hidden="true"></i>
<span>GitHub</span>
</a>
<a class="button button-icon ghost" href="https://gitlab.com/f.macca" target="_blank" rel="noreferrer">
<i class="fa-brands fa-gitlab button-icon-symbol" aria-hidden="true"></i>
<span>GitLab</span>
</a>
<a
class="button button-icon ghost"
href="https://scholar.google.com/citations?user=QUIAv0QAAAAJ"
target="_blank"
rel="noreferrer"
>
<i class="fa-solid fa-graduation-cap button-icon-symbol" aria-hidden="true"></i>
<span>Google Scholar</span>
</a>
</div>
</div>
<div class="hero-aside">
<div class="profile-circle">
<img
src="assets/Francesco_Maccarini.jpg"
alt="Portrait of Francesco Maccarini"
class="profile-photo"
loading="lazy"
/>
</div>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>