Python ‘os’ Module Cheat Sheet

File and Directory Operations Get Current Working Directory current_directory = os.getcwd() Change Directory os.chdir("/path/to/directory") List Files and Directories in a Directory files_and_directories = os.listdir("/path/to/directory") Check if a Path Exists path_exists…

0 Comments

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