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

Docker : How to install docker on Ubuntu 24.04 Linux OS ?

How to install docker on Ubuntu 24.04 Linux OS   Installing Docker on Ubuntu 24.04 is a straightforward process. Here's a step-by-step walkthrough 🛠️ Step-by-Step Guide to Install Docker on Ubuntu 24.04 Update Your System sudo apt update && sudo apt upgrade Install Required Packages.  These help your…

Read more

Python Exception : ValueError

Python Exception  : ValueError  A ValueError in Python occurs when a function receives an argument of the right type but an inappropriate value. Lets see with an example: 🧪 Converting a string input to an integer num = int ( "Hello World !" ) 🔍 What happens? This will raise a ValueError because "He…

Read more

JSON with Python

JSON (JavaScript object notation) Its syntax is derived from JavaScript object notation syntax. JSON is a syntax for storing and exchanging data. Few important properties about JSON: a) Data is in name/value pairs or key/value pairs b) Data is separated by commas c) Curly braces hold objects d) Square brackets hold ar…

Read more

Quick shortcuts to open Microsoft Office Apps

Quick shortcuts to open Microsoft Office Apps Even with Microsoft's advanced app search feature, we frequently have a large number of programs on our system, making it difficult to find and launch them.  Nevertheless, using shortcuts to open apps is often quicker and more convenient if we are aware of them. These …

Read more

Access JIRA API via bearer token using Python code

How to access the JIRA API via bearer token using Python code? JIRA is a project management tool that helps teams track bugs, releases, plan projects, etc. There are times when the team needs to access the release and bug data to create custom dashboards to show the trends, like bug trends and …

Read more

How to get the UDID (Unique Device Identifier) of an Android Device ?

How to find the UDID of an Android Device ? What is UDID : It stands for Unique Device Identifier. UDID is required during Android  application development or Android App automation to get the unique id of the  Android device. It is needed in cases when the user wants to track the unique device installations …

Read more