Common API Error Codes Explained: HTTP Status Codes for Developers

📘 Introduction When working with REST APIs , understanding HTTP status codes is essential for debugging, testing, and building reliable applications. API error codes help clients and servers communicate the result of a request , whether it was successful, redirected, invalid, or failed due to server issues. This …

Read more

How to initialize your brand new project to Git using command - git init ?

How to initialize your brand new project to Git using command - git init ? Purpose:   Start Git tracking in a project. What it does: ●        Creates a  .git  folder inside your project ●         Enables version control ●        Does not upload anything online When to use: ●        When starting a brand-new projec…

Read more

How to install Git on your local system( Windows, Linux, Mac) ?

Steps to install GIT on your local system(Windows, Linux, Mac) Before installing Git to your machine, it's a good idea to check if it's already installed onto your machine by simply typing the below command. Open a command prompt (cmd on Windows) or terminal ( Linux / Mac ) Type a command           $ sudo…

Read more

What is Git ?

Git stands for Global Information Tracker . It is an open-source tool developed by Linus Torvalds in 2005. It is a distributed version control system (DVCS) that allows multiple users to work on the same project simultaneously. It helps developers track code changes and maintain a history of modifications. Git …

Read more

Python : Find if a given year is a Leap year or not ?

Find if a given year is a Leap year or not ? In the Gregorian calendar, three conditions are used to identify leap years: The year can be evenly divided by 4, is a leap year, unless: The year can be evenly divided by 100, it is NOT a leap year, unless: The year is also evenly divisible by 400. Then it is a leap year. …

Read more

Robot Framework : How to install on your Windows OS? - part1

How to install Robot Framework on your Windows OS?  Robot Framework is an open-source automation framework mainly used for: Test automation (acceptance testing, regression testing, system testing) Robotic Process Automation (RPA) It’s designed to be keyword-driven , meaning tests are written in a readable, almost n…

Read more