Tmux Cheat Sheet And Reference Guide
Starting and Managing Sessions: tmux #Start a new session tmux new -s myname #Start a new session with a name tmux a or tmux attach #Attach to the last session…
Starting and Managing Sessions: tmux #Start a new session tmux new -s myname #Start a new session with a name tmux a or tmux attach #Attach to the last session…
1xx: Informational Responses CodeNameDescription100ContinueServer received headers; client can proceed with the request body.101Switching ProtocolsServer agrees to switch protocols as requested.102Processing (WebDAV)Server is processing a WebDAV request; no response available yet.103Early…
1. Basic Vi Commands: CommandDescriptioniEnter insert mode before the cursor.EscExit insert mode and return to command mode.:wq or ZZSave changes and exit.:q!Quit without saving changes.yyCopy (yank) the current line.pPaste the…
Navigation Shortcuts Moving the Cursor: ShortcutDescriptionCtrl + AMove to the beginning of the line.Ctrl + EMove to the end of the line.Ctrl + UDelete from the cursor to the beginning…
1. For Loop The for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). # Syntax for…
Creating Lists # Create an empty list empty_list = [] # Create a list with elements fruits = ['apple', 'orange', 'banana'] # Create a list of numbers numbers = [1,…
Regular expressions, often referred to as regex or regexp, which is a powerful tool for pattern matching and text manipulation. In python, the 're' module provides the support for using…
Installation pip install scrapy Create a new Scrapy project scrapy startproject project_name Create a new Spider cd project_name scrapy genspider spider_name example.com Running a Spider scrapy crawl spider_name XPath Selectors…