
Git Commands - CMDsheet
Git Common Commands git --version Check the git version git init To initialize a directory git remote add origin "https://<path-to-git...
Git Common Commands git --version Check the git version git init To initialize a directory git remote add origin "https://<path-to-git...
Introduction to Computer Vision: CV is a field of artificial intelligence that trains machines to understand and interpret the visual world. Appliances that use or manipulate images tend to us...
Instructions to login into GitLab when 2FA is enabled A. Create an Access Token: Log in into the GitLab account; Go to the Preferences section (hover the profile image and wait for the menu)....
SSH Command to connect to a target host with a specfic ssh key ssh username@targethost -i <path-to-private-key> Update the below file to specify the parameters to be used fo...
Diagrams lets you draw the cloud system architecture in Python code. It was born for prototyping a new system architecture without any design tools. You can also describe or visualize the existin...
Linux Mounting an Azure File Share - mount error 13 - Permission denied
What is Diagram as Code? Diagram as Code (DaC) is a methodology that allows developers and operations teams to create and manage infrastructure diagrams using code. It provides a way to defin...
When working with DevOps tools on macOS, it’s important to know the default installation and configuration paths for various tools. This knowledge can help you locate and configure these tools more...
Introduction: When working with Docker, you may encounter an error message that says “Error getting credentials” during the build process. This error can be frustrating, but fortunately, there are ...
Error: ModuleNotFoundError: No module named ‘dotenv’ Reason: The virtual environment for Python was not created/set. Solution: Create a new python virtual environment: python3 -m venv ~/...