HTTP Status Codes Cheat Sheet

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…

0 Comments

Bash Shortcuts Cheat Sheet :

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…

0 Comments

Python List Cheat Sheet

Creating Lists # Create an empty list empty_list = [] # Create a list with elements fruits = ['apple', 'orange', 'banana'] # Create a list of numbers numbers = [1,…

0 Comments

Scrapy Cheatsheet

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…

0 Comments