from datetime import date
born = date(1998, 2, 20)
def get_current_age(born):
today = date.today()
return today.year - \
born.year - \
((today.month, today.day) < \
(born.month, born.day))
class Matteo:
age = get_current_age()
title = 'Data Scientist'
university = ['PoliMi', 'KTH']
work_experience = ['Huawei', 'Lunar']
language = ['C', 'Java', 'Python', 'Lua', 'SQL', 'html', 'Go']
me = Matteo()
Pursued a master's double degree in Data Science at PoliMi/KTH within the EIT Digital Program. Currently working as a Data Scientist/ML Engineer at Lunar in Copenhagen. I enjoy words (former classicist here), e-sports analytics and bots.
- My website: realized with Notion and Fruition;
- Data Driven Storytelling: together with Mattia, Carlo and Virginia, I wrote a report on sustainable fishing leveraging open data;
- Potter Time: a 25h clock, basically I hacked time;
- Museec: an AI generated museum exhibition at your fingertips, hit me up if you want an invite to try it;
- Doink!: an 80s inspired Android 2D game written in LUA. Can be downloaded from the Play Store at this link. Fun fact: the name comes from a popular move in Rocket League.
- esports-stats-website: a Streamlit app to visualize 10 years of esports data, following FBRef and StatsBomb visualizations styles.
- kowalski-core: a python based read-it later cli, powered by LLMs.