Skip to content

Instantly share code, notes, and snippets.

View LondheShubham153's full-sized avatar
🚀
Helping Freshers and Professionals build their careers

Shubham Londhe LondheShubham153

🚀
Helping Freshers and Professionals build their careers
View GitHub Profile
@LondheShubham153
LondheShubham153 / git-commands.md
Last active May 17, 2024 13:38
This Gist contains all the useful Git Commands

Git Commands

This Gist contains all the useful commands for Git

Build Status

Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later.

If you are a developer and want to keep every version of your code/project (which you would most certainly want to), a Version Control System (VCS) is a very wise thing to use.

  • All the commands used for Git
import re
regexStr = r'^([^@]+)@[^@]+$'
emailStr = 'shubhamnath5@gmail.com'
username = re.search(regexStr, emailStr)
print(username.group(1))

#or

@LondheShubham153
LondheShubham153 / Django v3 Cheat Sheet.md
Last active January 13, 2024 05:14
This is a cheat sheet for Django commands to make your life much easier and your Django Commands much handy

Django Cheat Sheet

# Install virtualenv
pip install virtualenv
# Create env
virtualenv -p python3 env