Skip to content

Instantly share code, notes, and snippets.

View harunurkst's full-sized avatar

Harun Ur Rashid harunurkst

View GitHub Profile
@harunurkst
harunurkst / range
Created March 15, 2015 20:52
A python program to get first, last value and difference value from user and print start to stop with step
#get input from user
start=int(raw_input("Enter stat number:"))
diff =int(raw_input("enter difference:"))
last=int(raw_input("enter last num:"))
#for loop with range function to get value
for i in range(start,last,diff):
print i
@harunurkst
harunurkst / dump_db
Created January 20, 2019 05:59
dump postgresql database from server to local
# step -1
# backup db in server folder
pg_dump -U postgres your_dbname > name_you_want_to_save.sql
# Step -2
# Copy from server to local
scp -P 2205 [email protected]:location/of/your/server/sql/file.sql .
# replace ip, port, user with your origin data
# replace /location/of/your/... with your sql file in server
@harunurkst
harunurkst / timestamp_field.py
Created April 1, 2019 05:16
Custom serializer field to convert human readable date to timestamp
class TimeStampField(serializers.Field):
"""
A custom serializer field to convert human readable date (2019-04-01) to timestamp(1554094095)
"""
def to_representation(self, value):
"""
Convert timestamp to human readable time,
this function is called when api called to serialize data.
:param value: timestamp data
:return: 'YY-mm-dd' (i.e 2019-04-01)
@harunurkst
harunurkst / custom_exception.py
Last active May 12, 2019 06:35
Custom exception handler for Django rest framework
from rest_framework.exceptions import ErrorDetail
def format_code(code_name):
"""Format django error code to Circle Error code"""
if code_name == 'blank':
return "BLANK_FIELD"
elif code_name == 'invalid':
return "INVALID_DATA"
elif code_name == 'required':
@harunurkst
harunurkst / pushme.py
Created April 25, 2019 10:31
basic function to test time counting.
import time
def send_push(user_id):
"""
demo function to send notification
"""
print("Start: "+str(user_id))
time.sleep(1) # sleep 1 second when sending notification.
print("Complete: "+str(user_id))
@harunurkst
harunurkst / async_push.py
Created April 25, 2019 10:35
asynchronous way to send dummy push. (Test function to get timing)
import time
import asyncio
import logging
async def send_push(user_id):
"""
demo function to send notification
"""
print("Start: "+str(user_id))
def djangoview(request, language1, language2):
async def main(language1, language2):
loop = asyncio.get_event_loop()
r = sr.Recognizer()
with sr.AudioFile(path.join(os.getcwd(), "audio.wav")) as source:
audio = r.record(source)
def reco_ibm(lang):
return(r.recognize_ibm(audio, key, secret language=lang, show_all=True))
future1 = loop.run_in_executor(None, reco_ibm, str(language1))
future2 = loop.run_in_executor(None, reco_ibm, str(language2))
{% extends 'base.html' %}
{% block content %}
<div class="container">
<div class="dashboard-block">
<h2 class="dashboard-info-title">Profile Info</h2>
<form method="POST" action="{% url 'userprofile:create-profile' %}" enctype="multipart/form-data">{% csrf_token %}
{% for field in form %}
@harunurkst
harunurkst / commands.py
Last active August 18, 2019 11:42
important commands
# run bash in docker image
# docker run -it <image-name> bash
# if entrypoint defined
docker run -it --entrypoint bash jifcastback_djangoapp
# create superuser in docer container django app
sudo docker-compose run --entrypoint="python manage.py createsuperuser" djangoapp
@harunurkst
harunurkst / clean_database_tables.py
Last active November 10, 2020 04:48
Drop all tables of postgresql with python code
from django.db import connections, OperationalError
# Drop all tables from a given database
"""
python manage.py runscript clean_database_tables
"""
def run():