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·50 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·42 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
Saksham Kambleskm-saksham.hashnode.dev·Nov 6, 2024"The Ultimate Docker Cheat Sheet for DevOps: Essential Commands & Tips to Master Containers! 🐳📋🚀"Day 20: Docker for DevOps Engineers - Creating Your Ultimate Docker Cheat Sheet 🚀📄 Congratulations! 🎉 You've completed the hands-on sessions with Docker, mastering everything from building images and managing containers to configuring networks and...Devops
David Gostindgostin.hashnode.dev·Nov 5, 2024PHP Cheat SheetHere's a PHP cheat sheet covering the essentials: Basic Syntax Echo / Print: echo "Hello, World!"; print "Hello, World!"; Variables: $variable = "Hello!"; Comments: // Single-line comment # Single-line comment /* Multi-line co...PHP
David Gostindgostin.hashnode.dev·Nov 5, 2024Node.js Cheat SheetHere’s a Node.js cheat sheet with common commands and snippets to help you with various tasks: Basic Setup Initialize a New Project: npm init -y Install a Package: npm install package_name Install a Package Globally: npm install -g packag...Node.js
David Gostindgostin.hashnode.dev·Nov 5, 2024MySQL Cheat SheetHere's a MySQL cheat sheet to help you quickly reference common commands and functions: MySQL Basics Connect to MySQL: mysql -u username -p Select a Database: USE database_name; List Databases: SHOW DATABASES; List Tables: SHOW TABLES...MySQL