FGFurkan Gulseninfurkangulsen.hashnode.dev·Feb 5, 2023 · 4 min readMaking a Simple Load-Balancer with HaProxyWelcome to another hashnode post, all of you. In this article, I will show you how to make a simple load-balancer from the servler I set up with express using haProxy. We will have two folders: app: A simple backend server to build with express ha...00
FGFurkan Gulseninfurkangulsen.hashnode.dev·Oct 29, 2022 · 3 min readAWS Relational Database Service (RDS) OverviewRDS stands for Relational Database Service. It’s managed DB service for DB use SQL as a query language. It allows you to create database in the cloud that are managed by AWS: Postgress MySQL Oracle MariaDB MSSQL Aurora (AWS proprietary database) ...00
FGFurkan Gulseninfurkangulsen.hashnode.dev·Oct 5, 2022 · 1 min readGit Rebase vs Git MergeGit Rebase and Git Merge are commands generally used to merge two branches. The difference here is the way they do this combination. When we typed “git Rebase”, all the changes of the feature branch will be added to the master branch one by one. He...00