Skip to content

Mohcin Bounouara

Thoughts about software engineering and life

Do accessibility

Bringing accessibility into your frontend development, using semantic HTML, ARIA labels, descriptive alt text, and better error handling.. not only makes you a better developer but also shows that you care for others. This also brings a sense of joy. I’ve been focusing on this for a while now, and I’m truly grateful for it. Continue reading “Do accessibility”

Handling Multiple Forms with Different Field Names Using a Single Endpoint

The Problem: Suppose you have an endpoint to send data to the database, and in your project, you have two forms with the same field(s), let’s say a field named “name”. How can you manage this without creating redundant and complex code? The Initial Solution: A quick solution might be to create two separate forms Continue reading “Handling Multiple Forms with Different Field Names Using a Single Endpoint”