Nice to meet you! I'm Tommaso from Italy 🇮🇹. I'm currently working as Full Stack Web Developer @Forge-Srl. I previously worked at 7Pixel. I graduated in Computer Science at Università degli Studi dell'Insubria.
I specialize in developing scalable web platforms using Nest.js, Angular, and PostgreSQL (and a sprinkle of serverless things), with a focus on building maintainable and reproducible cloud infrastructures using AWS CDK. I also have a background in mobile app development for both Android and iOS.
cat programmer.tsimport {ProgrammingLanguage} from '../languages'
type Programmer = {
languages: ProgrammingLanguage[] // TODO: Proficiency in each language is missing
frameworks: string[]
tools: string[]
operatingSystems: string[]
drinksCoffee: boolean
}
export const Tommaso: Programmer = {
languages: ['TypeScript', 'JavaScript', 'Java', 'C#', 'HTML', 'CSS', 'Python', 'Brainfuck'],
frameworks: ['Nest.js', 'AWS CDK', 'Angular', 'Lit'],
tools: ['Fleet', 'IntelliJ IDEA', 'VS Code', 'Sublime', 'Git', 'Ghostty', 'DBeaver', 'Chrome'],
operatingSystems: ['macOS', 'Manjaro Linux', 'Ubuntu Linux', 'Windows'],
drinksCoffee: true
}
