-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (121 loc) · 6.2 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
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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nicolò Ciraci</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>📜 Nicolò Ciraci</h1>
</header>
<div class="content">
<nav class="sidebar" id="sidebar">
<ul>
<li><a href="#work-experiences">💼 Work Experiences</a></li>
<li><a href="#education">🎓 Education</a></li>
<li><a href="#github-contributions">🔧 GitHub Contributions</a></li>
</ul>
</nav>
<main>
<section id="work-experiences">
<h2>💼 Professional Work Experiences</h2>
<div class="job">
<h3>Innovation Researcher</h3>
<p><em>Elmec Informatica (September 2023 - Present, Varese Area)</em></p>
<p>Specializing in Generative AI and Kubernetes technologies. Focusing on Cluster API, Kubernetes security, Kubernetes multi tenancy and GPU utilization.</p>
</div>
<div class="job">
<h3>Security Architect</h3>
<p><em>CybergON@Elmec Informatica (November 2019 - September 2023, Varese Area)</em></p>
<p>Developed CyberSecurity services, implemented IDS, SIEM, Edge Computing, and Cloud Computing solutions.</p>
</div>
<div class="job">
<h3>Security Specialist</h3>
<p><em>Elmec Informatica (January 2018 - November 2019, Varese Area)</em></p>
<p>Designed authentication methods, managed SIEM infrastructure, conducted red teaming.</p>
</div>
<div class="job">
<h3>iOS Developer</h3>
<p><em>150UP (October 2013 - December 2017, Milano)</em></p>
<p>Developed iOS applications and created back-end infrastructure for client-server apps.</p>
</div>
</section>
<section id="education">
<h2>🎓 Educational Background and Achievements</h2>
<div class="education-item">
<h3>Bachelor Degree in Computer Science</h3>
<p><em>Università degli studi di Milano (October 2013 - December 2017)</em></p>
<p>Thesis: Verifying system integrity using Intel SGX. Courses focused on Operating Systems, Security and Privacy, Cryptography, Algorithms and Data Structures, Programming Languages, and Operational Research.</p>
</div>
<div class="education-item">
<h3>High School Diploma with IT Specialization</h3>
<p><em>ISIS John Maynard Keynes (2008 - 2013, Gazzada Schianno, Varese)</em></p>
</div>
</section>
<section id="github-contributions">
<h2>🔧 GitHub Projects and Contributions</h2>
<div id="github-summary">
⏳
</div>
</section>
</main>
<nav class="right-sidebar" id="right-sidebar">
<section id="profile">
<h2>📇 Contact Information and Profiles</h2>
<div class="profile">
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Location:</strong> Varese, Italy</p>
<p><strong>LinkedIn:</strong> <a href="https://linkedin.com/in/ciracinicolo" target="_blank">linkedin.com/in/ciracinicolo</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/ciracinicolo" target="_blank">github.com/ciracinicolo</a></p>
</div>
</section>
<section id="skills">
<h2>🛠️ Technical Skills and Expertise</h2>
<div class="skills-list">
<span>Linux</span>
<span>macOS</span>
<span>Windows</span>
<span>HPE</span>
<span>Proxmox</span>
<span>vim</span>
<span>Golang</span>
<span>python</span>
<span>bash</span>
<span>k8s</span>
<span>k3s</span>
<span>capi</span>
</div>
</section>
<section id="languages">
<h2>🌐 Languages Proficiency Levels</h2>
<ul>
<li>Italian: <span class="language-level">★★★★★</span></li>
<li>English: <span class="language-level">★★★★☆</span></li>
</ul>
</section>
<section id="other-activities">
<h2>🎤 Extracurricular Activities and Leadership</h2>
<h3>President at COVO (2017-2019, Varese)</h3>
<p>Led a youth association organizing recreational and cultural events to foster the creative and educational potential of Varese's youth.</p>
</section>
<section id="certifications">
<h2>🖥️ Certifications</h2>
<ul>
<li><a href="https://www.credly.com/badges/7de75c21-e9cc-466d-9a6c-2b92327d9e1f/linked_in_profile" target="_blank">CKA</a></li>
</ul>
</section>
</nav>
</div>
</div>
<div id="status-bar">
<span id="emoji">😺</span>
<span class="blink-cursor"></span>
</div>
<div id="toggle-sidebar" class="toggle-button">☰</div>
<div id="toggle-right-sidebar" class="toggle-button">👤</div>
<script src="script.js"></script>
</body>
</html>