Skip to content

Instantly share code, notes, and snippets.

View yitendra's full-sized avatar
🐢
I may be slow to respond.

Yitendra Kumar yitendra

🐢
I may be slow to respond.
View GitHub Profile
@yitendra
yitendra / django.py
Created October 20, 2018 20:50
django
from django.contrib import admin
from django.conf.urls import url
from app import views
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
url('admin/', admin.site.urls),
url('^$',views.index,name='index')
]
@yitendra
yitendra / pythoncolor.py
Last active October 20, 2018 11:03
python color
im = Image.new('RGB', (255, 255))
ld = im.load()
rnd,rnd1,rnd2=random.randint(0,125),random.randint(0,125),random.randint(0,125)
rgbrnd=random.sample(range(0,3), 3)
print(rnd,rnd1,rnd2)
q,w,e=1,1,1
r = rnd
g = rnd1
b = rnd2