Angular 17 Posted on November 23, 2023November 24, 2023 by Maiko Angular 17 dropped around 8th November 2023. I had not been following up on new Angular features for a few months so i was very...
Create a credentials based signup/login using Next.js 14 and NextAuth.js Posted on November 15, 2023November 15, 2023 by Maiko NextJs is a full-stack React.js framework built by the team at Vercel. Its been around for quite a while now with the latest version 14...
Create a simple REST API using Spring Boot Posted on November 9, 2023November 15, 2023 by Maiko Spring boot is undeniably the most popular Java framework. Its also really confusing to a lot of people on the difference between Java Spring and...
My favorite Typescript Utility Types Posted on November 7, 2023November 7, 2023 by Maiko My first ever experience with a strongly typed language was with Java. It was not a pleasant experience. The main class code alone was not...
Upgrading an Angular application from Angular v6 to v15 Posted on November 4, 2023November 4, 2023 by Maiko I know, you don’t have to ask me if I’m crazy or if i enjoy suffering or I’m idle. And yes i was idle. Its...
Creating an Angular and NestJs project using Nx Posted on April 17, 2023November 21, 2023 by Maiko Often enough you may find yourself with a project that comprises 2 parts. A front-end application most likely an SPA built with Angular, React or...
Using Angular reactive forms to create a custom form builder Posted on December 15, 2022December 2, 2023 by Maiko Most if not all web applications you build will require one or more forms. Forms are integral to any application as they allow us to...
Qwik, the instant loading resumable JS framework. Posted on December 9, 2022December 9, 2022 by Maiko I know what you are thinking. I did too. Not another JavaScript framework! I know exactly how you feel. The JavaScript ecosystem has been crazy...
Angular Standalone Components Posted on November 30, 2022November 30, 2022 by Maiko For a while the Angular community had been asking for standalone components i.e components that are independent and do not need a module(NgModule). With Angular...
MySQL Transactions Posted on November 28, 2022November 18, 2023 by Maiko MySQL transaction is a collection of statements or operations that perform as a single unit that can be committed or rolled back. By commit i...