GeoDjango is an included contrib module to make easy GIS (Geographic Information System) web apps with location-based services. GeoDjango provides a toolbox of utilities for building GIS web applications and also bindings to popular spatial libraries such as GEOS, GDAL, and GeoIP, which can be used separately without Django in any Python application or interactively […]
Ruby vs Python: The ultimate battle
A tough question that goes through the mind of all web developers. Ruby vs Python. Which one is better? Both of them are popular languages suited for developing web applications. In short, it’s the clash of the Titans.
PIPENV – The Python’s Packaging Tool
Pipenv, the official Python-recommended resource for managing package dependencies, letting us install and uninstall Python packages. Pipenv helped to solve a few problems associated with the typical workflow using pip, virtualenv, and traditional requirements.txt, consolidating and simplifying the development process to a single command line tool.
Jekyll Docker image missing C headers
So, if you are using Jekyll Docker image and you need to install any Ruby gems that require C headers, such as raindrops in my case, which was a dependency for unicorn, you will find yourself faced with this error: fatal error: asm/types.h: No such file or directory Fortunately, there is a quick fix for […]
Custom Table View Cell using Interface Builder with RubyMotion
I’m a RubyMotion newbie and I wanted to create a custom table view cell which simply had three labels – a title, a subtitle and a third label on the right side of the cell. I found a few help around for creating custom table view cell programmatically, which helped me do the job, but […]