Author: Mohit Saxena

young business people working with digital tablet while discussing together in conference room

Using Serverless To Save Up To Weeks Of Development Time

Reading Time: 3 minutes In this article, we will talk about how we will be using serverless to save up to weeks of development time. To demonstrate this, we will be taking an example of a RESTful service which is pretty standard and many projects spend weeks of development time in early stages of the project to set it up. If you take a look at the above diagram, Continue Reading

How To Automate Jira Ticket Transitioning And Comments?

Reading Time: < 1 minute In this article, we will talk about how to automate Jira ticket transitioning and comments. Whether you have an existing Jira project workflow or you are creating one from scratch, you need to set up automation for basic things like transitioning the ticket, automated comments, auto-close, etc. Your project workflow might have tools that go beyond Jira and having all those connected to Jira is Continue Reading

How To Run Custom Binaries On AWS Lambda? [2 Ways]

Reading Time: 2 minutes When you get into serverless more, you get tempted to know how to run custom binaries on AWS Lambda because AWS Lambda does not support every framework or runtime so you have to create your own makeshift solutions using the currently available runtimes. Before we go on and add our own binaries, we first need to learn about AWS Lambda and how it actually works. Continue Reading

Analyzing data.

How To Put Event Data On AWS Event Bus Using Lambda?

Reading Time: 2 minutes In this article, we will talk about how to put event data on AWS event bus using Lambda. This article will help you adapt serverless architecture as it involves one of the standard core data flow models that involve API Gateway, Lambda, and a data processing service such as AWS EventBridge in our case. Throughout the article, we will be taking the help of AWS Continue Reading

How To Quality-Check Python Code Using Pylint On CI?

Reading Time: 2 minutes In this article, we will talk about how to quality-check Python code using Pylint on CI. Code Quality Through CI As we know, code quality is an important aspect of any project. It is the responsibility of every developer to quality-check the code before pushing it to the repository. However, to enforce this and implement the concepts of Continuous Integration (CI), we need to have Continue Reading

Difference Between Ansible And Ansible Galaxy – Ansible vs Ansible Galaxy

Reading Time: 3 minutes In this article, we will learn that what is the difference between Ansible and Ansible Galaxy (Ansible vs Ansible Galaxy). Ansible is an open-source configuration management tool. It helps in automating software provisioning, configuration management, and application deployment. As you learn more about Ansible, you will surely encounter Ansible Galaxy. However, people often fail to truly understand what this Ansible Galaxy is. Let us see Continue Reading

Opensource Software vs Free Software vs Freeware Software

Reading Time: 3 minutes In this article, we will look at the differences between open-source software vs free software vs freeware software. While growing up and trying out various software on our computer, we often come across the terms like free software, freeware, opensource, etc but we never pay much attention to it. A lot of people think that freeware software is the same as free software and they Continue Reading

How To Install A Package On Linux Netlify Agent Without Sudo Privileges?

Reading Time: 2 minutes In this article, we’ll learn how to install a package on Linux Netlify Agent Without Sudo Privileges and without the use of a package manager. Problem Netlify provides serverless backend for web applications and static websites. It is very convenient to host static websites when you do not need any special installations on top of it. However, if you want to use any third-party package Continue Reading

How To Resolve Merge Conflicts In Git Pull Request (PR)?

Reading Time: 2 minutes “How to resolve merge conflicts in Git pull request or a PR?” This question we often ask our friends and colleagues and even Google. It can also look complex and confusing especially if you are new to Git. To resolve your queries, we will talk about it in this article and cover some important questions like “What is a merge conflict?”, “When does a merge Continue Reading

How To Send Transactional Emails Using Lambda & Amazon SES?

Reading Time: 4 minutes In this article, we will learn how to send transactional emails using Lambda & Amazon SES. What is Amazon SES? Amazon Simple Email Service (SES) is an email service provided by Amazon which is cost-effective, flexible, and scalable that enables developers to send mails such as transactional emails, marketing emails, or even mass email communications from within an application. Amazon SES provides features such as Continue Reading

How To Build A Java Project Using Travis CI On Windows Platform?

Reading Time: 3 minutes What Is Travis CI? Travis CI is an open-source CI service used to build and test projects hosted at your favorite SCM. You can easily configure Travis CI by adding a file named .travis.yml to the root directory of the GitHub repository. Travis CI was the first CI as a Service tool! You can easily integrate Travis with the common cloud repositories like GitHub, Bitbucket, Continue Reading

How To Install Kubernetes On Ubuntu 20.04 – Kubeadm And Minikube

Reading Time: 2 minutes In this article, we will see how to install Kubernetes on ubuntu 20.04. Over the past few years, containerization has provided a lot of flexibility to the developers. One of the most commonly used applications for containerization is Docker. Container provide the developer a virtual environment and isolation for our applications on the host system. However, there were a few problems with it. Running small Continue Reading

What Is Liskov Substitution Principle (LSP)? With Real World Examples!

Reading Time: 4 minutes In this article, we are going to discuss what is Liskov Substitution Principle (LSP) with real world examples. So your Object-Oriented Programming skills are at par and now you want to apply your knowledge to live projects. After all, understanding the 4 basic pillars of Object-Oriented Programming and knowing a few cool things like constructor chaining and static methods should be enough to pull off Continue Reading