Python Self Keyword

In Python Self, while it's not mandatory to use the name self, it's a widely accepted convention and is highly recommended. Using self helps in maintaining clarity and consistency within your codebase, making it easier for other developers (and even yourself in the future) to understand your code.

Python Identifiers and Reserved Words

Reserved Word: Reserved words in Python are predefined words with specific meanings or functionalities within the language, such as 'if', 'else', 'for', etc. Identifier: Identifiers in Python are names given to variables, functions, classes, or modules, allowing programmers to reference them within their code.

Introduction to Machine Learning

Machine learning is an integral part of developing a better future. In due course of time, Machine learning along with AI will change the course of development. It holds the potential to transform the way we carry out our daily tasks.

Git PULL vs FETCH

Git is almost(?) an integral part of dev pipelines and when you just start to learn it, when it's yet to become the muscle memory, we all become victims of pitfalls. PULL v FETCH is one of such pitfalls that a beginner should be on lookout for. This blog is about that with lot of details.

ANSIBLE INVENTORY

This is a small Tutorial/Exercise to understand the static inventory file in the ansible. This should give a basic idea of how it works.