© 2023 Hashnode
#cheatsheet
As a DevOps engineer working with AWS and Linux, having a solid understanding of command-line tools is essential for managing infrastructure, automating tasks, and troubleshooting issues. In this co…
turtle is a preinstalled library in python that allows you to draw graphics. Many beginner computer science courses use it to teach students because it is easy to set up and use. I made this cheatshee…
Pulling an image: Syntax: docker pull <image_name>:<tag> Example: docker pull ubuntu:latest Building an image from a Dockerfile: Syntax: docker build -t <image_name> <path_to_dockerfile> Exampl…
This "Complete Rust Cheat Sheet" provides a comprehensive guide to the Rust programming language, encompassing all of its major features. The topics covered range from the very basics, such as syntax and basic concepts, to more complex aspe…
So, here’s the thing. I don’t code my projects in Java, but I’m all about staying in touch with the most used and established programming language out there. That’s why I code the LeetCode problems in…
Linux It provides services for applications and manages computer hardware. It's a platform to run desktops, embedded systems, and servers. It is made up of several different components working togethe…
Infrastructure as code (IaC) is the practice of managing and provisioning computing resources using configuration files or scripts rather than manual deployment and configuration processes. This enabl…
Git Commands Creating a Repository 1.Initialize a new Git repository: git init 2.Clone an existing Git repository: git clone <repository_URL> Staging Changes 1.Add changes to the staging area: git add…
Linux Cheat Sheet Git Commands Creating a Repository Initialize a new Git repository: git init Clone an existing Git repository: git clone <repository_URL> Staging Changes Add changes to the…
Git & GitHub Cheat Sheet Basic Linux commands CommandDescription lsLists all files and directories in the present working directory ls -RLists files in sub-directories as well ls -aLists hidd…