Published in InterviewNoodle·Nov 1, 20213 Common Software Architecture Patterns and When To Use ThemHave you ever thought about how software applications can scale? Is there any room to keep up with the user demands without affecting the whole system? The deciding factor is the usage of a software architecture pattern that the application has implemented. Basically, a software architecture pattern refers to the fundamental…Software Development5 min read
Published in AWS in Plain English·Oct 19, 2021How to Deploy a Spring Boot Application to AWS Elastic BeanstalkIn this article, we will learn how to deploy a Spring Boot application into AWS Elastic Beanstalk Service. To run a Spring Boot application, we have to provide a database to connect to it. For that purpose, we will use AWS RDS (Relational Database Service). After our application is running…AWS3 min read
Published in AWS in Plain English·Oct 15, 2021How to deploy a Laravel project into a AWS EC2 instanceIn this article, we’ll learn how to set up an AWS EC2 instance to prepare for the deployment of your Laravel project. Prerequisites AWS account AWE EC2 (Elastic Cloud Computing) Linux (Ubuntu) instance Your Laravel project Deployment process Log in into your EC2 instance using ssh as root. Update your libs $apt update Apache web server To install apache…Laravel3 min read
Mar 16, 2021How to create a Database Seeder in Spring BootIntroduction Spring Boot is an awesome Java web framework that is very comparable to Laravel web framework (in PHP). They both aim at making web application development fast and less rigorous for a developer. Laravel has a cool feature that allows developers to create Seeders — i.e. default data to be…Spring Boot2 min read
Sep 4, 2020A utility-first CSS framework for rapid UI development : Tailwind CSSWhat is Tailwind CSS Tailwind CSS is a utility-first css framework. It isn’t similar to other css framework. It doesn’t offer predesigned components like buttons, cards, alerts… Instead, Tailwind provides low-level utility classes that let you build completely custom designs without ever leaving your HTML Why use Tailwind CSS Maybe you still not convinced to use Tailwind and…CSS5 min read
May 10, 2020Build a React Front-End interacting with Hasura Back-End trough GraphQL— Part 2Welcome everyone, If you didn’t read the first part, here is the link : Part 1 In he first part, we have created the server, Backend with Hasura and GraphQL, so we need to build a Frontend to consume it. …React3 min read
May 7, 2020How to Create a Scalable and extensible Back-End instantly with HASURA — Part 1Introduction In this tutorial, I will show you how to create a complete Back-End from scratch, using Hasura.API3 min read