Calculating distance between two locations in python/django
In my new Searching App i want to simply be able to figure out the distance, geographically, between two points says user and doctor based on their zip code and then sort a list based on that. I...
View ArticleRealtime django by bolsterlabs (djangocon 2011)
Tagged: Api, django, json, python, slideshare
View ArticleArea of Polygon in python
Here is a piece of code which can help you to get the Area of Polygon using Shoelace formula. # Area of Polygon using Shoelace formula # http://en.wikipedia.org/wiki/Shoelace_formula # FB - 20120218 #...
View Article11 line python script acts as a web server
A Simple python script that acts as a web server, and handles requests import SimpleHTTPServer import SocketServer PORT = 8000 class SimpleServer(): #Simple Http server python usage def start(self):...
View ArticlePython code to check either the card number provided is valid or not
Python code to check either the card number provided is valid or not can be used in validating the Credit-card while dealing with cards # coding=utf-8 class Check_Credit_Card(object): """ Class to...
View ArticleUsing Solr/ Solr’s DataImportHandler (the DIH) and MySQL-DB
Solr is a standalone webservice application that can be installed on any servlet container like tomcat, jetty etc. It uses the popular Lucene java library to provide enterprise level search results...
View ArticleBest User File Management using math.fmod
Introduction Where is the best place to store images on your Web site? If you have a huge content application and store all your images in a single folder called “images”.you might land up you...
View ArticleParsing Big CSV Files In Python
Today while writing data upload functionality via huge CSV file with more than 1000K rows and 30+ columns. i firstly tried a very straightforward and common method i.e to go through the whole file...
View ArticleEmployer-Employee Relationship and Successful Company
What Is an Employer-Employee Relationship? When an employer hires a new employee, he is not just bringing a new member of the workforce aboard; he is also starting a new relationship. Because...
View ArticleScope Creep!
What is Scope Creep? Why Scope Creep? How do we prevent it? Today I will answer few question which cause frustration to lot of project manager and dear innocent developers who finally suffer a lot...
View Article