-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (175 loc) · 6.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Stefano Armenes</title>
<link
href="https://fonts.googleapis.com/css?family=Bowlby+One+SC|Roboto+Mono:400,700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>Stefano Armenes</h1>
<div class="wrapper">
<div class="bio-wrapper">
<img
class="photo"
src="https://avatars1.githubusercontent.com/u/14802795?v=3&s=460"
/>
<div class="short-bio">
<p class="p-body">
Computer Science enthusiast. I got my B. Sc. degree in Computer
Science on December 12, 2012 from Università degli Studi di Milano.
</p>
<p class="p-body">
I have 13 years of experience in the IT industry, my main goal is to
write high quality software.
</p>
<p class="p-body">
Lately, I've been diving into cybersecurity, focusing on reverse
engineering and binary exploitation.
</p>
<p class="p-body">
I'm a
<img
class="pwn-flag"
src="https://pwn.college/themes/dojo_theme/static/img/dojo/green.svg?d=26301f10"
/>
on
<a href="https://pwn.college/hacker/45076" target="_blank"
>pwn.college</a
>, and I'm still working on it: <br />
</p>
<ul>
<li>✅ 🟠 orange belt (cybersecurity and web exploit)</li>
<li>
✅ 🟡 yellow belt (reverse engineering, memory errors,
shellcoding)
</li>
<li>
✅ 🟢 green belt (race conditions, sandboxing, kernel security)
</li>
<li>
🚧 🔵 blue belt (ROP, heap exploitation, file struct exploitation,
kernel exploitation)
</li>
</ul>
<p class="p-body">
And also studying to complete the CPTS path on HackTheBox
</p>
</div>
<div class="projects">
<h2>Blogposts</h2>
<ul>
<li>
<a
href="https://www.nearform.com/blog/discover-how-to-write-a-chatgpt-slack-bot-in-node-js/"
target="_blank"
>Discover How to Write a ChatGPT Slack Bot in Node.js</a
>
- May 2023
</li>
<li>
<a
href="https://medium.com/@boomimagestudio-techblog/how-to-boost-efficient-designer-developer-collaborations-in-tech-companies-6130c35e9093"
target="_blank"
>How to Boost Efficient Designer-Developer Collaborations in
Tech Companies</a
>
- September 2021
</li>
<li>
<a
href="https://dev.to/stearm/thoughts-about-scalable-and-maintainable-frontend-architectures-3kok"
target="_blank"
>Thoughts about scalable and maintainable frontend
architectures</a
>
- January 2020
</li>
<li>
<a
href="https://dev.to/stearm/another-var-vs-let-vs-const-27g1"
target="_blank"
>Another var vs let vs const</a
>
- January 2020
</li>
</ul>
<h2>Talks</h2>
<ul>
<li>
<a href="#"> An introduction to GraphQL</a>
- remote internal meetup @
<a href="http://boom.co/" target="_blank">BOOM</a>, March 12th
2021
</li>
<li>
<a href="#"> Sleep quiet nights using types</a>
- remote internal meetup @
<a href="http://boom.co/" target="_blank">BOOM</a>, September 12th
2020
</li>
<li>
<a
href="https://speakerdeck.com/stearm/a-gentle-introduction-to-functional-programming"
target="_blank"
>
A gentle introduction to functional programming</a
>
- remote internal meetup @
<a href="http://boom.co/" target="_blank">BOOM</a>, April 29th
2020
</li>
<li>
<a
href="https://speakerdeck.com/stearm/reactjs-milano-intersection-2019"
target="_blank"
>
About ReactJS Milano community</a
>
- Intersection conference Milan, October 2nd 2019
</li>
<li>
<a
href="https://www.youtube.com/watch?v=oCuiY5qm9x8"
target="_blank"
>
La creatività nell'innovazione: la sfida di Freeda</a
>
- Campus Party Italia, July 26th 2019
</li>
<li>
<a
href="https://speakerdeck.com/stearm/react-with-super-powers-using-typescript"
target="_blank"
>
React with super powers using TypeScript</a
>
- ReactJS Milano, April 3rd 2018
</li>
</ul>
</div>
</div>
<div class="contacts-wrapper">
<h2>Find me on</h2>
<a href="https://github.com/stearm" target="_blank">GitHub</a>
<a href="https://dev.to/stearm/" target="_blank">dev.to</a>
<a href="https://www.linkedin.com/in/stefanoar/" target="_blank"
>LinkedIn</a
>
<a href="https://twitter.com/0xste" target="_blank">Twitter</a>
<a href="https://www.flickr.com/photos/stefanoarmenes/" target="_blank"
>flickr</a
>
<a href="https://www.instagram.com/ste_a/" target="_blank">Instagram</a>
</div>
</div>
</body>
</html>