Solved: ImportError: No module named requests

When we tried to run a python script to check upnp information from https://github.com/lynxbee/upnp_info/blob/master/upnp_info.py on Ubuntu, we … Read more

Writing first Django Application

This post is in continuation with our previous post “Starting webserver using your first simple Django project” … Read more

How to integrate and use google fonts into website ?

To use google fonts into your website / html, you just need to follow below steps, To … Read more

How to redirect primary domain to a subdirectory ?

If you are trying to develop new website for your domain and want to redirect all the … Read more

Compile Android application as part of AOSP source code

This post details about how you can integrate your Android application as part of Android OpenSource Build … Read more

Understanding Android Services with Example

A Service is an application component that can perform long-running operations in the background, and it does … Read more

How to use mtrace to detect memory leaks in executable in Linux ?

The mtrace() function installs hook functions for the memory- allocation functions malloc, realloc, memalign, free. These hook … Read more

How to clone a large Git repository ?

Recently, I needed to clone the ndk while downloading Android source, ndk size to clone was more … Read more

Understanding Django application “models”

A model is the single, definitive source of information about your data. It contains the essential fields … Read more

Solved: Django makemigrations “No changes detected”

When we are adding new model or modifying previous one, we have to inform the project about … Read more