David CarrProdcblog.dev·Sep 18, 2023VIM shortcutsVIM Modes There are multiple modes in vim, normal mode is loaded by default. Command mode. Press : from normal mode, This mode is used when escape is pressed. Insert mode. Press i to enter insert mode, from here typing is allowed within the file. Vis...Discussvim
h4nnaforh4nna's team blogh4nna.hashnode.dev·Sep 14, 2023Cheat sheet SSHSSH service starts ssh service: $ (sudo) service ssh start checks ssh service status: $ (sudo) service ssh status stops ssh service $ (sudo) service ssh stop restarts ssh service $ (sudo) service ssh restart SSH connections connects to a server...Discussssh
MEGHA GUPTAlearning01.hashnode.dev·Sep 12, 2023Cheat-sheet for Linux & Git-GitHubCertainly! Here's a "cheat sheet" with some commonly used commands in Linux and Git/GitHub, along with brief descriptions to make it fun and memorable: Linux Commands 🐧 File and Directory Operations: ls: List files and directories. pwd: Print work...DiscussGitHub
VISHAL KUMAR SINGHthisvishalsingh.hashnode.dev·Sep 2, 2023The endgame ebook of "Intro to Web3/blockchain"1. Blockchain Blockchain is an incredible technology at the core of crypto-currencies and other excellent decentralized applications. In simple terms, it acts like a digital ledger spread across multiple computers or nodes. It keeps track of transact...Discuss·3 likes·29 readsBlockchain
pooja singhclouddevops23.hashnode.dev·Aug 30, 2023"Elevate Your Development Workflow: A Definitive Linux, Git, and GitHub Cheatsheet"Introduction In the fast-paced world of technology and development, mastering essential tools can significantly enhance productivity and efficiency. Linux, Git, and GitHub are three fundamental tools that every developer should have in their toolkit....Discuss·35 reads#90daysofdevops chanllenge
Arvind Jaiswalarvindjaiswal.hashnode.dev·Sep 14, 2023Day 12 : Linux and Git CheatsheetLinux Cheatsheet 1. Linux basic commands CommandsDescription lsLists all files and directories in the present working directory ls -RLists files in sub-directories as well ls -aLists hidden files as well ls -alLists files and directories wi...DiscussDevopscheatsheet
Kunal Gohranikunalgohrani.hashnode.dev·Aug 26, 2023Your Ultimate Docker Cheatsheet for Learning and Interview SuccessIn the dynamic realm of software development, Docker has emerged as a pivotal tool for streamlining application deployment and management. With its array of commands and options, mastering Docker might seem like a daunting task. This is where a metic...Discuss·2 likes·41 readsDocker
Nikul kumarnikul.hashnode.dev·Aug 25, 2023🚀Day 12 Cheat sheet for Git GitHub📌Configuration Commands for setting up your name and email globally, so your commits are attributed correctly. CommandExplanation git config --global user.name "Your Name"Set your name for commit attribution. git config --global user.email "...DiscussGitHub
Nikul kumarnikul.hashnode.dev·Aug 25, 2023🚀Day 12 Linux cheat-sheet📌Navigation and File Management CommandDescription lsList files and directories in the current directory. cd directoryChange to the specified directory. pwdPrint the current working directory path. mkdir directoryCreate a new directory. r...DiscussLinux
Aravind Venkatesanaravindvenkatesan.hashnode.dev·Aug 20, 2023Understanding Git and GitHubVersion control is a term widely used in software engineering. In the software field, it is defined as the way of keeping track of changes and managing those changes in terms of computer programs, files, software, etc. 💡 In simple words, it is a sy...Discuss·1 likeGit