© 2023 Hashnode
#validation
Introduction Fluent validation is a validation library for .Net applications that allows developers to implement validation rules. In this article, we'll explore how to use Fluent Validation with Asp.…
Shared from Danubius IT Solutions' tech blog. In this blog post, we will cover the most important file input validation techniques on the web, some attacks against them, and highlight the importance o…
Photo by Tim Gouw on Unsplash Laravel is a popular PHP framework that provides a robust and flexible validation system for handling user input and ensuring data integrity. Laravel’s validation system allows you to define validation rules f…
Every web developer is well-acquainted with the dual challenge of form validations - the need to safeguard the user experience with client-side validations, and the imperative to protect your database…
Writing forms is probably one of the most time-consuming tasks in front-end development. There are several libraries (like react-hook-form) that can help reduce some of the coding required, but I have…
In the previous post, I used event sourcing to handle commands and recreate the current state of the Artwork entity. In this post, I'll be adding validation to the value objects used to implement the command and event objects. The ArtworkId…
Challenge 1: Create a Navigation Bar with Multiple Tabs that Switch Between Views... in React Native! Here's what we are aiming for. I encourage you to try and replicate this before proceeding 👍! Ok…
When you look at the Validator source code in Laravel, you see that it either throws a ValidationException or returns an array of validated attributes: public function validate() { throw_if($this->fails(), $this->exception, $this); …
Introduction JSON Schema is a powerful tool that allows you to validate and define rules for your JSON data. Whether you're working with APIs, databases, or configuration files, creating a schema can ensure that your data is structured corr…
Introduction Ever had a tough time validating user inputs that you end up writing complex and messy codes? Then this article is for you. Hi, I’m Evans Allison and in this article, I’ll be sharing with…