Cheat Sheets

Quick reference guides for everyday development

Git Commands

Version control essentials

git init Initialize repository
git clone [url] Clone repository
git add . Stage all changes
git commit -m "msg" Commit changes
git push origin main Push to remote
git pull Pull latest changes

HTTP Status Codes

Response code reference

200 OK - Success
201 Created - Resource created
301 Moved Permanently
400 Bad Request
401 Unauthorized
500 Internal Server Error

Regex Patterns

Regular expression syntax

. Any character
* Zero or more
+ One or more
\d Any digit [0-9]
\w Word character
^...$ Start/End anchors

VS Code Shortcuts

Boost your productivity

Ctrl+P Quick Open File
Ctrl+Shift+P Command Palette
Ctrl+D Select Next Match
Alt+↑/↓ Move Line Up/Down
Ctrl+/ Toggle Comment
Ctrl+` Toggle Terminal