Skip to content

Instantly share code, notes, and snippets.

View vikaskyadav's full-sized avatar
🏠
Working from home

Vikas Kumar Yadav vikaskyadav

🏠
Working from home
View GitHub Profile
@vikaskyadav
vikaskyadav / introrx.md
Created February 2, 2018 06:01 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@vikaskyadav
vikaskyadav / django_cmd.sh
Created December 11, 2017 08:28 — forked from hezhao/django_cmd.sh
Django Commands Cheatsheet
# Use Python 3 for easy unicode
$ virtualenv -p python3 .env
$ source .env/bin/activate
$ pip install django
$ deactivate
# Start new django project and app
$ django-admin.py startproject mysite
$ ./manage.py migrate
$ ./manage.py createsuperuser