Published a year ago
Regex For Validating Emails|explainedValidating an email address at first glance seems like an easy task but just thinking about what qualifies to be used as the name section of the email or what should be considered a valid TLD could lead to complex implementations. To combat these issues software developers employ simple ...
Published a year ago
How To Render A String As A Blade Template (Laravel 9)Laravel 9 came with a lot of goodies and one of them is the ability to render a view from a blade template stored as a string. This could come from a database or dynamically generated from code. Anyways this is something you can achieve with the undocumented method but requires pai...
Published a year ago
Avoid Using Target Blank If You Canis an tag attribute that causes a link to open up in a new tab. There is also thus without the underscore , this causes every link you click on from the parent page to open up in the same new tab. You can set to any value and all links with the same target value will be previewed using...
Published a year ago
SSH Setup For Cloning GitHub RepositoriesIf you ever try cloning a repository using the SSH option you might end up with an error along the lines of . This error may show up for many different reasons. One of the commonest reasons is that you are yet to set up GitHub authentication using SSH. In this tutorial, we will lo...
Published a year ago
GitHub: We Weren’t Able To Create The Release For You. Make Sure You Have A...If you try to create a new release, you might receive the following error with no obvious instruction on how to rectify it. This error, however, comes about if you are yet to create a tag from when you pushed your changes. You can create your tag right within the Git...