-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (72 loc) · 3.48 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<title>Andrea Camisa</title>
<meta name="description" content="Personal webpage of Andrea Camisa" />
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- modernizr enables HTML5 elements and feature detects -->
<script type="text/javascript" src="js/modernizr-1.5.min.js"></script>
</head>
<body>
<div id="main">
<header>
<div id="logo"><h1>ANDREA<a href="#">CAMISA</a></h1></div>
<nav>
<ul class="lavaLampWithImage" id="lava_menu">
<li class="current"><a href="index.html">home</a></li>
<li><a href="about.html">about me</a></li>
<li><a href="publications.html">publications</a></li>
<li><a href="software.html">software</a></li>
</ul>
</nav>
</header>
<div id="site_content">
<div id="content">
<img id="photo" width="250" height="250" src="images/photo.jpg" alt="my_photo" />
<h1>Andrea Camisa - Postdoctoral Researcher</h1>
<p>Hi there!</p>
<p>I am a computer engineer and a postdoctoral researcher in Systems Engineering and AI at
<a href="https://dei.unibo.it/it/index.html" target="_blank">DEI department</a> of the University of Bologna (Italy).
I am also an Adjunct Professor at the <a href="https://disi.unibo.it/it" target="_blank">DISI department</a> where
I serve as a teacher for Automatic Control classes of the bachelor degree in Computer Engineering.
My current research focuses on distributed and mixed-integer optimization, neural networks and
reinforcement learning with various applications fields, ranging from mobile robotics and power systems to medicine.
I have been working within the ERC Starting Grant project
<a href="http://opt4smart.dei.unibo.it" target="_blank">OPT4SMART</a> since 2017.
</p>
<p>Head to <a href="about.html">about me</a> for a short resume</p>
<nav id="profiles">
<ul class="profileMenu">
<li><a href="https://www.linkedin.com/in/andrea-camisa/" target="_blank">LinkedIn</a></li>
<li><a href="https://www.researchgate.net/profile/Andrea-Camisa" target="_blank">Researchgate</a></li>
<li><a href="https://github.com/andreacamisa" target="_blank">GitHub</a></li>
<li><a href="https://orcid.org/0000-0001-8524-2540" target="_blank">ORCID</a></li>
<li><a href="https://shorturl.at/qtMU5" target="_blank">Google Scholar</a></li>
<li><a href="https://www.scopus.com/authid/detail.uri?authorId=57207034274" target="_blank">Scopus</a></li>
</ul>
</nav>
<!--<h2>News</h2>
<h2>Software projects</h2>-->
</div>
</div>
<footer>
<p>© 2022 Andrea Camisa | <a href="http://www.css3templates.co.uk">design from css3templates.co.uk</a></p>
</footer>
</div>
<!-- javascript at the bottom for fast page loading -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.min.js"></script>
<script type="text/javascript" src="js/jquery.lavalamp.min.js"></script>
<script type="text/javascript">
$(function() {
$("#lava_menu").lavaLamp({
fx: "backout",
speed: 700
});
});
</script>
</body>
</html>