I'm a Frontend Engineer based in Amsterdam, Netherlands, with a computer science background and working knowledge of UX design and web accessibility principles. I contributed to Mews, Spotify and Warner Bros. Discovery.
I enjoy creating simple, clean and creative user interfaces using the latest web technologies.
As a hobby I write articles about web programming topics on Dev.to and share my photography on Instagram @ale3oula. I also offer professional photography booking services — see my photography page.
Bite-sized dev notes on JavaScript, CSS & more.
// Before 😬 const city = user && user.address && user.address.city; // After ✨ const city = user?.address?.city;
Safely read deeply nested values without a pile of &&.