My name is Akshay Sushir & I'm Full Stack developer mostly working on JavaScript, Python, Node, React, PostgreSQL, AWS & MongoDB. I like to write blog about coding, problem solving & cloud computing.
We’ve been told that "Automate Everything" is the gold standard of modern DevOps. But after two years of wrestling with complex GitHub Action workflows, I’ve realized a hard truth: Most complex CI/CD
If you spend a lot of your day in Microsoft Teams, that default ringtone can start to feel a little… repetitive. Whether you're working from home or in the office, the sound of an incoming call can quickly become just background noise — unless you pe...
In the fast-paced world of software engineering, where deadlines loom and code never sleeps, the importance of maintaining both mental and physical health often takes a backseat. However, neglecting these aspects can lead to burnout, decreased produc...
Oracle procedures are a powerful way to encapsulate complex logic and functionality. They can be used to perform a variety of tasks, such as data manipulation, reporting, and business logic. In this blog post, we will show you how to execute an Oracl...
Are you a developer working with Git and looking to learn about Git cherry-pick? If yes, then you are in the right place. Git cherry-pick is a powerful command that allows you to pick and apply a single commit from one branch to another. In this arti...
Hi 👋, today I'll share SQL query that is useful to get record from past hours, days or months. I think this is useful for someone who is new to SQL. There is different way to do so on various SQL databases. I ragularly use mysql db and I have to alw...
In this article, I write down a quick git commands cheat sheet. It will include commands that developers use everyday like git add, git commit, git pull, git fetch and also shared other useful commands of git. Git Command I Use All The Time - Git Che...
Hi 👋! As a software developer we always need some platform to test and deploy our code, either it's front end app or a back end application. Today I will share free hosting platform list so you guys can enjoy free hosting services to test and deploy...
Hello folks 👋, Today I share my experience about how I achieved a massive salary hike of 500% from the current CTC. Let's talk about details and things you have to consider when negotiating salary. The thing you have to keep in mind while applying f...
Hello folks 👋, today we are implementing Quicksort algorithm. Quicksort is an in-place sorting algorithm. Developed by British computer scientist Tony Hoare in 1959 and published in 1961, it is still a commonly used algorithm for sorting. When imple...
Hello folks! 👋, we all often run into the situation where we need an efficient algorithm for sorting. And today I'm implementing the Merge sort algorithm in JavaScript. With this, we can move from the O(n^2) algorithms to a much more scalable O(nlog...
Hey! 👋 folks, today I want to share an interesting thing about GIT. So the fact is that I daily commit some code on my GitHub account & make a commit streak and one day I forgot to commit code on GitHub. I do not want to lose my GitHub commit streak...
Hello 👋 guys, today I'm discussing life lessons that I learned from my life and share my experiences with life that teaches me lots of invaluable things. Everyone is talking about fancy technologies, programming contents & tech trends but no one tal...
Hello! 👋 folks, today i want to share some useful shortcuts for web developers using VS code. Using this built in smart features we can minimize time for development and increase productivity. By using this no need to type same code snippets manuall...
Hello! 👋 friends, ECMA Script has released some cool new features in JavaScript ES2021 version. Here in this article i have discussed some ES2021 features you should need to know. Numeric Separators Numeric separator is one of the useful feature tha...
Hello guys! 👋, today i will discussing about error handling in JavaScript. You see this type of error everyday while coding and sometime it's very frustrating to identify this errors in code base. I break it down in a simpler steps and detect why i...
Hello 😎 folks, this article is about how to add authentication in apps using AWS Amplify? This article is part of AWS Amplify Hackathon. It is very easy to managed service for authentication on web and mobile apps. But it's little bit trickier to im...
Hello folks 😎, here i want to share an interesting story with you all about the AWS congito user pools. There are some situation where we want to create different environments for our applications like dev, test & prod. There are multiple team worki...
Hello folks 👋, If you’ve struggled with activating Python virtual env on Windows this short post is for you. This is very obvious that activating virtual environment in python using Git Bash on windows is little bit tricky. Also if i want to make ve...
Hello folks 👋 While working with Git, it is possible that you come across a situation where you want to delete a remote branch or just forgot command for it. There is command in git that remove branches from our local machine or remove remote branch...