RSSAmplifier

Blog

Akshay Sushir - Software Developer

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.

axay.hashnode.devRSS feed ↗20 posts

Latest posts

The CI/CD Trap: Why Over-Engineering GitHub Actions is Killing Your Engineering Velocity

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

How to Change Your Ringtone in Microsoft Teams (Yes, It’s Possible!)

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...

Balancing Act: Prioritizing Mental and Physical Well-being for Software Engineers

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...

How to execute Oracle Procedure from Python Script

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...

Get Ahead with Git Cherry-Pick: A Comprehensive Guide for Developers

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...

How to Select records from SQL using time interval

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...

Git Commands Every Developer Should Know

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...

Free hosting providers for front-end & back-end apps

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...

How do I get a 500% Salary hike as a software developer?

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...

How to implement Quicksort in Python

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...

How to implement Merge Sort in JavaScript?

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...

How do I make a Git commit in the past?

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...

Why Mental & Physical Health is Important for Developers?

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...

Useful Shortcuts For Web Developer Using VS Code

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...

JavaScript ES 2021 Features You Need To Know

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...

Uncaught TypeError: Cannot read property of null

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...

Authentication using AWS Amplify.

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...

How to create Team Environments in AWS Amplify

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...

Create Virtual env on Windows using Git Bash - Python

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...

How to delete remote branches in Git

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...