All blog posts
- September 9, 2024
Using callbacks to achieve better component decoupling in React
Component Design
Decouple React components effectively by passing functions the right way, creating more testable and maintainable code. - March 17, 2024
Do not pass DTOs to UI components
Component Design
UI components should consume simplified data models tailored for the UI instead of raw back-end DTOs, with a data access layer providing the necessary mapping and abstraction. - November 6, 2023
Why doesn't autofill work on my form?
FormsAutofillAutocompleteBrowsers
You've implemented a beautiful login form, but the browser will not autofill username and password on it. What could be the reason? - January 28, 2023
Sentry integration woes with Next.js/Fly.io
SentryNext.jsFly.io
Integrating Sentry is usually a simple process, but when you need to pass the Sentry authentication token several layers down in your CI pipeline, it gets a bit complicated. - December 22, 2022
Adding Cognito user via AWS API
AWSCognito
A step-by-step guide on adding a Cognito user through the AWS API.