Lovely Sharmamaster-git-and-github-basics.hashnode.dev·Jan 8, 2025Ultimate Beginner's Guide to Mastering Git and GitHub with Cheat SheetWhat is Git? Git is an open-source distributed version control system that helps developers track changes in their code over time. It allows: Version tracking: Save and access previous versions of your code. Collaboration: Work seamlessly with othe...15 likes·98 readsGitHub
Yashwant Mahamuniyashbm45.hashnode.dev·Jan 4, 2025Express.js for BeginnersExpress.js is one of the most popular web application frameworks for Node.js. It's known for its simplicity and flexibility, it powers a wide range of applications, from small APIs to large-scale web services. Index Setting Up an Express.js Applicat...Express
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Jan 2, 2025Deploying Apps with Helm: A Simple Approach and Cheatsheet for Easy Reference!Helm is a package manager for Kubernetes. Helm is a tool that helps you manage applications in Kubernetes. Think of it like an app store for Kubernetes. It makes it easier to install, update, and manage apps in your Kubernetes environment. How it wor...Kubernetes helm
Krititechtokwithkriti.hashnode.dev·Dec 27, 2024CheatSheet for HashiCorp Terraform Certified Associate ExamProvisioners and Provisioning Passing Data to Servers Use cloud platform mechanisms (e.g., EC2 user data) for passing data at instance creation. Provisioners like SSH or WinRM can also be used but are less preferred. Provisioning Files Use clo...100 readsTerraform
Ahmad W Khanblog.ahmadwkhan.com·Dec 9, 2024A Guide to Go for Python, PHP, and Node.js DevelopersWhy Go? 1. A Brief HistoryGo was created at Google in 2007 by a team led by Robert Griesemer, Rob Pike, and Ken Thompson. They designed it to address the challenges of large-scale software development, combining the simplicity and speed of dynamic la...1 like·78 readsgolang
Saurabh Namdeodevopswithsaurabh.hashnode.dev·Dec 2, 2024Master Git with These 50 Essential Commands: The Ultimate Cheat Sheet for Developers and DevOps ProfessionalsMaster Git: Commands Explained in Detail Git has revolutionized the way teams collaborate, track changes, and manage codebases. Whether you’re a software developer, a DevOps engineer, or just starting your coding journey, Git is a must-have skill in ...Devops
Syed Dadapeerdrops.hashnode.dev·Nov 23, 2024Handy Linux & Git-GitHub Cheat Sheet for Day 14 TasksFasten your seatbelts, DevOps explorers! Here we are—Day 14 of my #90DaysOfDevOps challenge, and it’s been an amazing ride so far! The first two weeks have been packed with new learnings, challenges, and, of course, a lot of hands-on practice. From g...90DaysOfDevOpsLinux
Fauzeyafauzeya.hashnode.dev·Nov 17, 2024Day 20 Essential Docker Cheat Sheet for DevOps EngineersBasics CommandDescription docker --versionCheck the installed Docker version. docker infoDisplay system-wide information about Docker. Images CommandDescription docker pull <image>Download an image from Docker Hub (or a registry). d...3 likes·43 readsDocker
David Gostindgostin.hashnode.dev·Nov 6, 2024Angular Cheat SheetHere’s an Angular cheat sheet with key commands, concepts and syntax: Basic Setup Install Angular CLI: npm install -g @angular/cli Create a New Angular Project: ng new project-name Serve the Application: ng serve Build the Application: ...Angular
Kanav Gathe90-days-of-devops-kanav.hashnode.dev·Nov 6, 2024🐧 Linux & Git-GitHub Command Cheatsheet📂 Linux File System Navigation Basic Navigation CommandDescriptionExample pwdPrint working directorypwd lsList files and directoriesls -la cdChange directorycd /home/user mkdirCreate directorymkdir new_folder rmdirRemove empty directoryrm...5 likesGit Commands