Post in linkedin with the event of my blog post using Github action

Objective The purpose of this implementation is to automate the process of sharing my blog posts on LinkedIn. Whenever I publish a new post on my blog, it will automatically be shared as a LinkedIn post. This helps streamline my workflow and saves time by eliminating the need for manual posting on LinkedIn. Introduction For this implementation, the application utilizes the LinkedIn API along with additional settings configured in GitHub Actions....

November 7, 2024 · 3 min · Md Abid Khan

NextJS app deployment using Gitlab CI

NextJS app deployment using Gitlab CI Streamline the deployment of your Next.js application effortlessly with GitLab CI automation. Enhance efficiency and reduce deployment hassles with a seamless integration approach. Let’s dive in. TL;DR Issue: In the NextJS deployment on production, downtime occurs due to server building. Pulling the updated code from the Git repository and running next build on the production server leads to the unavailability of the application. Resolution: To mitigate this issue, a proposed solution involves building the application in a separate environment and storing the successful build in a Docker registry....

November 20, 2023 · 2 min · Md Abid Khan

Load Balancing Playground with Nginx and Docker

Load Balancing Playground with Nginx and Docker Introduction: Assuming you have already heard the term ‘Load Balancing’. If not, then refer you to learn a very basic about the technique from this load balancing wiki. The concept of the task is to make multiple App servers and a Load balancer to balance the traffic. In this write-up, I am sharing my experience to start learning load balancing. Background: Different VMs can be created for the app servers and the load balancer in the virtual machine....

March 13, 2022 · 3 min · Md Abid Khan