Modeling a ChessBoard And Mechanics Of Its Pieces In Python

Hello, Everyone. First of all, Happy New Year 2017. In this year, I sincerly hope success for you, for your friends and family members. This article is going to discuss how python enables us to materialize our ideas into a quick reality by taking chess as an example. Coming to the point, we all love […]

Building an Excel file dump service in Django

Namaste Everyone. I recently wrote an excel dump service as part of my work and wants to share that experience with you. Initially, I irritated a lot because creating excel in Python is fairly easy but downloading it from JavaScript as an Ajax response is very painful. You should know how to set the right […]

Building High Performance Django Systems

The main motto of Django web framework is: The web framework for perfectionists with deadlines It is true. Django always gives a polished product within the time. Today all Django developers are racing to finish the project development with Python as their favorite choice. But evil of wrong development practices can slow down the project […]

Lessons I learnt in quest of writing beautiful python code

Hello everyone. I always wonder what are the good practices in developing software in Python. I am young and  inexperienced few years back. But  people around me and situations I faced from past few years had taught me many things. Many things about coding style, good development patterns etc. Here I am going to discuss […]

A primer on Database Transactions and Asynchronous Requests in Django

Hello, Namaste.  Today we are going to  look at few Django web framework cookies that makes our life more sweeter.  Let us learn few things which helps us implement the functionality when situation demands. The topics are following: Implementing Database transactions in  Django  Making asynchronous HTTP requests from Django code 1) Django DB Transactions I […]