-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
314 lines (280 loc) · 12.1 KB
/
index.html
File metadata and controls
314 lines (280 loc) · 12.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emanuele's homepage</title>
<style>
:root {
--primary: #60a5fa;
/* Soft Blue */
--bg-dark: #0f172a;
/* Deep Space Navy */
--card-bg: #1e293b;
--base-font-size: 2.1rem;
/* Slate Gray */
--text-main: #f1f5f9;
--text-dim: #94a3b8;
--accent: #38bdf8;
}
body {
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-dark);
color: var(--text-main);
line-height: 1.6;
margin: 0;
padding: 0;
}
/* Hero Header Section */
header {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
padding: 4rem 2rem;
text-align: center;
border-bottom: 1px solid #334155;
}
.profile-container {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
header h1 {
font-size: 3.5rem;
margin: 0;
letter-spacing: -1px;
background: linear-gradient(to right, #fff, var(--primary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.profile-img {
width: 180px;
height: 180px;
border-radius: 50%;
object-fit: cover;
border: 4px solid var(--card-bg);
box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}
.side-image {
position: fixed;
top: 50%;
transform: translateY(-50%);
width: 200px;
/* Adjust based on your needs */
z-index: -1;
/* Keeps them behind your main content cards */
opacity: 0.4;
/* Makes them subtle so they don't distract */
}
.left-side {
left: -50px;
}
.right-side {
right: 300px;
}
/* Hide on mobile to prevent overlap */
@media (max-width: 1300px) {
.side-image {
display: none;
}
}
/* Layout */
main {
max-width: 900px;
margin: 2rem auto;
padding: 0 1.5rem;
}
section {
background: var(--card-bg);
margin-bottom: 2rem;
padding: 2rem;
border-radius: 12px;
/*font-size: 1.3rem;*/
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
border: 1px solid #334155;
}
h2 {
color: var(--primary);
border-bottom: 1px solid #334155;
padding-bottom: 0.5rem;
margin-top: 0;
}
/* List Styling */
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 1rem;
padding-left: 1.2rem;
position: relative;
}
li::before {
content: "▹";
position: absolute;
left: 0;
color: var(--accent);
}
/* Links */
a {
color: var(--accent);
text-decoration: none;
transition: all 0.2s ease;
}
a:hover {
color: white;
text-decoration: underline;
}
.badge {
background: #334155;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.85rem;
color: var(--primary);
}
footer {
text-align: center;
padding: 3rem 1rem;
color: var(--text-dim);
font-size: 0.9rem;
}
/* Responsive adjustments */
@media (min-width: 768px) {
.profile-container {
flex-direction: row;
text-align: left;
justify-content: space-between;
}
}
</style>
</head>
<body>
<header>
<div class="profile-container">
<div>
<h1 style="background: none; -webkit-text-fill-color: unset; color: white;">Emanuele De Rubeis</h1>
<p style="color: var(--text-dim); font-size: 1.2rem;">Ciao! Welcome to my personal website!</p>
</div>
<img src="images/cv_photo.jpg" alt="Emanuele" class="profile-img">
</div>
<nav style="margin-top: 2rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;">
<a href="#about" style="color: var(--accent); text-decoration: none; font-size: 1.1rem;">About Me</a>
<a href="#skills" style="color: var(--accent); text-decoration: none; font-size: 1.1rem;">Skills</a>
<a href="#publications"
style="color: var(--accent); text-decoration: none; font-size: 1.1rem;">Publications</a>
<a href="#activities" style="color: var(--accent); text-decoration: none; font-size: 1.1rem;">Activities</a>
<a href="#contact" style="color: var(--accent); text-decoration: none; font-size: 1.1rem;">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Italian astrophysicist, currently working as a post-doctoral researcher at the Hamburg Observatory
(Hamburg University, Germany). I like
to observe non-thermal phenomena in radio galaxies and galaxy clusters at different radio wavelenghts.
Together with this, I also work in HPC and GPU enabling of softwares for radio interferometric
imaging.
</p>
<p>I love sports (huge football and tennis fan), music, and crime novels.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Data reduction techniques and softwares for several radio interferometers (e.g., LOFAR with
international baselines, VLA, uGMRT, MeerKAT), both in total intensity and polarization</li>
<li>Familiar with several programming languages and interfaces (C/C++, Python, Bash, CWL, Fortran, IDL,
definetly *not* HTML), in particular
for parallelization (MPI, OpenMP) and GPU offloading (CUDA, HIP).
</li>
<li>Developer of Radio Imaging Code Kernels (<a href="https://github.com/ICSC-Spoke3/RICK"
target="_blank">RICK</a>), to parallelize and accelerate algorithms for interferometric imaging
</li>
</ul>
</section>
<div class="side-image left-side">
<img src="images/trg_fil.png" alt="Original TRG filaments">
</div>
<div class="side-image right-side">
<img src="images/psz2g096.png" alt="Original TRG filaments">
</div>
<section id="publications">
<h2>Publications</h2>
Below there is a short list of my last papers as <b>first author</b>. To see all the papers in which I
contributed <br>
<p><a href="https://ui.adsabs.harvard.edu/search/fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=%20author%3A%22De%20Rubeis%2C%20E%22&sort=date%20desc%2C%20bibcode%20desc&p_=0"
target="_blank">→ View full ADS bibliography</a></p>
<ul>
<li>
<strong>Revealing the intricacies of radio galaxies and filaments in the merging galaxy cluster
Abell 2255. II. Properties of filaments using multi-frequency radio data
</a></strong><br>
<small>Dec 2025 | <a href="https://ui.adsabs.harvard.edu/abs/2025arXiv251219471D/abstract"
target="_blank">View Paper</a></small>
</li>
<li>
<strong>Revealing the intricacies of radio galaxies and filaments in the merging galaxy cluster
Abell
2255. I. Insights from deep LOFAR-VLBI sub-arcsecond resolution images</a></strong><br>
<small>May 2025 | <a href="https://ui.adsabs.harvard.edu/abs/2025arXiv250513595D/abstract"
target="_blank">View Paper</a></small>
</li>
<li>
<strong>Accelerating radio astronomy imaging with RICK</strong><br>
<small>Jan 2025 | <a href="https://ui.adsabs.harvard.edu/abs/2025A%26C....5000895D/abstract"
target="_blank">View Paper</a></small>
</li>
<li>
<strong>Magnetic fields in the
outskirts of PSZ2 G096.88+24.18 from depolarization analysis of radio relics</strong><br>
<small>Oct 2024 | <a href="https://ui.adsabs.harvard.edu/abs/2024A%26A...691A..23D/abstract"
target="_blank">View Paper</a></small>
</li>
</ul>
</section>
<section id="activities">
<h2>Activities</h2>
<ul>
<li>Post-doctoral researcher (Nov. 2025 - Today) at the Hamburg Observatory (Hamburg University)
</li>
<br>
<li>PhD in Astropysics (Nov. 2022 - Oct. 2025) at the University of Bologna and at the Istituto di
Radioastronomia (INAF-IRA) (funded by Italian Research Center for High-Performance
Computing <a
href="https://www.supercomputing-icsc.it/en/spoke-3-astrophysics-cosmos-observations-en/"
target="_blank">Fondazione ICSC</a>), entitled "Radio astronomy with LOFAR-VLBI on new
generation HPC systems"</li>
<br>
<li>Winner of PhD mobility grant “Marco Polo” from the University of Bologna to spend 3 months in
Leiden
(Netherlands, March 15th - June 15th 2024)</li>
<br>
<li>Contributed talks in conferences/workshops, most of them of international relevance.</li>
<br>
<li>Tutor for the course "MULTIWAVELENGTH ASTROPHYSICS LABORATORY-Modulo 5" at the faculty of
"Astrophysics and cosmology" (Università di Bologna); support to the students on calibration and
imaging of radio astronomy, Jansky Very Large Array (VLA) data using CASA reduction software
(Sept -
Oct 2023 and 2024).</li>
<br>
<li>Tutor at the PhD school "Computing and High Performance Computing in Astronomy and Astrophysics"
held in Bologna; support to the participants for the MPI parallelism and CUDA programming
architecture for GPU offloading (July 2024).</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>For questions or collaboration: <a
href="mailto:emanuele.de.rubeis@uni-hamburg.de">emanuele.de.rubeis@uni-hamburg.de</a></p>
<p>Github: <a href="https://github.com/emaderubeis" target="_blank">emaderubeis</a></p>
<p>Twitter: <a href="https://x.com/e_derubeis" target="_blank">@e_derubeis</a></p>
<p>Linkedin: <a href="https://www.linkedin.com/in/emanuele-de-rubeis-10522236b/"
target="_blank">Emanuele De
Rubeis</p>
</section>
</main>
<footer>
<p>© 2026 Emanuele De Rubeis</p>
</footer>
</body>
</html>