Skip to content

Instantly share code, notes, and snippets.

View AliNajafi1998's full-sized avatar
♾️
Infinity

Ali Najafi AliNajafi1998

♾️
Infinity
View GitHub Profile
@AliNajafi1998
AliNajafi1998 / index.ipynb
Created June 28, 2020 05:51 — forked from georgeblck/index.ipynb
Comparison of openCV Interpolation methods by Anthony Tanbakuchi (Backup because his site is down)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AliNajafi1998
AliNajafi1998 / django_cheat_sheet.md
Created April 19, 2020 14:42 — forked from bradtraversy/django_cheat_sheet.md
Django command cheat sheet

Django 2.x Cheat Sheet

Creating a virtual environment

We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder

python -m venv ./venv
@AliNajafi1998
AliNajafi1998 / workflow.md
Created March 24, 2020 11:04 — forked from stuartsaunders/workflow.md
Versioning and Git Workflow

Semantic Versioning

Details:

Versions are denoted using a standard triplet of integers: MAJOR.MINOR.PATCH. The basic intent is that MAJOR versions are incompatible, large-scale upgrades of the API. MINOR versions retain source and binary compatibility with older minor versions, and changes in the PATCH level are perfectly compatible, forwards and backwards.